@font-face {
    font-family: 'TejoalFont';
    src: url('fonts/TejoalFont.ttf') format('truetype'); /* Make sure path is correct */
}

/*CSS Table Of Content Ends Here*/
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme-color: #00459b;
  --theme-dark-color: #0f1c56;
  --header: #1E2023;
  --text: #555;
  --border: #E6EFFF;
  --ratting: #F8BC26;
  --bg: #f0f7ff;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.10);
}

.blue {
  color: var(--theme-color);
}

.theme-btn {
  background: var(--theme-color);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 35px;
  padding-right: 5px;
  border-radius: 5px;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.theme-btn i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme-color);
  margin-left: 35px;
  transition: all 0.4s ease-in-out;
}

.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  width: 100%;
}

.theme-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white);
}

.theme-btn.bg-header {
  background-color: var(--header);
}

.theme-btn.bg-header::before,
.theme-btn.bg-header::after {
  background-color: var(--white);
}

.theme-btn.bg-header i {
  background-color: var(--theme-color);
  color: var(--white);
}

.theme-btn.bg-header:hover {
  color: var(--header);
}

.theme-btn.theme-btn-2 {
  background: var(--theme-color-2);
}

.theme-btn.theme-btn-2 i {
  color: var(--theme-color-2);
}

.theme-btn.theme-btn-2:hover::before,
.theme-btn.theme-btn-2:hover::after {
  width: 100%;
}

.theme-btn.theme-btn-2:hover i {
  background: var(--theme-color-2);
  color: var(--white);
}

.link-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: 'Tejoal';
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-weight: 400;

}



.direction_rtl {
  direction: rtl;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Tejoal';
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

h1 {
  font-size: 150px;
  font-weight: 700;
  line-height: 127%;
}

h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: 121%;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 140%;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 34px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

/*

/* whatsap css */
#whatsapp {
  position: fixed;
  right: 40px;
  bottom: 10%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  opacity: 1;
  z-index: 99990;
}

#whatsapp #whatsappMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0);
  width: 70px;
  height: 70px;
  color: #40c351;
  z-index: 9;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-image: url('../img/whatsapp.png');
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-webkit-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

/* whatsap css */

.center_cont {
  padding: 50px 0 50px;
  text-align: center;
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

.center_cont h2 {
  font-size: 36px;
  margin-bottom: 5px;
}

.center_cont h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.center_cont p {
  line-height: 24px;
}


.left_img_cont {}

.cont_sec {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

.left_img {
  display: flex;
  width: 50%;
}

.left_img_area {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 650px;
}

.right_cont {
  justify-content: flex-start;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 30px;
  color: #000;
  text-align: right;
}

.right_cont_area {}

.right_cont_area h3 {
  font-size: 18px;
  background: #b3d5fb;
  display: inline-block;
  padding: 5px 26px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.right_cont_area h2 {
  font-size: 34px;
  font-weight: 700;
}

.right_cont_area p {
  font-weight: 500;
  margin-top: 20px;
}

.right_cont_area ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: disc;
  padding-left: 20px;
}

.right_cont_area ul li {
  color: #000;
  font-weight: 500;
}


.left_img_cont1 {}

.cont_sec1 {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: center;
}

.left_img1 {
  display: flex;
  width: 50%;
}

.left_img_area1 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 650px;
}

.right_cont1 {
  justify-content: flex-start;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 30px;
  color: #000;
  text-align: right;
}

.right_cont1 li,
.right_cont li {
  list-style: none;
  position: relative;
  padding-bottom: 10px;
  padding-right: 15px;
}

/* DOT AFTER TEXT */
.right_cont1 li::after,
.right_cont li:after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #000000;
  /* olive green */
  border-radius: 50%;
  display: block;
  margin-top: 12px;
  position: absolute;
  right: 0;
  top: 0%;
}


.right_cont_area1 {}

.right_cont_area1 h3 {
  font-size: 18px;
  background: #b3d5fb;
  display: inline-block;
  padding: 5px 26px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.right_cont_area1 h2 {
  font-size: 34px;
  font-weight: 700;
}

.right_cont_area1 p {
  font-weight: 500;
  margin-top: 20px;
}

.right_cont_area1 ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: disc;
  padding-left: 20px;
}

.right_cont_area1 ul li {
  color: #000;
  font-weight: 500;
}



.header-search-bar {
  height: 270px;
  position: fixed;
  top: -200%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  transition: 0.3s;
}

.header-search-bar.search-open {
  top: 0;
}

.contact-search-form-box {
  margin-top: 50px;
}

.contact-search-form-box form {
  position: relative;
}

.contact-search-form-box form button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 18px;
}

.search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--header);
  font-weight: 300;
  width: 45px;
  height: 45px;
}

.search-bar .contact-search-form-box input {
  border: none;
  width: 100%;
  outline: none;
  color: var(--header);
  border-bottom: 1px solid var(--border);
  font-size: 24px;
  padding-bottom: 30px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 767px) {
  .search-bar .contact-search-form-box input {
    font-size: 22px;
  }
}

.search-bar .contact-search-form-box input::placeholder {
  color: var(--header);
}

.search-bar .contact-search-form-box i {
  color: var(--theme-color);
}

.search-bar .contact-search-form-box p {
  color: #666C78;
  padding-top: 15px;
}

.search-bar .search-bar-title {
  font-size: 25px;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}

.get_btn {
  padding: 20px 25px;
  border-radius: 35px;
}

@media (max-width: 767px) {
  .section-title {
    text-align: center;
    margin-bottom: 0;
  }
}

.section-title span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color);
  display: inline-block;
  position: relative;
  padding-left: 50px;
}

@media (max-width: 575px) {
  .section-title span {
    margin-bottom: 5px;
  }
}

.section-title span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color);
  width: 37px;
  top: 13px;
}

.section-title span.text-white-style {
  color: var(--white);
}

.section-title span.text-white-style::before {
  background-color: var(--white);
}

.section-title.style-2 span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color-2);
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}

.section-title.style-2 span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color-2);
  width: 37px;
  top: 14px;
}

.section-title.style-2 span.style-2::before {
  background-color: var(--white);
}

.section-title.style-2 h2 {
  font-weight: 700;
}

@media (max-width: 767px) {
  .section-title p {
    margin-top: 0.5rem !important;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .section-title-area {
    gap: 20px;
  }
}

.section-title-area .section-title {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .section-title-area .theme-btn {
    display: none;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.sect-bg {
  background-color: rgb(239, 238, 250);
}

.footer-bg {
  background-color: var(--header);
}

.section-bg-2 {
  background: rgba(86, 109, 251, 0.1);
}

.section-padding {
  padding: 120px 0;
}

.section-padding1 {
  padding: 60px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes arryUpDown {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

.animation__arryUpDown {
  animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}

.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
  -webkit-animation: slide 5s linear infinite;
  animation: slide 5s linear infinite;
}

.delay1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.delay4 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.delay5 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }

  100% {
    background-position: top left 2000px;
  }
}

@-webkit-keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: static;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}

@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  font-family: 'Tejoal';
  padding: 20px 0;
  text-align: left;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}

.header-main .main-menu ul li a i {
  margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 300px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.dropdown-menu {
  width: 100%;
  transform: translate(0px, 72px) !important;
}

.dropdown-menu .row {
  margin: 0;
  padding: 0;
}

.dropdown .dropdown-menu a {
  padding: 12px 10px !important;
  transition: all 0.4s ease-in-out;
  display: block !important;
}

.dropdown .dropdown-menu a:hover {
  background: #014b95;
  border-radius: 5px;
}

.text p {
  line-height: 20px;
  color: #404040;
  transition: all 0.4s ease-in-out;
}

.text h5 {
  color: #004898;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}

.menu_icon {
  height: 67px;
  width: 77px;
  text-align: center;
  padding: 13px 0;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
}

.dropdown .dropdown-menu a:hover .text p,
.dropdown .dropdown-menu a:hover .text h5 {
  color: #fff;
}

.dropdown .dropdown-menu a:hover .menu_icon {
  background: #fff;
}

.dropdown .dropdown-menu a:hover .menu_icon img {
  background: transparent;
}

.black {
  display: none;
  transition: all 0.4s ease-in-out;
}

.white {
  transition: all 0.4s ease-in-out;
}

/*
.dropdown .dropdown-menu a:hover .black{display: block;text-align:center;margin: 0 auto;}
.dropdown .dropdown-menu a:hover .white{display: none;}
*/


.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  padding: 5px 15px;
  text-transform: capitalize;
  font-family: 'Tejoal';
  width: 100%;
  display: block;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-color) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-color);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-color);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  overflow: hidden;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
  color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
  color: var(--theme-color) !important;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme-color);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme-color);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .header-right {
  gap: 50px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-section-3 .header-2 {
  position: static;
}

.header-section-3.style-2 {
  position: static;
}

.header-top-section {
  background: #1E2023;
  padding: 18px 0;
}

@media (max-width: 1199px) {
  .header-top-section {
    display: none;
  }
}

.header-top-section .container-fluid {
  padding: 0 100px;
}

@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-wrapper.style-2 p a {
  color: var(--theme-color-2);
}

.header-top-wrapper p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.header-top-wrapper p a {
  color: var(--theme-color);
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}

.header-top-wrapper .contact-right {
  display: flex;
  align-items: center;
  gap: 55px;
}

.header-top-wrapper .contact-right li {
  color: var(--white);
}

.header-top-wrapper .contact-right li a {
  color: var(--white);
}

.header-top-wrapper .contact-right li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.header-top-wrapper .social-icon {
  gap: 15px;
  font-size: 18px;
}

@media (max-width: 1399px) {
  .header-top-wrapper .social-icon {
    display: none !important;
  }
}

.header-top-wrapper .social-icon a {
  color: var(--white);
}

.header-top-wrapper .social-icon a:hover {
  color: var(--theme-color);
}

.header-top-wrapper .right-flag {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media (max-width: 1600px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -450px;
  }
}

@media (max-width: 1399px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -560px;
  }
}

.header-1 .header-main {
  padding: 0 0;
}

.header-1 .header-button .theme-btn {
  padding: 35px 70px;
}

@media (max-width: 1399px) {
  .header-1 .header-button .theme-btn {
    display: none;
  }
}

.header-1 .mega-menu-wrapper {
  background-color: var(--white);
  padding-left: 40px;
}

@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    padding-left: 25px;
  }
}

.header-1 .container-fluid {
  padding-left: 100px;
}

@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 0;
  }
}

.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header-2 .header-right .social-icon {
  gap: 20px;
  font-size: 18px;
}

@media (max-width: 1399px) {
  .header-2 .header-right .social-icon {
    display: none !important;
  }
}

.header-2 .header-right .social-icon a {
  color: var(--white);
}

.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}

.header-1 .header-left .social-icon {
  gap: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 35px;
}

@media (max-width: 1399px) {
  .header-1 .header-left .social-icon {
    display: none !important;
  }
}

.header-1 .header-left .social-icon a {
  color: var(--header);
}

.header-1 .header-left .social-icon a:hover {
  color: var(--theme-color);
}

.header-1 .sidebar__toggle {
  width: 85px;
  height: 84px;
  line-height: 84px;
  text-align: center;
  background: #1E2023;
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #fff;
}

.header-2 .container-fluid {
  padding: 0 100px;
}

@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}

.header-2 .header-logo-2 {
  display: none;
}

@media (max-width: 1199px) {
  .header-2 .header-main {
    padding: 14px 0;
  }
}

.header-2 .header-main .main-menu ul {
  margin-bottom: 0;
}

.header-2 .header-main .main-menu ul li a {
  color: var(--black);
}

.header-2 .header-main .main-menu ul li a i {
  margin-left: 5px;
}

.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}

.header-2 .header-main .main-menu ul li .submenu {
  color: var(--header);
}

.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.header-2 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--white) !important;
  background: var(--theme-color) !important;
}

.header-2 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-color);
}

.header-2 .header-main .main-menu ul li:hover>a {
  color: var(--theme-color);
}

.header-2 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-color);
}

.header-2 .header-left {
  display: flex;
  align-items: center;



  gap: 50px;
  width: 200px;
}

.header-2 .header-left img {
  width: 100%;
}

.header-2 .header-right .header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1199px) {
  .header-2 .header-right .top_btn {
    display: none;
  }
}

.header-2 .header-right .header-contact .search-toggle {
  color: var(--white);
}

.header-2 .header-right .header-contact .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

/*
.header-2 .header-right .header-contact .info-items .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  font-size: 26px;
  border-radius: 50%;
}
*/
@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .content {
    text-align: center;
  }
}

.header-2 .header-right .header-contact .info-items .content span {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 5px;
  font-weight: 500;
}

.header-2 .header-right .header-contact .info-items .content h6 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Tejoal';
  color: var(--black);
}

.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--black);
}

.header-middle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-right: 0;
  background: #1E2023;
  margin-bottom: -57px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .header-middle-wrapper {
    display: none;
  }
}

