* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #efd6ad;
  --secondary-color: #173734;
  --accent-color: #ffc250;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #161c2d;
  --placeholder-color: #9a9ea6;
  --heading-font-family: "Gerbil", sans-serif;
  --body-font-family: "Satoshi", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font-family);
  font-weight: 400;
  color: var(--black-color);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
input,
textarea,
button,
input:is(:focus-visible, :focus, :focus-within),
textarea:is(:focus-visible, :focus, :focus-within),
button:is(:focus-visible, :focus, :focus-within) {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}
.container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 15px;
}
.section_subtitle {
  font-family: var(--heading-font-family);
  font-size: 24px;
  line-height: 36px;
  color: var(--secondary-color);
  margin: 0 0 20px;
  display: inline-block;
}
.section_heading {
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: 56px;
  line-height: 76px;
  position: relative;
  z-index: 1;
}
.section_heading .heading_after {
  position: relative;
  display: inline-block;
}
.section_heading .heading_after::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 373px;
  height: 33px;
  background-image: url("../image/heading-after.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
.section_heading .heading_shape {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  padding: 0 14px;
}
@media (max-width: 1699px) {
  .section_heading {
    font-size: 50px;
    line-height: 70px;
  }
  .section_heading .heading_after::after {
    width: 320px;
    height: 28px;
  }
}
@media (max-width: 1399px) {
  .section_subtitle {
    font-size: 20px;
    line-height: 30px;
  }
  .section_heading {
    font-size: 40px;
    line-height: 58px;
  }
  .section_heading .heading_after::after {
    width: 280px;
    height: 25px;
    bottom: -12px;
  }
}
@media (max-width: 1299px) {
  .section_subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .section_heading {
    font-size: 36px;
    line-height: 54px;
  }
  .section_heading .heading_after::after {
    width: 255px;
    height: 22px;
    bottom: -10px;
  }
}
@media (max-width: 1199px) {
  .section_heading {
    font-size: 30px;
    line-height: 44px;
  }
}
@media (max-width: 991px) {
  .section_heading br {
    display: none;
  }
}
@media (max-width: 575px) {
  .section_heading {
    font-size: 32px;
    line-height: 52px;
  }
  .section_heading .heading_after::after {
    width: 230px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .section_subtitle {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 15px;
  }
  .section_heading {
    font-size: 23px;
    line-height: 40px;
  }
  .section_heading .heading_after::after {
    width: 210px;
    height: 19px;
  }
  .section_heading .heading_shape {
    padding: 5px 14px;
  }
}
@media (max-width: 360px) {
  .section_heading {
    font-size: 20px;
    line-height: 30px;
  }
  .section_heading .heading_after::after {
    width: 180px;
    height: 16px;
  }
}
/* =============== HEADER START =============== */
#header {
  position: sticky;
  top: 0;
  background-color: var(--white-color);
  z-index: 9;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#header.nav_scroll {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#header .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}
#header .logo {
  max-width: 196px;
}
#header #header_menu .menu_list {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#header #header_menu .menu_list li a {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  position: relative;
}
#header #header_menu .menu_list li a:not(.contact_btn)::before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 100ms ease-in-out;
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -ms-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
}
#header #header_menu .menu_list li a:not(.contact_btn).active {
  color: var(--secondary-color);
}
#header #header_menu .menu_list li a:not(.contact_btn).active::before {
  width: 100%;
}
#header #header_menu .menu_list li a:not(.contact_btn) {
  color: var(--black-color);
}
#header .contact_btn {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 10px 38px 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#header .contact_btn:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
}
#header .contact_btn.mobile {
  display: none;
}
#header #toggle_btn {
  display: none;
  width: 30px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  cursor: pointer;
}
#header.toggle #toggle_btn {
  position: fixed;
  top: 33px;
  right: 15px;
}
#header #toggle_btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--black-color);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
#header #toggle_btn span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#header #toggle_btn span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#header #toggle_btn span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#header.toggle #toggle_btn span:nth-child(1) {
  transform: rotate(48deg);
  -webkit-transform: rotate(48deg);
  -moz-transform: rotate(48deg);
  -o-transform: rotate(48deg);
  -ms-transform: rotate(48deg);
  top: 0;
  left: 0;
}
#header.toggle #toggle_btn span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#header.toggle #toggle_btn span:nth-child(3) {
  transform: rotate(-47deg);
  -webkit-transform: rotate(-47deg);
  -moz-transform: rotate(-47deg);
  -o-transform: rotate(-47deg);
  -ms-transform: rotate(-47deg);
  top: 22px;
  left: 0;
}
/* Media Queries */
@media (max-width: 991px) {
  #header {
    position: static;
  }
  #header.nav_scroll {
    box-shadow: none;
  }
  #header .header_wrapper {
    gap: 10px;
  }
  #header #header_menu .menu_list {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column;
    gap: 40px;
  }
  #header #toggle_btn {
    display: block;
  }
  #header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: opacity 400ms ease-in-out;
    -webkit-transition: opacity 400ms ease-in-out;
    -moz-transition: opacity 400ms ease-in-out;
    -ms-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
  }
  #header .menu.open {
    visibility: visible;
    opacity: 1;
    transition: opacity 400ms ease-in-out;
    -webkit-transition: opacity 400ms ease-in-out;
    -moz-transition: opacity 400ms ease-in-out;
    -ms-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
  }
  #header #header_menu .menu_list li a::before {
    display: none;
  }
  #header #toggle_btn {
    position: relative;
    z-index: 9;
  }
  #header .contact_btn.desktop {
    display: none;
  }
  #header .contact_btn.mobile {
    display: inline-block;
  }
  #header .contact_btn {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 32px 12px;
  }
  #header #header_menu .menu_list li a {
    font-size: 20px;
  }
}
/* =============== HEADER END =============== */
/* =============== HERO START =============== */
#hero .hero_wrapper {
  padding: 143px 0 110px;
}
#hero .hero_wrapper .hero_heading_wrapper {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin: 0 0 81px;
  text-align: center;
}
#hero .hero_wrapper .hero_heading_wrapper .hero_heading {
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: 100px;
  line-height: 126px;
  position: relative;
}
#hero .hero_wrapper .hero_heading_wrapper .hero_heading .heading_after {
  position: relative;
  display: inline-block;
}
#hero .hero_wrapper .hero_heading_wrapper .hero_heading .heading_after::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 596px;
  height: 56px;
  background-image: url("../image/hero-heading-after.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
#hero .hero_wrapper .hero_heading_wrapper .hero_heading .heading_shape {
  position: relative;
  color: var(--secondary-color);
  padding: 0 10px;
}
#hero .hero_wrapper .hero_heading_wrapper .hero_heading .heading_shape::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 78%;
  background-color: var(--primary-color);
  z-index: -1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
