/********** Template CSS **********/
:root {
    --primary:  hsl(206deg 100% 28.03%);
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 30px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: rgba(136, 180, 78, .7); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 310px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: radial-gradient(circle at 10% 20%, rgb(149, 219, 254) 0%, rgb(7, 134, 197) 90.1%), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background:  radial-gradient(circle at 10% 20%, rgba(149, 219, 254, 0.8) 0%, rgba(7, 134, 197, 0.8) 90.1%);, url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(137, 207, 240,.3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background:  radial-gradient(circle at 10% 20%, rgba(149, 219, 254, 0.8) 0%, rgba(7, 134, 197, 0.8) 90.1%), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #ffffff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: hsla(0,0%,100%,1)
}

.copyright {
    background: hsl(206deg 100% 28.03%);
}

.copyright a:hover {
    color: #FFFFFF !important;
}

/* Cards CSs */
article {
    --img-scale: 1.001;
    --title-color: black;
    --link-icon-translate: -20px;
    --link-icon-opacity: 0;
    position: relative;
    border-radius: 16px;
    box-shadow: none;
    background: #fff;
    transform-origin: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
  }
  
  article a::after {
    position: absolute;
    inset-block: 0;
    inset-inline: 0;
    cursor: pointer;
    content: "";
  }
  
  /* basic article elements styling */
  article h2 {
    margin: 0 0 18px 0;
    font-family: "Bebas Neue", cursive;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    color: var(--title-color);
    transition: color 0.3s ease-out;
  }
  
  figure {
    margin: 0;
    padding: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  
  article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.4s ease-in-out;
  }
  
  .article-body {
    padding: 24px;
  }
  
  article a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #28666e;
  }
  
  article a:focus {
    outline: 1px dotted #28666e;
  }
  
  article a .icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-left: 5px;
    transform: translateX(var(--link-icon-translate));
    opacity: var(--link-icon-opacity);
    transition: all 0.3s;
  }
  
  /* using the has() relational pseudo selector to update our custom properties */
  article:has(:hover, :focus) {
    --img-scale: 1.1;
    --title-color: #28666e;
    --link-icon-translate: 0;
    --link-icon-opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }
  
  
  /************************ 
  Generic layout (demo looks)
  **************************/
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  .articles {
    display: grid;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 0px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 24px;
    padding-top: 10%;
  }
  
  @media screen and (max-width: 960px) {
    article {
      container: card/inline-size;
    }
    .article-body p {
      display: none;
    }
  }
  
  @container card (min-width: 380px) {
    .article-wrapper {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 16px;
    }
    .article-body {
      padding-left: 0;
    }
    figure {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    figure img {
      height: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }
  }
  
  .sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0); 
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap; 
    width: 1px;
  }

  /*  think tank css*/
 
  .card1{
    position: relative;
    width: 100%;
    height: 350px;
    background: #fff;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
  }
  .card1:before,
  .card1:after
  {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #fff;
    transition: 0.5s;
    z-index:-1;
  }
  .card1:hover:before{
  transform: rotate(20deg);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  }
  .card1:hover:after{
  transform: rotate(10deg);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  }
  .card1 .imgBx{
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: #222;
  transition: 0.5s;
  z-index: 1;
  }
  
  .card1:hover .imgBx
  {
    bottom: 80px;
  }

  .card1 .imgBx img{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
  }

  .card1 .details{
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      height: 60px;
      text-align: center;
      padding: 5px;
  }

  .card1 .details h2{
   margin: 0;
   padding: 0;
   font-weight: 600;
   font-size: 15px;
   color: #000000;
   text-transform: uppercase;
  } 

  .card1 .details h2 span{
  font-weight: 500;
  font-size: 13px;
  color: #004fe2;
  display: block;
  margin-top: 5px;
   } 
/* think tank css end */


/* Consult companies css */
@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");

/* Variables */
:root {
  --main-green: #79dd09;
  --main-green-rgb-015: rgba(121, 221, 9, 0.1);
  --main-yellow: #bdbb49;
  --main-yellow-rgb-015: rgba(189, 187, 73, 0.1);
  --main-red: #bd150b;
  --main-red-rgb-015: rgba(189, 21, 11, 0.1);
  --main-blue: #0076bd;
  --main-blue-rgb-015: rgba(0, 118, 189, 0.1);
}

