:root {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5em;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.4s ease;
  -webkit-transition: background-color 0.4s ease;
  -moz-transition: background-color 0.4s ease;
  -ms-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  /* overflow-x: hidden; */
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #2667ff56;
}

::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

body {
  /*!STYLEVARIABLE*/
  --body_color: #f6f9fb;
  --white: white;
  --text-color-1: #000;
  --text-color-2: #303030;
  --text-color-3: #3d3d3d;
  --theme-color: #2667ff;
  --light-theme-color: #2667ff1a;
  --dark-theme-color: #0b1460;
  /*FONTSIZE*/
  --small-font: 1.2rem;
  --medium-font-1: 1.5rem;
  --medium-font-2: 2rem;
  --big-font-1: 3rem;
  --big-font-2: 4rem;
  /* BOX SHADOWS */
  --dark-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  --light-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /*GENERALBODYSTYLES*/
  background-color: var(--body_color);
  font-family: Arial, Helvetica, sans-serif;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  overflow-y: hidden;
}

body.dark_theme {
  /* !STYLE VARIABLE */
  --body_color: #000;
  --text-color-1: #fff;
  --text-color-2: #dfdede;
  --text-color-3: #c9c7c7;
  --theme-color: #1581fc;
  --light-theme-color: #fff;
  --dark-theme-color: #007dc0;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  object-fit: cover;
  object-position: center;
}

li {
  list-style: none;
}

.char {
  position: relative;
  display: inline-block;
}

.block {
  display: block;
}

.preloader_container {
  position: fixed;
  z-index: 5;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  display: grid;
  place-items: center;
}

.preloader_container img {
  width: 300px;
}

/* !ANIMATIONS TIMELINES */

@keyframes left-right-move {
  0% {
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
}

@keyframes up-down {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
  100% {
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* !HEADER START */

.header {
  width: 90%;
  height: 70px;
  padding: 0 2em;
  background-color: white;
  margin: 0 auto;
  margin-top: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: var(--dark-box-shadow);
  position: fixed;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

body.dark_theme .header {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}

/* *LOGO STYLE START */

.logo_container {
  font-size: var(--small-font);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  user-select: none;
}

.true-logo-text {
  color: var(--theme-color);
  font-size: var(--medium-font-1);
  font-weight: 700;
}

.other-text {
  color: var(--text-color-1);
  font-weight: 600;
}

/* *LOGO STYLE ENDS */

.link_container {
  display: flex;
  align-items: center;
  gap: 2em;
}

.link_container li a {
  color: var(--text-color-1);
  font-size: var(--small-font);
  position: relative;
  cursor: pointer;
}

.link_container li a::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--theme-color);
  height: 3px;
  bottom: -4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transform-origin: right;
}

.link_container li a:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: left;
}

.link_container li a:hover {
  color: var(--theme-color);
}

#theme_switcher {
  cursor: pointer;
}

.theme_btn {
  display: inline-block;
  background-color: var(--theme-color);
  color: white;
  padding: 0.9em 0.6em;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--theme-color);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.theme_btn i {
  margin-left: 0.5em;
}

.dark-mode-btn i,
.light-mode-btn i {
  margin-right: 0.5em;
  font-size: var(--small-font);
}

#theme_switcher span {
  padding: 0.5em 0.3em;
}

.dark-mode-btn:hover {
  background-color: var(--white);
  color: var(--theme-color);
}

.light-mode-btn:hover {
  background-color: var(--black);
}

.whats_app_btn_container {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2;
  bottom: 2em;
  right: 1em;
  animation: move 1s linear infinite alternate;
  -webkit-animation: move 1s linear infinite alternate;
}

/* !HERO SECTION STARTS */