.header-middle-wrapper .left-shape {
  position: absolute;
  top: 1px;
  left: -23px;
}

.header-middle-wrapper .right-shape {
  position: absolute;
  top: 1px;
  right: -23px;
}

.header-middle-wrapper .header-middle-wrapper-info {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header-middle-wrapper .header-middle-wrapper-info .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  text-align: center;
  font-size: 30px;
}

@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .content {
    text-align: center;
  }
}

.header-middle-wrapper .header-middle-wrapper-info .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}

.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Tejoal';
  color: rgba(255, 255, 255, 0.69);
}

.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 a {
  color: rgba(255, 255, 255, 0.69);
}

.header-middle-wrapper .theme-btn {
  padding: 40px 50px;
}

.header-middle-wrapper .theme-btn::before,
.header-middle-wrapper .theme-btn::after {
  background-color: var(--white);
}

.header-middle-wrapper .theme-btn:hover {
  color: var(--header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(---box-shadow);
}

.sticky.header-2 .header-logo {
  display: none;
}

.sticky.header-2 .header-logo-2 {
  display: block;
}

.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--header);
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}

.sticky.header-2 .header-main .main-menu ul li:hover>a {
  color: var(--theme-color);
}

.sticky.header-2 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-color);
}

.sticky.header-2 .header-main .sidebar__toggle {
  color: var(--header);
}

.sticky.header-2 .header-right .header-contact .search-toggle {
  color: var(--header);
}

/*
.sticky.header-2 .header-right .header-contact .info-items .icon {
  background-color: var(--theme-color);
  color: var(--white);
}
*/
.sticky.header-2 .header-right .header-contact .info-items .content span {
  color: var(--header);
}

.sticky.header-2 .header-right .header-contact .info-items .content h6 {
  color: var(--header);
}

.sticky.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--header);
}

.sticky.header-2 .header-right .flag-wrap {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.sticky.header-2 .header-right .flag-wrap .nice-select span {
  font-weight: 400;
  color: var(--header);
}

.sticky.header-2 .header-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}

.sticky.header-2 .header-right .flag-wrap .nice-select .option {
  background-color: #fff;
}

.sticky.header-2 .header-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}

.sticky.header-2 .header-right .flag-wrap .nice-select::after {
  border-bottom: 1px solid transparent;
  border-color: var(--header);
  border-right: 1px solid var(--header);
}

.sticky.header-2 .header-right .flag-wrap .nice-select span {
  color: var(--header);
}

.sticky.header-2 .header-right .social-icon a {
  color: var(--header);
}

.sticky.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}

.header-section-5 {
  position: relative;
  z-index: 9999;
  margin-bottom: -68px;
}

@media (max-width: 1199px) {
  .header-section-5 {
    margin-bottom: 0;
    background-color: var(--theme-color-2);
  }
}

.header-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1E2023;
  z-index: -1;
  height: 59%;
}

@media (max-width: 1199px) {
  .header-section-5::before {
    display: none;
  }
}

.header-section-5 .header-logo-3 {
  padding-top: 25px;
}

@media (max-width: 1199px) {
  .header-section-5 .header-logo-3 {
    padding-top: 10px;
  }
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-color);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
  margin-bottom: 40px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}



.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}

.offcanvas__wrapper .offcanvas__content .theme-btn {
  width: 100%;
  padding: 24px 30px;
  text-align: center;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}


.breadcrumb-section {
  position: relative;
}

/*
.breadcrumb-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(4, 2, 0, 0.73);
}
*/

.page-heading {
  padding: 205px 0 145px;
  text-align: center;
  position: relative;
}

@media (max-width: 1199px) {
  .page-heading {
    padding: 180px 0 105px;
  }
}

.page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  list-style: none;
}

.page-heading .breadcrumb-list li {
  color: var(--white);
  font-weight: 400;
  position: relative;
}

.page-heading .breadcrumb-list li a {
  color: var(--white);
}

.page-heading .breadcrumb-list li:not(:last-child)::before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 30px;
    background-color: var(--white);
    top: 13px;
    right: 50px;
}

.page-heading h2 {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 575px) {
  .page-heading h2 {
    font-size: 34px;
  }
}

.error-wrapper .error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-wrapper .error-content {
  margin-left: 70px;
}

@media (max-width: 1199px) {
  .error-wrapper .error-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .error-wrapper .error-content {
    text-align: center;
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul .homemenu {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.mean-container .mean-nav ul li a.border-none {
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  float: right;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}


.about_us_page_introduction {
  padding: 70px 0;
}

.about_box1 {
  padding: 20px 20px;
  background: #f3f3f3;
  border-radius: 10px;
}

.about_box1 img {
  float: left;
  margin: 80px 20px 60px 0px;
  width: 30%;
}

.about_box1 h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #19539f;
}

.about_box1 p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.about_box2 {
  padding: 20px 20px;
  background: #f3f3f3;
  border-radius: 10px;
  margin-top: 30px;
}

.about_box2 .abo2_img {
  float: right;
  margin: 20px 0 10px 20px;
}

.about_box2 .abo2_img p {
  text-align: center;
  font-weight: 700;
  line-height: 22px;
  font-size: 18px;
}

.about_box2 .abo2_img p span {
  font-weight: 400;
}

.about_box2 h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #19539f;
}

.about_box2 p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.about_box2 a {
  color: #004898;
  font-weight: 800;
}

.venture_area {
  padding: 20px 0 80px;
}

.venture_box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}

.venture_box img {}

.venture_box p {
  position: absolute;
  bottom: 0;
  z-index: 99;
  width: 100%;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  padding: 115px 0 20px;
  background: linear-gradient(rgb(0 0 0 / 3%), #000);
  letter-spacing: 2px;
}


.privacy_box {
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  margin-bottom: 30px;
}

.privacy_box h2 {
  font-size: 20px;
  MARGIN: 15px 0 5px;
  color: #19539f;
}

.privacy_box h2 .count {
  background: #004898;
  display: inline-block;
  width: 25px;
  text-align: center;
  height: 25px;
  border-radius: 3px;
  color: #fff;
  padding: 1px 0;
  font-size: 14px;
  font-weight: 600;
}

.privacy_box p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.privacy_box ul {
  margin: 0 0 10px 20px;
  padding: 0;
  list-style: disc;
}

.privacy_box ul li {
  margin: 0;
  padding: 0;
  color: #000
}




.hero-1 {
  padding: 120px 80px 0;
  position: relative;
  z-index: 9;
  width: calc(100% - 130px);
}

@media (max-width: 1899px) {
  .hero-1 {
    padding: 120px 50px 0;
    width: initial;
  }
}

@media (max-width: 1399px) {
  .hero-1 {
    padding: 170px 40px 100px;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding: 200px 30px 0;
  }
}

.hero-1 .hero-text {
  letter-spacing: -4.8px;
  -webkit-text-stroke: 1px var(--theme-color);
  -webkit-text-fill-color: transparent;
  font-size: 160px;
  font-weight: 700;
  animation: shine 3s infinite;
  -webkit-mask-image: linear-gradient(-75deg, rgba(255, 255, 255, 0.25) 50%, #fff 50%, rgba(255, 255, 255, 0.25) 70%);
  -webkit-mask-size: 200%;
  position: absolute;
  line-height: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Tejoal';
  top: 20%;
}

.hero-1 .hero-arrow-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-1 .hero-arrow-shape img {
  width: 100%;
  height: 100%;
}

.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(23, 7, 1, 0.78);
  z-index: -1;
}

.hero-1 .hero-content {
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}

.hero-1 .hero-content h1 {
  color: var(--white);
  line-height: 97%;
}

@media (max-width: 1600px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 105px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 130%;
    font-size: 85px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}

.hero-1 .hero-content h1 span {
  font-size: 88px;
}

@media (max-width: 991px) {
  .hero-1 .hero-content h1 span {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 span {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 span {
    font-size: 48px;
  }
}

.hero-1 .hero-content .theme-btn {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .hero-1 .hero-content .theme-btn {
    margin-top: 30px;
  }
}

.hero-1 .hero-image {
  text-align: right;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    text-align: center;
  }
}

@media (max-width: 1600px) {
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.animation-infinite2 {
  animation: ShapeAnim2 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim2 {
  0% {
    background-position: top left;
  }

  100% {
    background-position: 2000px left bottom;
  }
}

.hero-main-section {
  position: relative;
  z-index: 9;
}

.hero-main-section .line-shape {
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.hero-main-section .line-2 {
  position: absolute;
  height: 100%;
  width: 69px;
  background-repeat: repeat;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  animation: ShapeAnim2 80s linear infinite;
}

.hero-main-section .hero-list-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: rotate(-90deg);
  position: absolute;
  top: 46%;
  right: -11%;
  z-index: 99;
}

@media (max-width: 1899px) {
  .hero-main-section .hero-list-contact {
    display: none;
  }
}

.hero-main-section .hero-list-contact li {
  font-size: 18px;
  color: #616161;
  font-weight: 700;
}

.hero-main-section .hero-list-contact li a {
  font-weight: 500;
  color: rgba(97, 97, 97, 0.85);
}

.hero-section-2 {
  position: relative;
  background: #edf6ff;
}

.hero-section-2 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

.hero-section-2 .array-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  right: 50px;
  z-index: 9;
  display: none;
}

@media (max-width: 1199px) {
  .hero-section-2 .array-buttons {
    display: none;
  }
}

.hero-section-2 .array-buttons .array-next,
.hero-section-2 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  background-color: transparent;
}

.hero-section-2 .array-buttons .array-next:hover,
.hero-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.hero-section-4 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

.hero-section-4 .array-buttons {
  display: grid;
  align-items: center;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  right: 50px;
  z-index: 99;
  gap: 15px;
}

@media (max-width: 1899px) {
  .hero-section-4 .array-buttons {
    display: none;
  }
}

.hero-section-4 .array-buttons .array-next,
.hero-section-4 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: var(--white);
  background-color: transparent;
}

.hero-section-4 .array-buttons .array-next:hover,
.hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.hero-section-4 .array-buttons .array-prev {
  background: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
}

.hero-section-4 .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.hero-section-4 .array-buttons .array-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-2 {
  padding: 180px 0 180px;
  position: relative;
}

.hero-2 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}

/*.hero-2 .hero-bg::before {position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 100%;height: 100%;content: ""; background:rgb(2 2 2 / 54%);}*/
.hero-2 .hero-content {
  position: relative;
  z-index: 99;
  max-width: 550px;
  text-align: left;
}

.hero-2 .hero-content h1 {
  font-size: 50px;
  color: #004898;
  font-weight: 900;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 42px;
  }
}

.hero-2 .hero-content p {
  font-size: 16px;
  color: var(--black);
  max-width: 600px;
  margin: 10px 0;
  line-height: 28px;
}

@media (max-width: 575px) {
  .hero-2 .hero-content p {
    font-size: 18px;
    margin-top: 25px;
  }
}

.hero-2 .hero-content .hero-button {
  /* display: flex; */
  /* align-items: center; */
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
  }
}

.hero-2 .hero-content .hero-button .theme-btn {
  border: 2px solid var(--theme-color);
}

.hero-2 .hero-content .hero-button .theme-btn:hover {
  border: 1px solid var(--header);
}

.hero-2 .hero-content .hero-button .theme-btn.style-2 {
  background: transparent;
  color: #014b95;
  border: 2px solid #014b95;
  border-width: 2px !important;
}

.hero-2 .hero-content .hero-button .theme-btn.style-2 i {
  background-color: var(--theme-color);
  color: var(--white);
}

.hero-2 .hero-content .hero-button .theme-btn.style-2:hover {
  border: 1px solid var(--theme-color);
  color: #fff;
}

.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::before,
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::after {
  background-color: var(--theme-color);
}

.hero-2 .bar-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

@media (max-width: 1399px) {
  .hero-2 .bar-shape {
    display: none;
  }
}

.hero-2 .bar-shape img {
  height: 100%;
}

.hero-3 {
  position: relative;
  padding: 430px 100px 130px;
}

@media (max-width: 1600px) {
  .hero-3 {
    padding: 200px 30px 100px;
  }
}

.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}

.hero-3 .hero-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

@media (max-width: 1600px) {
  .hero-3 .hero-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.hero-3 .hero-wrapper .left-content {
  position: relative;
}

.hero-3 .hero-wrapper .left-content h1 {
  color: var(--white);
  font-size: 96px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 85px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 75px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 42px;
  }
}

.hero-3 .hero-wrapper .right-content {
  position: relative;
}

.hero-3 .hero-wrapper .right-content p {
  color: var(--white);
}

.hero-3 .hero-wrapper .right-content .hero-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn {
    flex-wrap: wrap;
  }
}

.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text .title {
  margin-bottom: 5px;
  color: var(--white);
}

.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}

@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
    text-align: left;
  }
}

.hero-4 {
  position: relative;
}

.hero-4 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 1199px) {
  .hero-4 .left-shape {
    display: none;
  }
}