#hero .hero_wrapper .hero_heading_wrapper .hero_description {
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}
#hero .hero_wrapper .hero_heading_wrapper .hero_description b,
#hero .hero_wrapper .hero_heading_wrapper .hero_description strong {
  font-weight: 600;
}
#hero .hero_wrapper .hero_images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 38px;
  gap: 15px;
}
#hero .hero_wrapper .hero_images .hero_img {
  margin: auto;
}
#hero .hero_wrapper .hero_images .hero_img:first-child {
  margin-top: 110px;
}
#hero .hero_wrapper .hero_images .hero_img.mobile {
  display: none;
}
@media (max-width: 1699px) {
  #hero .hero_wrapper .hero_heading_wrapper .hero_heading {
    font-size: 80px;
    line-height: 106px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_after::after {
    bottom: -24px;
    width: 480px;
    height: 45px;
  }
}
@media (max-width: 1499px) {
  #hero .hero_wrapper {
    padding: 110px 0;
  }
}
@media (max-width: 1399px) {
  #hero .hero_wrapper .hero_heading_wrapper {
    margin: 0 0 70px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_heading {
    font-size: 70px;
    line-height: 96px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_after::after {
    bottom: -19px;
    width: 420px;
    height: 39px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_shape::before {
    top: 10px;
    height: 85%;
  }
}
@media (max-width: 1199px) {
  #hero .hero_wrapper {
    padding: 80px 0;
  }
  #hero .hero_wrapper .hero_heading_wrapper {
    margin: 0 0 50px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_heading {
    font-size: 60px;
    line-height: 80px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_after::after {
    bottom: -18px;
    width: 360px;
    height: 34px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_description {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 991px) {
  #hero .hero_wrapper {
    padding: 60px 0;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_heading {
    font-size: 45px;
    line-height: 55px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_after::after {
    bottom: -15px;
    width: 270px;
    height: 25px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_shape::before {
    top: 8px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_description {
    font-size: 20px;
    line-height: 32px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_description br {
    display: none;
  }
  #hero .hero_wrapper .hero_images .hero_img.desktop {
    display: none;
  }
  #hero .hero_wrapper .hero_images .hero_img.mobile {
    display: inline-block;
  }
  #hero .hero_wrapper .hero_images {
    padding: 0 15px;
  }
  #hero .hero_wrapper .hero_images .hero_img:first-child {
    margin-top: 0;
  }
  #hero .hero_wrapper .hero_images .hero_img {
    max-width: 226px;
    max-height: 226px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  #hero .hero_wrapper .hero_heading_wrapper {
    gap: 18px;
  }
}
@media (max-width: 575px) {
  #hero .hero_wrapper .hero_heading_wrapper {
    margin: 0 0 40px;
  }
  #hero .hero_wrapper .hero_heading_wrapper {
    gap: 12px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_heading {
    font-size: 35px;
    line-height: 45px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_after::after {
    bottom: -10px;
    width: 210px;
    height: 20px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_shape::before {
    top: 6px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_description {
    font-size: 18px;
    line-height: 30px;
  }
  #hero .hero_wrapper .hero_images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #hero .hero_wrapper {
    padding: 20px 0 40px;
  }
  #hero .hero_wrapper .hero_heading_wrapper {
    margin: 0 0 30px;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_heading {
    font-size: 24px;
    line-height: 35px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_after::after {
    bottom: -10px;
    width: 210px;
    height: 20px;
  }
  #hero
    .hero_wrapper
    .hero_heading_wrapper
    .hero_heading
    .heading_shape::before {
    top: 0;
    height: 100%;
  }
  #hero .hero_wrapper .hero_heading_wrapper .hero_description {
    font-size: 16px;
    line-height: 26px;
  }
  #hero .hero_wrapper .hero_heading_wrapper {
    gap: 8px;
  }
}
/* =============== HERO END =============== */
/* =============== COUNTER START =============== */
#counter .counter_row {
  background-color: var(--primary-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
}
#counter .counter_row .counter_column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  padding: 50px;
}
#counter .counter_row .counter_column .counter_number {
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
}
#counter .counter_row .counter_column .counter_title {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}
@media (max-width: 1399px) {
  #counter .counter_row .counter_column {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  #counter .counter_row .counter_column {
    padding: 30px;
  }
  #counter .counter_row .counter_column .counter_number {
    font-size: 40px;
  }
  #counter .counter_row .counter_column .counter_title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  #counter .counter_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #counter .counter_row {
    column-gap: 15px;
  }
  #counter .counter_row .counter_column {
    padding: 25px 15px;
  }
  #counter .counter_row .counter_column .counter_number {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  #counter .counter_row {
    grid-template-columns: 1fr;
  }
}
/* =============== COUNTER END =============== */
/* =============== WHY-CHOOSE-US START =============== */
#whyChooseUs {
  padding: 100px 0;
}
#whyChooseUs .why_choose_us_section_heading {
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: 100px;
  line-height: 126px;
  text-align: center;
  margin: 0 0 50px;
}
#whyChooseUs .why_choose_us_row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 63px;
}
#whyChooseUs .why_choose_us_row .why_choose_us_column {
  flex: 1 1 calc(20% - 51px);
}
#whyChooseUs .why_choose_us_row .why_choose_us_column .why_choose_us_icon {
  max-width: 60px;
  max-height: 60px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#whyChooseUs
  .why_choose_us_row
  .why_choose_us_column:hover
  .why_choose_us_icon {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
}
#whyChooseUs .why_choose_us_row .why_choose_us_title {
  font-family: var(--heading-font-family);
  font-size: 20px;
  line-height: 32px;
  margin: 33px 0 15px;
  color: var(--text-color);
}
#whyChooseUs .why_choose_us_row .why_choose_us_description {
  font-family: var(--body-font-family);
  font-size: 17px;
  line-height: 29px;
  color: var(--text-color);
}
@media (max-width: 1799px) {
  #whyChooseUs .why_choose_us_row .why_choose_us_title {
    font-size: 18px;
  }
}
@media (max-width: 1699px) {
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 80px;
    line-height: 100px;
  }
}
@media (max-width: 1599px) {
  #whyChooseUs .why_choose_us_row {
    column-gap: 50px;
  }
  #whyChooseUs .why_choose_us_row .why_choose_us_column {
    flex: 1 1 calc(20% - 40px);
  }
  #whyChooseUs .why_choose_us_row .why_choose_us_title {
    font-size: 16px;
  }
}
@media (max-width: 1399px) {
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 70px;
    line-height: 85px;
  }
  #whyChooseUs .why_choose_us_row {
    column-gap: 30px;
  }
  #whyChooseUs .why_choose_us_row .why_choose_us_column {
    flex: 1 1 calc(20% - 24px);
  }
  #whyChooseUs .why_choose_us_row .why_choose_us_title {
    font-size: 15px;
    margin: 22px 0 10px;
  }
}
@media (max-width: 1299px) {
  #whyChooseUs .why_choose_us_row {
    row-gap: 50px;
  }
  #whyChooseUs .why_choose_us_row .why_choose_us_column {
    flex: 1 1 calc(33.33% - 24px);
  }
}
@media (max-width: 1199px) {
  #whyChooseUs {
    padding: 80px 0;
  }
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 60px;
    line-height: 72px;
  }
}
@media (max-width: 991px) {
  #whyChooseUs {
    padding: 60px 0;
  }
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 40px;
    line-height: 48px;
  }
  #whyChooseUs .why_choose_us_row {
    row-gap: 40px;
  }
  #whyChooseUs .why_choose_us_row .why_choose_us_column {
    flex: 1 1 calc(50% - 24px);
  }
}
@media (max-width: 575px) {
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  #whyChooseUs {
    padding: 40px 0;
  }
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 40px;
  }
  #whyChooseUs .why_choose_us_row .why_choose_us_column {
    flex: 1 1 100%;
  }
}
@media (max-width: 360px) {
  #whyChooseUs .why_choose_us_section_heading {
    font-size: 26px;
    line-height: 30px;
  }
}
/* =============== WHY-CHOOSE-US END =============== */
/* =============== ABOUT-US START =============== */
#aboutUs {
  padding: 88px 0 0;
  margin: -88px 0 0;
}
#aboutUs .about_us_wrapper {
  background-color: var(--primary-color);
  padding: 136px 0;
}
#aboutUs .about_us_wrapper .about_us_row {
  display: flex;
  flex-wrap: wrap;
  gap: 138px;
  align-items: center;
}
#aboutUs .about_us_wrapper .about_us_row .about_us_content {
  width: calc(48% - 69px);
}
#aboutUs .about_us_wrapper .about_us_row .about_us_img {
  width: calc(52% - 69px);
}
#aboutUs .about_us_wrapper .about_us_row .about_us_img .about_img_wrapper {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}
#aboutUs .about_us_wrapper .about_us_row .about_us_img .about_img_wrapper img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#aboutUs
  .about_us_wrapper:hover
  .about_us_row
  .about_us_img
  .about_img_wrapper
  img {
  transform: scale(1.1) rotate(2deg);
  -webkit-transform: scale(1.1) rotate(2deg);
  -moz-transform: scale(1.1) rotate(2deg);
  -ms-transform: scale(1.1) rotate(2deg);
  -o-transform: scale(1.1) rotate(2deg);
}
#aboutUs .about_us_wrapper .about_us_row .about_us_content .section_subtitle {
  margin: 0 0 30px;
}
#aboutUs
  .about_us_wrapper
  .about_us_row
  .about_us_content
  .about_us_description {
  font-family: var(--body-font-family);
  font-size: 24px;
  line-height: 36px;
  margin: 30px 0;
}
#aboutUs .about_us_wrapper .about_us_row .about_us_content .about_us_btn {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--black-color);
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#aboutUs .about_us_wrapper .about_us_row .about_us_content .about_us_btn:hover {
  color: var(--secondary-color);
}
@media (max-width: 1699px) {
  #aboutUs .about_us_wrapper {
    padding: 115px 0;
  }
  #aboutUs .about_us_wrapper .about_us_row {
    gap: 100px;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content {
    width: calc(47% - 50px);
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_img {
    width: calc(53% - 50px);
  }
}
@media (max-width: 1499px) {
  #aboutUs .about_us_wrapper {
    padding: 100px 0;
  }
}
@media (max-width: 1399px) {
  #aboutUs .about_us_wrapper .about_us_row {
    gap: 80px;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content {
    width: calc(47% - 40px);
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_img {
    width: calc(53% - 40px);
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content .section_subtitle {
    margin: 0 0 20px;
  }
  #aboutUs
    .about_us_wrapper
    .about_us_row
    .about_us_content
    .about_us_description {
    font-family: var(--body-font-family);
    font-size: 22px;
    line-height: 34px;
    margin: 30px 0;
  }
}
@media (max-width: 1299px) {
  #aboutUs .about_us_wrapper .about_us_row {
    gap: 50px;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content {
    width: calc(47% - 25px);
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_img {
    width: calc(53% - 25px);
  }
  #aboutUs
    .about_us_wrapper
    .about_us_row
    .about_us_content
    .about_us_description {
    font-size: 20px;
    line-height: 32px;
    margin: 15px 0 25px;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content .about_us_btn {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 1199px) {
  #aboutUs {
    padding: 80px 0 0;
    margin: -80px 0 0;
  }
  #aboutUs .about_us_wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  #aboutUs {
    padding: 0;
    margin: 0;
  }
  #aboutUs .about_us_wrapper {
    padding: 60px 0;
  }
  #aboutUs .about_us_wrapper .about_us_row {
    gap: 40px;
    flex-direction: column;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content {
    width: 100%;
    order: 2;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_img {
    width: fit-content;
  }
}
@media (max-width: 480px) {
  #aboutUs .about_us_wrapper {
    padding: 40px 0;
  }
  #aboutUs .about_us_wrapper .about_us_row {
    gap: 30px;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content .section_subtitle {
    margin: 0 0 15px;
  }
  #aboutUs
    .about_us_wrapper
    .about_us_row
    .about_us_content
    .about_us_description {
    font-size: 18px;
    line-height: 28px;
  }
  #aboutUs .about_us_wrapper .about_us_row .about_us_content .about_us_btn {
    font-size: 16px;
    line-height: 18px;
  }
}
/* =============== ABOUT-US END =============== */
/* =============== SERVICES START =============== */
#services {
  padding: 188px 0 100px;
  margin: -88px 0 0;
}
#services .services_wrapper {
  width: 83%;
  margin: auto;
}
#services .section_heading_wrapper {
  text-align: center;
  margin: 0 0 70px;
}
#services .services_detail_wrapper {
  display: flex;
  align-items: end;
  gap: 50px;
}
#services .services_detail_wrapper:not(:first-child) {
  padding-top: 40px;
}
#services .services_detail_wrapper:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid #173734;
}
#services .services_detail_wrapper .services_content_wrapper {
  width: 92%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#services .services_detail_wrapper .services_heading {
  font-family: var(--heading-font-family);
  font-size: 30px;
  line-height: 36px;
  color: var(--text-color);
}
#services .services_detail_wrapper .services_description {
  font-family: var(--body-font-family);
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
}
/* #services .services_detail_wrapper .services_img {
  max-width: 133px;
  max-height: 133px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
} */
@media (max-width: 1399px) {
  #services .section_heading_wrapper {
    margin: 0 0 50px;
  }
  #services .services_detail_wrapper:not(:first-child) {
    padding-top: 30px;
  }
  #services .services_detail_wrapper .services_content_wrapper {
    gap: 20px;
  }
  #services .services_detail_wrapper .services_heading {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1299px) {
  #services .services_detail_wrapper .services_heading {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  #services {
    padding: 180px 0 80px;
    margin: -80px 0 0;
  }
  #services .services_wrapper {
    width: 90%;
  }
  #services .services_detail_wrapper:not(:first-child) {
    padding-top: 25px;
  }
  #services .services_detail_wrapper .services_content_wrapper {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  #services {
    padding: 60px 0;
    margin: 0;
  }
  #services .services_wrapper {
    width: 100%;
  }
  #services .services_detail_wrapper {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  #services .services_detail_wrapper .services_content_wrapper {
    width: 100%;
    order: 2;
  }
  #services .services_detail_wrapper .services_heading {
    font-size: 18px;
  }
  #services .services_detail_wrapper .services_img {
    max-width: 100px;
    max-height: 100px;
  }
}
@media (max-width: 480px) {
  #services {
    padding: 40px 0;
    margin: 0;
  }
  #services .section_heading_wrapper {
    margin: 0 0 30px;
  }
  #services .services_detail_wrapper:not(:first-child) {
    padding-top: 20px;
  }
  #services .services_detail_wrapper .services_content_wrapper {
    gap: 10px;
  }
  #services .services_detail_wrapper .services_heading {
    font-size: 16px;
    line-height: 26px;
  }
}
/* =============== SERVICES END =============== */
/* =============== OUR-WORKS START =============== */
#works {
  padding: 88px 0 0;
  margin: -88px 0 0;
}
#works .works_wrapper {
  background-color: var(--primary-color);
  padding: 130px 0 160px;
}
#works .works_wrapper .section_heading_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: baseline;
  margin: 0 0 80px;
}
#works .works_wrapper .section_heading_wrapper .section_description {
  font-family: var(--body-font-family);
  font-size: 22px;
  line-height: 140%;
  width: 38%;
}
#works .works_wrapper .works_wrapper_details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#works .works_wrapper .works_wrapper_row {
  display: flex;
  align-items: center;
  gap: 40px;
}
#works .works_wrapper .works_wrapper_row .works_wrapper_content {
  width: calc(25% - 20px);
  padding-left: 34px;
}
#works .works_wrapper .works_wrapper_row .works_wrapper_img {
  width: calc(75% - 20px);
  position: relative;
}
#works
  .works_wrapper
  .works_wrapper_row
  .works_wrapper_img
  .works_wrapper_img_wrapper
  video {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
#works .works_wrapper .works_wrapper_content .works_wrapper_title {
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: 44px;
  line-height: 53px;
  margin: 0 0 30px;
}
#works .works_wrapper .works_wrapper_content .works_wrapper_description {
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
}
#works .works_wrapper .left .works_wrapper_content .works_wrapper_btn {
  margin-top: 109px;
}
#works .works_wrapper .right .works_wrapper_content .works_wrapper_btn {
  margin-top: 56px;
}
#works .works_wrapper .works_wrapper_content .works_wrapper_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 22px;
  color: var(--black-color);
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#works .works_wrapper .works_wrapper_content .works_wrapper_btn .arrow_wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#works
  .works_wrapper
  .works_wrapper_content
  .works_wrapper_btn:hover
  .arrow_wrapper {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}
