@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "Sansation";
  src: url("../fonts/SansationRegular.eot");
  src: url("../fonts/SansationRegular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SansationRegular.woff2") format("woff2"),
    url("../fonts/SansationRegular.woff") format("woff"),
    url("../fonts/SansationRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", serif;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  border: none;
  outline: none;
  background: transparent;
}

.container-a {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

/* /////////// variables ////////// */
:root {
  --color-a: #113c69;
  --color-b: #ffb100;
  --color-c: #486787;
  --color-white: #ffffff;
  --color-black: #000000;
}

/* ///////////////////////////////////////////////////////// */
/* ////////////////// custom css //////////////////////// */
.sec-heading {
  color: var(--color-black);
  font-size: 80px;
  font-weight: 500;
  line-height: 90%; /* 72px */
}
.sec-des {
  color: var(--color-c);
  font-size: 23px;
  font-weight: 500;
}
.txt-a {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 156.023%; /* 28.084px */
}
.txt-b {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
}
.txt-c {
  color: var(--color-a);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 6.88px;
}
/* btns */
.btn-a {
  color: var(--color-a);
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 500;
  padding: 8px 42px;
  background-color: #ffffff;
  box-shadow: 7px 7px 0px var(--color-b);
  transition: 0.3s ease-in-out;
  &:hover {
    box-shadow: 0px 0px;
  }
}
.btn-b {
  border-radius: 100px;
  border: 1px solid var(--color-b);
  color: var(--color-a);
  padding-inline: 28px;
  padding-block: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 6.88px;
}
.btn-c {
  color: var(--color-a);
  padding: 8px 32px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  background-color: var(--color-white);
  &:hover,
  &.active {
    background-color: var(--color-b);
  }
}
/*  */
.sec-spaceing {
  margin-bottom: 130px;
}
/* ////////////// Navbar ///////////// */

.navbar {
  padding: 0;
  padding-block: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(7.5px);
  & .btn {
    background-color: var(--color-b);
  }
  & .btn-c {
    & img {
      width: 16px;
      height: auto;
    }
  }
}
.navbar .container-fluid {
  padding: 0;
}
.navbar-nav {
  gap: 55px;
}
.navbar-collapse {
  gap: 52px;
}

.logo {
  width: 100%;
  max-width: 148px;
  height: auto;
}
.navbar-nav .nav-link {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  &:hover {
    color: var(--color-b);
  }
  &.active {
    color: var(--color-b);
  }
}

.offcanvas {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
  & .offcanvas-header .btn-close {
    background-color: var(--color-white);
  }
}

/* *** mobile-nav *** */
.mobile-nav {
  position: fixed;
  width: 100%;
  bottom: 0px;
  padding: 10px 16px;
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.312);
  background: var(--color-a);
  backdrop-filter: blur(20px);
  transition: 0.5s 0.1s linear;
  z-index: 6;
}

.mobile-nav .m-nav-btn,
.mobile-nav .m-nav-item {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 12px;
}

.mobile-nav .m-nav-btn svg,
.mobile-nav .m-nav-item svg {
  color: var(--color-b);
}

.mobile-nav .m-nav-item.active {
  background: var(--color-b);
}

/* ///////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////// */

/* ////////////// top-header ///////////// */
.top-header-bg {
  background: var(--color-b);
}
.top-header {
  padding-block: 9px;
}
.top-header .left-content {
  gap: 15px;
}
.top-header .right-content {
  gap: 4px;
  & .txt-b span {
    font-weight: 600;
    text-transform: uppercase;
  }
}

/* ////////////// hero-sec ///////////// */

.hero-sec {
  /* height: 900px; */
  background-image: url(../images/banner-bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 900px;
}
.navbar-sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 3;
}