.hero-4 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 1199px) {
  .hero-4 .right-shape {
    display: none;
  }
}

.hero-4 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}

.hero-4 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}

.hero-4 .hero-content {
  position: relative;
  z-index: 99;
  padding: 210px 0 210px;
}

@media (max-width: 1199px) {
  .hero-4 .hero-content {
    padding: 190px 0 190px;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-content {
    padding: 160px 0 160px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content {
    padding: 130px 0 130px;
  }
}

.hero-4 .hero-content h1 {
  color: var(--white);
  font-size: 96px;
  letter-spacing: -1.92px;
  font-weight: 700;
  line-height: 120%;
}

@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 65px;
    line-height: 140%;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}

.hero-4 .hero-content h1 .client-info {
  display: inline-block;
  border-radius: 101px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(21.8999996185px);
  padding: 0 30px;
  line-height: 1;
}

@media (max-width: 575px) {
  .hero-4 .hero-content h1 .client-info {
    padding: 10px 20px;
  }
}

.hero-4 .hero-content h1 .client-info img {
  margin-top: -15px;
}

.hero-4 .hero-content h1 .text-stoke {
  font-family: 'Tejoal';
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--white);
}

.hero-4 .hero-content p {
  font-size: 20px;
  max-width: 620px;
  color: var(--white);
  padding-left: 20px;
  border-left: 5px solid var(--theme-color-2);
  margin-top: 40px;
}

@media (max-width: 575px) {
  .hero-4 .hero-content p {
    font-size: 18px;
    margin-top: 30px;
  }
}

.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 25px;
}

@media (max-width: 1199px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}

.hero-4 .hero-content .hero-button .theme-btn {
  border: 1px solid transparent;
}

.hero-4 .hero-content .hero-button .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  color: var(--white);
  background-color: transparent;
}

.hero-4 .hero-content .hero-button .theme-btn.style-2::before,
.hero-4 .hero-content .hero-button .theme-btn.style-2::after {
  background-color: var(--theme-color-2);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.hero-5 {
  position: relative;
}

.hero-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(205deg, rgba(4, 2, 0, 0) 15.95%, rgba(4, 2, 0, 0.82) 56.25%);
}

.hero-5 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .hero-5 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-5 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .hero-5 .container-fluid {

    padding: 0 30px;
  }
}

.hero-5 .hero-content {
  position: relative;
}

@media (max-width: 1199px) {
  .hero-5 .hero-content {
    padding-top: 120px;
    margin: 0 auto;
    text-align: center;

  }
}

.hero-5 .hero-content h1 {
  font-size: 96px;

  color: var(--white);
}

@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    font-size: 76px;
  }
}

@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .hero-5 .hero-content h1 {
    font-size: 48px;
  }
}

.hero-5 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}

@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .hero-5 .hero-content .hero-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

.hero-5 .hero-content .hero-button p {
  color: var(--white);
  font-weight: 600;
  max-width: 468px;
}

.hero-5 .hero-content .hero-box {
  position: absolute;
  bottom: -90%;
  padding: 30px 50px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}

@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-box {
    display: none;
  }
}

.hero-5 .hero-content .hero-box .icon {
  font-size: 89px;
  color: var(--theme-color-2);
}

.hero-5 .hero-content .hero-box .content h2 {
  color: var(--theme-color-2);
}

.hero-5 .hero-content .hero-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.hero-5 .hero-image {
  position: relative;
}

.hero-5 .hero-image img {
  width: 100%;
  height: 100%;
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .counter-wrapper {
    justify-content: center;
    text-align: center;
  }
}

.counter-wrapper .counter-items {
  max-width: 265px;
}

.counter-wrapper .counter-items h2 {
  font-size: 72px;
  font-weight: 700;
  font-family: 'Tejoal';
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .counter-wrapper .counter-items h2 {
    font-size: 50px;
  }
}

.counter-wrapper .counter-items p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 20px;
}

.counter-wrapper .counter-items h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Tejoal';
  margin-top: 20px;
}

.counter-wrapper .counter-items:hover h2 {
  color: var(--theme-color) !important;
  -webkit-text-stroke: initial !important;
}

.partner_area {
  padding: 40px 0 60px;
  background: #ddeafb;
}

.partner_area .creative_head {
  margin-bottom: 50px;
}

.partner-item {
  width: 150px;
  height: 66px;
}

.partner-item .partner-image {
  transition: .3s;
}

.partner-item .partner-image img {
  width: 100%;
  height: 100%;
  filter: grayscale(0);
  transition: .3s;
  cursor: pointer;
  will-change: transform;
  transform: perspective(300px) rotateX(0deg) rotateY(0deg);
}

.partner-item .partner-image:hover img {
  filter: grayscale(1);
  will-change: transform;
  transform: perspective(300px) rotateX(3.52deg) rotateY(-3.62deg) scale3d(1, 1, 1);
}

.serv_area {
  padding: 0px 0 70px;
}

.serv_text {
  padding: 80px 0 0;
}

.serv_text h5 {
  font-size: 15.65px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #121212;
  position: relative;
  margin-bottom: 5px;
}

.serv_text h2 {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.15;
  color: #004898;
  margin-bottom: 7px;
}

.serv_text p {
  color: #7e7e7e;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0;
}

.tech_icon {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}

.tech_icon_box {
  overflow: hidden;
  text-align: center;
  border: 1px solid;
  border-color: rgb(239, 239, 239);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 55px 20px;
  border-radius: 300px;
  width: 100%;
}

.tech_icon_box img {
  margin-bottom: 25px;
}

.tech_icon_box a {
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  color: #004898;
  transition: .3s;
}

.tech_icon_box a:hover {
  color: #004898;
}

.counter_area {
  display: flex;
  margin-top: 20px;
  margin-bottom: 30px
}

.counter-wrapper-2 .counter-item1 {
  align-items: center;
  margin-left: 30px;
}

.counter-wrapper-2 .counter-item1 h2 {
  color: #004898;
}


.digital_area {
  background: url("../img/bg-img.jpg") no-repeat;
  background-size: cover;
  padding: 70px 0;
}

.digital_cont {}

.digital_cont h5 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #121212;
  position: relative;
  margin-bottom: 5px;
}

.digital_cont h3 {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: capitalize;
  color: #004898;
  margin-bottom: 7px;
}

.digital_cont p {
  color: #7e7e7e;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0;
}

.abo_img {
  display: flex;
  gap: 20px;
}

.abo_img .up_img {
  margin-top: 118px;
}

.abo_img .lin_img {}

.digital_cont ul {
  padding: 0px;
  margin: 30px 0 50px;
  list-style: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px 0;
}

.digital_cont ul li {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 0;
}

.digital_cont ul li i {
  width: 50px;
  height: 50px;
  background: #FFF7F2;
  display: inline-flex;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #FFBD8D;
  flex: 0 0 auto;
  transition: 600ms ease;
}

.digital_cont ul li:nth-child(2) i {
  background-color: #FEF1F2;
  color: #F5818C;
}

.digital_cont ul li:nth-child(3) i {
  background-color: #EBFBFF;
  color: #07D3FC;
}

.digital_cont ul li:nth-child(4) i {
  background-color: #F0FBF7;
  color: #48D39B;
}

.digital_cont ul li:hover i {
  transform: rotate(360deg) scale(1.3);
}


.creative_sec {
  padding: 80px 0;
}

.creative_head {
  text-align: center;
}

.creative_head h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #444;
  padding-left: 16px;
  position: relative;
  margin-bottom: 5px;
}

.creative_head h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: capitalize;
  color: #004898;
  margin-bottom: 7px;
}



.testi_box {
  position: relative;
  border: 3px solid;
  border-color: rgb(1 75 149 / 49%);
  padding-left: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 50px;
  transition: 400ms ease-in-out;
}

.testi_box.first {}

.testi_box .number {
  font-size: 40px;
  display: inline-block;
  font-weight: 800;
  color: #fff;
  background: #004898;
  padding: 15px;
  border-radius: 10px;
  transition: 400ms ease-in-out;
}

.testi_box .title-wrap {
  flex: 0 0 auto;
  transition: 400ms ease-in-out;
  width: 30%;
}

.testi_box .subtitle {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  color: #54a3f1;
  transition: 800ms ease-in-out;
}

.testi_box .title {
  font-size: 35px;
  font-weight: 900;
  color: #272324;
}

.testi_box .title a {
  color: #004898;
  transition: 800ms ease-in-out;
}

.testi_box .bio {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  opacity: 0;
  transition: 100ms ease-in-out;
  transform: translateY(5px);
  background: #878787;
}

.testi_box .disc {
  transition: 400ms ease-in-out;
  transition-delay: 0.5s;
}

.chy-para-3 {
  color: #7e7e7e;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0;
}

.testi_box .main-img {
  position: absolute;
  right: 7vw;
  bottom: -40px;
  transform: scale(0.5) rotate(32deg);
  opacity: 0;
  transition: 600ms ease-in-out;
}

.testi_box .p3-btn {
  display: flex;
  width: 170px;
  height: 175px;
  border-left: 3px solid;
  border-color: rgb(1 75 149 / 49%);
  flex: 0 0 auto;
  text-align: center;
  justify-content: center;
  line-height: 190px;
  font-size: 55px;
  color: #004898;
  transition: 800ms ease-in-out;
  align-items: center;
}

.testi_box:hover {
  border-color: rgb(0 0 0 / 23%);
  box-shadow: 0px 3px 60px 0px rgba(32, 42, 181, 0.11);
}

.testi_box:hover .number {
  background-color: #878787;
  color: #fff;
}

.testi_box:hover .bio {
  opacity: 1;
  transform: translateY(0);
  transition: 800ms ease-in-out;
}

.testi_box:hover .disc {
  opacity: 0;
  transition-delay: 0s;
}

.testi_box:hover .main-img {
  bottom: 20px;
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.testi_box:hover .p3-btn {
  height: 266px;
  line-height: 280px;
  color: #878787;
  border-left-color: transparent;
}

.testi_box:hover .title-wrap {
  transform: translateY(0px);
}

.testi_box:hover .title a {
  color: #000;
}

.testi_box:hover .subtitle {
  color: #878787;
}

.rel {
  position: relative;
}

.pop_btn {
  margin: 0px 0 22px;
}

.creative_sec .modal.show .modal-dialog {
  max-width: 90%;
}

.modal.show .modal-dialog a {
  padding: 10px 10px;
  display: block;
}

.modal.show .modal-dialog a:hover {
  background: #004898;
}

.modal.show .modal-dialog a:hover .menu_icon {
  background: #fff;
}

.modal.show .modal-dialog a:hover .text h5,
.modal.show .modal-dialog a:hover .text p {
  color: #fff;
}


.benefit_area {
  margin: 70px 0 40px 0;
}

.benefit_area h3 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #004898;
  margin-bottom: 20px;
}

.benefit_icons {
  display: flex;
  flex-wrap: wrap;
}

.benefit_box {
  font-size: 16px;
  color: #3e3e3e;
  font-weight: 600;
  display: flex;
  width: 33%;
  line-height: 22px;
  gap: 8px;
  margin-bottom: 15px;
  align-items: center;
}

.tech-item {
  margin: 0 auto;
  text-align: center;
}

.agency_sec {
  display: flex;
  justify-content: center;
  gap: 30px;
}


.service-section-4 {
  background: #ddeafa;
  padding: 50px 0 70px;
}

.service-box-item {
  background: #FFF;
  margin: 0px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
    height: 170px;

}

.service-image {
  padding: 30px;
}

.service-box-item .service-image img {
  width: 100%;
  object-fit: cover;
}

.project-section-5 .right-shape {
  position: absolute;
  right: 0;
  top: -210px;
}

.service-box-item .content-wrap {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 1;
  transition: 600ms cubic-bezier(0.55, 0.06, 0.26, 0.71);
}

.service-box-item .subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

.service-box-item p {
  color: #fff;
  line-height: 20px;
}

.service-box-item .title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
}

.title a {
  color: #fff;
}

.service-box-item .p3-btn {
  font-size: 30px;
  line-height: 1;
  color: #FFF;
}

.service-box-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--theme-color);
  transition: .6s;
  opacity: 0;
}

.service-box-item:hover::after {
  opacity: 0.9;
}

.service-box-item:hover .content-wrap {
  bottom: 0px;
}



.service_area {
  padding: 80px 0 0;
}

.tech_box {
  border-radius: 10px;
  padding: 35px 40px;
  margin-top: 30px;
  box-shadow: 0 0 23px #ebebeb;
}

.tech_box h3 {
  color: #004898;
  font-size: 26px;
  font-weight: 700;
  margin-top: 15px;
}

.tech_box p {
  color: #000;
  height: 60px;
  overflow: hidden;
}