#hero_section {
  position: relative;
  width: 100%;
  height: 1400px;
  overflow: hidden;
  background-image: linear-gradient(to left, #fad0c4 0%, #ffd1ff 100%);
  background-image: linear-gradient(
    to right,
    rgba(251, 234, 220, 255) 0%,
    #faf9f7 100%
  );
  background-image: linear-gradient(45deg, #fad0c4 0%, #ffd1ff 100%);
  background-image: linear-gradient(
    45deg,
    rgba(251, 234, 220, 255) 0%,
    #faf9f7 100%
  );
}

#hero_section::before {
  content: "";
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 100%;
}

body.dark_theme #hero_section {
  background-image: linear-gradient(45deg, #026b6b 0%, #330867 100%);
}

.hero_bg_img {
  width: 100%;
  height: 100%;
  position: relative;
}

.bg_small_img {
  position: absolute;
  z-index: 1;
}

.star-bg-img {
  top: 20%;
  left: 10%;
  animation: left-right-move 2s infinite linear alternate;
  -webkit-animation: left-right-move 2s infinite linear alternate;
}

.tringle-bg-img {
  left: 20%;
  top: 40%;
  animation: rotate 8s linear infinite;
  -webkit-animation: rotate 8s linear infinite;
}

.pipe-bg-img {
  right: 10%;
  top: 20%;
  animation: rotate 10s linear infinite;
  -webkit-animation: rotate 10s linear infinite;
}

.big-circle-bg-img {
  left: 8%;
  top: 55%;
  animation: scale 4s linear infinite alternate-reverse;
  -webkit-animation: scale 4s linear infinite alternate-reverse;
}

.small-circle-bg-img {
  right: 35%;
  top: 45%;
  animation: up-down 2s linear infinite alternate;
  -webkit-animation: up-down 2s linear infinite alternate;
}

.wave-lines-bg-img {
  right: 8%;
  top: 50%;
  animation: left-right-move 2s linear infinite alternate;
  -webkit-animation: left-right-move 2s linear infinite alternate;
}

.small-triangle-bg {
  bottom: 10%;
  left: 10%;
  animation: rotate 3s linear infinite;
  -webkit-animation: rotate 3s linear infinite;
}