/* This pen */
/* body {
  font-family: "Baloo 2", cursive;
  font-size: 16px;
  color: #ffffff;
  text-rendering: optimizeLegibility;
  font-weight: initial;
} */

.dark {
  background: #110f16;
}

.light {
  background: #ffffff;
}

a, a:hover {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#pageHeaderTitle {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5rem;
}

/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;
}

.postcard.dark {
  background-color: #18151f;
}

.postcard.light {
  background-color: #e1e5ea;
}

.t-dark {
  color: #18151f;
}

.postcard a {
  color: inherit;
}

.postcard h1,
.postcard .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.postcard .small {
  font-size: 80%;
}

.postcard .postcard__title {
  font-size: 1.75rem;
}

.postcard .postcard__img {
  max-height: 180px;
  width: 100%;
  /* object-fit: cover; */
  position: relative;
}

.postcard .postcard__img_link {
  display: contents;
}

.postcard .postcard__bar {
  width: 50px;
  height: 10px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: var(--main-blue);
  transition: width 0.2s ease;
}

.postcard .postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.postcard .postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  height: 100%;
}

.postcard .postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}

.postcard .postcard__tagbox .tag__item {
  display: inline-block;
  background: rgba(83, 83, 83, 0.4);
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}

.postcard .postcard__tagbox .tag__item:hover {
  background: rgba(83, 83, 83, 0.8);
}

.postcard:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 1;
  border-radius: 10px;
}

