

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.barlow-thin {
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .barlow-thin-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .barlow-extralight {
    font-family: "Barlow", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .barlow-extralight-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .barlow-light {
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .barlow-light-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .barlow-regular {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .barlow-regular-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .barlow-medium {
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .barlow-medium-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .barlow-semibold {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .barlow-semibold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .barlow-bold {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .barlow-bold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .barlow-extrabold {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .barlow-extrabold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .barlow-black {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .barlow-black-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  

h2, h3, h4, h5, h6, a, li, p {
    font-family: "Poppins", sans-serif;
    list-style: none;
}

h1 {
    font-family: "Poppins", sans-serif;
}
.h2, h2 {
    font-size: 40px;
    font-weight: 700;
}
:root {
    --section-space: 120px;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

a:focus {
    box-shadow: none !important;
}

input:focus {
    outline: none;
}

select:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

button:focus {
    outline: none;
}

.clearfix {
    display: block;
    content: "";
    clear: both;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #737373 !important;
}

@media (max-width: 991px) {
    p {
        color: #606060 !important;
        font-size: 15px !important;
        line-height: 1.7;
    }
    .wrap {
        padding: 0 31px !important;
    }
    .wrap_2 {
        padding: 0 31px !important;
    }
}

@media (min-width: 768px) and (max-width: 1050px) {
    .container-fluid.wrap {
        padding: 0 51px;
    }

}

input[type="number"] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.wrap {
    padding: 0 120px;
}

.wrap_2 {
    padding: 0 226px;
}

@media (max-width: 1279px) {
    .wrap_2 {
        padding: 0 117px;
    }
}

button {
    box-shadow: 0px 3px 9px 0 #00000029;
    border: transparent !important;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(2px) translateZ(0);
    transform: perspective(2px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

/* button:hover {
    -webkit-animation-name: pulse-grow-on-hover;
    animation-name: pulse-grow-on-hover;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
} */
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #65b5f6 !important;
}
button#dropdownMenuButton:hover {
  color: #65b5f6 !important;
}
button {
    transition-duration: 0.3s;
    transition-property: transform;
}
.mt70{
  margin-top: 70px;
}
/* Button MAnins */
.button-swing {
    color: #65b5f6;
    background-color: transparent;
    border: 1px solid #65b5f6;
    border-radius: 4px;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .button-swing:hover {
    animation: swing 1s ease;
    animation-iteration-count: 1;
  }
  
  @keyframes swing {
    15% {
      transform: translateX(5px);
    }
    30% {
      transform: translateX(-5px);
    }
    50% {
      transform: translateX(3px);
    }
    65% {
      transform: translateX(-3px);
    }
    80% {
      transform: translateX(2px);
    }
    100% {
      transform: translateX(0);
    }
  }
/* Button MAnins */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")
}
/* .navbar .active, .navbar .active:focus{
    background: #FFC107;
    border-bottom: 2px solid #c70039;
} */

@media (min-width: 991.98px) and (max-width: 1237px) {
    .container-fluid.wrap {
        padding: 0 49px;
    }
}

@media (max-width: 385px) {
    .wrap {
        padding: 0 22px !important;
    }
}
/* button.common_btn.bnr_btn:hover{
    background: #293a8b;
    border: 1px solid #293a8b;
} */


/* Unique Class */

.section-mt {
    margin-top: 70px;
}
.image-layer {
    position: absolute;
    left: 0px;
    top: -52px;
    width: 350px;
    height: 500px;
    background-repeat: no-repeat;
    z-index: -4;
    opacity: 0.4;
}
.image-layer_one {
    position: absolute;
    right: 0px;
    top: -52px;
    width: 350px;
    height: 500px;
    background-repeat: no-repeat;
    z-index: -4;
    opacity: 0.4;
}
section.services {
    position: relative;
}
/* Header */
ul.navbar-nav.left li a i {
    font-size: 25px;
    padding: 0px;
    color: #ffffff;
    margin: -8px;
    background: #062d46;
    padding: 11px 11px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 14px;
}
ul.navbar-nav.left li a i:hover {
    background: #0b76bb;
}
.home_nav {
    position: absolute !important;

    border-radius: 10px;
}
ul.navbar-nav.social-media li {
    padding: 0px 6px;
    font-size: 20px;
}
ul.navbar-nav.social-media li a {
    color: #70E8E8 !important;
    font-size: 16px !important;
    /* font-weight: 500; */
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #02D0CF !important;
    border: 1px solid white;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
    color: blanchedalmond !important;
}

.button.navbar-toggler {
    box-shadow: none;
}
/* nav.navbar {
    background: #1c4a9c !important;
    padding: 10px 0;
} */
.fixed-top {
    position: sticky;
}
a.navbar-brand img {
    width: 300px;
}
li.nav-item a {
    color: #000 !important;
    font-weight: 500;
    padding: 15px !important;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    /* margin-right: 47px; */
}

li.nav-item {
    margin-bottom: auto;
    margin-top: auto;
}

ul.navbar-nav.nav_list {
    margin-left: 6%;
}
/* a.nav-link.active {
    color: #FF5E14 !important;
} */
.close:hover {
    color: #fff;
}
.dropdown:hover>.dropdown-menu {
  display: block;
  z-index: 9;
}
.dropdown-menu {
  padding: 0px !important;
  border: none !important;
}
.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}
button#dropdownMenuButton {
  background: none;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0px;
  color: #062d46 !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #02d0cf;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  /* padding: 12px 16px; */
  z-index: 1;
  margin-left: 0px !important;
  /* text-align: center; */
  /* margin: auto; */
}
.site-navbar {
    margin-bottom: 0px;
    z-index: 1999;
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    /* padding: 15px 30px !important; */
    border-radius: 4px;
}
.navbar-expand-lg .navbar-nav .nav-link.active {
  color: #0d6e6e !important;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 17px;
    color: #062d46 !important;
    font-weight: 700;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 0px;
    text-transform: uppercase;
}
.navbar-expand-lg.top-navbar .navbar-nav .nav-link {
    padding: 5px 24px 0px 0px !important;
    /* padding-left: 11px !important; */
    color: #062d46 !important;
    font-weight: 600;
    font-size: 14px;
    margin: 1px !important;
}
.top-navbar {
  padding: 0px 0px;
  background: #212529;
}
nav.navbar.navbar-expand-lg.top-navbar.d-lg-block.d-none.border-bottom ul li a {
    font-family: "Barlow", sans-serif;
    color: #fff;
}
nav.navbar.navbar-expand-lg.top-navbar.d-lg-block.d-none.border-bottom ul li a span {
    color: #70E8E8;
}
/* nav.navbar.navbar-expand-lg.down-main-header {
    padding: 20px 0px;
} */
a.nav-link button {
    border: none;
    border-radius: 120px;
    padding: 8px 23px;
    background-color: #062d46;
    color: #fff;
}
a.nav-link button:hover {
    background: #0b76bb;
    border: 1px solid #88a7bb7a !important;
    color: #fff !important;
    box-shadow: 0 0 20px 0 #00000021;
}


/* ----------------------banner start------------------------ */
.banner .carousel-item{
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, .6); */
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner .carousel-itemp {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #02D0CF;
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #02D0CF;
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: #ffffff;
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 0;
    font-weight: 600;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: #02D0CF;
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: #02D0CF;
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: #02D0CF;
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}
#carouselId .carousel-indicators li {
    width: 14px;
    height: 15px;
    background: #02D0CF;
    margin: 6px;
    border-radius: 30px;
    opacity: 1;
}
#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}
.banner .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    padding: 0;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 0 !important;
    border-bottom: 0 !important;
    opacity: .5;
    transition: opacity .6s ease;
}
  h1.text-white.display-1.mb-4.animated.fadeInRight {
    max-width: 75%;
    /* text-align: center; */
    /* margin: auto; */
    line-height: 66px;
    font-weight: 700;
    font-size: 60px;
  }
p.mb-4.text-white.fs-5.animated.fadeInDown {
  font-size: 16px !important;
  max-width: 50%;
  text-align: left;
  /* margin: auto; */
}
h6.text-secondary.h4.animated.fadeInUp {
    font-size: 16px;
    color: #02d0cf !important;
}
@media (max-width: 992px) {
    .banner .carousel-item{
        min-height: 500px;
    }
    
    .banner .carousel-itemimg {
        min-height: 500px;
        object-fit: cover;
    }

    .banner .carousel-itemh1 {
        font-size: 40px !important;
    }

    .banner .carousel-itemp {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .banner .carousel-item{
        min-height: 400px;
    }
    
    .banner .carousel-itemimg {
        min-height: 400px;
        object-fit: cover;
    }

    .banner .carousel-itemh1 {
        font-size: 28px !important;
    }

    .banner .carousel-itemp {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item, .page-header .breadcrumb-item a {
  font-size: 18px;
  color: #00BCD4;
}
.banner .carousel-caption {
  position: absolute;
  right: 0;
  bottom: 1.25rem;
  left: 8%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
}

/* ----------------------banner end------------------------ */

/* counetr */
.counter h1 {
    color: #000 !important;
    font-weight: 700;
}
/* counetr */

/* About */
.section-space-top {
    padding-top: var(--section-space, 120px);
}
section#about p {
    text-align: justify;
}
.about-four {
    padding-bottom: 70px;
    background-color: var(--ttk-white, #fff);
  }
  @media (max-width: 1199px) {
    .about-four {
      padding-bottom: 120px;
    }
  }
  @media (max-width: 767px) {
    .about-four {
      padding-bottom: 100px;
    }
  }
  @media (max-width: 575px) {
    .about-four {
      padding-bottom: 80px;
    }
  }
  @media (max-width: 1330px) {
    .about-four__image {
      padding-left: 60px;
      padding-right: 20px;
    }
  }
  @media (max-width: 1199px) {
    .about-four__image {
      padding-left: 40px;
    }
  }
  @media (max-width: 991px) {
    .about-four__image {
      padding-right: 0;
      margin-bottom: 50px;
    }
  }
  @media (max-width: 450px) {
    .about-four__image {
      padding-left: 30px;
    }
  }
  .about-four__image__inner {
    position: relative;
    width: 100%;
  }
  .about-four__image__inner::before {
    content: "";
    position: absolute;
    top: 40px;
    left: -40px;
    width: 100%;
    height: 100%;
     border: none; 
}
  @media (max-width: 575px) {
    .about-four__image__inner::before {
      top: 30px;
      left: -30px;
    }
  }
  .about-four__image__inner img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    border: 1px solid #cccccc82;
}
  .about-four__funfact {
    position: relative;
    position: absolute;
    left: -62px;
    bottom: -57px;
    z-index: 2;
  }
  @media (max-width: 575px) {
    .about-four__funfact {
      left: -40px;
    }
  }
  @media (max-width: 450px) {
    .about-four__funfact {
      margin-top: 30px;
      position: relative;
      left: 0;
      bottom: 0;
    }
  }
  .about-four__funfact__item {
    padding: 45px 30px;
  }
  @media (max-width: 1199px) {
    .about-four__funfact__item {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }
  .about-four__funfact__item--1 {
    background-color: var(--ttk-primary, #12574A);
  }
  .about-four__funfact__item--2 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--ttk-base, #12574A);
  }
  .about-four__funfact__number {
    display: inline-flex;
    align-items: center;
    font-size: 90px;
    color: var(--ttk-primary, #12574A);
    line-height: 1;
    letter-spacing: -1.8px;
    text-transform: capitalize;
    margin-bottom: 11px;
    text-shadow: 1px 1px 0 var(--ttk-white, #fff), -1px -1px 0 var(--ttk-white, #fff), 1px -1px 0 var(--ttk-white, #fff), -1px 1px 0 var(--ttk-white, #fff), 1px 1px 0 var(--ttk-white, #fff);
    transition: all 400ms ease;
  }
  .about-four__funfact__number--2 {
    color: var(--ttk-base, #12574A);
  }
  @media (max-width: 1199px) {
    .about-four__funfact__number {
      font-size: 70px;
    }
  }
  .about-four__funfact__item:hover .about-four__funfact__number {
    color: var(--ttk-white, #fff);
  }
  .about-four__funfact__title {
    font-size: 16px;
    color: var(--ttk-white, #fff);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.32px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: all 400ms ease;
  }
  @media (max-width: 1199px) {
    .about-four__funfact__title {
      font-size: 14px;
    }
  }
  .about-four__funfact__item:hover .about-four__funfact__title {
    color: var(--ttk-white, #fff);
  }
  .about-four__funfact__icon {
    position: absolute;
    top: calc(50% - 22px);
    right: -68px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background-color: var(--ttk-white, #fff);
    border-radius: 50%;
    z-index: 2;
  }
  @media (max-width: 450px) {
    .about-four__funfact__icon {
      display: none;
    }
  }
  .about-four__funfact__icon img {
    width: 32px;
    height: 32px;
  }
  .about-four .sec-title {
    margin-bottom: 39px;
  }
  .about-four__main-tab-box {
    position: relative;
    display: block;
  }
  .about-four__main-tab-box .tab-buttons {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 21px;
    position: relative;
    left: 13px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 0;
    z-index: 1;
  }
  section.about-four.section-space-top.inner .tab-buttons{
      /* justify-content: center; */
  }
  .about-four__main-tab-box .tab-buttons li {
    margin-left: -13px;
  }
  .about-four__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    min-width: 166px;
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #000;
    line-height: 1.75;
    letter-spacing: -0.32px;
    text-transform: capitalize;
    background-color: #EFE752;
    clip-path: polygon(88% 0, 100% 51%, 88% 100%, 0% 100%, 12% 51%, 0% 0%);
    z-index: 1;
    transition: all 500ms ease;
  }
  .about-four__main-tab-box .tab-buttons .tab-btn:hover, .about-four__main-tab-box .tab-buttons .tab-btn.active-btn {
    color: var(--ttk-white, #fff);
    background-color: #02d0cf;
}
  .about-four__main-tab-box .tabs-content {
    position: relative;
    display: block;
  }
  .about-four__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
  }
  .about-four__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    /*! margin-top: 0px; */
  }
  .about-four__tab-text {
    letter-spacing: -0.32px;
    text-transform: capitalize;
    margin-bottom: 25px;
  }
  .about-four__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 7px 25px;
    flex-wrap: wrap;
    margin-bottom: 31px;
  }
  .about-four__list__icon {
    position: relative;
    top: 7px;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: var(--ttk-base, #12574A);
  }
  .about-four__list__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
  }
  .about-four__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--ttk-primary, #12574A);
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: -0.32px;
    text-transform: capitalize;
  }
  .about-four__list li:nth-child(1), .about-four__list li:nth-child(4) {
    width: 26%;
  }
  @media (max-width: 1199px) {
    .about-four__list li:nth-child(1), .about-four__list li:nth-child(4) {
      width: calc(50% - 15px);
    }
  }
  @media (max-width: 575px) {
    .about-four__list li:nth-child(1), .about-four__list li:nth-child(4) {
      width: 100%;
    }
  }
  .about-four__list li:nth-child(2), .about-four__list li:nth-child(5) {
    width: 26%;
  }
  @media (max-width: 1199px) {
    .about-four__list li:nth-child(2), .about-four__list li:nth-child(5) {
      width: calc(50% - 15px);
    }
  }
  @media (max-width: 575px) {
    .about-four__list li:nth-child(2), .about-four__list li:nth-child(5) {
      width: 100%;
    }
  }
  .about-four__list li:nth-child(3), .about-four__list li:nth-child(6) {
    width: 38%;
  }
  @media (max-width: 1199px) {
    .about-four__list li:nth-child(3), .about-four__list li:nth-child(6) {
      width: calc(50% - 15px);
    }
  }
  @media (max-width: 575px) {
    .about-four__list li:nth-child(3), .about-four__list li:nth-child(6) {
      width: 100%;
    }
  }
  .about-four__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--ttk-gray5, #EADBC8);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 33px;
  }
  .about-four .ttk-btn {
    padding: 18px 23.2px;
    background-color: transparent;
    border: 1px solid var(--ttk-base, #12574A);
    color: var(--ttk-base, #12574A);
  }
  .about-four .ttk-btn .ttk-btn__icon {
    color: var(--ttk-base, #12574A);
  }
  .about-four .ttk-btn:hover {
    color: var(--ttk-white, #fff);
    border-color: var(--ttk-base, #12574A);
  }
  .about-four .ttk-btn:hover .ttk-btn__icon {
    color: var(--ttk-white, #fff);
  }
  .about-four .ttk-btn .ttk-btn__hover {
    background-color: var(--ttk-base, #12574A);
  }
  .about-four .about-client__image {
    width: 50px;
    height: 50px;
  }
  .about-four .ttk-btn {
    padding: 18px 23.2px;
    background-color: transparent;
    border: 1px solid var(--ttk-base, #12574A);
    color: var(--ttk-base, #12574A);
}
.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}
.sec-title__top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
h6.sec-title__tagline {
    margin: 0;
}
h3.sec-title__title {
    font-size: 38px;
    font-weight: 700;
}
section#about button {
    padding: 13px 40px;
    background: #02d0cf;
    border-radius: 43px;
    color: #fff;
}
  /* About */

/* parallax */

section.quality-products{
    margin-top: 70px;
}
.parallax {
    background:url(../images/parallax.png) repeat fixed 100%;
    background-size: cover;
    color: aliceblue;
  }
.parallax-inner {
    padding-top: 8%;
    padding-bottom: 8%;
  }
.parallax p{
    max-width: 70%;
    margin: auto;
    color: #fff !important;
}
.quality-products button{
    padding: 10px 40px;
    background: #02d0cf;
    border-radius: 43px;
    color: #fff;
    margin-top: 20px;
}
/* parallax */

/* services */
section.services {
    position: relative;
    padding: 70px 0px;
    background:url(../images/s-bg.png) repeat fixed 100%;
    background-size: cover;
}
.service-box {
  background: #fff;
  border-radius: 25px 25px 0px 0px;
  height: 100%;
}
.s-imgs img {
    border-radius: 25px 25px 0px 0px;
}
.s-cnt {
    padding: 28px 36px 0px 36px;
}
.s-next {
    background: #efe752;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 13px 20px;
    text-align: right;
    /* padding: 0px; */
    /* margin: auto; */
    /* float: right; */
}
.s-spacing-nxt{
    padding: 0px 36px 22px 0px;
}

.s-cnt h6 {
    font-size: 17px;
    font-weight: 500;
    color: #005041;
}
section.services p {
    max-width: 70%;
    color: #000 !important;
}
/* Products */
.product-two{
    margin-top: 70px;
}
/* products */


.contact-one--home-four {
    background-color: var(--ttk-gray6, #F8F0E5);
  }
  @media (max-width: 1199px) {
    .contact-one--home-four {
      padding-bottom: 24px;
    }
  }
  @media (max-width: 991px) {
    .contact-one--home-four {
      padding-bottom: 82px;
    }
  }
  @media (max-width: 767px) {
    .contact-one--home-four {
      padding-bottom: 62px;
    }
  }
  @media (max-width: 575px) {
    .contact-one--home-four {
      padding-bottom: 42px;
    }
  }
  .contact-one--home-four .contact-one__bg {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    opacity: 0.3;
    mix-blend-mode: soft-light;
    width: 100%;
  }
  .contact-one--home-four .contact-one__form {
    top: -128px;
    margin-left: 0;
    margin-right: 30px;
    background-color: var(--ttk-gray5, #EADBC8);
  }
  @media (max-width: 1199px) {
    .contact-one--home-four .contact-one__form {
      margin-right: 20px;
    }
  }
  @media (max-width: 991px) {
    .contact-one--home-four .contact-one__form {
      margin-right: 0px;
    }
  }
  .contact-one--home-four .contact-one__content {
    margin-top: 43px;
  }
  @media (max-width: 991px) {
    .contact-one--home-four .contact-one__content {
      margin-top: -70px;
    }
  }
  .contact-one--home-four .sec-title__title {
    color: var(--ttk-primary, #12574A);
  }
  .contact-one--home-four .contact-one__service__item {
    border-color: RGBA(var(--ttk-text-rgb, 113, 120, 128), 0.25);
  }
  .contact-one--home-four .contact-one__service__item:last-child {
    padding-bottom: 0;
    border: 0;
  }
  .contact-one--home-four .contact-one__service__item:hover .contact-one__service__icon {
    color: var(--ttk-white, #fff);
    background-color: var(--ttk-base, #12574A);
  }
  .contact-one--home-four .contact-one__service__title {
    color: var(--ttk-primary, #12574A);
  }
  .contact-one--home-four .contact-one__service__text {
    color: var(--ttk-text, #717880);
  }
  .contact-one--home-four .contact-one__worker-image {
    position: absolute;
    right: 25px;
    bottom: 0;
    max-width: 100%;
    height: auto;
  }
  @media (max-width: 1830px) {
    .contact-one--home-four .contact-one__worker-image {
      width: 230px;
    }
  }
  @media (max-width: 1699px) {
    .contact-one--home-four .contact-one__worker-image {
      right: 10px;
      width: 200px;
    }
  }
  @media (max-width: 1599px) {
    .contact-one--home-four .contact-one__worker-image {
      display: none;
    }
  }


  /* ------------------------testimonial section start---------------------------- */

section.testimonial h1 {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
    /* margin-bottom: 88px; */
}

section.testimonial p {
    max-width: 85%;
    margin: auto;
    text-align: center;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.testi_content {
    text-align: center;
    margin-top: 71px;
}

section.testimonial .slick-arrow {
    position: absolute;
    top: 0;
}

section.testimonial .slick-arrow.slick-prev {
    left: 0;
    top: 50%;
    z-index: 10;
    color: #858585 !important;
    font-weight: 600;
}

section.testimonial .slick-arrow.slick-prev::after {
    display: inline-block;
    content: "";
    border-top: 0.1rem solid #a8a8a8;
    width: 2rem;
    margin: 0 1rem;
    vertical-align: middle;
    transform: translateY(-0.1rem);
}

section.testimonial .slick-arrow.slick-next {
    right: 0;
    top: 50%;
    z-index: 10;
    color: #000 !important;
    font-weight: 600;
}

section.testimonial .slick-arrow.slick-next::before {
    display: inline-block;
    content: "";
    border-top: .1rem solid #43a2f5;
    width: 2rem;
    margin: 0 1rem;
    transform: translateY(-0.1rem);
    vertical-align: middle;
}

.card.testi-back {
    height: 600px;
    position: absolute;
    width: 19%;
    border: 0;
    background-color: #EBF6FF;
    border-radius: 29px;
    margin: auto;
    left: 0;
    right: 0;
    padding: 200px;
}

section.testimonial {
    position: relative;
    margin-top: 70px;
}

button.testi_btn {
    margin-top: 50px !important;
}

.testi_quote {
    border-radius: 92px;
    width: 144px;
    margin-bottom: 41px !important;
}

.testi_content h4 {
    margin-top: 24px;
    color: #000;
    font-weight: 800;
    font-size: 23px;
    margin-bottom: 18px;
}

.testi_content h5 {
    color: #4D81C5;
    font-size: 16px;
    font-weight: 500;
}

.testi_content h6 {
    color: #7c8186;
    font-size: 18px;
    /* margin-top: 7px; */
    /* font-weight: 600; */
    margin-bottom: 14px;
}

@media (max-width: 1199px) {
    section.testimonial .slick-arrow.slick-prev::after {
        display: none;
    }
    section.testimonial .slick-arrow.slick-next::before {
        display: none;
    }
}


/* @media (max-width: 991px) {
    button.testi_btn {
        margin-top: 150px !important;
    }
} */

@media (max-width: 767px) {
    section.testimonial .slick-arrow.slick-prev {
        display: none !important;
    }
    section.testimonial .slick-arrow.slick-next {
        display: none !important;
    }
    /* button.testi_btn {
        margin-top: 116px !important;
    } */
}

@media (max-width: 450px) {
    .card.testi-back {
        height: 638px;
        padding: 152px;
    }
    button.testi_btn {
        margin-top: 94px !important;
    }
}

@media (max-width: 350px) {
    .card.testi-back {
        padding: 136px;
    }
}

img.testi_ele_1 {
    position: absolute;
    right: 25%;
    top: -115px;
}

img.testi_ele_2 {
    position: absolute;
    top: 28%;
    left: 11%;
}

img.testi_ele_1 {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
    /* position: absolute;
top: -28px; */
    width: 82px;
}

img.testi_ele_1 {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

img.testi_ele_2 {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
    /* position: absolute;
top: -28px; */
    width: 82px;
}

img.testi_ele_2 {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1350px) {
    img.testi_ele_1 {
        right: 18%;
    }
}

@media (max-width: 1000px) {
    img.testi_ele_1 {
        display: none;
    }
}

@media (max-width: 767px) {
    section.testimonial {
        margin-top: 189px;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    section.testimonial h1 {
        font-size: 36px;
    }
    section.testimonial {
        margin-top: 98px;
        margin-bottom: 0;
    }
}


/* ------------------------testimonial section end---------------------------- */


/* footter */
.footer-section {
  background: #1E1E1E;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
  
  .footer-logo {
    max-width: 170px;
  }
  
  .footer-copyright-area {
    border-top: 0.1px solid #ffffff;
    padding-top: 3px;
    padding-bottom: 3px;
  }
  footer.footer-top-area.footer-top-area-two.pt-100 {
    background: #0d1741;
  }
  .copy-right p {
    color: #fff;
  }
  .designed p {
    color: #fff;
    float: inline-end;
  }
  .footer-bottom-area {
    border-top: 1px solid #ffffff47;
    padding: 12px 0px;
  }
  .footer-widget-wrap {
    padding-top: 70px;
    padding-bottom: 75px;
}
.footer-widget-about {
    margin-top: 0px;
}
a.footer-logo img {
    max-width: 100px;
}
.footer-widget .footer-widget-title {
    font-size: 18px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    color: #ffffff;
    /* margin-left: 25px; */
}
.widget-link {
    padding-top: 22px;
}
.widget-link .link li {
    margin-top: 7px;
}
.widget-link .link li a {
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s linear;
}
ul.navbar-nav.social-media li {
    padding: 12px;
    color: #fff !important;
}
ul.navbar-nav.social-media li a {
    color: #fff !important;
}
a.footer-logo img {
    max-width: 300px;
    margin-bottom: 20px;
}
.footer-widget-wrap p {
    color: #fff !important;
}
ul.d-flex.social-media li {
  padding: 0px 12px;
  margin: 5px !important;
  border: 1px solid #fff;
  padding: 9px 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
ol, ul {
    padding-left: 0rem;
}
ul.d-flex.social-media li a i {
  color: #fff;
}
.footter-70{
  margin-top: 70px;
}

/* inner pages */
.home-page-header {
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../images/carousel-1.png) center center no-repeat;
  background-size: cover;
}
.page-header {
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../images/carousel-2.png) center center no-repeat;
  background-size: cover;
}
.container-fluid.page-header.py-5 h1 {
  font-weight: 700;
}
.service-page p {
  text-align: justify;
}
section.service-page h3 {
  color: #00998b;
  font-weight: 500;
}
.service-page button {
  padding: 13px 40px;
  background: #02d0cf;
  border-radius: 43px;
  color: #000;
  font-weight: 600;
}
section.inner-sp-pg ul {
  padding: 12px;
}
section.inner-sp-pg ul li {
  padding: 10px;
  font-weight: 400;
}
/* .inner-sp-pg ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  left: 7%;
  color: #070707;
  font-size: 12px;
} */
section.inner-sp-pg ul li  {
  padding: 14px;
  color: #02d0cf;
}
section.inner-sp-pg ul li a {
  padding: 14px;
  color: #000;
}
.section-py-120 {
  padding: 70px 0;
}
.list-wrap {
  margin: 0px;
  padding: 0px;
}
.contact-info-wrap .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 20px 40px !important;
  margin-bottom: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #E1E1E1;
  background: #F7F7FA;
  gap: 25px;
}
.contact-info-wrap h4 {
  font-size: 20px !important;
  font-weight: 700 !important;
}
.contact-form-wrap {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #E1E1E1;
  background: #F7F7FA;
  padding: 30px 40px 42px;
}
.contact-form-wrap .title {
  margin-bottom: 5px;
  position: relative;
  font-size: 30px;
}
.contact-form-wrap p {
  margin-bottom: 15px;
}
.contact-form-wrap .form-grp {
  margin-bottom: 20px;
}
.contact-form-wrap .form-grp textarea {
  min-height: 230px;
  max-height: 230px;
}

.contact-form-wrap .form-grp input, .contact-form-wrap .form-grp textarea {
  width: 100%;
  border: 1px solid #E1E4E7;
  border-radius: 5px;
  display: block;
  background: var(--tg-common-color-white);
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-body-color);
  padding: 11px 20px;
  height: 50px;
  transition: 0.3s;
}
.contact-info-wrap .list-wrap li .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00BCD4;
  color: var(--tg-common-color-white);
  font-size: 20px;
  line-height: 0;
  flex: 0 0 auto;
}
.content a {
  color: #737373 !important
}
.contact-form-wrap button{
  padding: 13px 40px;
    background: #02d0cf;
    border-radius: 43px;
    color: #fff;
}


.news-box {
  border: 1px solid #ccc;
}
.news-contents p {
  text-align: justify;
}
.news-contents {
  padding: 0px 28px;
}
.news-post ul li {
  padding: 20px 0px;
  color: #5d5d5d;
  border-bottom: 1px solid #d3c9c9;
}
.news-post ul li a {

  color: #5d5d5d;

}
.news-post ul li a:hover {
  color: red;
}
.news-post {
  padding: 28px 16px;
  background: #e8e8e8;
}
.career-box p {
  max-width: 100%;
  text-align: justify;
}
.career-box {
  border-bottom: 1px solid #ccc;
  /* padding: 12px; */
  /* width: 114%; */
}
.career-box h3 {
  font-weight: 600;
}
.career-box button{
  padding: 13px 40px;
    background: #02d0cf;
    border-radius: 43px;
    color: #fff;
}
section.blog_main {
  margin-top: 60px;
}

ul.blog_tab {
  background: #f5f5f5;
  padding: 15px 0;
  border-radius: 39px;
  max-width: 100%;
  box-shadow: 0 6px 11px 0px #0000001a;
}

h1.blog_head {
  text-align: center;
  font-size: 123px;
  font-weight: 700;
  color: #f5f5f5;
  margin-top: -48px;
  position: relative;
  z-index: -2;
}

.blog_tab.nav-pills .nav-link.active,
.blog_tab.nav-pills .show>.nav-link {
  color: #000;
  background: none;
  border-bottom: 2px solid #084b81;
  border-radius: 0;
}

ul.blog_tab a {
  color: #000;
  font-weight: 600;
}

ul.blog_tab li {
  margin-left: 13px;
}

.blog_tab_content {
  margin-top: 50px;
}

button.blog_btn_lts {
  background: none;
  box-shadow: none;
  padding: 4px 25px;
  border: 2px solid #2f81c4 !important;
  margin-bottom: 10px;
  border-radius: 22px;
  color: #2f81c4;
  font-size: 17px;
  font-weight: 500;
}

.blog_tab_content .row {
  margin-top: 61px;
}

.blog_contents h2 {
  font-size: 40px;
  margin-bottom: 19px;
  font-weight: 600;
}

.flex_blog_content img {
  width: 72px;
  margin-right: 19px;
}

.flex_blog_content p {
  margin-bottom: 0;
  margin-top: 0 !important;
}

.flex_blog_content p span:nth-child(1) {
  color: #084b81;
  padding-right: 7px;
  font-weight: 600;
  font-size: 17px;
}

.flex_blog_content p span:nth-child(2) {
  color: #86accb;
  padding-left: 7px;
  font-weight: 600;
  font-size: 17px;
}

.flex_blog_content p span.border-right {
  border-right: 1px solid #084b81 !important;
}

.flex_blog_content p span.border-right {
  border-right: 1px solid #084b81 !important;
}

.blog_contents p {
  margin-top: 21px;
}

img.blog_img_main {
  border-radius: 17px;
}

.blog_tab_content .border-bottom {
  border-bottom: 1px solid #b3b3b3 !important;
  padding-top: 50px;
}

img.blog_youtube_icon {
  margin-left: 16px;
}

@media (max-width: 1814px) {
  .blog_contents h2 {
      font-size: 35px;
  }
}

@media (max-width: 1621px) {
  .blog_contents h2 {
      font-size: 32px;
  }
}

@media (max-width: 1505px) {
  .blog_contents h2 {
      font-size: 27px;
  }
}

@media (max-width: 1312px) {
  .blog_contents h2 {
      font-size: 23px;
      margin-bottom: 14px;
  }
  .blog_contents p {
      font-size: 14px !important;
  }
}

@media (max-width: 1015px) {
  .blog_contents h2 {
      font-size: 20px;
      margin-bottom: 14px;
  }
}

@media (max-width: 991px) {
  .blog_img_main {
      margin-top: 31px;
  }
  .blog_contents h2 {
      font-size: 23px;
      margin-top: 30px;
  }
  ul.blog_tab li {
      margin-left: -3px;
  }
  h1.blog_head {
      font-size: 104px;
  }
  .blog_contents {
      margin-top: 18px;
  }
  .blog_tab_content .row {
      margin-top: 10px;
  }
  img.blog_youtube_icon {
      width: 52px;
  }
  button.blog_btn_lts {
      margin-top: 10px;
  }
  .blog_tab_content {
      margin-top: 30px;
  }
}

@media (max-width: 767px) {}

@media (max-width: 500px) {
  h1.blog_head {
      font-size: 86px;
  }
}

@media (max-width: 365px) {
  .flex_blog_content p span:nth-child(1) {
      font-size: 13px;
  }
  .flex_blog_content p span:nth-child(2) {
      font-size: 13px;
  }
}

.blog_content_hide {
  display: none;
}

#blog-hide-btn {
  display: block;
  text-align: center;
  margin-top: 67px;
}


/* ------------------------form section start---------------------------- */

section.form {
  margin-top: 130px;
}

.card.form_card h1 {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 48px;
}

.card.form_card {
  padding: 65px;
  border: none;
  border-radius: 36px;
  box-shadow: 0 0px 25px 0px #00000021;
}

.card.form_card input {
  padding: 9px 0px;
  background: none;
  border: none;
  border-bottom: 2px solid #d7d7d7;
  margin-top: 20px;
  width: 90%;
}

form#submit-form {
  margin-top: 20px;
}

.form-control-up {
  width: 100%;
  outline: none;
  font-size: 16px;
}

.input-label {
  display: block;
  position: relative;
}

.placeholder-text {
  position: absolute;
  left: -2px;
  top: 30px;
  padding: 0px 4px;
  color: #848484;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transform-origin: top left;
  transition: 0.25s ease;
}

.form-control-up:focus+.placeholder-text,
.form-control-up:not(:placeholder-shown)+.placeholder-text {
  top: 10px;
  transform: scale(1);
  background-color: #fff;
  color: #848484;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  .placeholder-text {
      font-size: 14px;
      top: 27px;
  }
  .lets_talk_form input {
      margin-top: 15px;
  }
  section.form {
      margin-top: 66px;
  }
}

button.more_dtls.form_btn {
  margin-top: 32px;
  padding: 12px 34px;
  font-size: 19px;
}

.form_btns {
  margin-top: 53px;
}

button.whats_app.form_wtz {
  padding: 12px 20px;
}

button.call_us.form_call {
  padding: 12px 20px;
}

.form_contact {
  margin-top: 25px;
}

.form_contact img {
  margin-right: 25px;
}

.form_contact h6 {
  font-size: 19px;
  font-weight: 600;
  margin-top: 6px;
}

.form_contact.phone_form {
  margin-top: 25px;
}

.phone_form h6 {
  line-height: 1.7;
  margin-top: 0;
}

.form_social img {
  margin-left: 14px;
  margin-top: 7px;
}

@media (max-width: 991px) {
  .card.form_card .justify-content-end {
      justify-content: end !important;
  }
  .form_social img {
      margin-right: 14px;
      margin-top: 7px;
      margin-left: 0;
  }
  button.whats_app.form_wtz {
      padding: 12px 15px;
  }
  button.call_us.form_call {
      padding: 12px 15px;
  }
  .card.form_card h1 {
      font-size: 36px;
  }
  section.form .border-left {
      display: contents;
  }
}

@media (max-width: 430px) {
  .card.form_card {
      padding: 49px 21px;
      border: none;
      border-radius: 36px;
      box-shadow: 0 16px 35px 0px #00000021;
  }
  .form_contact h6 {
      font-size: 15px;
      font-weight: 600;
      margin-top: 6px;
  }
  .form_social img:first-child {
      width: 28px;
  }
  .form_social img {
      width: 22px;
  }
  .card.form_card h1 {
      font-size: 30px;
  }
}

section.form .border-left {
  border-left: 1px solid #707070 !important;
}

button.whats_app {
  border: 1px solid #fff;
  padding: 19px 41px;
  border-radius: 57px;
  font-weight: 500;
  font-size: 19px;
  background: linear-gradient( 0deg, rgba(58, 188, 75, 1) 0%, rgba(29, 94, 38, 1) 100%);
  color: #fff;
}

button.whats_app span {
  display: flex;
  align-items: center;
}

button.whats_app span i {
  font-size: 26px;
  margin-right: 7px;
}

button.whats_app span p {
  margin: 0;
  color: #fff !important;
  font-size: 13px !important;
}

button.call_us {
  border: 1px solid #fff;
  padding: 12px 41px;
  border-radius: 57px;
  font-weight: 500;
  font-size: 19px;
  background: linear-gradient( 0deg, #0A72C6 0%, #084B81 100%);
  color: #fff;
  margin-left: 16px;
}

button.call_us span {
  display: flex;
  align-items: center;
}

button.call_us span img {
  width: 17px;
  margin-right: 7px;
}

button.call_us span p {
  margin: 0;
  color: #fff !important;
  font-size: 13px !important;
}

@media (max-width: 991px) {
  button.whats_app.form_wtz {
      padding: 12px 15px;
  }
  button.call_us.form_call {
      padding: 12px 15px;
  }
  button.call_us span p {
      font-size: 12px !important;
  }
  button.whats_app span p {
      font-size: 12px !important;
  }
}

@media (max-width: 350px) {
  button.call_us.form_call {
      padding: 8px 11px;
  }
  button.whats_app.form_wtz {
      padding: 8px 11px;
  }
  button.whats_app span i {
      font-size: 22px;
      margin-right: 7px;
  }
}


/* ------------------------form section end---------------------------- */


/* ---------------------------------------------------------------------------------blog inner page start------------------------------------------------------------------------------- */

section.blog_inner_page {
  margin-top: 67px;
}

.blog_inner_main h1 {
  font-weight: 700;
  margin-bottom: 45px;
  font-size: 40px;
  color: #000;
}

img.blog_inner_main_img {
  border-radius: 17px;
}

.flex_blog_content_inne_one {
  margin-top: 36px;
  margin-bottom: 30px;
}

.comment_sec_blog_inner {
  margin-top: 53px;
  padding-bottom: 18px;
}

.comment_sec_blog_inner.border-bottom {
  border-color: #c0c0c0 !important;
}

.comment_sec_blog_inner p {
  margin-bottom: 0;
}

.comment_sec_blog_inner_one {
  margin-right: 36px;
}

.comment_sec_blog_inner_one i {
  font-size: 24px;
  margin-right: 8px;
  color: red;
}

.comment_sec_blog_inner_one p {
  font-weight: 600;
  color: #000 !important;
  font-size: 17px !important;
}

.comment_sec_blog_inner_two i {
  font-size: 24px;
  margin-right: 8px;
  color: rgb(0, 0, 0);
}

.comment_sec_blog_inner_two p {
  font-weight: 600;
  color: #000 !important;
  font-size: 17px !important;
}

.comment_sec_blog_inner_three i {
  font-size: 32px;
  margin-left: 13px;
  color: #666666;
}

@media (max-width: 991px) {
  .blog_inner_main h1 {
      font-size: 31px;
  }
  section.blog_inner_page {
      margin-top: 6px;
  }
}

@media (max-width: 524px) {
  .comment_sec_blog_inner_one {
      margin-right: 14px;
  }
  .comment_sec_blog_inner_two p {
      font-size: 12px !important;
  }
  .comment_sec_blog_inner_one p {
      font-size: 12px !important;
  }
  .comment_sec_blog_inner_one i {
      font-size: 15px;
  }
  .comment_sec_blog_inner_two i {
      font-size: 15px;
  }
  .comment_sec_blog_inner_three i {
      font-size: 18px;
  }
  .comment_sec_blog_inner {
      margin-top: 35px;
  }
}

@media (max-width: 767px) {
  .blog_inner_main h1 {
      font-size: 22px;
  }
}

@media (max-width: 385px) {
  .comment_sec_blog_inner_one i {
      font-size: 12px;
  }
  .comment_sec_blog_inner_two i {
      font-size: 12px;
  }
  .comment_sec_blog_inner_two p {
      font-size: 10px !important;
  }
  .comment_sec_blog_inner_one p {
      font-size: 10px !important;
  }
  .comment_sec_blog_inner_three i {
      font-size: 15px;
      margin-left: 6px;
  }
  .blog_inner_main h1 {
      font-size: 19px;
  }
}

.blog_comment_inner {
  margin-top: 61px;
}

.blog_comment_inner h3 {
  font-size: 30px;
  font-weight: 500;
}

.blog_inner_comment_sec_main {
  margin-top: 48px;
}

.blog_inner_comment_sec_main img {
  width: 93px;
}

.blog_inner_comment_sec_main i {
  font-size: 26px;
  color: #8f8f8f;
}

.blog_comment_scroll {
  max-height: 600px;
  overflow-y: auto;
  width: 100%;
  overflow-x: hidden;
}

#scroll_style::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}

#scroll_style::-webkit-scrollbar {
  width: 12px;
  background-color: #fff;
}

#scroll_style::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #e2e2e2;
}

@media (max-width: 500px) {
  .blog_inner_comment_sec_main h3 {
      font-size: 18px !important;
  }
}

@media (max-width: 400px) {
  .blog_inner_comment_sec_main img {
      width: 55px;
  }
}

.blog_inner_ads img {
  width: 100%;
  border-radius: 17px;
}

.recent_blog_inner {
  margin-top: 29px;
}

.recemnt_blog_card {
  padding: 25px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 0px 17px 0px #00000021;
}

.recemnt_blog_card h3 {
  font-size: 22px;
  font-weight: 600;
}

ul.recemnt_blog_card_list {
  list-style-type: none;
  padding: 0;
  margin-top: 29px;
}

ul.recemnt_blog_card_list li {
  display: flex;
  align-items: baseline;
}

ul.recemnt_blog_card_list li span::before {
  content: '';
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #0A72C6;
  margin-right: 12px;
}

ul.recemnt_blog_card_list li p {
  font-weight: 600;
  color: #373737 !important;
  margin-top: 0;
}

ul.recemnt_blog_card_list li p {
  font-weight: 600;
  color: #373737 !important;
  margin-top: 0;
}

.blog_odoo_links {
  margin-top: 29px;
}

.blog_odoo_links_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.blog_odoo_links_list li {
  float: left;
  display: block;
  padding: 6px 14px;
  border: 1px solid #C8C8C8;
  border-radius: 10px;
  font-weight: 400;
  margin: 11px 9px 11px 0;
}

.blog_odoo_links_list li a {
  text-align: center;
  font-size: 13px;
  color: #000;
  font-weight: 400;
}

.blog_inner_newsletter {
  margin-top: 29px;
}

.card_newsletter {
  padding: 25px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 0px 17px 0px #00000021;
}

.card_newsletter h3 {
  font-size: 22px;
  font-weight: 600;
}

.card_newsletter input {
  padding: 9px 13px;
  width: 94%;
  border: 1px solid #9c9c9c;
  border-radius: 25px;
}

.card_newsletter input::placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #9c9c9c;
}

button.newsletter_btn {
  background: none;
  box-shadow: none;
  padding: 7px 25px;
  border: 2px solid #6ab8f6 !important;
  margin-bottom: 10px;
  border-radius: 27px;
  color: #6ab8f6;
  font-size: 17px;
  font-weight: 500;
  margin-top: 14px;
}

.blog_inner_contact {
  margin-top: 29px;
}

.card_blog_contact {
  padding: 25px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 0px 17px 0px #00000021;
}

.card_blog_contact h3 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.card_blog_contact button span p {
  font-size: 10px !important;
}

.card_blog_contact button {
  padding: 10px 16px !important;
  margin-top: 18px;
}

.card_blog_contact button span i {
  font-size: 18px !important;
}

.card_blog_contact button span img {
  width: 14px !important;
}

@media (max-width: 991px) {
  .blog_inner_ads img {
      margin-top: 47px;
  }
}

@media (max-width: 339px) {
  .card_blog_contact button {
      padding: 6px 8px !important;
  }
}

.contact_icon_blog_inner i {
  font-size:color 32px;
  margin-left: 13px;
  color: #666666;
}

.contact_icon_blog_inner {
  margin-top: 28px;
}

.contact_icon_blog_inner img {
  width: 51px;
}
.member-box.d-block.text-center.mx-auto {
  box-shadow: 0 0 20px 0 #00000021;
  padding: 20px;
  height: 100%;
}
/* LIGHTBOX STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.lightbox-modal .modal-content {
  background: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 1.2rem;
  z-index: 10;
}

.lightbox-modal .modal-body {
    display: flex;
    align-items: center;
    padding: 0;
    text-align: center;
    background-color: #000000d8;
}

.lightbox-modal img {
  width: auto;
  max-height: 500px;
  max-width: 100%;
}

.lightbox-modal .carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(36, 36, 36, 0.75);
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
}

.lightbox-modal .carousel-control-prev {
    border: 1px solid #acacac;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    transform: translate(8px, 0px);
    opacity: inherit !important;
}

.lightbox-modal .carousel-control-next {
    border: 1px solid #acacac;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    transform: translate(8px, 0px);
    opacity: inherit !important;
}

/*-----------MEDIA QUERY-------------*/
@media (max-width:  1500px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 17px;
    color: #062d46 !important;
    font-weight: 600;
    font-size: 14px;
    margin-right: 0px !important;
    margin-top: 0px;
    text-transform: uppercase;
}
li.nav-item a {
  color: #000 !important;
  font-weight: 500;
  padding: 13px !important;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  /* margin-right: 47px; */
}
}
@media (max-width:  1257px) {

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 17px;
    color: #062d46 !important;
    font-weight: 600;
    font-size: 12px;
    margin-right: 0px !important;
    margin-top: 0px;
    text-transform: uppercase;
}
li.nav-item a {
  color: #000 !important;
  font-weight: 500;
  padding: 10px !important;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  /* margin-right: 47px; */
}
}
@media (max-width: 991px) {
  .parallax p {
    max-width: 100%;
    margin: auto;
    color: #fff !important;
}
.h2, h2 {
  font-size: 40px;
  font-weight: 700;
}
}

@media (min-width: 787px) and (max-width: 991px){
    
    
}

@media (min-width: 510px) and (max-width: 786px){

    
}
@media (min-width: 320px) and (max-width: 509px){
    
  .h2, h2 {
    font-size: 28px;
    font-weight: 700;
}
      
}
@media (max-width: 320px) {
  .h2, h2 {
    font-size: 28px;
    font-weight: 700;
}
}
  

@media (min-width: 320px) and (max-width: 400px){
  .carousel-caption.slide-caption {
      top: 6% !important;
      left: 16%;
  }
  .navbar-nav {
      display: flex;
      flex-direction: column;
      padding-left: 0;
      margin-bottom: 0;
      list-style: none;
      flex-direction: column !important;
  }

  
}

@media (min-width: 320px) and (max-width: 574px) {
  .carousel-caption.slide-caption {
      top: 13%;
      left: 16%;
  }
  .carousel-caption {
      position: absolute;
      right: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      color: #fff;
      text-align: center;
  }
  .carousel-caption.slide-caption h1 {
      max-width: 100%;
      text-align: center;
      line-height: 29px !important;
      color: #fff;
  }
  
  .hero-content h1 {
      font-size: 23px !important;
      line-height: 0 !important;
      color: #ffffff;
      text-transform: uppercase;
  }
}

@media (min-width: 575px) and (max-width: 786px) {
  .carousel-caption.slide-caption {
      top: 10%;
      left: 16%;
  }
  .hero-content h1 {
      font-size: 43px !important;
      line-height: 61px;
      color: #ffffff;
      text-transform: uppercase;
  }
  .carousel-caption.slide-caption h1 {
      max-width: 100%;
      text-align: center;
      line-height: 52px !important;
      color: #fff;
  }
}