.hero-main-bg {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.hero_content_container {
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 15%;
  width: 100%;
}

.hero-small-header {
  font-size: var(--medium-font-1);
  background-color: #2667ff1a;
  color: var(--theme-color);
  width: fit-content;
  margin: 0 auto;
  padding: 0.2em 0.4em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

body.dark_theme .hero-small-header {
  color: var(--text-color-2);
}

.hero-main-header {
  color: var(--dark-theme-color);
  margin: 0.5em 0;
  font-size: var(--big-font-2);
}

body.dark_theme .hero-main-header {
  color: white;
}

.hero-dis {
  font-size: var(--medium-font-1);
  color: var(--text-color-2);
  line-height: 1.2;
  margin-bottom: 2em;
}

.hero-btn i {
  margin-left: 0.5em;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.hero-btn:hover i {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

.hero-btn i {
  margin-left: 0.5em;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.hero-btn:hover i {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

/* !<!-- !WHY US SECTION --> */

.why_us_main_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 4em;
  flex-wrap: wrap;
}

.why_us_main_container figure {
  width: min(760px, 100%);
  animation: move 2s linear infinite alternate;
  -webkit-animation: 4e 4s linear infinite alternate;
}
.our_blog_card figure img {
  object-fit: contain;
}

@keyframes move {
  0% {
    transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
  }
  100% {
    transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -o-transform: rotate(4deg);
  }
}

.why_us_main_container figure img {
  width: 100%;
}

.why_us_dis_container {
  width: 700px;
}

.why_us_dis_container p {
  color: var(--text-color-2);
  font-size: var(--small-font);
  margin-top: 1em;
  display: block;
}

.why-us-btn {
  opacity: 0;
}

/* !<!-- !OUR SERVICES --> */

section {
  margin: 6em 0;
  padding: 0 5%;
}

.section_header {
  text-align: center;
}

.section_header h4 {
  font-size: var(--big-font-1);
  color: var(--dark-theme-color);
}

body.dark_theme h4 {
  color: var(--light-theme-color);
}

.section_header p {
  font-size: var(--medium-font-1);
  color: var(--theme-color);
  text-transform: capitalize;
}

.service_main_container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  justify-content: center;
  margin-top: 2em;
}

.service_card {
  display: flex;
  gap: 1em;
  cursor: pointer;
  width: min(500px, 100%);
  margin-top: 2em;
  padding: 1em;
  box-shadow: var(--light-box-shadow);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

body.dark_theme .service_card {
  border: 1px solid var(--text-color-3);
}

.service_card i {
  font-size: var(--medium-font-2);
  color: var(--dark-theme-color);
  display: block;
}

.service_dis h2 {
  font-size: var(--medium-font-1);
  color: var(--theme-color);
}

body.dark_theme .service_dis h2 {
  color: var(--text-color-1);
}

.service_dis p {
  font-size: var(--small-font);
  margin-top: 0.5em;
  color: var(--text-color-2);
}

.service_card:hover {
  box-shadow: var(--dark-box-shadow);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

/* !<!-- !ABOUT US SECTION START --> */

.about_us_section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8em;
  background: url(./img/services/svg.webp) center/cover no-repeat;
}

body.dark_theme .about_us_section {
  background: url(./img/services/svg-dark1.webp) center/cover no-repeat;
}

.about_us_img_container {
  margin-right: 2em;
  min-width: 545px;
}

.about_us_dis_container {
  margin-left: 2em;
  min-width: 550px;
}

.about_us_dis_container h4 {
  color: var(--dark-theme-color);
  font-size: var(--medium-font-2);
  line-height: 1.5;
}

body.dark_theme .about_us_dis_container h4 {
  color: var(--white);
}

.about_us_dis_para {
  color: var(--theme-color);
  font-size: var(--small-font);
  margin-top: 1em;
}

.about_card {
  margin: 2em 0;
  display: flex;
  align-items: center;
  padding: 1em;
}

.about_card i {
  color: var(--theme-color);
  margin-right: 0.5em;
  font-size: var(--medium-font-2);
}

.about_card_dis h3 {
  color: var(--dark-theme-color);
  font-size: var(--medium-font-1);
}

body.dark_theme .about_card_dis h3 {
  color: var(--text-color-1);
}

.about_card_dis p {
  color: var(--text-color-2);
  font-size: var(--small-font);
  margin-top: 0.5em;
}

.about-btn {
  margin-top: 1em;
  margin-bottom: 2em;
}

/* !<!-- !TESTIMONIAL BANNER --> */

.testimonial_banner {
  position: relative;
  background-color: var(--theme-color);
  max-width: 1200px;
  min-height: 200px;
  overflow: hidden;
  margin: 6em auto;
  padding: 2em 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 4em 1em;
  box-shadow: var(--dark-box-shadow);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.testimonial_banner img {
  position: absolute;
  opacity: 0.6;
}

.testimonial_banner div {
  position: relative;
  z-index: 2;
}

.banner_num {
  font-size: var(--big-font-2);
  color: var(--white);
}

.banner_name {
  font-size: var(--medium-font-1);
  color: var(--white);
}

/*! <!--! LET'S TALK BBANNER --> */

.let_talk_section {
  position: relative;
  height: 300px;
  background-color: var(--theme-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

.let_talk_section img {
  position: absolute;
  opacity: 0.4;
}

body.dark_theme .let_talk_section {
  background: linear-gradient(
    -45deg,
    rgba(43, 92, 216, 0.3),
    rgba(174, 157, 170, 0.3)
  );
}

.left_let_talk_container h4 {
  color: var(--white);
  font-size: var(--medium-font-2);
}

.left_let_talk_container p {
  color: var(--white);
  margin-top: 1em;
}

.let_talk_update {
  display: flex;
  align-items: center;
}

.let_talk_update p {
  margin-left: 0.8em;
  color: var(--white);
  font-size: var(--medium-font-1);
}

.ring-container {
  position: relative;
}

.circle {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 15px;
  width: 15px;
  background-color: #6fee07;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.ringring {
  height: 30px;
  width: 30px;
  border: 3px solid #6fee07;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation: pulsate 1.5s infinite ease-out;
  -webkit-animation: pulsate 1.5s infinite ease-out;
  opacity: 0;
}

@keyframes pulsate {
  0% {
    opacity: 0;
    transform: scale(0.1);
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
}

.let_talk_btn {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 1em;
  padding: 0.6em 0.8em;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-size: var(--medium-font-1);
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.let_talk_btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  left: 0;
  top: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}

.let_talk_btn:hover::before {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.let_talk_btn:hover {
  color: var(--dark-theme-color);
}

/*! <!-- !FAQ SECTION --> */

.faq_section {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6em 0;
  padding-bottom: 2em;
  margin-bottom: 4em;
  box-shadow: var(--dark-box-shadow);
}

body.dark_theme .faq_section {
  background-color: rgb(39, 39, 39);
}

.faq_figure {
  position: relative;
  padding-top: 4em 0;
  transform: translateX(-8em);
  -webkit-transform: translateX(-8em);
  -moz-transform: translateX(-8em);
  -ms-transform: translateX(-8em);
  -o-transform: translateX(-8em);
  height: fit-content;
}

.curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  z-index: 2;
}

.faq_figure img {
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: var(--light-box-shadow);
}

.faq_figure::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: #2667ff1a;
}

body.dark_theme .faq_figure::before {
  background-color: #102a6639;
}

.faq_dis_container {
  transform: translateX(-5em);
  -webkit-transform: translateX(-5em);
  -moz-transform: translateX(-5em);
  -ms-transform: translateX(-5em);
  -o-transform: translateX(-5em);
}

.faq_main_container {
  margin-top: 2em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.faq_container {
  background-color: var(--light-theme-color);
  margin: 2em 0;
  padding: 0.8em;
  max-height: 61px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: max-height, background-color 0.3s, 0.3s ease;
  -webkit-transition: max-height, background-color 0.3s, 0.3s ease;
  -moz-transition: max-height, background-color 0.3s, 0.3s ease;
  -ms-transition: max-height, background-color 0.3s, 0.3s ease;
  -o-transition: max-height, background-color 0.3s, 0.3s ease;
}

.faq_container.active {
  max-height: 550px;
  background-color: var(--white);
  transition: max-height, background-color 0.3s, 0.4s ease;
  -webkit-transition: max-height, background-color 0.3s, 0.4s ease;
  -moz-transition: max-height, background-color 0.3s, 0.4s ease;
  -ms-transition: max-height, background-color 0.3s, 0.4s ease;
  -o-transition: max-height, background-color 0.3s, 0.4s ease;
}

body.dark_theme .faq_container {
  background-color: #05547f38;
}

.faq_container p {
  font-size: var(--small-font);
  padding-bottom: 0.3em;
  color: var(--dark-theme-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq_container.active p {
  border-bottom: 2px solid #ffffff8d;
}

body.dark_theme .faq_main_container p {
  color: var(--text-color-1);
}

/* 
.cross_container {
    height: 20px !important;
    width: 20px !important;
    display: none;
}

.cross_container i {
    display: block;
    background-color: var(--theme-color);
    width: 100%;
    height: 3px;
    margin-top: 7px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.cross_container i:first-child {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.cross_container i:last-child {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.faq_container.active i:first-child {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
} */

.faq_ans {
  color: var(--text-color-2);
  line-height: 1.5em;
  margin-top: 1em;
  opacity: 0;
}

.faq_container.active .faq_ans {
  animation: fade-in 0.4s ease 1;
  -webkit-animation: fade-in 0.4s ease 1;
  opacity: 1;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform-origin: top;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

/* !<!-- !OUR TEAM SECTION --> */

.our_team_card {
  width: 300px;
  height: 390px;
  box-shadow: var(--dark-box-shadow);
  padding: 1em;
  border-radius: 1.5em;
  -webkit-border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  -ms-border-radius: 1.5em;
  -o-border-radius: 1.5em;
  text-align: center;
  margin: 1em 2em;
}

body.dark_theme .our_team_card {
  background-color: rgb(39, 39, 39);
}

.our_team-curtain {
  background-color: var(--body_color);
}

body.dark_theme .our_team-curtain {
  background-color: rgb(39, 39, 39);
}

.our_team_card figure {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 1em;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  -ms-border-radius: 1em;
  -o-border-radius: 1em;
}

.our_team_card figure img {
  width: 100%;
}

.our_team_card_dis_container h4 {
  color: var(--dark-theme-color);
  font-size: var(--medium-font-1);
  margin: 0.7em 0;
}

body.dark_theme h4 {
  color: var(--white);
}

.our_team_card_dis_container p {
  color: var(--text-color-2);
  font-size: var(--small-font);
}

.our_team_card_social_media_container {
  margin-top: 0.5em;
  padding-top: 1.5em;
  border-top: 2px solid var(--text-color-3);
}

.our_team_card_social_media_container a {
  display: inline-block;
  margin: 0 0.8em;
  width: 50px;
  /* background-color: red; */
}

.our_team_card_social_media_container a img {
  width: 100%;
}

/* !<!-- !OUR BLOG SECTION --> */

.our_blog_card_container {
  margin-top: 4em;
  display: flex;
  gap: 4em 2em;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100vw;
}

.our_blog_card {
  display: flex;
  width: 600px;
  height: 400px;
  background-color: var(--white);
  box-shadow: var(--dark-box-shadow);
  overflow: hidden;
}

body.dark_theme .our_blog_card {
  background-color: rgb(39, 39, 39);
}

.our_blog_card_dis_container {
  padding: 3em 1em;
}

.our_blog_card_dis_container h4 {
  color: var(--dark-theme-color);
  font-size: var(--medium-font-1);
}

body.dark_theme .our_blog_card_dis_container h4 {
  color: var(--white);
}

.blog_date {
  margin: 1em 0;
  color: var(--text-color-2);
  font-size: var(--small-font);
}

.blog_date i {
  color: var(--theme-color);
  margin-right: 0.5em;
}

.blog_dis {
  color: var(--text-color-2);
  font-size: var(--small-font);
}

.blog-card-btn {
  margin-top: 2em;
}

/* !<!-- !FREE CONSULTANCY FORM --> */

.consultancy_form_section {
  position: relative;
  padding: 4em 5%;
  background: linear-gradient(
    -45deg,
    rgba(43, 92, 216, 0.3),
    rgba(174, 157, 170, 0.3)
  );
  display: flex;
  justify-content: space-around;
  max-width: 100vw;
  overflow: hidden;
}

.consult_bg_img {
  position: absolute;
  z-index: -1;
}

.consult-img-pattern {
  left: 0;
  top: 30%;
}

.consult-blob-bg {
  z-index: -2;
  left: 60%;
  height: 600px;
  width: 600px;
  background-color: var(--light-theme-color);
  border-radius: 30% 70% 78% 22% / 30% 48% 52% 70%;
  -webkit-border-radius: 30% 70% 78% 22% / 30% 48% 52% 70%;
  -moz-border-radius: 30% 70% 78% 22% / 30% 48% 52% 70%;
  -ms-border-radius: 30% 70% 78% 22% / 30% 48% 52% 70%;
  -o-border-radius: 30% 70% 78% 22% / 30% 48% 52% 70%;
}

.consult_form {
  position: relative;
  z-index: 2;
  background-color: var(--body_color);
  padding: 1em;
  width: 500px;
  box-shadow: var(--dark-box-shadow);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.consult_form::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 15px;
  right: 15px;
  height: 15px;
  z-index: 1;
  background-color: var(--body_color);
  opacity: 1;
  box-shadow: var(--light-box-shadow);
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
}

.consult_form h4 {
  font-size: var(--medium-font-2);
  color: var(--dark-theme-color);
}

body.dark_theme .consult_form h4 {
  color: var(--white);
}

.consult_form_para {
  color: var(--text-color-1);
  margin: 0.5em 0;
  margin-bottom: 1em;
  font-size: var(--small-font);
  font-weight: bold;
}

.consult_form_para {
  color: var(--text-color-2);
}

.consult_form_input_container p {
  color: red;
}

.consult_form_input_container input,
.consult_form_input_container textarea {
  margin: 0.5em 0;
  padding: 0.5em;
  font-size: var(--small-font);
  background-color: var(--light-theme-color);
  border: none;
  outline: none;
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.num_input {
  display: flex;
}

#num_code {
  width: 60px;
  margin-right: 0.5em;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.dark_theme .consult-blob-bg {
  background-color: #02537e71;
}

body.dark_theme .consult_form_input_container input,
body.dark_theme .consult_form_input_container textarea {
  background-color: #333;
  color: var(--white);
}

.consult_form_input_container textarea {
  height: 200px;
  resize: none;
}

.right_consult_container {
  width: 48%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.right_consult_container iframe {
  width: 100%;
  height: 100%;
}

.get-consult-btn {
  cursor: pointer;
  margin-top: 1em;
  display: flex;
  align-items: center;
}

.thank_msg {
  color: green;
  font-size: var(--small-font);
  line-height: 1.6;
  display: none;
}

.num_error {
  display: block;
}

.get-consult-btn.loading {
  padding: 0 1em;
}

.get-consult-btn.loading .submit_text {
  display: none;
}

.submit_anime {
  display: none;
  height: 50px;
  width: 50px;
}

.get-consult-btn.loading .submit_anime {
  display: block;
}

.submit_anime img {
  width: 100%;
}

/* !<!-- !FOOTER SECTION --> */

.footer {
  min-height: 300px;
  padding: 2em 5%;
  background-color: var(--light-theme-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
}

body.dark_theme .footer {
  background: linear-gradient(
    -45deg,
    rgba(43, 92, 216, 0.3),
    rgba(174, 157, 170, 0.3)
  );
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
  -webkit-animation: gradient 5s ease infinite;
}

.footer_container {
  max-width: 350px;
}

.footer_container p {
  color: var(--text-color-2);
  font-size: var(--small-font);
  margin-top: 1em;
  line-height: 1.5;
}

#footer-logo-container {
  position: unset !important;
}

.footer_container_header {
  color: var(--theme-color);
  font-size: var(--medium-font-1);
}

.footer_link_container li {
  margin: 1em 0;
  color: var(--text-color-2);
}

.footer_link_container li a {
  color: var(--text-color-2);
  cursor: pointer;
}

.footer-our-contacts-container li i {
  color: var(--theme-color);
  font-size: var(--medium-font-1);
}

.footer-our-contacts-container li {
  display: flex;
  align-items: center;
}

.footer-our-contacts-container li span {
  margin-left: 1em;
}

.footer-our-contacts-container li span a {
  display: block;
  color: var(--text-color-2);
}

.footer-our-contacts-container li span a:last-child {
  margin-top: 0.5em;
}

#google-head {
  position: fixed;
  width: 90%;
  height: 70px;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  margin: auto;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 0 2em;
  box-shadow: var(--dark-box-shadow);
}

#google-head form {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  width: 100%;
}

#google-head form figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

#google-head form figure img {
  height: 25px;
}

#google-head form input {
  width: 100%;
  padding: 2px 12px;
  border-radius: 10px;
  outline: none;
  border: 1px solid var(--theme-color);
  height: 30px;
}