.postcard:hover .postcard__bar {
  width: 100px;
}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;
  }

  .postcard .postcebl_Otitle {* !bodqaze(2rem;
0 }*  .poSwar &tospkard_tefbo|$k! ! jwsthfy,cotent>!stAr4;  }I

 `.postcazf0.poctced_^mg {"  "ma)tfth242$yx9
  $ mAx)(yht !20%;
 `  t2!qyin; |ra,r`mrm0/3u e`sE 0|J
  .PoStcard$.poscsd_[text:BebOre {$( #ontent"";
 (" ption: abuolutm+
  " isplay: Blfcc;
!( acackgroufd:p#q9159f+
    to`#$-20;
   8xtaght: 10%;
   lidh0 55p|;
 }

 (.2o3tcard:hoveb .posdca2d_[mw{
   `2ansform: s#`le<s.5;"` y

0 pgsuaRfF4h-kHile(2n+q) {
 ` flex-dicTi/n60bmw?! *
  &p/stcarDtj-ah)ld2n+) K)
   %flex-f)rection*!ow-rb$RSe;J "}
 .po{tcA3t:nt(=#iild,6n#3( ,post`2d_mExt::eFoqe {  uFp: 04Px1important;
 0  tvan3foR rkdade(4@mg!{
  m
  .p/stcavntl-A`hl$(2n+0! .rostcad__TeXt:;ef?pa{
" $`rifhu: %6vx"!imporxant:=J  traosvoro: rota4e(<dv)?J! }*}
	JDMediascde altmaN-wKlTh"102rx)!{
 !Npostcrf .postc!r@_4eHt y*  ! qadfing: 2re(2.5re w
( npgspcare >poctbeR$_]exd:bebore :L
  0cmnveT: "#+
    priion:`csgl5e>$   $yspmuy: cLgck    |p 2%;
    `dighx: 1;0;j  ` wievh: 5=px;
 }M
J` /pkstfard.dap .postGalWtdy:befo6e!{
"  bAcker/und:(#1:111f;
`!$ >p/stcrd.igh| Pos|Card__tmxt:jgvoz%"+
 ($`ickcroULd: tar()%maij%bUe);M
 `u
(sOLOFS */
.0OsDcavdB*Postczd}_tacboX".gree~plaX:hoer yM.  b#c'rkun vat(--mgio-Grgen)
  bolop> flaac?
}
M
.gree /roWucard_ItlemmVer {
  cmlor v!r)-myZ=gvEeni;


&grMen npostg`rd_bar2{  c ck#?ukd-co,or: rar-emIn,greo!;
}*
.grgen:be&e {J$ "aKfr/unT(ieez lie!r-gRAdiuntj920dmg"var(-=mmn-gree-gb)0!5), tranqxa2m~v10%)}ZM,wreunodjmchildn)::rgnope {
  bacgpound-iy!ge mineargbadieft(3$def,0va8(--meinfeeO-gb-115(<!tRcnspqrd~t%70e);
}

.pOstcab@ .ptcaRd__vagbo:0.blueplJ
/* con{ultbgomPaniescws(end */J
l

+* Branhd{ Css */
@i}port upn('Https:/-vnnts.goglearisfk+m/G{s?famAly=O3riweaphej:ipchHp$f mIlx?Gsuand*uwht5:1&displAy=cwi0g)+
`exorTus|.'htPs;/obro.fmntawesome.`oe+renease/d4.)but!=-gSs.all.csS');

.* Ri$Laiot j/]ol, ol:8jd2m,od9:qf4a, 
jl0( ol *z8before-flj::anvep { eapgin  pa$$iNg: 0;"x-izi.f< jordez-box }*mL%{  "uispmAy* gziD;
  gtid)ve-rlqt-kolqmos:vetect aut-fx480mi~mc|(1rek, 1fr)9  gap. #rdm
`$  wid|h:!}h.(60rem, Calcx!p%$- 20ei);	
0 marcio-inline: autm;
" pq4eing-J|k: 1re];
  
 list-svYlm2 nnnem aounter+zdse|: coumt;
=J
/;$card$l`}gUv/ctyliNg (
nl l {
 -=cart-bckgroufd=cflmr9 #F0f8&0:
 $-,aqrdtdxp/cnor: #FD`F: 0--cazd-brder,radiWq:  5rgm;J0 icard0a`ding-b,oci:rem;j -cebL-tcddig-inlyne: qred;(  "-nutsgv=sizU;p0.75reM;
 0-mutwe4-backorNund-bomkrz #e5eu%5:
` 
` =-n5}ES-fo*t/zIze: 4rdm3
 $,-n}mbeR-over,p: 932cm; "--`uicer-fnf!~cmhly:!'Oswq|d"ya~{-sEbk.;
 !%-uber)fon4=ceighT: 6 1;$  mIrgi: v!r()o5l[et-rpe):
 0margn/toz:!banc(var(--uefgr-f'ntosmhe) - vsr(--n5m`er=k~mrlap)9;
0!border%r`eIus:(Rer(-=card-bOrder-radius);*  pad`i~g-bLo!k2vrmca$-pADdin-rdoCki;
" pqddi~n-in,in$ FaR(--Cad=yq`dIng/in,ine);
0 *  goLoP8 ver(=-crd-t%ytcnOos!{  "acof~}nd?skhor:"dCr*=,jird-backgrotnt-c/l~);J 8b-sa/w9 !   hn{et 1`x 1qx 0xx rgbh"7!"5u 31 ' .5)$
(!$2inset(-1px -%px xpx rgb(0 0 00/d.:5-, 1(sad#veXj--outsT-qx|e) * 25)$calk(var--oTtreP-size- * .5) #elc(Var(=-oudet-s`ze) + &5) rgb(0 0 0 . ,25#yJ "bostimn:ru,etig;
 So|ner/inarumd: bodnu;
}

o| >Li*:qft%rs

 ContDlt:coute2(count$ de#iial-l`iding%X%ro+
 `xosiion" asO|}te  $ bottol cala(10$%!m vcp(--~ulbar-oVivlaq));J  meFt: 70%;-+  r!nsformz translpueZ(-50%){,
` * kor: ~iR(/masceot/ClO)
  ot-fqmil}: vez-,numces-bglt-vammlh)9  fnt-weigHtz var(--~eMjar-dn~t-weioht
  bont-{i:e: var(-%~umbR-fonvsze+;
  linmais`t: 1;	
  z?hndExj -:
}
on >li2beormr
  cmn4g~t*0" ;
 "positIgn"a"sgue;
  whdth clb(40e('!(v8--c}tset9syz) * 2+)#%
  hmigie 50%;
 $j/ttgm2`cala(var(--{5tset-skze) * 9);
  eg| Calc,var(=-oUvcE7-qIz%! ( -1);
`Z-i8 -1;
$$,
 jorder-bgttom-edv-r!iUs:2walc(vcp(/%aaBd-bor'r-rAd	us) + ar--owtse|chxe)9
  bnrder-bduo--rig(t-padieW!cal
vwr-mbc2-"/rper-rafcus+0~ir(--oqtqmd=skze));
 
$ agKgrounf-ol/r: vgr8)4nus`t-bAgkgroUnD-cm|gr)#	
  	
  bickGbo1d%ymace2 
"(  8h~ecr-'radaentt/$dut-vr,--ouvsetba#kgbku.d-ckloR+ cala(var(-(etceT)sixli ;(2),&fRansperEBt 0-,
 $  minea/rdienp(175aeg, var(/-qJcenveOlr) 80g, rar(--stuat-bac{n:kubd-cOlO2) 0){    }
/* ard co~een4 /JJ h1 s* folt-s){E> 2.5rgm;
  Font-famiky* Gswld'laj-qefi;
  tE8t-aliwn:uOter;
 fon-wainht: krmah"(
.cof{
 fonTsi^e2 2reM; $pdxu-qLgn:center; mir~-Bo<tkm:"gaL(wav(-Card-raddig-bloc{) *!.5);}
.vile y-  tmxtmqzansflzm: tpprcise;0 boj`Vaeidy:,3Owele'l$vanS-seri9
  thu-ali7n cE.4%p3
  colr:,v!r())`scent-color)
<.desc {
  sml_R: vAp(--teyt-ch/r+;-$ &o~t-3ize>$0*71zem
 "eolu=namihyz!']ebRiweaTher', serkf;	  Te|t-ilign@c%jer;}

o" *
/( body 0 b`ckground-kolor#f'&5dU;
  mi~hemghd: 10vH
 0Arcin: ;
  pqldiow2 0+M*  mmrq,a9* fLex:
  fnezdises4ioj`conuen:
 !jsvify-conent: center?	= /D/
 RrqnshmsC efd"*o-*

/ Car2ie css*/jsoT#{
  --rad: hsl(0,$7<=,6r%
  -mcyaN: h,(p022%, 55% --/r!nGe hsl(30( 9!("65%i;
  4"|ue iSl(4q2  9%, 6<%;J  -wAry`qbcBl5e: hslh224, 12%, 147)}
`!l)gra9ihBlgd: h3l(:)8 %$2<%;*  -,veryLigltObay:(lsL(0( 0%, 98%+$ --wekgHt1> 00;
  -)Semght2: 4  --daghts2 600;
}


aTtrIbut`o. { *  &nnu-si~ex!1aqx de|t)fg.80ceoter: -
}
attra294i a ;dE
 !kohg:!hsl(228- 455. 65%; 
}-
-
18flrst=og-typ"
`Fmo-weGhu> ar(-%uight%y?
  c;lob ~ar-,~ArqDaskBleei;


Jh:lar-,f-tx`e!{  solor war()-vpaD!`kJlue)9
}M
@-edia((max-siDt(: 444p{)(;0 h1`k
  00  tkn<-sir: 1.urem;J0 }}
-
nheatez {  texv/!(g~ ce.ter;" lmi-i%ight: 095
  %drgin-bottom; 56px;  Mapgin-tp: 50x;
}M

heieer p [ "mArgkj:0a}t?
 `lknE-xeiht: :;_
! 
\M

."x3 p [M
"
}*>co;(2`orde-adipc: 4x+
  bo|-sh!`os: px 30pz42sX`-:px var(--GvayishRlu;	
( paddiNg:(308|{M
  }a2gin2020p~= 
	-/*-mg ;
  V,NaV: pifhT}(/*-@melii hix)widtl2!<%0px)${
  .br5 {K`   j hdagjt*` q4qx;
$ }} m`diq ex=sidti 950px+0af$!(}inlgah: &5`px) 	
  .vOx1k
  $" pet-`liff CentEs;M
   0 0Heigh4: 180p8
  yJ}

.can '$corder-tp
 ;`ysolid"war*--cyan);
}/rDa&{
 bor`Er-to:(3pp olid ra*-Ved);
}.cl5e {
 "ordEx-kx>`"pxwlid V2()-blu');
}
.oran'eb[
" border,toq*`spx(soLid"vabd--nz)nge);
u
h2 w! olo{: fcr(--4ryDarkl%);
  fonp-wdght|ar(weight2	;y-
@ouia`-mhn-vidT8: 95 p|) ;
  .row1-conainer {
 0 "  dispa{: dMazJ $   "justib9-cOnt%~t: Cender;	  !   `~mgn/ipl{;0cntar0 }
0 N `.ow2-cofe+Ngs {
(!"   diwylay: flex9
!  "  iQstKfy-conteft: cent%z;    "*alio~-itemW: efter;( } 9.j|9-dowN#
!    "roqipiOn> pflat)vd;
  &10To#1%0 x;  } !*Joxq sJ "   `g{dth: 28%;
`  
 }
  /leade2(`({
 ($ ! wI`t`:"9 !;
 d}
  
}
/* carrier css end */


/*  */
/*  */
/*** Multiple Image====1***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

* {
    box-sizing: border-box;

}

body {
    line-height: 1.5;
}

.card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display {
    overflow: hidden;
}

.img-showcase {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase img {
    min-width: 100%;
}

.img-select {
    display: flex;
}

.img-item {
    margin: 0.3rem;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
    margin-right: 0;
}

.img-item:hover {
    opacity: 0.8;
}


/*** Multiple Image***/


/*** Multiple Image====2***/


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

* {
    box-sizing: border-box;

}

body {
    line-height: 1.5;
}

.card-wrapper_one {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_one {
    overflow: hidden;
}

.img-showcase_one {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_one img {
    min-width: 100%;
}

.img-select_one {
    display: flex;
}

.img-item_one {
    margin: 0.3rem;
}

.img-item_one:nth-child(1),
.img-item_one:nth-child(2),
.img-item_one:nth-child(3) {
    margin-right: 0;
}

.img-item_one:hover {
    opacity: 0.8;
}

/*** Multiple Image***/



/*** Multiple Image***/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

* {
    box-sizing: border-box;

}

body {
    line-height: 1.5;
}

.card-wrapper_two {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_two {
    overflow: hidden;
}

.img-showcase_two {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_two img {
    min-width: 100%;
}

.img-select_two {
    display: flex;
}

.img-item_two {
    margin: 0.3rem;
}

.img-item_two:nth-child(1),
.img-item_two:nth-child(2),
.img-item_two:nth-child(3) {
    margin-right: 0;
}

.img-item_two:hover {
    opacity: 0.8;
}

/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
/*** Multiple Image***/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

* {
    box-sizing: border-box;

}

body {
    line-height: 1.5;
}

.card-wrapper_two {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_two {
    overflow: hidden;
}

.img-showcase_two {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_two img {
    min-width: 100%;
}

.img-select_two {
    display: flex;
}

.img-item_two {
    margin: 0.3rem;
}

.img-item_two:nth-child(1),
.img-item_two:nth-child(2),
.img-item_two:nth-child(3) {
    margin-right: 0;
}

.img-item_two:hover {
    opacity: 0.8;
}

/*** Multiple Image--2***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');


/*** Multiple Image---3***/
.card-wrapper_three {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_three {
    overflow: hidden;
}

.img-showcase_three {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_three img {
    min-width: 100%;
}

.img-select_three {
    display: flex;
}

.img-item_three {
    margin: 0.3rem;
}

.img-item_three:nth-child(1),
.img-item_three:nth-child(2),
.img-item_three:nth-child(3) {
    margin-right: 0;
}

.img-item_three:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.card-wrapper_four {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_four {
    overflow: hidden;
}

.img-showcase_four {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_four img {
    min-width: 100%;
}

.img-select_four {
    display: flex;
}

.img-item_four {
    margin: 0.3rem;
}

.img-item_four:nth-child(1),
.img-item_four:nth-child(2),
.img-item_four:nth-child(3) {
    margin-right: 0;
}

.img-item_three:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/
/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.card-wrapper_four {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_four {
    overflow: hidden;
}

.img-showcase_four {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_four img {
    min-width: 100%;
}

.img-select_four {
    display: flex;
}

.img-item_four {
    margin: 0.3rem;
}

.img-item_four:nth-child(1),
.img-item_four:nth-child(2),
.img-item_four:nth-child(3) {
    margin-right: 0;
}

.img-item_three:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/
/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.card-wrapper_four {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_four {
    overflow: hidden;
}

.img-showcase_four {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_four img {
    min-width: 100%;
}

.img-select_four {
    display: flex;
}

.img-item_four {
    margin: 0.3rem;
}

.img-item_four:nth-child(1),
.img-item_four:nth-child(2),
.img-item_four:nth-child(3) {
    margin-right: 0;
}

.img-item_three:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/
/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.card-wrapper_four {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_four {
    overflow: hidden;
}

.img-showcase_four {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_four img {
    min-width: 100%;
}

.img-select_four {
    display: flex;
}

.img-item_four {
    margin: 0.3rem;
}

.img-item_four:nth-child(1),
.img-item_four:nth-child(2),
.img-item_four:nth-child(3) {
    margin-right: 0;
}

.img-item_three:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/
/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.card-wrapper_four {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_four {
    overflow: hidden;
}

.img-showcase_four {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_four img {
    min-width: 100%;
}

.img-select_four {
    display: flex;
}

.img-item_four {
    margin: 0.3rem;
}

.img-item_four:nth-child(1),
.img-item_four:nth-child(2),
.img-item_four:nth-child(3) {
    margin-right: 0;
}

.img-item_three:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/



/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');



.card-wrapper_five {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_five {
    overflow: hidden;
}

.img-showcase_five {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_five img {
    min-width: 100%;
}

.img-select_five {
    display: flex;
}

.img-item_five {
    margin: 0.3rem;
}

.img-item_five:nth-child(1),
.img-item_five:nth-child(2),
.img-item_five:nth-child(3) {
    margin-right: 0;
}

.img-item_five:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/

/*** Multiple Image***/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');



.card-wrapper_five {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_five {
    overflow: hidden;
}

.img-showcase_five {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_five img {
    min-width: 100%;
}

.img-select_five {
    display: flex;
}

.img-item_five {
    margin: 0.3rem;
}

.img-item_five:nth-child(1),
.img-item_five:nth-child(2),
.img-item_five:nth-child(3) {
    margin-right: 0;
}

.img-item_five:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/

/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');



.card-wrapper_six {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_six {
    overflow: hidden;
}

.img-showcase_six {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_six img {
    min-width: 100%;
}

.img-select_six {
    display: flex;
}

.img-item_three {
    margin: 0.3rem;
}

.img-item_six:nth-child(1),
.img-item_six:nth-child(2),
.img-item_six:nth-child(3) {
    margin-right: 0;
}

.img-item_six:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/


/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');



.card-wrapper_seven {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_seven {
    overflow: hidden;
}

.img-showcase_seven {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_seven img {
    min-width: 100%;
}

.img-select_seven {
    display: flex;
}

.img-item_seven {
    margin: 0.3rem;
}

.img-item_seven:nth-child(1),
.img-item_seven:nth-child(2),
.img-item_seven:nth-child(3) {
    margin-right: 0;
}

.img-item_seven:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/

/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');



.card-wrapper_eight {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_eight {
    overflow: hidden;
}

.img-showcase_eight {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_eight img {
    min-width: 100%;
}

.img-select_eight {
    display: flex;
}

.img-item_eight {
    margin: 0.3rem;
}

.img-item_eight:nth-child(1),
.img-item_eight:nth-child(2),
.img-item_eight:nth-child(3) {
    margin-right: 0;
}

.img-item_eight:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/

/*** Multiple Image***/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');



.card-wrapper_nine {
    max-width: 1100px;
    margin: 0 auto;
}

.img1 {
    width: 100%;
    display: block;
}

.img-display_nine {
    overflow: hidden;
}

.img-showcase_nine {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase_nine img {
    min-width: 100%;
}

.img-select_nine {
    display: flex;
}

.img-item_nine {
    margin: 0.3rem;
}

.img-item_nine:nth-child(1),
.img-item_nine:nth-child(2),
.img-item_nine:nth-child(3) {
    margin-right: 0;
}

.img-item_nine:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

/*** Multiple Image***/


/***=== CT SCAN ===****/

.para {
    font-size: larger;

}

.list1 {
    font-size: larger;
    line-height: 260%;
}

.para2{
    font-size: larger;
}

/***=== CT SCAN ===****/

/*** Product  Hover***/
.product-item {
    transition: .1s;
}

.product-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgb(217, 232, 239);
}

.product-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Product  Hover***/



/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .section-bg {
    background-color: var(--section-bg-color);
  }
  
  .section-overlay {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  }
  
  .section-overlay + .container {
    position: relative;
  }
  
  .tab-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
  }
  
  .nav-tabs {
    border-bottom: 1px solid #ecf3f2;
    margin-bottom: 40px;
    justify-content: center;
  }
  
  .nav-tabs .nav-link {
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: var(--p-color);
    font-family: var(--title-font-family);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-medium);
    padding: 15px 25px;
    transition: all 0.3s;
  }
  
  .nav-tabs .nav-link:first-child {
    margin-right: 20px;
  }
  
  .nav-tabs .nav-item.show .nav-link, 
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-link:focus, 
  .nav-tabs .nav-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
  }

  .post{
    font-size: larger;
    font-weight: 600;
    
  }
 .post2{
    letter-spacing: 180%;
    font-size: larger;
    font-weight: 500;
 }