/*
.bg_one{background:#dee2f1 !important;}
.bg_two{background:#cbd2eb !important;}
.serv_box{width: 33%;background:#EFF2FF;padding:85px 100px;padding-bottom:35px;transition:0.5s ease-in-out;}
.serv_box .list-unstyled {padding: 0px;margin: 0px;list-style: none;min-height:10px;}
.serv_box .main-img{width:100%;height: 145px;overflow:hidden;border-radius:300px;margin-bottom:23px;}
.elementor img {border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%;}
.serv_box .title{font-size:38px;font-weight:800;color: #004898;line-height:1.56;margin-bottom:13px;padding-left:25px;}
.serv_box .disc {font-size: 18.66px;color:#262524;line-height:28px;margin-bottom:13px;padding-left:25px;}
.serv_box-list li:not(:last-child){margin-bottom: 9px;}
.serv_box-list li{font-weight: 800;color: #262524;text-transform: capitalize;transition: 0.4s ease-in-out;}
.serv_box .s4-btn{width:60px;height:60px;background: #004898;border-radius:50%;display:flex;justify-content:center;align-items:center;font-size:22px;color: #fff;margin:20px 0 0 025px;transition:0.4s ease-in-out;}
.serv_box-list li i{font-size:22px;color: #004898;margin:0 10px 0 30px;transition: 0.4s ease-in-out;}

.serv_box:hover{background:var(--theme-color) !important;}
.serv_box:hover .title, .serv_box:hover .disc, .serv_box:hover .serv_box-list li, .serv_box:hover .serv_box-list li i{color: #fff;}
*/

.project-slider-2 .swiper-wrapper {
  height: 590px;
}

.project-slider-3 .swiper-wrapper {
  height: 590px;
}

.project-slider-4 .swiper-wrapper {
  height: 590px;
}

.sliders {
  display: flex;
}

.news-section {
  padding: 0 0 80px;
}

.news_box {
  margin-top: 50px;
  transition: .3s;
}

.news_img {
  position: relative;
}

.news_img img {
  transition: .3s;
}

.date {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  width: 82px;
  height: 82px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  color: #262524;
  border: 3px solid #fff;
  position: absolute;
  left: 30px;
  top: -20px;
  padding: 0 10px;
  z-index: 1;
}

.date p {
  color: #fff;
}

.coment_box {
  background: var(--theme-color);
  flex-wrap: wrap;
  align-items: center;
  border-radius: 30px;
  border: 3px solid #fff;
  gap: 25px;
  font-size: 16px;
  font-weight: 800;
  text-transform: capitalize;
  padding: 11px 17px;
  transform: translateY(-22px);
  display: flex;
  width: 70%;
  margin-top: -25px;
}

.coment_box span {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.coment_box span i {
  margin-right: 10px;
}

.news_cont {
  padding: 20px;
  background: #004897;
  border-radius: 0 0 10px 10px;
}

.news_cont a {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.29;
  margin-bottom: 5px;
  transition: 300ms ease-in-out;
  height: 50px;
  overflow: hidden;
  display: block;
}

.news_cont p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
  letter-spacing: 0.1px;
}

.more_text {
  font-size: 20px;
  color: #262524;
  font-weight: 500;
  text-align: center;
  margin-top: 70px;
}

.more_text a {
  font-weight: 700;
  color: #004898;
}

.news_cont a:hover {
  color: #000;
}

.news_box:hover .news_img img {
  opacity: .8;
}



@media (max-width: 1199px) {
  .project-section-5 .right-shape {
    display: none;
  }
}

.main-sidebar .single-sideber-widget .contact-bg-image {
  position: relative;
  height: 553px;
}

.main-sidebar .single-sideber-widget .contact-bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.87) 72.69%);
}

.main-sidebar .single-sideber-widget .contact-bg-image .contact-content {
  position: absolute;
  bottom: 40px;
  top: initial;
  left: 20px;
  right: 20px;
  text-align: center;
}

.main-sidebar .single-sideber-widget .contact-bg-image .contact-content h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.main-sidebar .single-sideber-widget .contact-bg-image .contact-content p {
  color: var(--white);
  margin-bottom: 20px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-color);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background: var(--theme-color);
  opacity: 1;
  border-radius: 7px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  content: "";
}

.swiper-dot3 {
  text-align: center;
}

.swiper-dot3 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--header);
  border: 1px solid var(--text);
  border-radius: 0;
  opacity: 1;
  position: relative;
}

.swiper-dot3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 0;
}

.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-color);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.array-button {
  display: flex;
  align-items: center;
  gap: 18px;
}

.array-button .array-prev,
.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.array-button .array-prev:hover,
.array-button .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.array-button.style-2 .array-prev {
  border: 1px solid var(--border);
}

.array-button.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}

.array-button.style-2 .array-next:hover {
  background-color: var(--header);
}

/*
@media (max-width: 575px) {
  br {
    display: none;
  }
}
*/

/* background */

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

.custom-container {
  max-width: 1560px;
  margin: 0 auto;
}

.custom-container-33 {
  max-width: 1319px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1568px;
  margin: 0 auto;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.footer-info-container {
  max-width: 1436px;
}

@media (max-width: 991px) {
  .lg-center {
    justify-content: center;
    text-align: center;
  }
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background-color: rgb(129, 129, 129);
  opacity: 1;
  border-radius: 100%;
  position: relative;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 30px;
  border-radius: 30px;
}

.custom-container-3 {
  max-width: 1768px;
  margin: 0 auto;
}



.array-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.array-buttons .array-prev,
.array-buttons .array-next {
  width: 55px;
  height: 55px;
  height: 55px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.array-buttons .array-prev:hover,
.array-buttons .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.array-buttons.style-2 .array-prev {
  border: 1px solid var(--border);
}

.array-buttons.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}

.array-buttons.style-2 .array-next:hover {
  background-color: var(--header);
}

.array-buttons.news-buttons .array-prev {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background-color: transparent;
  color: var(--theme-color-2);
}

.array-buttons.news-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}

.array-buttons.news-buttons .array-next {
  background-color: var(--header);
  color: var(--white);
}

.array-buttons.news-buttons .array-next:hover {
  background-color: var(--theme-color-2);
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 54px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  font-weight: 600;
  border-radius: 100px;

  border: 1px solid var(--header);
  background: transparent;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}

.faq-wrapper .faq-image {
  max-width: 570px;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-image {
    max-width: 800px;
  }
}

.faq-wrapper .faq-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 43%, 100% 100%, 68% 100%, 0 99%, 0 77%, 0 12%, 14% 0);
}

.faq-wrapper .faq-content .section-title {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .faq-wrapper .faq-content .section-title {
    text-align: left;
  }
}

.faq-wrapper .faq-content .faq-items {
  position: relative;
  z-index: 9;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(30, 32, 35, 0.12);
}

.power_bi_faqs {
  text-align: right !important;

}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 29px 30px;
  font-family: 'Tejoal';
  color: var(--header);
  cursor: pointer;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
  padding-top: 0;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: 29px;
  right: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme-color);
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f067";
}

.faq-wrapper.style-faq-page {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .faq-wrapper.style-faq-page {
    margin-top: 30px;
  }

}

.faq-section {
  position: relative;
  z-index: 9;
}

.faq-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.faq-section .dot-shape {
  position: absolute;
  top: 108px;
  left: 268px;
  z-index: -1;
}

.counter-section-2 {
  background: url("../img/bg-img.jpg") no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.count_text h3 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
}

.count_text p {
  color: #7e7e7e;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0;
}

.counter-wrapper-2 .item {
  position: relative;
}

.counter-wrapper-2 .icon {
  animation: chyt3ani 10s infinite ease;
  display: block;
  line-height: 1;
}

@keyframes chyt3ani {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .counter-wrapper-2 {
    justify-content: center;
  }
}

.counter-wrapper-2 .counter-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 767px) {
  .counter-wrapper-2 .counter-item {
    display: grid;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
}

.counter-wrapper-2 .counter-item h2 {
  color: var(--theme-color);
  font-size: 78px;
  line-height: 65px;
}

.counter-wrapper-2 .counter-item h5 {
  font-size: 16px;
  font-weight: 600;
}

.counter-box-item {
  position: relative;
  padding: 60px 0;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
  z-index: 9;
}

.counter-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/hover-bg.jpg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.counter-box-item .icon {
  font-size: 62px;
  color: var(--theme-color-2);
  margin-bottom: 10px;
}

.counter-box-item .icon i {
  display: block;
}

.counter-box-item .content h2 {
  font-family: 'Tejoal';
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color-2);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .counter-box-item .content h2 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .counter-box-item .content h2 {
    font-size: 42px;
  }
}

.counter-box-item .content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}

.counter-box-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.counter-box-item:hover::before {
  opacity: 1;
  visibility: visible;
}

.counter-box-item:hover .content h2 {
  color: var(--theme-color-2) !important;
  -webkit-text-stroke: initial !important;
}

.counter-box-item:hover .content p {
  color: var(--white);
}

.counter-section-5 {
  position: relative;
}

.counter-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(86, 109, 251, 0.1);
  top: 77%;
}


.quality_area {
  padding: 100px 0;
}

.quality_sec {
  display: flex;
  margin-bottom: 60px;
}

.quality_img {
  width: 50%;
  padding-right: 50px;
}

.quality_cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  width: 50%;
}

.quality_cont h2 {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: capitalize;
  color: #004898;
  margin-bottom: 7px;
}

.quality_cont p {
  color: #7e7e7e;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 30px;
}

.online_sec {
  display: flex;
  margin-top: 70px;
}

.online_sec .quality_img {
  width: 50%;
  padding-right: 0px;
  padding-left: 50px;
}


.price_aera {
  background: url("../img/bg-img.jpg") no-repeat;
  background-size: cover;
  padding: 60px 0;
}


.nav-pills .nav-item {
  position: relative;
}

.nav-pills .nav-item .nav-link {
  position: relative;
  font-size: 17px;
  line-height: 37px;
  color: #151f35;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.nav-pills .nav-item .nav-link:is(.active) {
  color: var(--theme-color);
  border: none;
}

.nav-pills .nav-item .nav-link:is(.active)::after {
  width: 100%;
}

.nav-pills .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  border-radius: 2px;
  background-color: var(--theme-color);
  bottom: -2px;
  left: 0;
  transition: 400ms ease;
}

.nav-pills .nav-item:not(:last-child) {
  margin-right: 55px;
}

.nav-pills .nav-item:not(:last-child)::after {
  content: "/";
  color: #151f35;
  position: absolute;
  font-size: 24px;
  font-weight: 900;
  top: -2px;
  right: -30px;
}

.price_box {
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  padding-bottom: 33px;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
  margin-top: 30px;
  text-align: center;
}

.chy-price-3-item .header {
  text-align: center;
  margin-bottom: 20px;
}

.right {
  align-items: center;
}

.chy-price-3-item .left {
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  align-items: center;
  align-content: center;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
  margin-top: 10px;
  background: #f5f5f5;
}

.chy-price-3-item .price {
  font-size: 18px;
  font-weight: 800;
  color: #004898;
  line-height: 16px;
}

.chy-price-3-item .monthly {
  display: block;
  font-size: 13px;
  color: #484848;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
  line-height: 14px;
  margin-top: 8px;
}

.chy-price-3-item .title {
  font-size: 34px;
  font-weight: 900;
  color: #004898;
  margin-bottom: 2px;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
  line-height: 36px;
}

.chy-price-3-item .disc {
  font-size: 16px;
  text-transform: capitalize;
  color: #004898;
}

.list-unstyled {
  padding: 0px;
  margin: 0px;
  list-style: none;
  min-height: 270px;
  text-align: left;
}

.chy-price-3-item-list li:not(:last-child) {
  margin-bottom: 0px;
}

.chy-price-3-item-list li {
  font-size: 16px;
  font-weight: 600;
  color: #151f35;
  text-transform: capitalize;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
}

.chy-price-3-item-list li i {
  font-size: 17px;
  margin-right: 5px;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
  color: #004898;
}

.chy-price-3-item .tax {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a1717;
  text-transform: capitalize;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
}

.price_box .get_btn {
  margin: 30px 0 0;
}

.price_box:hover {
  background: var(--theme-color);
}

.price_box:hover .chy-price-3-item .left,
.price_box:hover .get_btn {
  background: #fff;
}

.price_box:hover .chy-price-3-item .price,
.price_box:hover .chy-price-3-item .monthly,
.price_box:hover .get_btn {
  color: var(--theme-color);
}

.price_box:hover .chy-price-3-item .title,
.price_box:hover .chy-price-3-item .disc,
.price_box:hover .chy-price-3-item-list li,
.price_box:hover .chy-price-3-item .tax {
  color: #fff;
}

.price_box:hover .chy-price-3-item-list li i {
  color: #fff;
}

.t_text_12 {
  height: 150px;
  overflow: hidden;
  display: block;
}

.rm_link2 {
  background: url(../img/rm.png) no-repeat;
  width: 100px;
  height: 13px;
  display: inline-block;
  margin: 10px 0 0 2px;
  text-decoration: none !important;
}

.t_text_1_auto {
  height: auto;
}

.rm_link_x2 {
  background: url(../img/rl.png) no-repeat;
}