@media (max-width: 1699px) {
  #works .works_wrapper {
    padding: 100px 0 130px;
  }
  #works .works_wrapper .section_heading_wrapper {
    margin: 0 0 70px;
  }
  #works .works_wrapper .works_wrapper_row .works_wrapper_content {
    padding-left: 0;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_title {
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 20px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_description {
    font-size: 20px;
    line-height: 32px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_btn {
    font-size: 20px;
  }
  #works .works_wrapper .left .works_wrapper_content .works_wrapper_btn {
    margin-top: 90px;
  }
  #works .works_wrapper .right .works_wrapper_content .works_wrapper_btn {
    margin-top: 45px;
  }
}
@media (max-width: 1499px) {
  #works .works_wrapper {
    padding: 80px 0 100px;
  }
  #works .works_wrapper .section_heading_wrapper .section_description {
    font-size: 20px;
    width: 42%;
  }
  #works .works_wrapper .left .works_wrapper_content .works_wrapper_btn {
    margin-top: 60px;
  }
  #works .works_wrapper .right .works_wrapper_content .works_wrapper_btn {
    margin-top: 40px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_title {
    font-size: 34px;
    line-height: 44px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_description {
    font-size: 18px;
    line-height: 26px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_btn {
    font-size: 18px;
  }
  #works
    .works_wrapper
    .works_wrapper_content
    .works_wrapper_btn
    .arrow_wrapper {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1399px) {
  #works .works_wrapper .section_heading_wrapper {
    margin: 0 0 60px;
  }
  #works .works_wrapper .section_heading_wrapper .section_description {
    width: 44%;
  }
  #works .works_wrapper .works_wrapper_details {
    gap: 40px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_title {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 20px;
  }
}
@media (max-width: 1299px) {
  #works .works_wrapper .section_heading_wrapper .section_description {
    width: 50%;
    font-size: 18px;
    line-height: 135%;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_title {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 15px;
  }
  #works
    .works_wrapper
    .works_wrapper_content
    .works_wrapper_btn
    .arrow_wrapper {
    width: 50px;
    height: 50px;
  }
  #works
    .works_wrapper
    .works_wrapper_content
    .works_wrapper_btn
    .arrow_wrapper
    svg {
    width: 18px;
  }
  #works .works_wrapper .left .works_wrapper_content .works_wrapper_btn {
    margin-top: 40px;
  }
  #works .works_wrapper .right .works_wrapper_content .works_wrapper_btn {
    margin-top: 25px;
  }
}
@media (max-width: 1199px) {
  #works {
    padding: 80px 0 0;
    margin: -80px 0 0;
  }
  #works .works_wrapper {
    padding: 70px 0 80px;
  }
  #works .works_wrapper .left .works_wrapper_content .works_wrapper_btn,
  #works .works_wrapper .right .works_wrapper_content .works_wrapper_btn {
    margin-top: 15px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_title {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 15px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_description {
    font-size: 16px;
    line-height: 22px;
  }
  #works .works_wrapper .works_wrapper_content .works_wrapper_btn {
    margin-top: 16px;
  }
}
@media (max-width: 991px) {
  #works {
    padding: 0;
    margin: 0;
  }
  #works .works_wrapper {
    padding: 45px 0 60px;
  }
  #works .works_wrapper .section_heading_wrapper {
    margin: 0 0 50px;
    flex-direction: column;
    gap: 28px;
    text-align: center;
    align-items: center;
  }
  #works .works_wrapper .section_heading_wrapper .section_description {
    width: 100%;
  }
  #works .works_wrapper .works_wrapper_row {
    flex-direction: column;
  }
  #works .works_wrapper .works_wrapper_row .works_wrapper_content {
    width: 100%;
    order: 2;
  }
  #works .works_wrapper .works_wrapper_row .works_wrapper_img {
    width: fit-content;
  }
  #works .works_wrapper .works_wrapper_row {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  #works .works_wrapper {
    padding: 30px 0 40px;
  }
  #works .works_wrapper .section_heading_wrapper {
    margin: 0 0 30px;
  }
  #works .works_wrapper .works_wrapper_row {
    gap: 20px;
  }
  #works .works_wrapper .works_wrapper_details {
    gap: 35px;
  }
  #works
    .works_wrapper
    .works_wrapper_content
    .works_wrapper_btn
    .arrow_wrapper {
    width: 45px;
    height: 45px;
    border-width: 1px;
  }
}
@media (max-width: 360px) {
  #works .works_wrapper .works_wrapper_content .works_wrapper_title {
    font-size: 20px;
    line-height: 26px;
  }
}
/* =============== OUR-WORKS END =============== */
/* =============== CONTACT-US START =============== */
#contact {
  padding: 88px 0 0;
  margin: -88px 0 0;
}
#contact .contact_wrapper {
  padding: 100px 0;
  background-image: url("../image/contact-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#contact .contact_content_wrapper {
  width: 83%;
  margin: auto;
}
#contact .contact_content_wrapper .section_heading_wrapper {
  margin: 0 0 60px;
  text-align: center;
}
#contact .contact_content_wrapper #contactForm .contact_field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid var(--secondary-color);
}
#contact
  .contact_content_wrapper
  #contactForm
  .contact_field:not(:first-child) {
  margin-top: 23px;
}
#contact .contact_content_wrapper #contactForm .contact_field label {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
#contact .contact_content_wrapper #contactForm .contact_field input {
  margin-bottom: 10px;
}
#contact .contact_content_wrapper #contactForm .contact_field input,
#contact .contact_content_wrapper #contactForm .contact_field textarea {
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  resize: none;
}
#contact
  .contact_content_wrapper
  #contactForm
  .contact_field
  input::placeholder,
