:root{
  --PrimaryColor:#cda54d;
  --PrimaryColorLite:#e7ce98;
  --PrimaryColorHover:#f3a90a;
  --SecondaryColor:#919090;
  --SecondaryColorLite:#3EBDA455;
  --SecondaryColorHover:#2C8775;
  --MainGradient:radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
  radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  --BackgroundColor:#fff;
  --outlineColor:#CBCBCB;
  --TextColor:#050315;
  --borderRadius:35px;
  --borderRadiusMobile:20px;
  --styleFont: "Source Sans 3", sans-serif;
}
@view-transition {
  navigation: auto;
}
html,body{
  font-family: Roboto;
  font-size:14px;
  color:var(--TextColor);
   padding: 0;
  margin: 0;
  overflow-x: hidden;
    width: 100%;
  
}
/*--------------- Typography ---------------------*/
.huge-heading{
  font-family:var(--styleFont);
  font-size:4rem;
  font-weight: 700;
  @media (width < 1367px){
    font-size:3rem;
  }
}
.big-heading{
   font-family:var(--styleFont);
  font-size:3rem;
  font-weight: 700;
  @media (width < 1367px){
    font-size:2rem;
  }
}
.heading{
   font-family:var(--styleFont);
  font-size:2rem;
  font-weight: 700;
  @media (width < 1367px){
    font-size:1.5rem;
  }
}
.sub-heading{
   font-family:var(--styleFont);
  font-size:1.5rem;
  font-weight: 700;
  @media (width < 1367px){
    font-size:1.25rem;
  }
}
.small-text{
  font-size: calc(1.5rem - 3px);
}
.fullvh{
  height: 100svh;
}
.text-bold{
  font-weight: 700;
}
.text-semi-bold{
  font-weight: 600;
}
.text-main-gradient {
    background: var(--MainGradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*--------------- Typography ---------------------*/
/*--------------- Buttons ---------------------*/
.btn-theme-icon-gradient{
  background:var(--MainGradient);
  color:#fff;
  font-weight:500;
  border-radius:35px;
  border:none;
  position:relative;
  padding-right: 3rem;
  &:before{
    position:absolute;
    display:inline-block;
    height:100%;
    width:100%;
    background:var(--SecondaryColor);
    content:'';
    top:0;
    right:0%;
    border-radius:var(--borderRadius);
    z-index:-1;
  }
  &:after{
    position:absolute;
    display:inline-block;
    height:80%;
    aspect-ratio:1;
    background:white;
    color:var(--SecondaryColor);
    align-content:center;
    text-align:center;
    content:var(--iconCode,'\2197');
    font-size:0.9rem;
    font-weight: bold;
    top:50%;
    right:0%;
    translate:-12% -51%;
    border-radius:50%;
    outline:3px solid var(--SecondaryColor);
    outline-offset: -8px;
  }
}
.btn-theme-gradient{
  background:var(--MainGradient);
  color:#fff;
  font-weight:500;
  border-radius:var(--borderRadius);
  border:none;
}
.btn-theme-white{
  background:#fff;
  color:#000;
  font-weight:500;
  border-radius:var(--borderRadius);
  border:none;
  &:hover{
    background:#eee;
  }
}
.btn-theme-primary{
  color:#fff;
  font-weight:500;
  border-radius:var(--borderRadius);
  border:none;
  background:var(--PrimaryColor);
    &:hover{
    background:var(--PrimaryColorHover);
      color:#fff;
  }
}
.btn-theme-secondary{
  color:#fff;
  font-weight:500;
  border-radius:var(--borderRadius);
  border:none;
  background:var(--SecondaryColor);
    &:hover{
    background:var(--SecondaryColorHover);
      color:#fff;
  }
}
.btn-theme-outline{
  font-weight:500;
  border-radius:var(--borderRadius);
  border: 1px solid transparent;
  color: var(--TextColor);
    border-color: var(--TextColor);
  &:hover {
    color: #fff;
    background-color: var(--TextColor);
    border-color: var(--TextColor);
   
  }
}
.btn-theme-outline-white{
  font-weight:500;
  border-radius:var(--borderRadius);
  border: 1px solid transparent;
  color: #fff;
    border-color: #fff;
  &:hover {
    color: var(--PrimaryColor);
    background-color: #fff;
    border-color: #fff;
   
  }
}
/*--------------- Buttons ---------------------*/
/*--------------- Cards ---------------------*/
.skewed-card-theme {  
  border: 1px solid var(--textColor);
  padding:1rem;
  height: auto;
  min-height: 231px;
  transform: skew(-15deg);
  @media (width < 992px){
      scale:0.9;
      
      height: auto;
  min-height: auto;
  margin-bottom:1rem;
  }
  }
  
.theme-slideCard{
  width:clamp(256px,100%,550px);
  aspect-ratio:1;
  border:1px solid var(--outlineColor);
  border-radius:var(--borderRadius);
  overflow:clip;
  background:var(--url);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display: flex;
  flex-direction:column;
  justify-content:space-between;
  margin-inline: auto;
  @media (width < 992px){
    border-radius:var(--borderRadiusMobile);
  }
  & .slideCard-logo{
    width:40%;
    height:13%;
    border-radius:0 0 var(--borderRadius) 0;
    @media (width < 992px){
    border-radius:var(--borderRadiusMobile);
  }
    & img{
      width:80%;
      align-content:center;
    }
  }
  & .slideCard-footer{
    width:100%;
    height:30%;
    font-size:1.25rem;
    @media (width < 992px){font-size:1rem;}
    align-content:center;
    background: linear-gradient(0deg, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
    }
}
.theme-testimonialCard{  
  width: clamp(291px, 100%, 556px);
    aspect-ratio: 139 / 54;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    "testimonialCard-image testimonialCard-image testimonialCard-image testimonialCard-text testimonialCard-text testimonialCard-text testimonialCard-text testimonialCard-text"
    "testimonialCard-image testimonialCard-image testimonialCard-image testimonialCard-text testimonialCard-text testimonialCard-text testimonialCard-text testimonialCard-text"
    "testimonialCard-image testimonialCard-image testimonialCard-image testimonialCard-details testimonialCard-details testimonialCard-details testimonialCard-details testimonialCard-details"; 
  border:1px solid var(--outlineColor);
  border-radius:var(--borderRadius);
  overflow:clip;
  margin-inline: auto;
  @media (width < 992px){
    display:flex;
    flex-direction:column;
     border-radius:var(--borderRadiusMobile);
  }
  & .testimonialCard-image { 
  grid-area: testimonialCard-image;
  align-content:center;
  & img{
    width:100%;
    height:100%;
    object-fit:cover;
    @media (width < 992px){
    width:50%;
  }
  }

}
  & .testimonialCard-text { 
  grid-area: testimonialCard-text;
  text-align:left;
  align-content:center;
  padding-inline: 10px;
  @media (width < 992px){
    padding:10px;
  }
}
  & .testimonialCard-details { 
  text-align:left;
  align-content:center;
  padding-inline: 10px;
  grid-area: testimonialCard-details;
  @media (width < 992px){
    padding:10px;
  }
}
}
.theme-serviceCard{
  width:clamp(291px,100%,556px);
  aspect-ratio:556/321;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--PrimaryColor) 100%), var(--url);
  background-size:cover;
  background-repeat: no-repeat;
  background-color:var(--SecondaryColor);
  border-radius:var(--borderRadiusMobile);
  align-content:end;
  margin-inline: auto;
  & .serviceCard-details{
    color:#fff;
    padding:10px;
    display:flex;
    justify-content:space-between;
    text-align:left;
    & .serviceCard-title{
      align-content:end;
      font-family:var(--styleFont); 
      font-weight:700;
      font-size:2rem;
      @media (width < 992px){
    font-size:1.5rem;
  }
  }
    & .serviceCard-text{
      align-content:end;
      @media (width < 580px){display:none;}
    }
    & .serviceCard-button{
      align-content:end;
    }
  }
}
.theme-blogCard{
  width:clamp(291px,100%,360px);
  
  aspect-ratio:360/263;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--TextColor) 100%), var(--url);
  background-size:cover;
  border-radius:var(--borderRadiusMobile);
  align-content:end;
  margin-inline: auto;
  text-decoration: none;
  & .blogCard-details{
    color:#fff;
    padding:10px;
    display:flex;
    justify-content:space-between;
    text-align:left;
    & .blogCard-title{
      align-content:end;
      font-family:var(--styleFont); 
      font-weight:700;
      font-size:1rem;
  }
    & .blogCard-text{
      align-content:end;
    }
  }
}
.theme-bgCard{
  width:clamp(291px,100%,360px);
  aspect-ratio:360/263;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--TextColor) 100%), var(--url);
  background-size:cover;
  border-radius:var(--borderRadiusMobile);
  align-content:end;
  margin-inline: auto;
  transition: all .3s ease-in-out;
  & .bgCard-details{
    color:#fff;
    padding:10px;
    display:flex;
    justify-content:space-between;
    text-align:left;
    & .bgCard-title{
      align-content:end;
      font-family:var(--styleFont); 
      font-weight:700;
      font-size:2rem;
  }
    & .bgCard-text{
      align-content:end;
    }
  }
  &:hover{
    box-shadow: 0 0 10px 5px var(--PrimaryColorLite);
  }
}
.theme-clientCard{
  width:clamp(257px,100%,257px);
  aspect-ratio:257/325;
  margin:auto;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  & .clientCard-image{
    width:100%;
    aspect-ratio:1;
    overflow:clip;
    /* border:1px solid var(--outlineColor); */
      /* border-radius:var(--borderRadiusMobile); */
    & img{
      width:100%;
      aspect-ratio:1;
    }
  }
  & .clientCard-detail{
    padding:1rem;
    color:#fff;
    font-weight:700;
    background:var(--PrimaryColor);
    border-radius:var(--borderRadiusMobile);
  }
}
.theme-clientCard2{
  width:clamp(257px,100%,257px);
  aspect-ratio:257/322;
  margin:auto;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position: relative;
  & .clientCard2-image{
    width:100%;
    aspect-ratio:1;
    overflow:clip;
    border:1px solid var(--outlineColor);
      border-radius:var(--borderRadiusMobile);
    & img{
      width:100%;
      aspect-ratio:1;
    }
  }
  & .clientCard2-detail{
    transition: all .3s ease;
    position: absolute;
    top:0;
    translate:0 10%;
    width:100%;
    aspect-ratio:1;
    padding:1rem;
    color:#fff;
    font-weight:700;
    opacity:0;
    background:var(--PrimaryColor);
    border-radius:var(--borderRadiusMobile);
  }
  &:hover{
    & .clientCard2-detail{
      opacity: 1;
      translate:0 0%;
  }
  }
}
/*--------------- Cards ---------------------*/
/*--------------- Banners ---------------------*/
.theme-Banner{
  width:100%;
  aspect-ratio:128/30;
  background:var(--MainGradient), url('/assets/svg/heartbeat.svg');
      background-blend-mode: overlay;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  align-content:center;
  color:#fff;
  @media (width < 581px){
    aspect-ratio:1;
  }
  & h1{
      animation: tilt-in-fwd-tl 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
}
.theme-Bannerbg{
  width:100%;
  aspect-ratio:1280/330;
  background:var(--MainGradient), var(--url);
      background-blend-mode: multiply;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  align-content:center;
  color:#fff;
  @media (width < 581px){
    aspect-ratio:1;
  }
}
.page-banner{

  background:var(--url) #00000000;
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center;
  background-blend-mode: overlay;
  aspect-ratio: 16/5;
      &::before {
          content: '';
          display: block;
          background:var(--url);
          background-size: cover;
          background-position: center;
          filter: blur(20px);
          z-index: -1;
          width: 100%;
          height: 100%;
      }
  
  }
/*--------------- Banners ---------------------*/

/*------------- Animations -------------------*/
.fade-in-left {
	        animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100%{
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*------------------conditional Hidden-----------------*/

.hide {
    display: none;
}
.hide-on-desktop {
    @media (width > 992px) {
        display: none;
    }
}


.hide-on-mobile {
    @media (width < 992px) {
        display: none;
    }
}

.hide-on-sm-mobile {
    @media (width < 376px) {
        display: none;
    }
}

/*-------------navbar-------------------*/
.navbar-glass{
    background-color:rgba(0,0,0,0.5);
    outline: 1px solid var(--outlineColor);
    backdrop-filter: blur(10px);
    border-radius: var(--borderRadius);
}

/*------------------ background -----------------*/
.hero-bg{
  /* background:  linear-gradient(90deg, rgba(193,222,232,1) 25%, rgba(251,217,185,1) 81%); */
  /* background-image: url(/assets/images/bg.png); */
}
.bg-video { 
  z-index: -1;
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
  overflow: hidden;
  & video{
      width:100%;
      filter: brightness(.4);
      @media (width < 992px) {
          width:auto;
          height:100%;
      }
  }
}

.theme-custom-bg{
    background: var(--url), #0008;
    background-blend-mode: var(--blend, normal);
    background-size: var(--size, cover);
   
    background-position: var(--position, top center);
    background-repeat: var(--repeat, no-repeat);

}
.theme-main-gradient{
  background: var(--MainGradient);
}
.fading-grid-bg{
  position:relative;
  overflow:clip;
  &:before{
  --size: 60px;
    --line: color-mix(in lch, canvasText, transparent 70%);
  display:block;
    content: '';
    height: 100vh;
    width: 100vw;
  position:absolute;
    background: 
      linear-gradient(90deg, var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size), 
      linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size);
    /*mask: radial-gradient(-20deg, transparent 50%, white);*/
      mask:  radial-gradient(113% 91% at 45% -3%, #FFFFFFFF 5%, #FF000000 100%);
    top: 0;
    transform-style: flat;
    pointer-events: none;
      z-index: -1;
      animation: fadingbgAnim 5s linear infinite;
}

}
.popup-bg{
  background-image:radial-gradient(circle, rgba(32, 28, 15, 0.928) 0%, rgb(0, 0, 0) 0%, rgba(148,146,144,1) 75%);
  background-size: cover;
  background-position: 0% 0px;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/*------------- footer ------------------*/
 .text-end-d-start-m{
        text-align: right;
        @media(width<992px){
           text-align: left;
        }
    }

.footer-grid-container {
    padding-top: 7rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "footer-left footer-center-top footer-right"
        "footer-left footer-center-bottom footer-right";

    @media (width < 992px) {
        display: flex;
        flex-direction: column;
    }
}

.footer-left {
    grid-area: footer-left;
    color: #fff;
}

.footer-right {
    grid-area: footer-right;
    color: #fff;
}

.footer-center-bottom {
    display: grid;
    place-items: center;
    grid-area: footer-center-bottom;
    color: #fff;
}

.footer-center-top {
    border-radius: 0 0 20px 20px;
    display: grid;
    place-items: center;
    grid-area: footer-center-top;
    color: #fff;
}

.social-link {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;

    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;

    background: var(--_bg);

    &:hover {
        border: 1px solid #fff;
        color: #fff;
    }
}

.footer-bg{
    background: radial-gradient(51% 17% at 50% 0%,var(--BackgroundColor) 99%,transparent 100%) , var(--MainGradient);
    @media (width < 992px) {
        background:radial-gradient(100% 17% at 50% -10%,var(--BackgroundColor) 99%,transparent 100%) , var(--MainGradient);
    }
    
}
/*------------- misc ------------------*/

.masonary-grid {
    columns: 400px;
}
.client-scroller-item{
    width: 200px;
    
    outline: 5px solid #fff;
    outline-offset: -5px;
    filter: grayscale(100%);
    @media (width < 1367px) {
         width: 150px;
    }
}
.theme-drop-shadow{
 /* filter: drop-shadow(0 0 0.80rem #000); */
 filter: drop-shadow(10px 10px 7px #000);
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.theme-icon-circle{
    display: grid;
    place-items: center;
    height: 80px;
    aspect-ratio: 1;
    color: var(--SecondaryColor);
    outline: 1px solid var(--outlineColor);
    border-radius: 50%;
    background: radial-gradient(circle, #fff 60%, var(--SecondaryColor) 61%, var(--PrimaryColor) 70%);
}
.image-delete-btn{
  
  &:hover{
    opacity: .5;
    text-align: center;
    align-content: center;
    background-color: red;
  }
}
.waves{
  position:relative;
  overflow:clip;
  &:after{
      display:block;
      content:'';
      height:100%;
      aspect-ratio:1;
      position:absolute;
      background-image: url(/assets/svg/b.svg);
background-size: 100% 50%;
background-position: 0% 101%;
background-repeat: no-repeat;
background-attachment: scroll;
rotate: z 90deg;
left:0;
top:0;
  }}
  /*--------------- custom class-------------------*/
.grid-container-about {  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  @media (width < 992px) {
    display: flex;
    flex-direction: column;
  }
}
.image-section { 
    border:1px solid var(--primaryColor);
    border-radius: 10px;
    grid-area: 1 / 1 / 5 / 5; 
overflow: clip;}

.desc { 
    padding: 1rem;
     border:1px solid var(--primaryColor);
    border-radius: 10px;
    background-color: var(--backgroundColor);
    grid-area: 3 / 4 / 6 / 6; }

/*------------------------*/
.hero-grid {  
  display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
gap: 0px 0px;
grid-auto-flow: row;
}

.content { 
  grid-area: 1 / 1 / 2 / 2; 
  display: grid;
      place-items: center;
  color:var(--backgroundColor);
}

.bg-video { 
  z-index: -1;
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
  overflow: hidden;
  & video{
      width:100%;
      filter: brightness(.4);
      @media (width < 992px) {
          width:auto;
          height:100%;
      }
  }
}