.testimonial-box-items {
  margin-top: 30px;
  padding: 0 70px;
  position: relative;
  z-index: 9;
  text-align: center;
  clip-path: polygon(0 0, 84% 0, 100% 22%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}

.testimonial-box-items .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme-color);
  margin: 0 auto 30px;
}

.testimonial-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  top: 45px;
  height: initial;
  bottom: 28px;
}

.testimonial-box-items h4 {
  margin-bottom: 10px;
}

.testimonial-box-items .client-info {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding-top: 30px;
}

.testimonial-box-items .client-info h5 {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-box-items .client-info .client-img {
  margin-top: 20px;
}

.testimonial-section {
  position: relative;
  z-index: 9;
  margin: 0 100px;
}

@media (max-width: 1600px) {
  .testimonial-section {
    margin: 0;
  }
}

.testimonial-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: rgba(30, 32, 35, 0.96);
}

.testimonial-section .line-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.testimonial-section .line-shape img {
  width: 100%;
  height: 100%;
}

.testimonial-section .circle-shape {
  position: absolute;
  right: 0;
  top: 0;
}

.testimonial-section .dot-shape {
  position: absolute;
  top: 160px;
  right: 160px;
}

.testimonial-section .array-buttons {
  position: initial;
}

@media (max-width: 1199px) {
  .testimonial-section .array-buttons {

    display: none;
  }
}

.testimonial-section .array-buttons .array-prev {
  position: absolute;
  bottom: 36%;
  left: 7%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.testimonial-section .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.testimonial-section .array-buttons .array-next {
  position: absolute;
  bottom: 36%;
  right: 7%;
  background-color: var(--theme-color);
  color: var(--white);
}

.testimonial-section .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

.testimonial-box-item-2 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #fdfdfd;
  padding: 50px 50px 15px 108px;
  position: relative;
  margin-left: 30px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .testimonial-box-item-2 {
    margin-left: 0;
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .testimonial-box-item-2 {
    text-align: center;
    padding: 30px;
  }
}

.testimonial-box-item-2 .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  left: -20px;
  top: 10px;
}

@media (max-width: 1199px) {
  .testimonial-box-item-2 .icon {
    position: static;
  }
}

@media (max-width: 767px) {
  .testimonial-box-item-2 .icon {
    margin: 0 auto 25px;
  }
}

.testimonial-box-item-2 .test-content .star {
  color: var(--theme-color);
  margin-bottom: 5px;
}

.testimonial-box-item-2 .test-content h5 {
  margin-bottom: 10px;
}

.testimonial-box-item-2 .test-content p {
  padding-bottom: 25px;
  margin-bottom: 20px;
  text-align: right;
}

.testimonial-box-item-2 .test-content .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item {
    display: grid;
    gap: 20px;
    justify-content: center;
  }
}

.testimonial-box-item-2 .test-content .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item .client-info {
    display: grid;
  }
}

.testimonial-section-2 {
  position: relative;
}

.testimonial-section-2 .array-buttons {
  position: initial;
}

@media (max-width: 1199px) {
  .testimonial-section-2 .array-buttons {
    display: none;
  }
}

.testimonial-section-2 .array-buttons .array-prev {
  position: absolute;
  bottom: 34%;
  left: 13%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.testimonial-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.testimonial-section-2 .array-buttons .array-next {
  position: absolute;
  bottom: 34%;
  right: 12%;
  background-color: var(--theme-color);
  color: var(--white);
}

.testimonial-section-2 .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

@media (max-width: 991px) {
  .testimonial-section-2 .section-title-area {
    text-align: left;
  }
}

.testimonial-section-2 .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-section-2 .section-title-area .client-info .text .title {
  margin-bottom: 5px;
}

.testimonial-section-2 .section-title-area .client-info .text h6 {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-bg-section {
  position: relative;
}

.testimonial-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}

.testimonial-bg-section::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 84%;
}

.testimonial-wrapper {
  position: relative;
  margin-right: -44%;
}

@media (max-width: 767px) {
  .testimonial-wrapper {
    margin-right: 0;
  }
}

.testimonial-wrapper .array-buttons {
  position: relative;
}

@media (max-width: 991px) {
  .testimonial-wrapper .array-buttons {
    display: none;
  }
}

.testimonial-wrapper .array-buttons .array-prev {
  color: var(--theme-color-2);
}

.testimonial-wrapper .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.testimonial-wrapper .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.testimonial-wrapper .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme-color-2);
}

.testimonial-wrapper-2 {
  margin-top: 60px;
}

.testimonial-wrapper-2 .testimonial-item {
  max-width: 569px;
}

.testimonial-wrapper-2 .testimonial-item .image-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 470px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 100px;
    height: 100px;
  }
}

.testimonial-wrapper-2 .testimonial-item .testimonial-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-item .testimonial-button {
    display: none;
  }
}

.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev {
  color: var(--theme-color-2);
}

.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-content .star {
  color: var(--theme-color-2);
  margin-bottom: 15px;
}

.testimonial-wrapper-2 .testimonial-content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: 'Tejoal';
}

.testimonial-wrapper-2 .testimonial-content .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-wrapper-2 .testimonial-content .info-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.search_widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}

.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
  overflow: hidden;
}

.popular-posts .single-post-item:not(:last-child),
.popular_posts .single-post-item:not(:last-child) {
  margin-bottom: 35px;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
  overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;

  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme-color);

}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}

.widget_categories ul li:last-child a {
  margin-bottom: 0;
}

.widget_categories ul li a {
  position: relative;
  background: var(--white);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
  color: var(--theme-color);
}

.widget_categories ul li a i {
  margin-right: 10px;
}

.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.tagcloud a:last-child {
  margin-right: 0;
}

.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme-color);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}

.social-share a:hover {
  color: var(--theme-color);
}

.tag-share-wrap {
  padding-bottom: 50px;
}

.tag-share-wrap h4 {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
  font-size: 26px;
}

@media (max-width: 767px) {

  .comments-heading h3,
  .related-post-wrap h3,
  .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
  font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}

@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}

.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 10px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--text);
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 10px;
  margin-left: 0px !important;
  transition: all 0.4s ease-in-out;
  width: initial;
  height: initial;
  line-height: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before,
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
  transform: translate(0);
  width: initial;
  height: initial;
  line-height: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}

.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--theme-color);
  font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}

@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}

.comment-form label {
  margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text);
  background-color: var(--bg);
}

@media (max-width: 585px) {

  .comment-form input,
  .comment-form textarea {
    padding: 15px;
  }
}

.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}

@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}

.comment-form .theme-btn {
  display: inline-block;

  line-height: 1.2;
  padding: 24px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}

@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}

.comment-form .theme-btn i {
  margin-right: 10px;
  width: initial;
  height: initial;
  line-height: initial;
  background-color: transparent;
  color: var(--white);
  margin-left: 0;
  margin-right: 10px;
}

.comment-form .theme-btn:hover i {
  transform: translate(0);
}

.comment ul {
  list-style-type: disc;
}

.comment ul ol {
  margin-bottom: 0;
}

.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}

.comment ol ul {
  margin-bottom: 0;
}

.comment ol ol {
  margin-bottom: 0;
}

.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme-color);
}

.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme-color);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme-color);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme-color);
}

.site_info_widget .social-link {
  margin-top: 35px;
}

.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.contact-section {
  position: relative;
  z-index: 9;
}

.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.96);
  z-index: -1;
}

.contact-wrapper {
  padding-bottom: 200px;
}

.contact-wrapper .contact-text {
  margin-top: 35px;
  color: var(--white);
}

.contact-wrapper .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-items {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.contact-wrapper .contact-items .icon {
  width: 60px;
  height: 60px;
  line-height: 72px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 25px;
}

.contact-wrapper .contact-items .content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.contact-wrapper .contact-items .content p {
  color: var(--white);
}

.contact-wrapper .contact-items .content p a {
  color: var(--white);
}

.contact-wrapper .contact-form-items {
  background-color: var(--theme-color);
  padding: 35px;
}

.contact-wrapper .contact-form-items h3 {
  color: var(--white);
}

.contact-wrapper .contact-form-items .contact-form {
  margin-top: 30px;
}

.contact-wrapper .contact-form-items .contact-form .form-clt input,
.contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
}

.contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  padding-bottom: 245px;
}

@media (max-width: 767px) {
  .contact-wrapper .section-title {
    text-align: left;
  }
}

.contact-wrapper-3 .man-image {
  margin-bottom: -140px;
  text-align: center;
  max-width: 460px;
}

@media (max-width: 1199px) {
  .contact-wrapper-3 .man-image {
    margin-bottom: 0;
  }
}

.contact-wrapper-3 .man-image img {
  width: 100%;
  height: 100%;
}

.contact-wrapper-3 .contact-form-items {
  padding: 35px;
  background-color: var(--theme-color);
}

.contact-wrapper-3 .contact-form-items .section-title span {
  color: var(--white);
}

.contact-wrapper-3 .contact-form-items .section-title span::before {
  background-color: var(--white);
}

.contact-wrapper-3 .contact-form-items .section-title h2 {
  color: var(--white);
}

@media (max-width: 767px) {
  .contact-wrapper-3 .contact-form {
    margin-top: 30px;
  }

}

.contact-wrapper-3 .contact-form .form-clt input,
.contact-wrapper-3 .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
  text-transform: capitalize;
}

.contact-wrapper-3 .contact-form .form-clt textarea {
  padding-bottom: 145px;
}

@media (max-width: 767px) {
  .contact-wrapper-2 .contact-left-item .section-title {
    text-align: left;
  }
}

.contact-wrapper-2 .contact-left-item .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact_dtl {
  background: url("../img/map.jpg") no-repeat;
  background-size: cover;
}

.contact_dtl .container-fluid {
  padding: 0 100px;
}

/*.contact-wrapper-2 .contact-left-item{padding:68px 90px 220px;}*/
.contact-wrapper-2 .contact-left-item h2 {
  font-size: 50px;
  color: #004898;
}

.contact-wrapper-2 .contact-left-item h4 {
  margin-top: 30px;
  color: #004898;
}

.contact-wrapper-2 .contact-left-item p {
  font-weight: 500;
  line-height: 27px;
  font-size: 18px;
}

.location {}

.location a {
  display: block;
  width: 240px;
  font-size: 16px;
  line-height: 23px;
}

.location a i {
  background: #004898;
  padding: 13px 0;
  height: 45px;
  width: 45px;
  display: inline-block;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  margin: 6px 12px 0 0;
  float: left;
}

.location a strong {
  font-size: 24px;
  color: #004898;
  margin-top: 6px;
  display: inline-block;
}

.location a span {}

@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-left-item .contact-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contact-icon {
  width: 60px;
  height: 60px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 32px;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content span {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  font-family: 'Tejoal';
  display: inline-block;
  margin-bottom: 5px;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 {
  font-weight: 400;
  color: #555;
}

.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 a {
  color: #555;
}

.contact-wrapper-2 .contact-content {
  padding: 30px 50px 55px;
  background-color: var(--theme-color);
  border-radius: 50px;
  /* margin-left: 50px; */
}

.contact-wrapper-2 .contact-content button {
  outline: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-content {
    margin-left: 0;
  }
}

.contact-wrapper-2 .contact-content {
  color: var(--white);
}

.contact-wrapper-2 .contact-content h3 {
  color: var(--white);
  font-size: 50px;
  line-height: 55px;
  margin-bottom: 35px;
}

.contact-wrapper-2 .contact-content h4 {
  color: #fff;
  margin: 50px 0 10px;
  font-weight: 600;
}

.contact-wrapper-2 .contact-content .form-check {
  margin-bottom: 8px;
}

.contact-wrapper-2 .contact-content .form-check-input {
  margin-top: 7px;
}

.contact-wrapper-2 .contact-content .mail {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}

.contact-wrapper-2 .contact-content .next_btn {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  border: 2px solid #fff;
  display: inline-block;
  padding: 3px 35px;
  border-radius: 30px;
  margin-top: 25px;
  font-weight: 700;
}

.contact-wrapper-2 .contact-content .next_btn:hover {
  background: #fff;
  color: #004898;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt {
  position: relative;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  color: #555;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 15px;
  border-radius: 30px;
}

@media (max-width: 767px) {

  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {

  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;

  }
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: #555;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 30px;
  resize: none;
}

.submit_btn {
  background: #000;
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 50px;
  border-radius: 35px;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
}

.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 15px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 10px 20px;
  display: block;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  line-height: 40px;
  color: #000;
  border-radius: 30px;
  font-weight: 300;
  border-radius: 30px;
}

/*
.file-upload-wrapper:before {content: "Upload";position: absolute;top: 0;right: 0;display: inline-block;height: 60px;background: #4daf7c;color: #fff;font-weight: 700;z-index: 25;font-size: 16px;line-height: 60px;padding: 0 15px;text-transform: uppercase;
pointer-events: none;border-radius: 0 5px 5px 0;}
.file-upload-wrapper:hover:before {background: #3d8c63;}
*/
.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}

