@font-face {
    font-family: 'Urbanist-regular';
    src: url('../fonts/Urbanist-Regular.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist-medium';
    src: url('../fonts/Urbanist-Medium.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist-semibold';
    src: url('../fonts/Urbanist-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist-bold';
    src: url('../fonts/Urbanist-Bold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

body{overflow-x:hidden;}

:root {
    --regular-font: 'Urbanist-regular', 'sans-serif';
    --medium-font: 'Urbanist-medium', 'sans-serif';
    --semibold-font: 'Urbanist-semibold', 'sans-serif';
    --bold-font: 'Urbanist-bold', 'sans-serif';
    --font-color: #1D2A57;
    --linear-color: linear-gradient(to right, #F58633, #F58633, #F58633, #F58633, #F58633, #FFCA03, #FFCA03, #FFCA03, #FFCA03, #FFCA03);
}

/* From Uiverse.io by cssbuttons-io */
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 15rem;
    height: auto;
    padding: 5px;
    background: black;
    color: #000;
    border: 0;
    outline: none;
    border-radius: 5px;
    position: relative;
}

button.learn-more::after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(45deg, #F58633, #FFCA03);
    z-index: -1;
    border-radius: 35px;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 2rem;
    height: 2rem;
    background: white;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: black;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45scubic-bezier(0.65, 0, 0.076, 1);
    left: 0.2rem;
    width: 1rem;
    height: 0.1rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.289rem;
    right: 0rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid black;
    border-right: 0.125rem solid black;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45scubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 9%;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: capitalize;
    font-family: var(--semibold-font);
    vertical-align: middle;
    display: flex;
    align-items: center;
    font-size:16px;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: black;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: black;
}

.menu-bar-btn .learn-more,
.banner .learn-more,
.about .learn-more,
.cta .learn-more,
footer .learn-more {
    background: rgb(245, 134, 51);
    background: linear-gradient(90deg, rgba(245, 134, 51, 1) 0%, rgba(255, 202, 3, 1) 100%);
}

.navbar {
    z-index: 999;
}

.navbar-brand img {
    width: auto;
    height: 80px;
}

.nav-item {
    margin: 0 20px;
    padding: 15px 0;
}

.banner {
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 1%, rgba(255, 254, 254, 1) 48%, rgba(255, 241, 231, 1) 100%);
    padding: 50px 0;
}

.banner h2 span {
    background: var(--linear-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.title h3 {
    font-family: var(--semibold-font);
    font-size: 20px;
}

.title h2,
.title h1 {
    color: var(--font-color);
    font-family: var(--semibold-font);
}

.title h2 span,
.title h1 span {
    font-family: var(--bold-font);
    background: var(--linear-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.banner label {
    font-family: var(--medium-font);
}

.banner form,
.contact form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 10px 4px #00000026;
}

.margin {
    margin: 40px 0;
    padding: 40px 0;
}

.home {
    margin-top: 100px;
}

.banner .title h2 {
    font-size: 55px;
    margin-bottom: 30px;
}

.banner form button,
.contact form button,
.thankyou-page button {
    color: #ED1F27;
    border: 2px solid #ED1F27;
    padding: 6px 60px;
    border-radius: 30px;
    font-family: var(--semibold-font);
}

.banner form button:hover,
.contact form button:hover,
.thankyou-page button:hover {
    color: white;
    background-color: #ED1F27;
    transition: 1s;
}

.about p {
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.2px;
    margin-bottom: 15px;
}

.about img {
    width: 100%;
    height: auto;
}

.why-us .width {
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 1%, rgba(255, 254, 254, 1) 48%, rgba(255, 241, 231, 1) 100%);
}

.width {
    width: 92%;
    height: auto;
    padding: 50px 0;
    margin: 0 auto;
    border-radius: 25px;
}

.why-us .card {
    position: relative;
    padding: 2px;
    background: linear-gradient(45deg, #ffb15d, #fff6e3bb);
    border-radius: 7px;
    border: none;
}

.why-us .card .card-content {
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.why-us .card .card-img img {
    width: auto;
    height: 80px;
}

.why-us .card .card-title {
    font-family: var(--regular-font);
    font-size: 20px;
    margin-top: 10px;
}

.why-us .card .card-title span {
    font-family: var(--bold-font);
    color: #F58633;
}

.testimonial .container {
    position: relative;
    z-index: 999;
}

.testimonial .width {
    width: 90%;
    box-shadow: 0 0 10px 4px #00000026;
    padding: 35px;
}

#sync1-text .item {
    color: black;
}

#sync2 .item {
    margin: 5px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

/* Owl Nav Customization */
.owl-theme .owl-nav {
    margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
    transition: all 0.3s ease;
}

/* Positioning the Navigation */
#sync1-text.owl-theme {
    position: relative;
}

#sync1-text.owl-theme .owl-prev,
#sync1-text.owl-theme .owl-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 100%;
    background-size: cover !important;
    background-position: center;
}

#sync1-text.owl-theme .owl-prev {
    left: -64%;
}

#sync1-text.owl-theme .owl-next {
    right: -13%;
}

.owl-prev span,
.owl-next span {
    display: none;
}

#sync1-text.owl-theme .owl-prev {
    background-image: url(../images/prev.webp);
}

#sync1-text.owl-theme .owl-next {
    background-image: url(../images/next.webp);
}

.testimonial img {
    border-radius: 10px;
}

#sync1-img img {
    border-radius: 15px;
    height: 490px;
}

