:root{
    --white: #ffffff;
    --gold: #caa45a;
    --dark: #0e0e0e;
    --color-primary: #600080;
    --color-secondary: #da70d6;
    --text-color: #313131;
    --text-blue: #162750 !important;
    --text-darkpink: #C11C84;
}
.color-sec {
    color: #987243 !important;
}
.font-sec {
    font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
}


/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  filter: brightness(0.6);
}

.hero-bg.active {
  opacity: 1;
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 45%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Content */
/* .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 180px 80px;
} */

.eyebrow {
  font-size: 16px;
  letter-spacing: 1px;
}

h1 {
  font-size: 54px;
  line-height: 1.2;
  margin: 14px 0;
}

h1 span {
  color: var(--gold);
}


/* Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .25s ease;
}

.btn.primary {
  background: #fff;
  color: #000;
}

.btn.primary:hover {
  background: var(--gold);
  color: #000;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #000;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.stars i {
  color: var(--gold);
}

/* Chat */
.chat-widget {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: #fff;
  color: #000;
  border-radius: 18px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.chat-widget img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 490px){
    .mrgb-8{
        margin-bottom: 0.816vw !important;
    }
}

@media (max-width: 768px) {
  /* .hero-content {
    padding: 180px 20px;
  } */

  h1 {
    font-size: 38px;
  }
}

a{
    text-decoration: none !important;
}

/* ABOUT BLOCK STARTA */
.about-block{
    padding: clamp(28px, 2.5vw, 120px) 0;
    background-color: #EBEBEB;
    position: relative;
}

.about-block .gavel-vector{
    position: absolute;
    top: -6.406vw;
    right: 0;
    width: 15vw;
    height: 6.416vw;
}
.about-block .block-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(8px, 0.625vw, 50px);
}
.about-block .block-content .block-1{
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.042vw, 72px);
}
.about-block .block-content .block-1 .num-vector{
    width: clamp(48px, 3.333vw, 160px);
    height: clamp(48px, 3.333vw, 160px);
    position: relative;
    top: -8px;
}
.about-block .block-content .block-1 h3{
    font-family: "Roboto", sans-serif;
}
.vc-line {
    height: 24px;
    width: 1px;
    background: #5E5E5E;
}
.about-block .block-content .vc-line{
    background-color: #5E5E5E;
    height: clamp(28px, 3.698vw, 120px);
    width: 1px;
}

/* SERVICE SEC STARTA */
.service-sec{
    position: relative;
}

.service-sec .service-vector{
    position: absolute;
    bottom: -25%;
    left: 0;
    z-index: -1;
    width: 13.542vw;
    height: 15.749vw;
}

.custom-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;    
}

.cus-btn-2.border-black{
    border: 1px solid #0f0f0f;
}

.cus-btn {
    position: relative;
    overflow: hidden;
    padding: clamp(15px, 0.879vw, 64px) clamp(18px, 1.25vw, 96px);
    border-radius: clamp(28px, 2.5vw, 120px);
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 0.417vw, 36px);
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 1px solid #FFFFFF;
}
.cus-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: clamp(28px, 2.5vw, 120px);
    width: 0%;
    height: 101%;
    opacity: 1;
    z-index: 0;
    transition: all 0.5s ease-in-out;
    background: #987243;
    transition: all 0.5s ease-in-out;
}
.cus-btn i {
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: clamp(16px, 1.042vw, 96px);
    color: #FFFFFF;
    transition: all 0.5s ease-in-out;
}
.cus-btn .text {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    font-weight: 600;
    line-height: 120%;
    font-size: clamp(12px, 0.833vw, 64px);
    color: #FFFFFF;
}
.cus-btn:hover{
    border: 1px solid #987243;
}
.cus-btn:hover::before {
    width: 101%;
}
.cus-btn-2 {
    position: relative;
    overflow: hidden;
    padding: clamp(15px, 0.879vw, 64px) clamp(18px, 1.25vw, 96px);
    border-radius: clamp(28px, 2.5vw, 120px);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 0.417vw, 36px);
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.cus-btn-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: clamp(28px, 2.5vw, 120px);
    width: 0%;
    height: 101%;
    opacity: 1;
    z-index: 0;
    transition: all 0.5s ease-in-out;
    background: #987243;
    transition: all 0.5s ease-in-out;
}
.cus-btn-2 .text{
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    font-weight: 600;
    line-height: 120%;
    font-size: clamp(12px, 0.833vw, 64px);
}
.cus-btn-2.border-black i {
    color: #0F0F0F;
}
.cus-btn-2 i {
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: clamp(20px, 1.042vw, 96px);
    color: #FFFFFF;
    transition: all 0.5s ease-in-out;
}
.cus-btn-2:hover{
    border: 1px solid #987243;
}
.cus-btn-2:hover::before {
    width: 101%;
}
.cus-btn-2:hover .text, .cus-btn-2:hover i {
    color: #FFFFFF;
}