.sprucecss {
  align-items: flex-start;
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05);
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  inset: auto auto 1rem 1rem;
  line-height: 1.5;
  max-width: 11rem;
  padding: 1.5rem;
  position: fixed;
  text-decoration: none;
}

.sprucecss img {
  height: 1.5rem;
  width: auto;
}


.map-items .googpemap iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 300px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border-radius: 5px;
  border: solid 1px #3f3877;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 18px;
  font-weight: normal;
  outline: none;
  padding: 14px 35px 14px 15px;
  position: relative;
  text-align: left !important;
}

.contact-section-21 {
  padding: 80px 0;
}

.footer-widget-wrapper {
  padding: 40px 0;
}

.footer_bottom {
  display: flex;
  border-top: 1px solid #343434;
  padding: 15px 0;
  justify-content: space-between;
}

.copyright {
  color: #979797;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.copyright li {
  margin: 0 15px 0 0;
  padding: 0;
  display: inline-block;
  position: relative;
}

.copyright li::after {
  content: '|';
  position: absolute;
  color: #979797;
  z-index: 99;
  right: -10px;
}

.copyright li:last-child::after {
  content: '';
}

.copyright li a {
  color: #979797;
}

.copyright li a:hover {
  color: #fff;
}

.copyright strong a:hover{
text-decoration: underline !important;
}


.social-icon {}

.social-icon a {
  color: #fff;
  font-size: 14px;
  margin-left: 15px;
  transition: .3s;
}

.social-icon a:hover {
  color: #979797;
}

.footer-section {
  background: #222;
}



@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}

.widget-head.logo,
.footer-content {
  text-align: right;
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 20px;
  font-weight: 800;
}

.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 400;
}

/*
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
*/
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--text);
  position: relative;
}

/*
.footer-widget-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--white);
}
*/
.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget .footer-contact li a {
  color: var(--text);
}

.footer-widget-wrapper .single-footer-widget .footer-contact li span {
  display: block;
}

.footer-widget-wrapper .single-footer-widget .footer-contact li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .social-list {
  margin-top: 20px;
}

.footer-widget-wrapper .single-footer-widget .social-list h4 {
  font-size: 20px;
  font-weight: 800;
}

.footer-widget-wrapper .single-footer-widget .social-list .social-icon {
  gap: 20px;
  font-size: 24px;
  color: var(--header);
  margin-top: 20px;
}

.footer-widget-wrapper .single-footer-widget .social-list .social-icon a:hover {
  color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a::before {
  background-color: var(--theme-color-2) !important;
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a:hover {
  color: var(--theme-color-2) !important;
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn {
  background-color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn i {
  color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn:hover i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a:hover {
  color: var(--theme-color-2) !important;
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li:not(:last-child) {
  margin-bottom: 30px;
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .icon {
  width: 50px;
  height: 50px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 25px;
  color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content span {
  color: #fff;
  font-weight: 500;
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget.theme-color-2 .contact-list-2 li .icon {
  color: var(--theme-color);
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget {
  margin-top: 30px;
}

.single-footer-widget .list-area {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .widget-head h3 {
  color: var(--white);
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li {
  position: relative;
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a {
  color: var(--white);
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a:hover {
  color: #ccc;
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content p {
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon {
  gap: 20px;
  font-size: 20px;
  margin-top: 10px;
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a {
  color: var(--white);
  font-size: 14px;
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: #ccc;
}

.footer-info-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-info-area.style-new {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-content .info-items {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 20px;
  text-align: left;
}

@media (max-width: 991px) {
  .footer-content .info-items {
    height: initial;
    padding-right: 0;
    border-right: none;
  }
}

@media (max-width: 575px) {
  .footer-content .info-items {
    display: flex;
    justify-content: start;
    text-align: left;
    gap: 0;
  }
}

.footer-content .info-items.border-none {
  border-right: none;
  padding-right: 0;
}

.footer-content .info-items .icon {
  line-height: 32px;
  text-align: center;
  color: var(--white);
  font-size: 18px;
}

@media (max-width: 575px) {
  .footer-content .info-items .icon {
    margin: 0 15px 15px 0;
    text-align: center;
  }

  .footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 0px;
  }

  .ft_logo h3 {
    display: none;
  }

  .widget-head.logo,
  .footer-content {
    text-align: left;
  }

  .footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon {
    justify-content: flex-start !important;
  }
}

@media (max-width: 575px) {
  .footer-content .info-items .content {
    text-align: center;
  }
}

.footer-content .info-items .content h5 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 0px;
}

.footer-content .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Tejoal';
  color: var(--white);
}

.footer-content .info-items .content h6 a {
  color: var(--white);
}

@media (max-width: 575px) {
  .footer-content .info-items .content {
    text-align: center;
  }
}

.footer-content .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Tejoal';
  color: var(--white);
}

.footer-content .info-items .content h6 a {
  color: var(--white);
}

.footer-section {
  position: relative;
}

.footer-section .frame-shape {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 70px;
}

@media (max-width: 1399px) {
  .footer-section .frame-shape {
    display: none;
  }
}


.tax_img {
  border: 1px solid #d9d9d9;
  padding: 7px;
  margin-bottom: 25px;
}

@media all and (max-width:991px) {
  .testi_box {
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .testi_box .bio {
    opacity: 1;
    padding: 5px 20px;
  }

  .chy-para-3 {
    margin-top: 20px;
  }

  .testi_box .main-img {
    position: unset;
    opacity: 1;
    transform: scale(1) rotate(0);
    width: 450px;
  }

  .testi_box .p3-btn {
    height: 150px;
    border-left-color: transparent;
  }

  .counter-wrapper-2 {
    gap: 10px !important;
    margin-top: 40px;
  }

  .quality_sec {
    flex-wrap: wrap;
  }

  .quality_img,
  .online_sec .quality_img {
    width: 70%;
    padding: 0;
  }

  .quality_cont {
    width: 100%;
  }

  .online_sec {
    flex-wrap: wrap;
  }

  .service_area {
    flex-wrap: wrap;
  }

  .serv_box {
    width: 100%;
  }
}

@media only screen and (max-width:479px) {
  .boxes {
    margin-right: 0rem;
  }

  .service-section-4 .section-title h2 {
    font-size: 26px;
  }
}

@media all and (max-width:441px) {
  .serv_text h2 {
    font-size: 42px;
  }

  .tech_icon {
    flex-wrap: wrap;
  }

  .tech_icon_box {
    width: 100%;
  }

  .digital_cont ul {
    display: block;
  }

  .digital_cont ul li {
    margin-bottom: 20px;
  }

  .creative_head h2 {
    font-size: 38px;
  }

  .testi_box .title {
    font-size: 30px;
  }

  .testi_box .main-img {
    width: 100%;
  }

  .counter-wrapper-2 .counter-item {
    display: block;
  }

  .serv_box {
    padding: 20px;
  }

  .benefit_box {
    width: 50%;
  }
}


.modal-body {}

.form-clt input,
.form-clt textarea {
  width: 100%;
  padding: 8px 15px;
  margin: 5px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.form-clt textarea:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

/* ODOO PAGE START */

.zoho_page {
  text-align: right;
}

.odoo_page {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.odoo_page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  filter: brightness(50%);

}

.odoo_page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  filter: brightness(50%);

}

.odoo_page .page-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.why_choose_odoo h2 span,
.odoo_services h2 span,
.zoho_page h2 span {
  color: var(--theme-color) !important;

}

.odoo_boxes {
  border: 1px solid var(--theme-color);
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  padding: 20px;
  height: 270px;
}

.why_choose_boxes {
  text-align: right;

}

.odoo_boxes ul {
  list-style: circle;
  padding-left: 1rem;
  margin-top: 10px;
}

.odoo_boxes ul li {
  list-style: none;
  position: relative;
  padding-right: 15px !important;
}

/* DOT AFTER TEXT */
.odoo_boxes ul li::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #6b8e23;
  /* olive green */
  border-radius: 50%;
  display: block;
  margin-top: 12px;
  position: absolute;
  right: 0;
  top: 0;
}


.why_choose_boxes h3,
.why_choose_boxes p a {
  color: var(--theme-color);
}

.why_choose_boxes p a:hover {
  text-decoration: underline;
}


/* why implementation */

.why_implementation {
  margin-bottom: 3rem;
}

.why_implementation h2 span:first-child {
  color: var(--theme-color);
  font-weight: 900 !important;

}

.why_implementation h2 span:last-child {
  color: #8F8F8F;

}



.feature_box {
  display: flex;
  grid-template-columns: 15% 78%;
  gap: 10px;
  border: 1px solid var(--theme-color);
  box-shadow: 0 0 15px #ccc;
  padding: 15px;
  border-radius: 50px 0 50px 0;
  position: relative;
  height: 220px;


  flex-direction: row-reverse;
  text-align: right
}

.why_implementation .icon-circle {
  width: 60px !important;
  height: 60px !important;
  background: var(--theme-color);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature_box .icon-circle {
  flex: 0 0 60px;
  /* fixed icon size */
}

.feature_box .content {
  flex: 1;
  /* text takes remaining space */
}



.feature_box h5 {
  color: var(--theme-color);
}

/* .feature_content p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
} */


/* odoo services */

.odoo_services {
  margin-bottom: 3rem;
}

.service_box {
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 15px #ccc;
  border: 1px solid var(--theme-color);
  height: 150px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.service_box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  z-index: -1;
  transition: all 0.5s;

}

.service_box:hover::before {
  transform: translate(-50%, -50%) scale(1);

}

.service_box i {
  font-size: 50px;
  color: var(--theme-color);
  transition: all 0.3s;
}

.service_box h5 {
  color: var(--theme-color);
  transition: all 0.3s;
}

.service_box p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  transition: all 0.3s;
  opacity: 0;
  color: #fff;

}

.service_box:hover i,
.service_box:hover h5 {
  opacity: 0;
}

.service_box:hover p {
  opacity: 1;
}

/* ODOO PAGE END */

/* ZOHO PAGE START */


.zoho_products h2 span {
  color: var(--theme-color);
}

.zoho_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.zoho_card {
  background: #fff;
  border: 1px solid var(--theme-color);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.zoho_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.zoho_icon {
  font-size: 40px;
  color: var(--theme-color);
  margin-bottom: 16px;
}

.zoho_card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--theme-color);
}


.why_section {
  margin-bottom: 3rem;
}

.why_header {
  text-align: right !important;
  margin-bottom: 20px;

}

.why_header h2 span {
  margin-bottom: 20px;
  color: var(--theme-color) !important;
}


.why_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why_card {
  text-align: right;
  box-shadow: 0 0 15px #ccc;
  padding: 20px;
  border: 1px solid var(--theme-color);
  border-radius: 5px;
}

.why_icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: auto;
}

.why_card:nth-child(2) .why_icon {
  background: linear-gradient(135deg, #ff6a88, #ff99ac);
}

.why_card:nth-child(3) .why_icon {
  background: linear-gradient(135deg, #9a9ae1, #6a82fb);
}

.why_card:nth-child(4) .why_icon {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.why_card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 10px;
}



/* ZOHO PAGE END */

/* Power BI Integrations Start */

.power_bi_business,
.power_bi_work {
  text-align: right;
}

.power_bi_business h2 {
  color: var(--theme-color) !important;
  margin-bottom: 10px;
}

.power_bi_work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--theme-color);
}

.power_bi_implementation h2 {
  color: var(--theme-color) !important;
}

.implementation_box p {
  padding-right: 30px;
  height: 90px;
}

.implementation_heading {
  border-bottom: 3px solid var(--theme-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 50px;
  margin-top: 30px;
  height: 104px;
}

.implementation_heading::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}



.implementation_heading h4 {
  color: var(--theme-color);
  display: flex;
  gap: 10px;
}

.implementation_box {
  text-align: right;
}

.implementation_heading span {
  font-size: 35px;
  font-weight: 800;
}

.implementation_heading h5 {
  font-size: 18px;
  height: ;
}

.implementation_heading h5::before {
  content: '';
}

.accordion-button h3 {
  margin: 0;
  font-weight: 600;
}

.accordion-button::after {
  content: '+';
  background-image: none;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  border: 1px solid #fff;

}

.accordion-button:not(.collapsed)::after {
  content: '-';
  background-image: none;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  border: 1px solid #fff;

}

.accordion-button:focus,
.accordion-button:active {
  /* background-color: var(--theme-color) !important; */
  background-color: #eee !important;
  box-shadow: none !important;
}

/* .accordion-button:focus h3{
  color: #fff !important;

} */

.power_bi_faqs h2 {
  color: var(--theme-color) !important;
  text-align: right;

}



/* Power BI Integrations End */

/* Dynamics 365 Business Central Capabilities Page Start */

.business_capablities,
.business_services,
.why_choose_dynamics,
.power_bi_implementation,
.dynamic_contact_form {
  text-align: right;
}

.dyanmics_business button {
  margin-left: auto;
}

.dynamic_contact_form ::placeholder {
  text-align: right;
}

.capability_card {
  border: 1px solid var(--theme-color);
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  height: 230px;
  transition: all 0.3s ease;
}

.capability_card h4 {
  color: var(--theme-color);
}

.capability_card:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.capability_card:hover h4 {
  color: #fff;

}



.catagoriess>h1 {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 1rem;
  color: #fff !important;
}

#categories ul {
  /* display: flex; */
  justify-content: center;
  gap: 20px;
}



.blog-post h1 {
  text-align: left;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: -5px;
  color: #4e4e4e !important;
  margin-top: 1rem;
}



#blogs {
  float: left;
  width: 75%;
  padding-left: 20px;
}

#blog-posts .blog-box {
  width: 100%;
  height: 250px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgb(213 205 205 / 25%);
  margin: 0px 8px 35px 8px;
  padding: 10px 10px 10px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px #86335d solid;
  transform-style: preserve-3d;
  transition: .4s linear all;
}

#blog-posts .blog-box:hover {
  transform: scale(1.05);
  border-color: #000;
}

.blog-post .twoBoxes {
  display: flex;
  gap: 20px;
}



#blog-posts .blog-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-box-content {
  text-align: center;
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s ease;
}

.blog-box-content .blog-date {
  margin-top: 1rem;
  font-weight: 600;
}

.blog-box-content .blog-title {
  padding: 0.5rem;
  width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px !important;
  color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* .blog-post .twoBoxes:hover .blog-box-content {
    width: 100%;

} */

.blog-box-content a {
  color: #fff;
  background-color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  position: absolute;
  bottom: 20px;
  border-radius: 5px !important;
}

.blog-box-content a:hover {
  color: #fff;
  text-decoration: none;
  background: var(--darkBlue);
}

.blue {
  color: var(--theme-color);
}



#categories {
  flex: 1
}

#categories ul {
  padding: 0 !important;
  list-style: none;
  background: var(--darkBlue);
}

#categories ul li {
  margin: 0;
  padding: 0;
}

#categories ul li:last-child {
  border-bottom: none;
}

#categories ul {
  border: 1px solid #ccc;

}

#categories ul li a {
  display: block;
  /* color: #bbbbbb; */
  font-size: 20px;
  padding: 10px;
  padding-right: 20px;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

#categories ul li a:hover {
  color: #fff;
  background: var(--theme-color);
  border-radius: 0;
}

#categories .pro_active {
  color: #fff;
  background: var(--theme-color);
  position: relative;
}


.pro_active::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  /* Position outside the tab */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  /* Match background color for the arrow */
  border-left: 10px solid var(--theme-color);
  z-index: 10;
}