.testimonial h4 {
    color: #0089D0;
    font-family: var(--bold-font);
}

.testimonial .container {
    position: relative;
}

.testimonial .width {
    position: relative;
    z-index: 1;
    background-color: white;
}

.testimonial .position {
    position: absolute;
    z-index: -100;
    content: '';
    width: 340px;
    height: 680px;
    background-image: url(../images/testimonial-bg.webp);
    background-size: cover;
    background-position: center;
    top: -50px;
    left: 9%;
    border-radius: 40px;
}

.contact .width {
    background: linear-gradient(90deg, rgba(255, 241, 231, 1), rgba(255, 254, 254, 1) 48%, rgba(255, 255, 255, 1) 1% 100%);
}

iframe {
    border-radius: 15px;
    width: 100%;
}

.insurance-slider{
    margin-top: 25px;
}

.insurance-slider img{
    width: 90% !important;
    height: auto;
    margin: 0 auto;
}

.cta .container{
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-image: url(../images/cta-bg.webp);
    background-size: cover;
    background-position: center;
}

.cta h2 {
    font-family: var(--bold-font);
    font-size: 40px;
    line-height: 50px;
}
/*footer*/
footer{
    width: 100%;
    height: auto;
    padding: 65px 0 20px;
    background-color: #000000;
}

footer .logo img{
    width: auto;
    height: 120px;
}

footer li, footer a, footer p {
    color: white !important;
    list-style: none;
    text-decoration: none;
    margin-top: 15px;
    font-family: var(--regular-font);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.3px;
}

footer hr{
    color: white;
}

footer .heading{
    color: white;
    font-family: var(--bold-font);
    font-size: 20px;
}

.social-media {
    display: flex;
}

.social-media a {
    background-color: white;
    padding: 10px;
    margin-left:10px;
    border-radius: 50%;
}

.social-media a:hover{
    background-color: #F58633;
    transition: 1s;
}

.social-media a img{
    width: auto;
    height: 24px;
}

.social-media a:hover img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(10deg) brightness(113%) contrast(101%);
    transition: 1s;
}