.hero-sec .banner-content {
  padding-top: 154px;
  &.pinned {
    padding-top: 262px;
  }
}
.hero-sec .banner-content .content {
  width: 100%;
  max-width: 660px;
  gap: 40px;
  color: var(--color-white);
  padding: 40px;
  background: rgba(17, 60, 108, 0.6);
  backdrop-filter: blur(10.5px);
  & .top-txt {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 15px;
  }
  & .m-heading {
    font-size: 52px;
    font-weight: 600;
  }
  & .txt-a {
    max-width: 484px;
  }
}
/* ////////////// services ///////////// */
/*  */
.top-block {
  row-gap: 16px;
  & .sec-heading {
    max-width: 336px;
    position: relative;
    &::before {
      content: url(../images/dots.svg);
      position: absolute;
      left: 0;
      top: -50px;
    }
  }
  & .sec-des {
    max-width: 904px;
  }
}
.services .top-block {
  margin-bottom: 80px;
}
/*  */
.serv-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.serv-grid .serv-card {
  overflow: hidden;
  & img {
    width: 100%;
    height: 358px;
    object-fit: cover;
    transition: 0.5s ease-in-out;
  }
  & .hover-box {
    width: 100%;
    min-height: 121px;
    background: rgba(17, 60, 105, 0.75);
    backdrop-filter: blur(3.5px);
    padding: 10px;
    & .content {
      height: 110px;
      border: 1px solid #ffb100;
      padding: 11px;
      & p {
        color: var(--color-white);
        font-size: 32px;
        font-weight: 400;
        line-height: 120%;
      }
    }
  }
  &:hover img {
    scale: 1.2;
    transform: rotate(-10deg);
  }
}
/* ////////////// our-products ///////////// */
.our-products {
  & .top-block {
    margin-bottom: 61px;
    row-gap: 42px;
    & .sec-heading {
      max-width: 536px;
    }
    & .sec-des {
      max-width: 1032px;
    }
  }
}
.our-products {
  & .p-card {
    margin-bottom: 8px;
    margin-right: 7px;
    background: var(--color-a);
    box-shadow: 7px 8px 4px 0px rgba(0, 0, 0, 0.4);
    & .p-card-img {
      width: 100%;
      height: 366px;
      object-fit: cover;
    }
    & .content {
      padding: 24px;
      & .inner-content {
        height: 131px;
        padding: 12px;
        border: 1px solid var(--color-b);
        display: flex;
        align-items: center;
        justify-content: center;
        & p {
          color: var(--color-white);
          text-align: center;
          font-size: 32px;
          font-weight: 500;
          text-transform: uppercase;
        }
      }
    }
  }
}

/* ////////////// iso ///////////// */
.iso {
  width: 100%;
  background: linear-gradient(
      0deg,
      rgba(17, 60, 105, 0.25) 0%,
      rgba(17, 60, 105, 0.25) 100%
    ),
    url("../images/ISO555.png") no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  & .container-a {
    max-width: 1120px;
  }

  & .block-a {
    gap: 20px;
    & span {
      color: var(--color-b);
    }
  }
  & .content-box {
    gap: 21px;
    width: 100%;
    max-width: 424px;
    padding: 35px 37px;
    margin-block: 50px;
    background-color: var(--color-white);
    box-shadow: 0px 0px 82px 30px rgba(0, 0, 0, 0.56);
    & img {
      width: 100px;
      height: 109px;
    }
    & .btn-a {
      color: var(--color-white);
      background-color: var(--color-a);
      box-shadow: 7px 7px 0px var(--color-b);
      &:hover {
        box-shadow: 0px 0px;
      }
    }
  }
}

/* ////////////// chose-us ///////////// */
.chose-us {
  & .top-block {
    max-width: 561px;
    gap: 40px;
    & .sec-heading {
      max-width: 426px;
    }
    & ul {
      gap: 44px;
      list-style-position: inside;
      & li {
        display: flex;
        align-items: center;
        gap: 20px;
      }
    }
    & .btn-c {
      color: var(--color-white);
      background-color: var(--color-b);
    }
  }
  & .l-block {
    & .bg-img {
      position: relative;
      width: 100%;
      max-width: 594px;
      height: 100%;
      max-height: 466px;
      padding: 12px;
      border: 2px solid #ffb100;
      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      & .pop-img {
        position: absolute;
        bottom: -100px;
        right: -32px;
        width: 100%;
        max-width: 318px;
        height: 100%;
        max-height: 258px;
        object-fit: cover;
        box-shadow: -15px -15px 0px 0px #ffb100;
      }
    }
  }
}
/* ////////////// catalog ///////////// */
.catalog {
  border-radius: 15px;
  background: var(--color-a);
  padding-block: 24px;
  gap: 22px;
  & p {
    color: var(--color-white);
    font-size: 32px;
    font-weight: 400;
    & span {
      font-weight: 600;
    }
  }
  & .btn-a {
    color: var(--color-a);
    background-color: var(--color-b);
    box-shadow: 7px 7px 0px var(--color-white);
    &:hover {
      box-shadow: 0px 0px;
    }
  }
}