#blog-posts {
  flex: 3;
}

.blog-post {
  display: none;
  margin-bottom: 20px;
}


.blog-post h3 {
  font-size: 30px;
  color: var(--theme-color);
}

.blog-post:nth-child(1) {
  display: block;
}

[data-category]:hover {
  cursor: pointer;
}


.discc li {
  list-style: disc !important;
  line-height: 20px;
  color: #000 !important;
  font-weight: 400;
}


.why_dynamics_boxes {
  border-top: 4px solid var(--theme-color);
  padding: 15px;
  box-shadow: 0 0 15px #ccc;
  height: 230px;
  transition: all 0.3s ease;
}

.why_dynamics_boxes h4 {
  color: var(--theme-color);
}

.why_dynamics_boxes:hover {

  transform: translateY(-5px);
}

.business_implementation .implementation_heading h4 {
  height: 71px;
}

.dyanmics_business button {
  background-color: var(--theme-color) !important;
  padding: 10px 40px;
  color: #fff !important;
  border-radius: 5px;
  font-weight: 500;
}

/* Dynamics 365 Business Central Capabilities Page End  */

@media screen and (max-width:1200px) {
  .capability_card {
    height: 250px;
  }

  .why_grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .feature_box {
    display: grid;
    grid-template-columns: 15% 80%;
    gap: 15px;
  }
}

/* Sales Force Automation Page Start */

#sales_force h2 {
  text-transform: uppercase;
  /* font-size: 40px; */
  /* color: var(--theme-dark-color); */
}

.sales_force_hero {
  background-color: var(--theme-dark-color);
  height: 500px;
  overflow: hidden;
}

.sales_force_hero_content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;

  color: #fff;
}

.sales_force_hero_content h2 {
  color: #fff;
  font-size: 40px;
  margin-top: 50px;
}

.sales_force_hero_img {
  height: 70%;
}

.sales_force_hero_img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: flex;
  justify-content: end;
}

.transform_the_way {
  padding-top: 5rem;
  height: max-content;
  overflow: hidden;
}

.transform_way_two_boxes {
  background-color: var(--theme-dark-color);
  padding: 10px;
  color: #fff;
  gap: 10px;


}

.transform_way_two_boxes h5 {
  color: #fff;
}

.transform_way_two_boxes p {
  line-height: 25px;
}


.transform_way_first_boxes {
  background-color: var(--theme-color);
}


.transform_way_two_boxes img {
  width: 70px;
  height: 70px;
}

.transform_way_imgs {
  position: relative;
  display: flex;
  justify-content: start;
  height: 500px;
  margin-top: -2rem;
  overflow: hidden;
}

.transform_way_imgs img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
}

.transform_way_imgs *{
  transform: unset !important;
}

.transform_way_imgs img:last-child {
     transform: translateX(30%) translateY(12%) !important;
  height: 400px;

}

.transform_way_imgs div{
  display: none !important;
}

.problem_solution {
  background: linear-gradient(to right, red, green);
  position: relative;
  text-align: right;
}

.problem_solution li {
  list-style: none;
}

.problem_solution * {
  color: #fff;
}

.problem_solution h1 {
  color: #fff;
  text-align: center;
  margin-top: 3rem;
  line-height: 0.7;
  font-size: 200px;
}

.right_arrow {
  width: 60px;
  height: 60px;
  border-right: 6px solid #ffffff;
  border-bottom: 6px solid #ffffff;
  margin: 20px;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.info_section {
  padding-block: 3rem;
}



.info-box {
  display: flex;
  text-align: right;
  gap: 10px;
}



.info-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--theme-dark-color);

}

.info-box p {
  line-height: 1.6;
}

.info-box .icon i {
  font-size: 30px;
  color: var(--theme-dark-color);
}


/* Bottom Row */
.bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 3rem;
}

.bottom-item {
  text-align: center;
  width: 33%;
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
}

.bottom-item {
  font-size: 25px;
  color: var(--theme-color);
}


.bottom-item p {
  font-size: 15px;
  color: var(--theme-color);
  line-height: 1.5;
}

/* Responsive */
@media(max-width: 900px) {
  .top-grid {
    grid-template-columns: 1fr;
  }

  .bottom-row {
    flex-direction: column;
    align-items: center;
  }

  .bottom-item {
    width: 100%;
  }
}

.operation_sec h2,
.sales_customers h2,
.api_based h2,
.makes_different h2 {
  color: var(--theme-dark-color);
}

.sales_customers h2 {
  text-align: center;
}

.operation_sec h2 {
  text-align: right;
  padding-right: 30px;
}

.sales_customers,
.operation_sec {
  padding-left: 120px;
}

.sales_customers img {
width: 125%;
    height: 620px;
    object-fit: cover;
    object-position: left;
    transform: translateX(4%) translateY(-5%);
}

.sales_customers_box,
.operation_box {
  text-align: right;
  padding-right: 10px;
}

.sales_customers_box li,
.operation_box li {
  list-style: none;
  position: relative;
  padding-right: 15px;
}

/* DOT AFTER TEXT */
.sales_customers_box li::after,
.operation_box li:after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  /* olive green */
  border-radius: 50%;
  display: block;
  margin-top: 12px;
  position: absolute;
  top: 0;
  right: 0;
}


.sales_Lblue,
.sales_blue {
  /* margin-top: 10px; */
  color: #fff;
  padding: 10px;

}

.sales_Lblue ul,
.sales_blue ul {
  list-style-type: disc;
  padding-left: 1rem;
}

.sales_blue {
  background-color: var(--theme-color);

}

.sales_Lblue {
  background-color: #206ad9;
}

.sales_Lblue h4,
.sales_blue h4 {
  color: #fff;
}

.operation_sec img {
 width: 80%;
    height: 500px;
    object-fit: cover;
    object-position: left;
    transform: translateX(6%);
}

.key_features {
  background-color: var(--theme-dark-color);
  color: #fff;
  padding-block: 3rem;
}

.key_features h2,
.key_features h5 {
  color: #fff;
}

.key_features .feature-box p {
  font-style: italic;
}

.key_features .feature-box {
  text-align: right;
}

.key_features_img {
  display: flex;
}

.key_features_img img {
  width: 100%;
  height: 700px;
}

.benefits_section {
  padding: 3rem 0;

}

.benefits_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.benefit-box {
  background: var(--theme-color);
  color: #fff;
  width: 100%;
 
  padding: 15px;
  text-align: right;
}

.benefit-box i {
  margin-bottom: 10px;
  font-size: 48px;
}

.benefit-box h5 {
  margin: 0;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  width: 85%;
}

.benefits_title {
  margin-top: 1rem;
  color: var(--theme-dark-color);
  text-align: right;
}

.backend_frontend {
  margin-block: 3rem;
}

.backend_frontend h2 {
  text-align: right;
  width: 40%;
  margin-right: auto;
}

.backend_frontend img {
  width: 100%;
}

.backend_img {
  display: flex;
  height: 400px;

}

.backend_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.backend_img_R {
  margin-top: -4rem;
}

.backend_frontend h2 {
  color: var(--theme-dark-color);
}

.backend_frontend span {
  background-color: var(--theme-dark-color);
}

.api_heading {

  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.api_based img {
  width: 100%;
}

.makes_different {
  margin-block: 4rem;
  margin-top: 5rem;
  text-align: right;
}


.makes_different_box_grid h5 {
  background-color: var(--theme-color);
  padding: 5px 10px;
  color: #fff;
}

.makes_different_box_grid div {
  margin-top: 1rem;

}

.makes_different img {
  width: 100%;
  transform: translateY(-5%);
}



.sec_200 {
  background-color: var(--theme-dark-color);
  padding-block: 5rem;
}

.sec_200 h2 {
  color: var(--theme-dark-color);
}

.sec_200_content {
  background-color: #fff;
  padding: 3rem;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
}

.sec_200_content p {
  width: 65%;
  margin: 0 auto;
}

.sec_200_content h2 {
  text-transform: lowercase !important;
}

.sec_200_content span {
  color: var(--theme-color);
  font-size: 14px;
}

.ready_to_support {
  margin-block: 4rem;
  text-align: right;
}

.ready_to_support h2 {
  color: var(--theme-dark-color);
}

.ready_to_support p,
.ready_to_support h2 {
  width: 50%;
}

.support_img {
  position: absolute;
  left: -5%;
  bottom: -12%;
  width: 300px;
  height: 300px;
  border: 10px solid #000;
  padding: 20px;
  border-radius: 50%;
  opacity: 0.3;
}

.qr_code {
  background-color: var(--theme-dark-color);
  padding-block: 4rem;
}

.transform_way_content {
  text-align: right;
}

/* Sales Force Automation Page End */

/* POS - POINT OF SALE Page Start*/

.pos_hero {
  position: relative;
  padding-block: 6rem;
  margin-top: 4rem;
  text-align: center;
}

.pos_hero_content h2 {
  color: var(--theme-color);
}

.rect_box {
  width: 150px;
  height: 100px;
  background-color: var(--theme-color);
  position: absolute;
  border-radius: 30px;
}

.rect_boxL {
  left: -50px;
}

.rect_boxR {
  right: -50px;
}


.transform_business {
  padding-bottom: 4rem;
}

.text_right {
  text-align: right !important;
}

.transform_business h2 span,
.core_feature span {
  color: var(--theme-color);
}

.blue_line {
  background-color: var(--theme-color);
  width: 200px;
  height: 15px;
}

.transform_business img {
  width: 85%;
}

.core_feature {
  margin-bottom: 4rem;
}

.core_section {
  background: var(--theme-color);
  padding: 20px 40px;
  border-radius: 30px;
  color: #fff;
}

.core_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  height: 120px;
  padding-right: 20px;
  text-align: right;
}

/* Number Circle */
.core_number {
  min-width: 90px;
  height: 90px;
  background: #e2e2e2;
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
}

/* Text */
.core_text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.core_text p {
  margin: 5px 0 0;
  font-size: 15px;
  opacity: 0.9;
}

/* Icon Circle */
.core_icon {
  margin-right: auto;

  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;

}

.core_inventory_section {
  margin-bottom: 4rem;
}

/* Title */
.core_inventory_title {
  text-align: center;
  font-weight: 800;
}