/* Service Section continue */
.service-sec .service-card {
    border-radius: clamp(8px, 0.625vw, 48px) !important;
    background-color: #EBEBEB;
    overflow: hidden;
}

.service-sec .service-card .card-image {
    border-radius: clamp(8px, 0.625vw, 48px) 0 !important;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.service-sec .service-card .card-image .card-img {
    width: 100% !important;
    border-radius: clamp(8px, 0.625vw, 48px) !important;
    transition: all 0.5s ease-in-out;
}
span {
    display: inline-block;
}
.service-sec .service-card .card-image .shape-img_icon .card-shape {
    position: absolute;
    bottom: 1.146vw;
    left: 0;
    width: clamp(58px, 4.834vw, 140px);
    z-index: 1;
}
.service-sec .service-card .card-image .shape-img_icon .card-icon {
    position: absolute;
    flex-shrink: 0;
    z-index: 2;
    bottom: 0;
    left: clamp(20px, 1.25vw, 106px);
    width: clamp(40px, 2.5vw, 140px);
    height: clamp(40px, 2.5vw, 140px);
    border-radius: 50%;
    background-color: #031714;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-sec .service-card .card-image .shape-img_icon .card-icon img {
    flex-shrink: 0;
    width: clamp(18px, 1.25vw, 106px);
    height: clamp(18px, 1.25vw, 106px);
}
.service-sec .service-card .card-image .card-img:hover {
    transform: scale(1.05);
}
.service-sec .service-card .card-content {
    padding: clamp(12px, 00.833vw, 72px);
}
.service-sec .service-card .card-content .card-btn{
    display: flex;
    align-items: center;
    gap: clamp(4px, 00.417vw, 36px);
    transition: all 0.5s ease-in-out;
}
.service-sec .service-card .card-content .card-btn .text-16 {
    transition: all 0.5s ease-in-out;
    color: #0F0F0F !important;
}
.service-sec .service-card .card-content .card-btn i{
    font-weight: 600;
    font-size: clamp(14px, 0.833vw, 72px);
    color: #0F0F0F;
    transition: all 0.5s ease-in-out;
}
.service-sec .service-card .card-content .card-btn span:hover{
    transition: all 0.5s ease-in-out;
    color: #987243 !important;
}
.service-sec .service-card .card-content .card-btn i:hover{
    color: #987243;
    transition: all 0.5s ease-in-out;
    transform: translateX(5px);
}

/* workflow starts */
.workflow-sec{
    position: relative;
    padding: clamp(40px, 4.167vw, 160px) 0;
    background: url(../images/services/workflow-bg.png);
    background-size: cover;
}
.workflow-sec .workblock-wrapper{
    position: relative;
}
.workflow-sec .workblock-wrapper .dotted-border {
    position: absolute;
    left: 0;
    top: 1.25vw;
    border: 1px dashed #0F0F0F;
    width: 100%;
    z-index: 1;
}
.workflow-sec .workblock-wrapper .workblock .icon{
    position: relative;
    z-index: 2;
    width: clamp(40px, 2.5vw, 140px);
    height: clamp(40px, 2.5vw, 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #031714;
    font-weight: 500;
    line-height: 120%;
    font-size: clamp(20px, 1.458vw, 57px);
    color: #FFFFFF;
    text-align: center;
    font-family: "Playfair Display", sans-serif;
    transition: all 0.5s ease-in-out;
}
.workflow-sec .workblock-wrapper .workblock .h4 {
    transition: all 0.5s ease-in-out;
    font-family: "Roboto", sans-serif;
}
.workflow-sec .workblock-wrapper .workblock .icon:hover {
    background-color: #987243;
    transition: all 0.5s ease-in-out;
}

/* case portfolio */
.case-portfolio-sec .portfolio-block {
    display: inline-block;
    border-radius: clamp(8px, 0.625vw, 48px) !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.case-portfolio-sec .portfolio-block img {
    border-radius: clamp(8px, 0.625vw, 48px) !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-portfolio-sec .portfolio-block .hover-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1600px;
    height: 1200px;
    background: linear-gradient(0deg, rgba(3, 23, 20, 0.8) 0%, rgba(3, 23, 20, 0.8) 100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.case-portfolio-sec .portfolio-block .block-content {
    position: absolute;
    bottom: -200px;
    left: clamp(18px, 1.25vw, 106px);
    padding-right: clamp(18px, 1.25vw, 106px);
    flex-direction: column;
    display: flex;
    transition: all 0.5s ease-in-out;
}
.case-portfolio-sec .portfolio-block:hover .block-content {
    bottom: clamp(18px, 1.25vw, 106px);
}
.case-portfolio-sec .portfolio-block:hover .hover-bg {
    opacity: 1;
}

/* Pricing */
.pricing-sec .pricing-block {
    padding: clamp(24px, 1.667vw, 116px);
    border-radius: clamp(8px, 0.625vw, 48px) !important;
    background-color: #EBEBEB;
    transition: all 0.5s ease-in-out;
}
.pricing-sec .pricing-block .price p{
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin: 0;
}
.hr-line{
    height: 1px;
    width: 100%;
}
.pricing-sec .pricing-block .svg-block svg {
    transition: all 0.5s ease-in-out;
    width: clamp(16px, 1.042vw, 88px);
    height: clamp(16px, 1.042vw, 88px);
}
.pricing-sec .pricing-block .cus-btn-2 {
    border: 1px solid #0F0F0F;
    text-align: center;
    justify-content: center;
}

/* Testimonial sec */
.testimonial-sec .hat-vector {
    position: absolute;
    /* top: -15%; */
    left: 2%;
    display: inline-block;
}

.testimonial-sec .testimonial-block {
    position: relative;
    margin-top: 60px;
    background-color: #EBEBEB;
    border-radius: clamp(8px, 0.625vw, 48px) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-sec .testimonial-block .user-img {
    width: clamp(80px, 6.25vw, 162px);
    height: clamp(80px, 6.25vw, 162px);
    border: 6px solid #FFFFFF;
    border-radius: 50%;
    margin-top: -60px;
}
.testimonial-sec .testimonial-block .block-content {
    text-align: center;
    padding-top: clamp(12px, 0.833vw, 72px);
    padding: clamp(18px, 1.25vw, 106px);
}
.testimonial-sec .testimonial-block .block-content .stars-img {
    display: inline-flex;
    width: clamp(80px, 6.25vw, 162px);
}

/* Appointment */
.appointment-sec {
    background-color: #EBEBEB;
    padding: clamp(48px, 5vw, 160px) 0;
    position: relative;
    z-index: 1;
}
.appointment-sec .appointment-vec {
    position: absolute;
    bottom: 0;
    left: 2%;
    z-index: 2;
}


  /* footer */
footer {
    background: url(/assets/images/footer-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: clamp(40px, 2.5vw, 140px) 0 clamp(18px, 1.25vw, 106px) 0;
}
footer .footer-logo{
    /* max-width: 200px; */
    display: inline-flex;
    width: clamp(260px, 9.427vw, 486px);
}
footer .social-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
footer .unstyled {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.social-link li a {
    background: #FFFFFF;
    transition: all 0.5s ease-in-out;
    width: clamp(32px, 2.083vw, 96px);
    height: clamp(32px, 2.083vw, 96px);
    display: grid;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
footer .social-link li a i {
    width: clamp(16px, 1.042vw, 64px);
    height: clamp(24px, 1.042vw, 64px);
}
footer .social-link li a i {
    transition: all 0.5s ease-in-out;
    fill: #1F1F1F;
}
footer .link-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 32px;
}
footer .link-wrapper .footer-links li a {
    font-family: Roboto, sans-serif;
    font-size: clamp(14px, 0.938vw, 86px);
    font-weight: 400;
    line-height: 2;
    color: #C4C4C4;
    transition: all 0.5s ease-in-out;
    padding-bottom: clamp(8px, 0.625vw, 48px);
}
footer .footer-links{
    font-size: 16px;
}
footer .footer-right h5{
    font-size: clamp(16px, 1.042vw, 86px);
}
footer .link-wrapper .number-block {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.625vw, 50px);
    margin-bottom: 10px;
}
footer .link-wrapper .number-block .tel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #FFFFFF;
    width: clamp(29px, 1.667vw, 108px);
    height: clamp(29px, 1.667vw, 108px);
    transition: all 0.5s ease-in-out;
}
.hover-content {
    transition: all 0.5s ease-in-out;
}
.hr-line {
    height: 1px;
    width: 100%;
    background: #EBEBEB;
}
footer .footer-bottom-text {
    text-align: center;
    padding: 0 12px;
}

/* Selected Legal Experience */
.experience{
    border-bottom: 1px solid rgba(22, 39, 80, .3);
    margin-bottom: 1.5rem;
}
.experience .exp_title{
    font-size: 2rem;
    color: var(--text-blue);
}
.experience .exp_items .item{
    font-family: InterUI, sans-serif;
    font-size: 18px;
    color: var(--text-blue);
    font-weight: 500;
    text-transform: none;
    line-height: 1.5;
    letter-spacing: 0px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    /* border-bottom: 1px solid rgba(22, 39, 80, .3); */
}
.experience .exp_items ul{
    padding-left: 1.2rem;
    padding-bottom: 1rem;
}.experience .exp_items ul span{
    font-style: italic;
}
.experience .exp_items ul li{
    padding-bottom: 1rem;
    font-family: InterUI, sans-serif;
    font-size: 16px;
}

/*/ Gallery */
.section-c .gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.section-c .gallery a:first-child {
  /* grid-row-start: 1;
  grid-row-end: 3; */
  grid-row: 1/3;
  grid-column: 1/3;
}

.section-c .gallery a:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
}

.section-c .gallery img,
.section-c .gallery a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.responsive-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    position: relative; 
}
.infants-bg{
    background-color: rgb(255, 219, 210) !important;
}
.toddler-bg{
    background-color: rgb(223, 248, 255) !important;
}
.preschool-bg{
    background-color: rgb(255, 239, 223) !important;
}
.flexcare-bg{
    background-color: rgb(217, 243, 216) !important;
}
.on-p-text{
    color: #0A303A;
}
.on-orange{
    color: #F68F29;
}
.banner-content{
    padding-top: 6rem;
}
.banner-content .subtitle {
    color: #fff;
    background: #635CDB;
    display: inline-block;
    padding: 3px 8px;
    margin-bottom: 20px;
}
.banner-content .banner-title {
    color: #fff;
    font-weight: 700;
    line-height: 50px;
}

h1{
    font-size: 48px;
}
.ui-card {
    border-radius: 10px;
  }

.ui-underline{
    text-decoration-line: underline !important;
}
.ui-italics{
	font-style: italic !important;
}
.card-sub{
    max-width: 300px;
}
  
/*  elementor */
.elementor-container {
    position: relative;
    left: -10px;
    right: 0;
    width: 100%;
    max-width: 1140px;
    
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    /* padding-right: 25px !important; */
    padding-left: 0px !important;
    position: relative;
}


.elementor-widget-container {
    padding: 50px 0px 10px 0px;
    transition: background 1s;
}
.banner-content p {
    margin: 20px 0px;
    color: #eee;
    font-size: 18px;
    line-height: 1.5;
}

.cta-mail{
    background: var(--white);
    color: var(--color-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  pointer-events: none;
  z-index: 2;
}
.cta-mail:hover {
    color: #fff;
    background-color: #754ef9;
    border-color: #754ef9; 
    transition: .5s;
}
.ui-group-item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* margin-bottom: -15px; */
}
.ui-group-item a, .ui-group-item .btn {
    margin: 0 0.6rem;
}
.blockquote{
    max-width: 600px;
    /* margin: 10px 30px; */
    padding: 15px;
    background: #f8fffe;
    border: 1px solid #ff8da1;
    box-sizing: border-box;
}
.blockquote--border{
    border-left-width: 10px;
}
.quoted::before{
    content: "\201c";
    font-size: 70px;
    display: block;
    margin-bottom: -22px;
    margin-top: 16px;
}
.blockquote-text-credit::before{
    content: "\2014\0020";
}

.ui-flex-col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
    margin-bottom: -15px;
}
.ui-d-block{
    display: block;
}
.ui-inline-block{
    display: inline-block;
}


/** button **/
.btn.md {
    padding: 0.85rem 2.1rem;
    font-size: 13px;
}

/* gradients */
.bg-vgradient,
  .bg-vgradient:hover,
  .bg-vgradient:active,
  .bg-vgradient:focus{
    /* background: linear-gradient(85.39deg, #981CFA 3.03%, #03CEDB 110.78%) !important; */
    background: linear-gradient(90deg, #DA70D6 -16.67%, #600080 110.83%) !important;
  }
.bg-pgradient,
  .bg-pgradient:hover,
  .bg-pgradient:active,
  .bg-pgradient:focus{
    background: linear-gradient(90deg, rgba(250,56,111,1) 0%, rgba(192,29,219,1) 100%) !important;
  }
.bg-lbgradient,
  .bg-lbgradient:hover,
  .bg-lbgradient:active,
  .bg-lbgradient:focus{
    background: linear-gradient(118.83deg, #03BBFF 5.04%, #025EB3 117.47%) !important;
  }

.text-hover-alice:hover{
    color: powderblue;
}

.btn .fe{
    position: relative;
    top: 2px;
}

.brand--overlay{
    /* background-color: rgba(20, 40, 80, 0.5) */
    background-color: rgba(175, 16, 170, 0.8);
}
.hero--overlay{
    background: linear-gradient(106.5deg, rgba(96, 0, 128, 0.7) 53.49%, rgba(218, 112, 214, 0.6) 99.34%);
}
.value--overlay{
    background: linear-gradient(90deg, rgba(108, 59, 170, 0.8) 36.5%, rgba(218, 112, 214, 0.8) 100%);
}
.aim--overlay{
    background: linear-gradient(180deg, rgba(96, 0, 128, 0.8) 14.7%, rgba(230, 230, 250, 0.4) 101.37%);
}

.brand--overlayblue{
    background-color: rgba(0, 0, 255, 0.5)
}
.brand--overlaypurple{
    background-color: rgba(0, 0, 104, 0.685)
}

/* form */
.form-control {
    padding: clamp(12px, 0.833vw, 72px);
    border-radius: clamp(4px, 0.417vw, 36px);
    border: 1px solid #C4C4C4;
    background: transparent;
    font-family: "Roboto", sans-serif;
    font-size: clamp(15px, 0.833vw, 32px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.32px;
    position: relative;
    color: #5E5E5E;
    box-shadow: none;
    outline: 0;
}
.form-control:focus {
    border-color: #b8a2c0;
    color: #0F0F0F;
    box-shadow: none;
    outline: 0 !important;
    background: transparent !important;
}
.contact-form p{
    color: #0f0f0f !important;
    margin-bottom: 2px !important;
}
textarea.form-control {
    min-height: 100px;
    height: clamp(120px, 14.01vw, 50px);
}

.wrapper-dropdown {
    position: relative;
    display: inline-block;
    width: fit-content;
    width: 100%;
    text-align: left;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.wrapper-dropdown.active .topbar-dropdown {
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
}
.wrapper-dropdown svg {
    transition: all 0.3s;
}
.wrapper-dropdown .rotated {
    transform: rotate(-180deg);
}
.topbar-dropdown {
		width: max-content;
		background: #FFFFFF;
		transition: 0.3s;
		position: absolute;
		top: 110%;
		right: 0;
		left: 0px;
		margin: 0;
		padding: 0;
		list-style: none;
		z-index: 99;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: inherit;
		-webkit-transform-origin: top;
		-moz-transform-origin: top;
		-ms-transform-origin: top;
		transform-origin: top;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		opacity: 0;
		visibility: hidden;
		box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
		width: 100%;
}

.wrapper-dropdown .topbar-dropdown li {
    padding: 0 15px;
    line-height: clamp(32px, 2.292vw, 84px);
    border-radius: 0;
    overflow: hidden;
}

.wrapper-dropdown .topbar-dropdown li:last-child {
    border-bottom: none;
}

.check-block input {
    display: none;
}

.check-block label {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.625vw, 24px);
    color: #5E5E5E;
    font-weight: 400;
}
.check-block input[type=checkbox]:checked + label {
    color: #031714;
    font-weight: 400;
}

.auth--bx form{
    padding: 2.0rem 2.5rem;
}

.frm--cstm .form-control{

    height: 48px;
    padding: 0.5rem 1.2rem;
    font-size: 14px;
    color: #2002c9;
}

.frm--cstm .form-control:focus{
    box-shadow: none;
    outline: none;
    border: 1px solid #2002c9;
}

.frm--cstm .btn{
    padding: 0.8rem 2.5rem;
}

.frm--cstm .btn.side--btn{
    width: 200px;
}

body{
    background: #ffffff;
}
.timeline{
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}
.tl-container{
    padding: 10px 50px;
    position: relative;
    width: 50%;
    /* background: rgba(0, 0, 0, 0.3); */
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown {
    0%{
        opacity: 1;
        transform: translateY(-30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.tl-container:nth-child(1){
    animation-delay: 0s;
}
.tl-container:nth-child(2){
    animation-delay: 0.5s;
}
.tl-container:nth-child(3){
    animation-delay: 2s;
}
.tl-container:nth-child(4){
    animation-delay: 3s;
}

.text-box{
    padding: 20px 30px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}
.left-container{
    left: 0;
}
.right-container{
    left: 50%;
}
.tl-container img{
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;
}
.right-container img{
    left: -20px;
}
.timeline::after{
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    background: #fff;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
}

@keyframes moveline {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}

.text-box h2{
    font-weight: 600;
}
.text-box small{
    display: inline-block;
    margin-bottom: 15px;
}
.left-container-arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -15px;
}
.right-container-arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px;
}

/* navigation */
.navbar-brand {
    padding-top: 0px;
    margin-right: 60px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
}

.trans-navigation {
    transition: all 0.5s ease 0s;
}

.navbar-collapse {
    text-align: center;
}

.navbar-collapse.show {
    overflow-y: auto;
    max-height: calc(100vh - 100px);
}

.navbar-expand-lg.trans-navigation .navbar-nav .nav-link:last-child, .navbar-expand-lg.site-navigation .navbar-nav .nav-link:last-child {
    padding-right: 0px;
}
.navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
    color: #fff;
}

.navbar-expand-lg.trans-navigation .navbar-nav .nav-link, .navbar-expand-lg.site-navigation .navbar-nav .nav-link {
    padding: 0px 24px;
}
.site-navigation .navbar-nav a, .trans-navigation .navbar-nav a {
    text-transform: uppercase;
}
.services .row.list [class*='col-md-'] {
    margin-bottom: 1.5rem;
}

/* Admissions */
.admissions .row.list [class*='col-md-'] {
    margin-bottom: 1.5rem;
}
.admissions .servi-box ul li{
    list-style: inside;
}
.admissions .servi-box .admission-doc{
    padding-inline-start: 10px;
}
.admissions .servi-box .admission-doc li{
    list-style: circle;
    margin-inline-start: 10px;
}

.image-box {
  /* Here's the trick */
  background: linear-gradient(180deg, rgba(67, 23, 100, 0.8) 0%, rgba(65, 0, 56, 0.8) 96.5%), var(--image-url) center center;
  /* background: linear-gradient(90deg, rgba(67, 23, 100, 0.8) 0%, rgba(65, 0, 56, 0.8) 96.5%); */
  /* obj-overlay */

  /* position: absolute; */
  /* Here's the same styles we applied to our content-div earlier */
  /* color: white; */
  /* min-height: 100vh; */
  /* width: 100%; */
    width: 100%;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	-webkit-transition: all 0.5s ease;  -moz-transition: all 0.5s ease; transition: all 0.5s ease;
  /* padding: 1.7rem 1.8rem; */
  /* border-radius: 14px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

/* Connect */
.connect ul li{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0.32rem;
}
.connect ul li a{
    color: #600080 !important;
    font-weight: 500;
}

/* about us */
.about-section .img-block .about-img{
    width: 100%;
    border-radius: clamp(18px, 1.25vw, 96px);
}

.cus-btn-3 {
    position: relative;
    overflow: hidden;
    padding: clamp(15px, 0.879vw, 64px) clamp(18px, 1.25vw, 96px);
    border-radius: clamp(28px, 2.5vw, 120px);
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 0.417vw, 36px);
    background: #987243;
    text-align: center;
    background-size: 400%;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.cus-btn-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: clamp(28px, 2.5vw, 120px);
    width: 0%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    transition: all 0.5s;
    background: #031714;
    transition: all 0.5s ease-in-out;
}
.cus-btn-3 .text {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    font-weight: 600;
    line-height: 120%;
    font-size: clamp(12px, 0.833vw, 64px);
    color: #FFFFFF;
}
.cus-btn-3 i {
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: clamp(16px, 1.042vw, 96px);
    color: #FFFFFF;
    transition: all 0.5s ease-in-out;
}
.ubox {
    /* background-color: #F3F5FA; */
      border-radius: 5px;
    /* width: auto; */
}
.ubox-item-first {
    background-color: #03A7EB;
    /* border-radius: 5px; */
    padding: 0.6rem 1.2rem;
    position: relative;
}
.ubox .ubox-item-last {
    background-color: #DFF4FE;
    padding: 0.4rem 1.2rem;
}

/* what we do && services */
.icon-bg{
    background: var(--white);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
}
.servi-box{
    width: 100%;
    padding: 1.7rem 1.8rem;
    border-radius: 14px;
    background-color: #A020F0;
  }
  .servi-box img{
    width: 70px;
  }
  .servi-box img.bulb{
    width: 40px;
  }
  .servi-box img.code{
    width: 60px;
  }
  .servi-box img.circle{
    width: 43px;
  }
  .servi-box img.star{
    width: 50px;
  }
  .servi-box img.book{
    width: 37px;
  }
  .servi-box img.rec{
    width: 25px;
  }

.ui-show-mobile-only{
    display: none !important;
}

@media (max-width: 575.98px) {
    .mrgb-40 {
        margin-bottom: 40px;
    }
    .ui-show-mobile-only{
        display: block !important;
    }
    .ui-hide-mobile-only {
		display: none !important
	}
    h1{
        font-size: 39px;
    }
    .about-block .block-content{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(6px, 1.042vw, 72px);
    }
    .about-block .block-content .vc-line{
        display: none
    }
    .about-block .block-content .block-1{
        display: flex;
        align-items: center;
        gap: clamp(6px, 1.042vw, 72px);
    }
    .about-block .block-content .block-1 .num-vector{
        width: clamp(34px, 3.333vw, 160px);
        height: clamp(34px, 3.333vw, 160px);
    }
    .banner-content .banner-title {
        line-height: 1.2;
        color: #fff;
        font-weight: 700;
        font-size: 32px;
    }
    .banner-content p {
        font-size: 18px;
    }
    .program-wrap{
		width: 100%;
		display: flex;
        margin-left: auto;
        margin-right: auto;
		flex-direction: column;
		flex-flow: wrap;
		justify-content: center;
		/* grid-gap: 5; */
	}

    .about h2{
        font-size: 32px;
        line-height: 1.2;
    }

    .experience .exp_title {
        font-size: 1.5rem;
    }
    .experience .exp_items .item {
        font-size: 16px;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .section-c .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .section-c .gallery a:first-child {
    grid-row: 1/1;
    grid-column: 1/1;
  }

  .section-c .gallery a:nth-child(2) {
    grid-column: 2/4;
    grid-row: 2/2;
  }

  .section-c .gallery a:last-child {
    display: none;
  }
    
    
}

@media screen and (max-width: 766px) {
    .custom-heading{
        row-gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    .ui-show-mobile-only{
        display: block !important;
    }
    .ubox{
        width: 100%;
    }
    .timeline{
        margin: 50px auto;
    }
    .timeline::after{
        left: 31px;
    }
    .tl-container{
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .text-box{
        font-size: 13px;
    }
    .text-box small{
        margin-bottom: 10px;
    }
    .right-container{
        left: 0;
    }
    .left-container img, .right-container img{
        left: 10px;
    }
    .left-container-arrow, .right-container-arrow{
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }
    .program-wrap{
		width: 100%;
		display: flex;
        margin-left: auto;
        margin-right: auto;
		flex-direction: column;
		flex-flow: wrap;
		justify-content: center;
		/* grid-gap: 5; */
	}
    
}


.page-header{
    background-image: url(../images/flex-care.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

.page-header .header-content-wrap{
    display: flex;
    /* justify-content: left; */
    /* align-items: center; */
    flex-direction: column;
    width: 100%;
    padding-top: 6rem;
    text-align: left;
    color: var(--text-blue);
}



@media (max-width: 992px) {
    .navbar-collapse {
        text-align: center;
    }
    .ui-hide-mobile-only {
		display: none !important
	}
    .lg-pt-4{
        padding-top: 4rem !important;
    }
    
}


/* 2 column hero */

.tw-pt-3 {
    padding-top: .75rem;
}

.tw-pb-3 {
    padding-bottom: .75rem;
}

.tw-px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.tw-grid {
    display: grid;
}

.tw-mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.tw-mt-3 {
    margin-top: .75rem;
}
.tw-gap-3 {
    gap: .75rem;
}
.tw-flex {
    display: flex;
}
.tw-rounded-xl{
    border-radius: .75rem !important;
}
.tw-text-center{
    text-align: center;
}
.tw-py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}
.tw-px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.tw-gap-2 {
    gap: .5rem;
}
.tw-items-center {
    align-items: center;
}
.tw-flex-col {
    flex-direction: column;
}
.tw-max-w-xl {
    max-width: 36rem;
}
.tw-flex {
    display: flex;
}
.tw-gap-y-2 {
    row-gap: .5rem;
}
.tw-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tw-flex-wrap {
    flex-wrap: wrap;
}
.tw-flex-col {
    flex-direction: column;
}
.tw-w-full {
    width: 100%;
}
/* .btn-primary, .collabs-page__intro a.collabs-page__cta-main {
    min-height: 50px;
    width: 100%;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(231 29 6 / var(--tw-bg-opacity));
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: TWK Lausanne,Arial,sans-serif;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    letter-spacing: .05em;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
} */
.btn-secon, .collabs-page__intro a.collabs-page__cta-main {
    min-height: 50px;
    width: 100%;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    border: 1px solid #fff; 
    /* background-color: rgb(231 29 6 / var(--tw-bg-opacity)); */
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: TWK Lausanne,Arial,sans-serif;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    letter-spacing: .05em;
    --tw-text-opacity: 1;
    /* color: rgb(255 255 255 / var(--tw-text-opacity)); */
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tw-row-start-1 {
    grid-row-start: 1;
}
.tw-w-full {
    width: 100%;
}

.tw-h-full {
    height: 100%;
}
.tw-relative {
    position: relative;
}
.tw-m-0 {
    margin: 0 !important;
}
.tw-text-solared {
    --tw-text-opacity: 1;
    color: rgb(249 56 34 / var(--tw-text-opacity));
}

@media (max-width: 799px) {
    .videowise-bg {
        aspect-ratio: 16 / 9;
    }
}
@media (min-width: 800px) {
    .videowise-bg {
        aspect-ratio: 16 / 9;
    }
    .md\:tw-px-3 {
        padding-left: .75rem;
        padding-right: .75rem;
    }
        .md\:tw-grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
        .md\:tw-min-h-\[540px\] {
        min-height: 540px;
    }
        .md\:tw-col-span-3 {
        grid-column: span 3 / span 3;
    }
    .md\:tw-text-left {
        text-align: left;
    }
    .md\:tw-gap-5 {
        gap: 1.25rem;
    }
    .md\:tw-items-start {
        align-items: flex-start;
    }
    .md\:tw-flex-row {
        flex-direction: row;
    }
        .md\:tw-mr-2 {
        margin-right: .5rem;
    }
    .md\:tw-text-lg\/\[110\%\] {
        font-size: 1.125rem;
        line-height: 110%;
    }
        .md\:tw-text-6xl\/\[110\%\] {
        font-size: 3.75rem !important;
        line-height: 110%;
    }
    .md\:tw-col-end-6 {
        grid-column-end: 6;
    }
        .md\:tw-col-start-4 {
        grid-column-start: 4;
    }
}
.tw-max-w-\[200px\] {
    max-width: 200px;
}

@media (min-width: 1024px) {
    .lg\:tw-px-0 {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-block .info-wrapper{
        /* flex-direction: column; */
        position: relative;
        padding-block: 200px 0px;
        padding-inline: 16px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .info-wrapper .cta{
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #162750;
        cursor: pointer;
        position: absolute;
        top: 180px;
        left: 20px;
    }

    .info-wrapper .cta .icon-wrapper{
        padding: 8px;
        background: var(--text-blue);
    }
    .info-wrapper .cta .label{
        padding-left: 10px;
        font-family: Inter, 'sans-serif';
        font-size: 18px;
    }
    .info-wrapper .cta .icon-wrapper .icon {
        height: auto;
        width: 16px;
        display: block;
        transform: rotate(-135deg) scale(.8);
    }

    .info-wrapper .title{
        padding-top: 40px;
        padding-bottom: 20px;
        color: var(--text-blue);
        text-transform: uppercase;
        max-width: 500px;
    }
    .info-wrapper .subtitle{
        width: 586px;
        font-family: Inter, 'sans-serif';
        line-height: 1.46;
        letter-spacing: -0.5rem;
    }
    .info-wrapper .title h1{
        font-size: 3rem;
        font-weight: 600;
        color: var(--text-darkpink);
    }
    .big_paragraph {
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: -0.5px;
    }
}

.tw-max-w-\[1440px\] {
    max-width: 1440px;
}

.tw-object-cover {
    object-fit: cover;
}
.tw-bg-center {
    background-position: 50%;
}
.tw-bg-cover {
    background-size: cover;
}
.tw-block {
    display: block;
}
.tw-text-left {
    text-align: left;
}
.max-w-200{
    max-width: 200px;
}
.max-w-220{
    max-width: 220px;
}
.max-w-300{
    max-width: 300px;
}
.max-w-400{
    max-width: 400px;
}
.videowise-background {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.videowise-background.vw--background-widget-cover video {
    display: block;
    height: 100%;
    left: 50%;
    min-height: inherit;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    border-radius: .75rem;
}

/* infinite scroll */
.infinite-scroll {
    font-size: 15px;
    padding-block: 8px;
    border-block: 1px solid;
    display: flex;

    --gap: 20px;
    gap: var(--gap);
    overflow: hidden;
    -webkit-user-select: none; /* For Safari 3+ and iOS Safari 3+ */
    user-select: none; /* Standard property for modern browsers */
}

.infinite-scroll ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);

    animation: scroll 20s linear infinite;
}

.infinite-scroll:hover ul {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.infinite-scroll ul:first-child {
    /* background-color: yellow; */
}
.infinite-scroll ul:last-child {
    /* background-color: pink; */
}

.infinite-scroll .company, 
.infinite-scroll .price {
    font-weight: bold;
}

.infinite-scroll .price {
    margin-inline: 4px;
}

.infinite-scroll .plus::before{
    content: '↑';
}
.infinite-scroll .minus::before{
    content: '↓';
}
.infinite-scroll .plus .change,
.infinite-scroll .plus::before{
    color: #089981;
}
.infinite-scroll .minus .change,
.infinite-scroll .minus::before{
    color: #f23645;
}


/** Animation*/
/* text auto show */
@supports (animation-timeline: view()) {
  .autoShow {
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
  }
}
@supports not (animation-timeline: view()) {
  .autoShow {
    /* Fallback: show immediately or add transition for scroll-based reveal */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .autoShow.hidden {
    opacity: 0;
    transform: translateY(100px);
  }
}

@keyframes text-appear {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* image reveal */
@supports (animation-timeline: view(10% 5%)) {
  .imageReveal {
      animation: imageReveal both;
      animation-timeline: view(10% 5%);
  }
}
@supports not (animation-timeline: view(10% 5%)) {
  .imageReveal {
    /* Fallback: show final state */
    filter: none;
    opacity: 1;
    scale: 1;
    translate: 0 0;
    transition: filter 0.5s ease, opacity 0.5s ease, scale 0.5s ease, translate 0.5s ease;
  }
  .imageReveal.hidden {
    filter: saturate(0) contrast(4) brightness(.1) blur(5px);
    opacity: 0;
    scale: .95;
    translate: 0 4rem;
  }
}

@keyframes imageReveal {
    from {
        filter: saturate(0) contrast(4) brightness(.1) blur(5px);
        opacity: 0;
        scale: .95;
        translate: 0 4rem;
    }
    to {
        filter: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}