/* ////////////// presance ///////////// */
.presance-bg {
  background: var(--color-b);
}
.presance {
  gap: 46px;
  padding-block: 40px;
  & .content-box {
    gap: 32px;
    max-width: 427px;
    padding: 20px;
    & .sec-heading {
      font-size: 40px;
      line-height: 100%;
    }
    & .sec-des {
      font-size: 20px;
    }
    & .btn-c {
      color: var(--color-white);
      background-color: var(--color-a);
      /* &:hover {
        color: var(--color-b);
        background-color: var(--color-white);
      } */
    }
  }
}

/* ////////////// testimonial ///////////// */
.testimonial {
  & .top-block {
    margin-bottom: 64px;
    row-gap: 26px;
    & .sec-heading {
      max-width: 650px;
    }
    & .sec-des {
      max-width: 1032px;
    }
  }
}
.testimonial {
  padding-inline: 50px;
  & .swiper-slide {
    display: flex;
    justify-content: center;
  }
  & .client-card {
    width: 340px;
    height: 315px;
    border-radius: 10px;
    background: #222222;
    margin-top: 64px;
    & .client-card-img {
      width: 128px;
      aspect-ratio: 1/1;
      border-radius: 128px;
      object-fit: cover;
      margin-bottom: 38px;
      margin-top: -64px;
      z-index: 2;
    }
    & .content {
      padding-inline: 57px;
      & .client-name {
        color: #fbfbfb;
        text-align: center;
        font-size: 26px;
        font-weight: 400;
        line-height: 28px; /* 107.692% */
        font-family: "Sansation", serif;
        margin-bottom: 40px;
      }
      & .message {
        color: #fbfbfb;
        text-align: center;
        font-family: "Inter";
        font-size: 16px;
        font-weight: 400;
        line-height: 24px; /* 150% */
      }
    }
  }
}
/* ////////////// footer ///////////// */