.thankyou-page{
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou-page p{
    font-family: var(--regular-font);
}

.widgets {
    width: 60px;
    height: auto;
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 999;
  }
  
  .widgets img {
    width: 100%;
    height: auto;
  }
  
  .whatsapp {
    margin-top: 45px;
    background-color: green;
    border-radius: 30px;
    padding: 10px;
  }
  
  .contact-widget {
    background-color: var(--font-color);
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 0 10px 2px rgba(245, 245, 245, 0.888);
  }
  
  .contact-widget:hover {
    background-color: #ED1F27;
  }
  
  
  .testimonial, .instagram-widgets{
      position:relative;
      z-index: 0;
  }
  
  
/* footer */
.contact {
  margin-top: 50px;
}
.text-white {
  color: white !important;
}
footer {
  background-color: #061425;
  padding: 50px 0px;
  margin: 50px 20px 0px;
  border-radius: 15px;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-1 {
  width: 30%;
}
.footer-2 {
  width: 20%;
}
.footer-3 {
  width: 30%;
}
.footer-logo {
  max-width: 200px;
  height: auto;
}
.paragraph {
  color: white;
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
  padding: 0px;
}
.footer-title {
  color: white;
  font-family: var(--bold-font);
  font-size: 20px;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
}
.social-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease;
}
.social-link img {
  width: auto;
  height: calc(100% / 2);
  object-fit: contain;
}
.social-link:hover img {
  filter: invert(1) brightness(0);
}
.quick-links {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quick-link {
  color: white;
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  transition: 0.5s ease;
  position: relative;
}
.quick-link:hover {
  color: white;
}
.quick-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: white;
  bottom: -10px;
  left: 0;
  transition: 0.5s ease;
}
.quick-link:hover::before {
  width: 100%;
}
.quick-links-2 {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;

  gap: 20px;
}
.quick-links-2 li {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 15px;
}
.quick-text {
  color: white;
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  transition: 0.5s ease;
  position: relative;
}
.quick-text:hover {
  color: white;
}
/* contact */
.title {
  color: black;
  font-family: var(--bold-font);
  font-size: 40px;
  line-height: 1.5;
}
.title-small {
  color: #057e65;
  font-family: var(--medium-font);
  font-size: 18px;
  margin-bottom: 20px;
}
.color-black {
  color: black !important;
}
.contact-form {
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-family: var(--regular-font);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #057e65;
}
/* testimonials */
.testimonials {
  padding: 20px;
  margin: 50px 20px 0px;
  border-radius: 15px;
  background-color: #003b30;
}
.testimonial-item {
  padding: 20px;
  border-radius: 15px;
}
.testimonial-item-1 {
  background: url("../images//testimonial/testimonial-1.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.testimonial-item p {
  color: black;
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.institue-logo {
  width: 200px !important;
  height: auto;
  object-fit: contain;
}
.test-line {
  width: 50%;
  height: 1px;
  background-color: white;
  margin: 20px 0px;
}
.test-num {
  border: 1px solid white;
  display: inline-block;
  background: #00000052;
  padding: 10px 20px;
  border-radius: 10px;
}
.testicon:not(:first-child) {
  margin-left: 20px;
}
.testicon img {
  width: 30px !important;
  height: auto;
}
.testicon h3 {
  margin-top: 10px;
  margin-bottom: 0px;
  color: white;
  font-family: var(--bold-font);
  font-size: 20px;
  line-height: 1.5;
}
.testicon p {
  color: white;
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 1.5;
}
.testimonials {
  position: relative;
}
.testimonial-slider .owl-nav {
  position: absolute;
  top: -100px;
  right: 0px;
  display: flex;
  gap: 10px;
}
.testimonial-slider .owl-nav button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff !important;
}
.testimonial-slider .owl-nav button img {
  width: 20px !important;
  height: auto;
}
/* call-to-action */
.call-to-action {
  padding: 30px 20px 0;
  background: #003b30;
  border-radius: 15px;
  position: relative;
}
.btn-white {
  background-color: #fff;
  color: #003b30;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #fff;
  transition: 0.5s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover {
  background-color: #003b30;
  color: #fff;
}
.call-to-action::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 300px;
  background: url("../images/girl-img.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


.key-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin: 5px;
  margin-bottom: 10px;
}
.key-item img {
  width: 50px !important;
  height: auto;
}
.key-item h3 {
  color: #003b30;
  font-family: var(--bold-font);
  font-size: 14px;
  line-height: 1.5;
}
.owl-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.key-slider .owl-nav button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #009b7a !important;
}
.key-slider .owl-nav button img {
  width: 20px !important;
  height: auto;
}
/* faq */
.faq {
  display: block;
  margin-top: 60px;
}
details {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  padding-bottom: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* details[open] {
  background: transparent;
} */
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-family: var(--regular-font);
  font-weight: 600;
  font-size: 16px;
  color: black;
  list-style-type: none;
}
details summary {
  color: black;
  padding: 20px 20px 0px;
}
details[open] .content {
  color: #4e4e4e;
  font-size: 16px;
  padding: 0 20px;
  margin-top: 10px;
}

details summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 2px;
  background-image: url("../images/add.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

details[open] summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 2px;
  background-image: url("../images/minus.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