#contact
  .contact_content_wrapper
  #contactForm
  .contact_field
  textarea::placeholder {
  color: var(--placeholder-color);
  opacity: 1;
}
#contact .contact_content_wrapper #contactForm .contact_form_btn {
  margin-top: 30px;
  padding: 14px 45px 16px;
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#contact .contact_content_wrapper #contactForm .contact_form_btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
@media (max-width: 1399px) {
  #contact .contact_content_wrapper .section_heading_wrapper {
    margin: 0 0 50px;
  }
}
@media (max-width: 1199px) {
  #contact {
    padding: 80px 0 0;
    margin: -80px 0 0;
  }
  #contact .contact_content_wrapper {
    width: 90%;
  }
}
@media (max-width: 991px) {
  #contact {
    padding: 0;
    margin: 0;
  }
  #contact .contact_content_wrapper {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #contact .contact_content_wrapper .section_heading_wrapper {
    margin: 0 0 30px;
  }
}
/* =============== CONTACT-US END =============== */
/* =============== FOOTER START =============== */
#footer .footer_wrapper {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}
#footer .footer_wrapper::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 0;
  right: 0;
  margin: auto;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color);
  filter: blur(20px);
  -webkit-filter: blur(80px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.4;
}
#footer .footer_wrapper .footer_top {
  padding: 55px 0 25px;
  position: relative;
  z-index: 1;
}
#footer .footer_wrapper .footer_logo {
  max-width: 293px;
}
#footer .footer_wrapper .footer_top .footer_details {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
#footer .footer_wrapper .footer_top .footer_details .footer_title {
  font-family: var(--heading-font-family);
  color: var(--primary-color);
  font-weight: 400;
  font-size: 140px;
  line-height: 160px;
  margin: 0 0 25px;
}
#footer .footer_wrapper .footer_top .footer_details .footer_btn {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  padding: 8px 8px 8px 32px;
  color: var(--secondary-color);
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 22px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 22px;
  width: fit-content;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#footer .footer_wrapper .footer_top .footer_details .footer_btn:hover {
  background-color: var(--primary-color);
}
#footer .footer_wrapper .footer_top .footer_details .footer_btn .icon_wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#footer
  .footer_wrapper
  .footer_top
  .footer_details
  .footer_btn:hover
  .icon_wrapper {
  background-color: var(--white-color);
  color: var(--secondary-color);
}
#footer .footer_wrapper .footer_top .footer_details .social_links {
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#footer .footer_wrapper .footer_top .footer_details .social_links li a {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#footer .footer_wrapper .footer_top .footer_details .social_links li a:hover {
  color: var(--white-color);
}
#footer .footer_wrapper .footer_top .footer_contact {
  margin: 35px 0 25px auto;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
}
#footer .footer_wrapper .footer_top .footer_contact .contact_details {
  display: flex;
  flex-direction: column;
}
#footer .footer_wrapper .footer_top .footer_contact a {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 18px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  text-align: right;
}
#footer .footer_wrapper .footer_top .footer_contact a:hover {
  color: var(--white-color);
}
#footer .footer_wrapper .footer_top .footer_menu_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
#footer .footer_wrapper .footer_top .footer_menu_wrapper .footer_menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 54px;
  flex-wrap: wrap;
}
#footer .footer_wrapper .footer_top .footer_menu_wrapper .footer_menu li a {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 18px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#footer
  .footer_wrapper
  .footer_top
  .footer_menu_wrapper
  .footer_menu
  li
  a:hover {
  color: var(--white-color);
}
#footer .footer_wrapper .footer_bottom {
  border-top: 2px solid var(--primary-color);
  padding: 25px 0;
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}
#footer .footer_wrapper .footer_bottom a {
  color: var(--primary-color);
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#footer .footer_wrapper .footer_bottom a:hover {
  color: var(--white-color);
}
#footer .footer_wrapper .footer_bottom .made_by_text a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
/* @media (max-width: 1699px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 150px;
    line-height: 160px;
  }
} */
@media (max-width: 1499px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 130px;
    line-height: 140px;
  }
}
@media (max-width: 1399px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 120px;
    line-height: 130px;
  }
}
@media (max-width: 1299px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 110px;
    line-height: 120px;
  }
  #footer .footer_wrapper .footer_top .footer_details .social_links {
    margin: 10px 0 0;
  }
}
@media (max-width: 1199px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 90px;
    line-height: 100px;
  }
}
@media (max-width: 991px) {
  #footer .footer_wrapper .footer_top {
    padding: 45px 0 25px;
  }
  #footer .footer_wrapper .footer_top .footer_details {
    gap: 30px;
    flex-direction: column;
  }
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 80px;
    line-height: 90px;
  }
  #footer .footer_wrapper .footer_top .footer_details .social_links {
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #footer .footer_wrapper .footer_top .footer_contact {
    gap: 20px;
  }
  #footer .footer_wrapper .footer_top .footer_menu_wrapper {
    flex-direction: column;
    align-items: start;
  }
  #footer .footer_wrapper .footer_top .footer_menu_wrapper {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  #footer .footer_wrapper .footer_top .footer_menu_wrapper .footer_menu {
    column-gap: 30px;
    row-gap: 15px;
  }
  #footer .footer_wrapper .footer_top .footer_contact {
    margin: 35px 0;
    align-items: start;
  }
  #footer .footer_wrapper .footer_bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  #footer .footer_wrapper .footer_top .footer_contact a {
    text-align: left;
  }
}
@media (max-width: 767px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 50px;
    line-height: 60px;
    margin: 0 0 20px;
  }
  #footer .footer_wrapper .footer_top .footer_details .footer_btn {
    padding: 6px 6px 6px 25px;
    font-size: 18px;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  #footer .footer_wrapper .footer_top {
    padding: 40px 0 25px;
  }
  #footer .footer_wrapper .footer_top .footer_details .social_links li a {
    font-size: 18px;
  }
  #footer .footer_wrapper .footer_top .footer_contact a,
  #footer .footer_wrapper .footer_top .footer_menu_wrapper .footer_menu li a {
    font-size: 16px;
  }
  #footer .footer_wrapper .footer_bottom {
    gap: 18px;
    font-size: 16px;
  }
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 35px;
    line-height: 45px;
  }
  #footer .footer_wrapper .footer_top .footer_details .footer_btn {
    gap: 16px;
  }
  #footer
    .footer_wrapper
    .footer_top
    .footer_details
    .footer_btn
    .icon_wrapper {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 360px) {
  #footer .footer_wrapper .footer_top .footer_details .footer_title {
    font-size: 30px;
    line-height: 40px;
  }
}
/* =============== FOOTER END =============== */