footer {
  background: #ddd;
  padding-top: 87px;
  color: #486787;
  & .txt-a {
    color: #486787;
    font-weight: 400;
  }
  & .txt-d {
    color: #486787;
    font-family: "Inter";
    font-size: 20px;
    font-weight: 500;
  }
  & .txt-h {
    font-family: "Inter";
    font-size: 28px;
    font-weight: 600;
  }
}
.footer {
  padding-bottom: 40px;
  gap: 35px;
  & .block-a {
    width: 100%;
    max-width: 340px;
    gap: 18px;
    & .s-icons {
      gap: 12px;
    }
  }
  & .block-b {
    gap: 20px;
    width: 100%;
    max-width: 243px;
    & ul {
      gap: 12px;
    }
  }
  & .block-c {
    gap: 20px;
    width: 100%;
    max-width: 323px;
    & .txt-block {
      gap: 23px;
    }
  }
}
/*  */
footer .copyright {
  background-color: var(--color-a);
  padding-block: 10px;
  & p {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    & span {
      text-transform: uppercase;
      font-weight: 600;
    }
  }
}
/* ////////////////////// fixed-items /////////////////////////////////// */
.fixed-items {
  bottom: 35px;
  right: 35px;
  z-index: 5;
}
/* ///////////////////////////////////////////////////////// */
/* ///////////////////////about-page///////////////////////////// */
.about .growth {
  /* height: 200px; */
  background-image: url("../images/service-bg-3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 4px;
  & .content-box {
    padding: 28px;
    height: 100%;
    backdrop-filter: blur(1.5px);
    background-color: #113c6953;
    & .content {
      padding: 20px;
      height: 100%;
      border: 1px solid var(--color-b);
      & h4 {
        color: #ffffff;
        font-size: 46px;
        font-weight: 500;
        margin-bottom: 20px;
      }
      & .items {
        gap: 125px;
      }
      & .numbers {
        color: var(--color-b);
        font-size: 40px;
        font-weight: 600;
      }
      & .txt {
        color: var(--color-white);
        font-size: 18px;
        font-weight: 400;
      }
    }
  }
}
.about .our-team {
  gap: 46px;
  & .top-block {
    & .title {
      color: #222d39;
      font-size: 46px;
      font-weight: 500;
      line-height: 54px; /* 117.391% */
    }
    & .desc {
      max-width: 545px;
      color: #486787;
      text-align: center;
      font-family: "Inter";
      font-size: 18px;
      font-weight: 400;
      line-height: 28px; /* 155.556% */
    }
  }
  & .members {
    & .member {
      width: 100%;
      max-width: 308px;
      & img {
        width: 308px;
        height: 300px;
        object-fit: cover;
        border-radius: 3px;
      }
      & .overlay {
        bottom: -100%;
        width: 100%;
        height: 100%;
        padding-inline: 50px;
        padding-bottom: 40px;
        border-radius: 3px;
        background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(22, 18, 69, 0.75) 100%
        );
        transition: 0.3s;
        & .ms-icon {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 40px;
          height: 40px;
          background: #fff;
          border-radius: 50%;
          & img {
            width: 15px;
            height: 15px;
          }
        }
      }
      &:hover .overlay {
        bottom: 0%;
      }
      & .content {
        padding-block: 25px;

        & .m-name {
          color: var(--Dark, #222d39);
          font-family: "Sansation", serif;
          text-align: center;
          font-size: 24px;
          font-weight: 600;
        }
        & .m-position {
          color: var(--Body-Text, #8492a7);
          text-align: center;
          font-family: "inter";
          font-size: 18px;
          font-weight: 400;
        }
      }
    }
  }
}
/* ///////////////////////service-page///////////////////////////// */
.our-services {
  & .hero-sec {
    background-image: url("../images/ISO555.png");
  }
}
/* ////////////// plans ///////////// */
.body-txt {
  color: var(--body-text, #8492a7);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}
.body-txt-dark {
  color: var(--Dark, #222d39);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}
.plans .sec-heading {
  font-size: 60px;
  margin-bottom: 70px;
}
.plans .sec-name {
  font-size: 32px;
  margin-bottom: 12px;
}

.plan-switch {
  gap: 15px;
}
.plan-switch .body-txt.active {
  color: var(--color-a);
}

.plans .plan-cards {
  margin-top: 90px;
  & .btn-c {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 3px;
    padding-inline: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 3px;
    text-align: center;
    background: var(--White, #fff);
    color: var(--color-b);
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--Line-Shape, #dee7ee);
  }
}
.plans .plan-card {
  padding: 40px;
  border-radius: 5px;
}
.plans .plan-card .card-name {
  color: #222d39;
  font-size: 30px;
  font-weight: 600;
  line-height: 42px; /* 135% */
}
.plans .plan-card ul {
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.plans .plan-card ul li {
  gap: 12px;
}
.plans .plan-card .btn-c {
  margin-top: 25px;
}

.plans .plan-card.active {
  margin-top: -40px;
  margin-bottom: 40px;
  background: var(--color-a);

  & .card-name {
    color: var(--White, #fff);
  }
  & .body-txt-dark {
    color: var(--White, #fff);
  }
  & .btn-c {
    background: var(--color-b);
    color: var(--White, #fff);
    border: inherit;
  }
}

/* ***** */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-b);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  outline: 4px solid var(--color-a);
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-a);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* ///////////////////////gallery-page///////////////////////////// */
.sub-page {
  & .hero-sec {
    height: 440px;
    & .banner-content {
      padding-top: 42px;
      &.pinned {
        padding-top: 150px;
      }
      & .content {
        gap: 16px;
        padding-block: 28px;
        & .top-txt {
          margin-bottom: 0px;
        }
      }
    }
  }
}

.gallery {

  & .hero-sec {
    background-image: url("../images/ISO555.png");
  }
}
 
.photos-grid-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0;
  align-items: start;

  @media (max-width: 576px) {
      grid-template-columns: 1fr;
  }

  .img-box {
      border: 1px solid #ffffff;
      position: relative;
  }

  .img-box:hover .transparent-box {
      background-color: rgba(0, 0, 0, 0.6);
  }

  .img-box:hover .caption {
      transform: translateY(-5px);
  }

  img {
      max-width: 100%;
      display: block;
      height: 100%;
      object-fit: cover;
  }

  .caption {
      color: white;
      transition: transform 0.3s ease, opacity 0.3s ease;
      font-size: 1.5rem;
  }

  .transparent-box {
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 0;
      left: 0;
      transition: background-color 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .main-photo {
      grid-row: 1;
      grid-column: 1;
  }

  .sub {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      grid-gap: 0em;

      &:nth-child(0) {
          grid-column: 1;
          grid-row: 1;
      }

      &:nth-child(1) {
          grid-column: 2;
          grid-row: 1;
      }

      &:nth-child(2) {
          grid-column: 1;
          grid-row: 2;
      }

      &:nth-child(3) {
          grid-column: 2;
          grid-row: 2;
      }
  }
}

.hide-element {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media screen and (min-width: 1280px) {

  .container {
      margin: 0 auto;
      width: 1250px;
  }
}

/* ///////////////////////contact-page///////////////////////////// */
.contact {
  & .map iframe {
    width: 100%;
    height: 450px;
  }

  & .inquary-sec {
    gap: 50px;
  }
  & .inquary-block {
    width: 100%;
    max-width: 645px;
    border-radius: 5px;
    box-shadow: 0px 15px 30px 0px rgba(210, 217, 224, 0.55);
    & .top-box {
      background-color: var(--color-a);
      border-radius: 5px 5px 0px 0px;
      color: var(--color-white);
      padding: 21px 40px;
      width: 100%;
      & p {
        color: var(--color-white);
        font-size: 24px;
        font-weight: 500;
      }
    }
    & form {
      row-gap: 37px;
      padding: 47px 40px;
      border-radius: 0px 0px 5px 5px;
      & label {
        margin-bottom: 7px;
        color: #222d39;
        font-size: 18px;
        font-weight: 500;
      }
      & input,
      & textarea {
        width: 100%;
        padding: 11px 25px;
        border: inherit;
        border-radius: 3px;
        background: #f7f9fc;
        font-size: 18px;
        font-weight: 500;
        color: #486787;
        &::placeholder {
          color: #486787;
        }
      }
      & textarea {
        height: 139px;
      }
      & .btn-c {
        background-color: var(--color-a);
        color: var(--color-white);
      }
    }
  }

  & .contact-info-block {
    width: 100%;
    max-width: 545px;
    padding-top: 70px;
    & h5 {
      color: #222d39;
      font-size: 40px;
      font-weight: 400;
      line-height: 54px; /* 135% */
      margin-bottom: 25px;
    }
    & .txt-a {
      color: #486787;
      margin-bottom: 34px;
    }
    & ul {
      gap: 24px;
      margin-bottom: 40px;
      font-size: 18px;
      font-weight: 500;
      line-height: 28px; /* 155.556% */
      & .label-txt {
        color: #8492a7;
      }
      & .link-txt {
        color: #486787;
        transition: 0.3s;
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
}

/* ///////////////////////////////////////////////////////// */
/* ////////////// media-quaries ///////////// */
@media screen and (max-device-width: 1400px) {
}
@media screen and (max-device-width: 1320px) {
  .container-a {
    padding-inline: 16px;
  }
}
@media screen and (max-device-width: 1200px) {
}
@media screen and (max-device-width: 1140px) {
}
@media screen and (max-device-width: 992px) {
}
@media screen and (max-device-width: 768px) {
  .serv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-device-width: 576px) {
  .navbar {
    background: var(--color-a);
    backdrop-filter: blur(0px);
    transition: 0.5s 0.1s linear;
    & .btn-c {
      display: flex;
      align-items: center;
      column-gap: 4px;
      font-size: 16px;
      background-color: var(--color-b);
      padding: 4px 16px;
      border-radius: 20px;
      & img {
        width: 16px;
        height: auto;
      }
    }
  }
  .navbar .logo {
    margin-left: 10px;
    & img {
      width: 90px;
      height: auto;
    }
  }
  .navbar-brand {
    padding: 0;
  }
  /*  */
  main {
    padding-bottom: 65px;
  }
  .sec-heading {
    font-size: 70px;
  }
  .sec-des {
    font-size: 18px;
  }
  .hero-sec .banner-content {
    &.pinned {
      padding-top: 229px;
    }
  }
  .sub-page .hero-sec .banner-content {
    &.pinned {
      padding-top: 117px;
    }
  }
  .sec-spaceing {
    margin-bottom: 80px;
  }
  /* home-page */
  .hero-sec .banner-content .content {
    gap: 20px;

    & .m-heading {
      font-size: 36px;
    }
  }
  /*  */
  .serv-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  /* */
  .footer {
    padding-block: 20px;
  }
  /*  */
  .fixed-items {
    bottom: 45px;
    right: 15px;
  }
  footer {
    padding-top: 45px;
  }
  /* /////// */
  .about .growth {
    & .content-box .content .items {
      gap: 60px;
    }
  }

  /* /////// */
  .contact {
    & .inquary-block {
      & form {
        padding: 20px;
      }
    }
  }
  /* /////// */
  .plans .plan-cards {
    margin-top: 20px;
  }
  .plans .plan-card.active {
    margin-top: 10px;
  }
  /*  */
  .about .growth .content-box .content h4 {
    font-size: 40px;
  }
}