.core_inventory_title span,
.invoicing_billing span,
.invoice_box h5,
.realtime_title span,
.user-management-title span,
.ready_to_elevate h2 span,
.role_access_section h2 span {
  color: var(--theme-color) !important;
}

/* Main wrapper */
.core_inventory_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}



.core_inventory_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  text-align: right;
}

/* Icons */
.core_inventory_icon {
  font-size: 48px;
  color: var(--theme-color);
}




/* Right image */
.core_inventory_right {
  text-align: right;
}

.core_inventory_right img {
  width: 100%;
  max-width: 650px;
}


.invoicing_billing {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.invoicing_billing img {
  width: 95%;
  height: 600px;
  object-fit: cover;
  transform: rotateY(180deg);
}

.customer_section img {
  transform: rotateX(180deg);
}

.bank_payment img {
  /* width: 100%; */
  border-right: 10px solid var(--theme-color);
}

.invoice_box {
  margin-top: 2rem;
  text-align: right;
}

.invoice_box h5 {
  font-size: 24px;
}

.invoice_box p:first-child {
  font-size: 18px;
}

.customer_section,
.financial_section,
.realtime_section,
.user-management,
.ready_to_elevate {
  margin-bottom: 4rem;
}

/* Title */
.customer_title,
.financial_title,
.realtime_title,
.user-management-title {
  text-align: center;
  margin-bottom: 30px;
}

/* Blue rounded box */
.customer_box {
  background-color: rgba(56, 151, 229, 0.2);
  padding: 30px;
  border-radius: 30px;
  border: 1px solid #ccc;

}

/* Individual items */
.customer_item {
  margin-bottom: 25px;
}

.customer_item h4 {
  font-weight: 700 !important;
  color: var(--theme-color);
}



.customer_item:last-child {
  margin-bottom: 0;
}

.financial_subtitle {
  color: var(--theme-color);
  margin-bottom: 1rem;
}

.financial_section p {
  margin-bottom: 5px;
}




.realtime_title,
.ready_to_elevate {
  text-align: right !important;
}

.realtime_subtitle {
  font-size: 22px;
  font-weight: 700;
}



.realtime_icon {
  font-size: 48px;
  color: #0056d6;
  /* Blue icon color like your design */
  min-width: 55px;
}




.um-box {
  padding: 25px;
  border-radius: 20px;
  color: #fff;
  height: 100%;
}

.um-box.dark_blue {
  background: var(--theme-color);

}

.um-box.light_blue {
  background: #4190c8;

}

.um-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
  display: none;
}

.um-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.um-box p {
  line-height: 1.4;
}

.um-bottom-box {
  background: #DCEBF9;
  padding: 25px;
  border-radius: 20px;
  text-align: right;
}

.um-bottom-title {
  font-size: 24px;
  font-weight: 700;
}

.role_access_section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.role_access_section .title {
  font-size: 42px;
  font-weight: 800;
  color: #1d2d3c;
  margin-bottom: 40px;
}

.role_access_section .title span {
  color: #0056d6;
}

.roles_wrapper {
  display: flex;
  justify-content: start;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  overflow-x: hidden;
  direction: ltr;
}

/* PYRAMID */
.pyramid {
  width: 50%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}

.level {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.l1 {
  background: #002a66;
}

.l2 {
  background: #003c99;
}

.l3 {
  background: #0055e6;
}

.l4 {
  background: #39a9ff;
}

.l5 {
  background: #bde2ff;
  color: #1d2d3c;
}

/* RIGHT SIDE TEXT BOXES */
.role_details {
  width: 45%;
}

.role_box {
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid #cdd9e6;
  height: 100px;
}

.role_details .role_box:nth-child(1) {
  width: calc(100% + 300px);
  transform: translateX(-29%);
}

.role_details .role_box:nth-child(2) {
  width: calc(100% + 250px);
  transform: translateX(-22%);
}

.role_details .role_box:nth-child(3) {
  width: calc(100% + 200px);
  transform: translateX(-16%);
}

.role_details .role_box:nth-child(4) {
  width: calc(100% + 150px);
  transform: translateX(-8%);
}

.role_details .role_box:nth-child(5) {
  width: calc(100% + 100px);
}

.role_box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1d2d3c;
}

.role_box p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #546477;
}

.bottom_text {
  margin-top: 30px;
  color: #657584;

  text-align: left;
}


.ready_to_elevate h6 {
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 1rem;
}

.ready_to_elevate .bgColor {
  background-color: rgba(56, 151, 229, 0.2);

  padding: 20px;
  border-radius: 10px;
}

.ready_to_elevate a {
  color: var(--theme-color);
}


.ready_to_elevate a:hover {
  text-decoration: underline;
}

.ready_to_elevate img {
  width: 100%;
  transform: rotateY(180deg);
}



/* POS - POINT OF SALE Page End*/

/* Mobile App Development Page Start */

.smartphone_applications {
  margin-block: 3rem;
}

#smartphone h2 span {
  color: var(--theme-color);
}

#smartphone .breadcrumb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}

.mobile_app_developement img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  padding: 0.5rem;
  border: 1px solid #ccc;
  /* border-radius: 50%; */
}

.mobile_app_content,
.ai_powerd_solution {
  text-align: right;
}

.ai_powerd_solution
/* AI‑Powered Mobile Solutions */

.ai_powerd_solution {
  margin-block: 3rem;
}



.ai_powerd_solution ul {
  list-style: disc;
  padding-left: 1rem;
}

.ai_powerd_solution ul ul {
  padding-right: 2rem;
  ;
}

.ai_powerd_solution li {
  list-style: none;
  position: relative;
  padding-bottom: 10px;
  padding-right: 15px;
}

/* DOT AFTER TEXT */
.ai_powerd_solution ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #000000;
  /* olive / green */
  border-radius: 50%;
  display: block;
  margin-top: 12px;
  position: absolute;
  right: 0;
  top: 0%;
}

.ai_powerd_solution ul ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: transparent;
  /* olive / green */
  border: 2px solid #000000;
  border-radius: 50%;
  display: block;
  margin-top: 12px;
  position: absolute;
  right: 0;
  top: 0%;
}


.ai_powerd_solution img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

/* iOS Application Development */

.ios_application {
  margin-top: 3rem;
}

.ios_application h3 {
  color: var(--theme-color);
}

.ios_application_box {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background-color: var(--theme-color);
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 90px;
}

.ios_application_box i {
  font-size: 35px;
}

.ios_application_box h5 {
  color: #fff;
  text-align: right;
}

.ios_application_box:hover {
  background-color: var(--theme-dark-color);
}

/* Android & Hybrid Application */
.android_hybrid_content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 1rem;
  object-fit: cover;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.middle_border {
  border-left: 5px solid var(--theme-color);
}


/* Why Choose SOUQERP? */

.why_choose_wr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why_choose_wr .why_point {
  background-color: var(--theme-color);
  padding: 15px;
  color: #fff;
  text-align: center;
}

.why_choose_wr .why_point h6 {
  color: #fff;
}

.why_choose_wr .why_point i {
  font-size: 35px;
  margin-bottom: 10px;
}

.android_hybrid_application {
  text-align: right;
}

/* Mobile App Development Page End */

/* Web Applications Page Start */

.understand_needs_box {
  text-align: right;
}

.understand_needs_box i,
.software_expertise_box i {
  font-size: 30px;
  color: var(--theme-color);
}

.understand_needs_box h3,
.software_expertise_box h3 {
  color: var(--theme-color);
}

/* Custom Software Expertise  */

.software_expertise_box {
  text-align: center;
  /* box-shadow: 0 0 10px #ccc; */
  /* padding: 10px; */
  position: relative;
  height: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.software_expertise_box i {
  font-size: 40px;
  margin-bottom: 10px;
}

.software_expertise_box::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 5px;
  left: 0;
  bottom: -5px;
  background-color: var(--theme-color);
  transition: all 0.3s ease;

}

.software_expertise_box p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  transition: all 0.3s ease;
  opacity: 0;
}

.software_expertise_box * {
  transition: all 0.3s ease;
}

.software_expertise_box:hover * {
  opacity: 0;
}

.software_expertise_box:hover p {
  opacity: 1;
}

.software_expertise_box:hover::before {
  width: 100%;
}

/* Custom Software Development Cycle */

.process_wrapper {
  width: 100%;
  border-top: 2px solid #eee;
}

.process_item {
  border-bottom: 2px solid #eee;
  padding: 20px 0;
  padding-left: 15px;

  position: relative;
}

.process_item.active {
  border-right: 5px solid var(--theme-color);
  padding-right: 15px;
}

.process_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  flex-direction: row-reverse;
}

.process_head .step_no {
  font-weight: 700;
  margin-left: 15px;
  font-size: 24px;
  color: #000;
  color: var(--theme-color);
  order: 2;
}



.process_head h4 {
  flex: 1;
  font-size: 24px;
  margin: 0;
  color: var(--theme-color);
}

.process_head .icon {
  font-weight: 700;
  font-size: 30px;
  color: var(--theme-color);
  order: -1;
}



.process_body {
  padding: 15px 0 0 40px;
  display: none;
  animation: fadeIn .3s;
}

.process_body ul {
  list-style: none;
  padding-left: 0 !important;
}

.process_body li {
  position: relative;
  padding-right: 25px;
  margin-bottom: 8px;
}

/* Tick Icon */
.process_body li::after {
  content: "\f00c";
  /* Font Awesome tick */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--theme-color);
  /* Yellow tick (same as left border) */
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 14px;
}


.process_item.active .process_body {
  display: block;
}

.process_body p {
  margin-bottom: 10px;
  color: #555;
}

.process_body ul {
  margin: 0;
  padding-left: 20px;
}

.process_body ul li {
  margin-bottom: 6px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process_body {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 40px;
  transition: max-height 0.8s ease, padding 0.5s ease;
  color: #555;
}

.process_item.active .process_body {
  padding: 15px 0 0 40px;
  max-height: 500px;
  /* large enough to fit content */
}

.custom_software_cycle {
  text-align: right;
}


/* Web Applications Page End */

/* UI/UX Design Services Page Start */

#smartphone .breadcrumb-section p {
  width: 90%;
}

.ui_ux_services {
  background-color: rgb(240, 240, 240);
}

.ui_ux_head img {
  width: 100%;
  height: 500px;
  /* padding: 0.5rem; */
  border-radius: 10px;
  border: 1px solid #ccc;
  object-fit: cover;
  margin-top: 1rem;
}

.ui_ux_boxes {
  background-color: #fff;
  padding: 30px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  min-height: 220px;
}

.digital_market_pg .ui_ux_boxes {
  height: 300px;
}

.ar_vr_page .ui_ux_boxes {

  min-height: 250px;
}

.ai_ml_page .ui_ux_boxes {

  min-height: 290px;
}



.ui_ux_boxes h5 {
  position: absolute;
  left: 20px;
  top: 10px;
  color: var(--theme-color);
  font-size: 18px;
}

.ui_ux_boxes {
  text-align: right;
}

.ui_ux_boxes h4 {
  color: var(--theme-color);
  margin-bottom: 10px;
}


/* Why Partner with Us for UI/UX Design? */

.why_partner_uiux {
  background: url(../img/ui-ux-bg2.png) center no-repeat;
  background-size: cover;
  padding-block: 3rem;

}

.why_partner_uiux h2 {
  text-align: right !important;
}

.why_partner_uiux_box {
  background-color: #fff;
  padding: 20px;
  /* border-radius: 10px; */
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.why_partner_uiux_boxLast {
  background-color: var(--theme-color);
  border: 2px solid #fff;
  margin-top: 3rem;
}

.why_partner_uiux_boxLast h3 {
  color: #fff;
  font-weight: 500;
  width: 100%;
}

.why_partner_uiux_boxLast a {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}

/* UI/UX Design Services Page End */

/* Domain Hosting & Email Page Start */

.domain_host_box {
  text-align: center;
  box-shadow: 0 0 15px #ccc;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--theme-color);
}

.domain_host_box i {
  font-size: 35px;
  color: var(--theme-color);
}

.domain_host_box h4 {
  color: var(--theme-color);

}

.tagline_sec {
  background-color: var(--theme-color);
  text-align: right;
}

.tagline_sec h2,
.tagline_sec p {
  color: #fff;
}

.tagline_sec a {
  background-color: #fff;
  padding: 15px 40px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  color: var(--theme-color);
}

.tagline_sec a:hover {
  background-color: transparent;
  color: #fff;
}

.web_development_pg {
  text-align: right;
}

.web_development_pg .row {
  margin-top: 2rem;
}

.web_development_pg img {
  width: max-content;
  height: 250px;
  border: 1px solid #ccc;
  object-fit: contain;

}

.web_development_pg h3 {
  color: var(--theme-color);
}

.domain_host_box{
  height: 170px;

}
.test_pg .domain_host_box{
  height: 240px;

}

.web_dev_pg .domain_host_box {
  display: flex;
  justify-content: start;
  text-align: right;
  gap: 15px;
  height: 200px;
}

/* Domain Hosting & Email Page ENd */