﻿
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    padding: 80px 0 40px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
    
}/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, .5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/



/*=============================
	04. Start Services CSS
===============================*/
.services {
  background: #F9FAFF;
  padding-bottom: 85px;
}

.services .section-title {
  margin-bottom: 65px;
}

.services .single-service {
  text-align: left;
  position: relative;
  padding: 130px 40px 45px 40px;
  box-shadow: 0px 5px 35px #0000000d;
  border-radius: 0;
  background: #fff;
  z-index: 5;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 15px 0;
}

.services .single-service .serial span {
  font-size: 30px;
  position: absolute;
  left: 40px;
  top: 40px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  background: #74b9ff;
  color: #C0262E;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #C0262E0f;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.services .single-service:hover {
  background: #C0262E;
}

.services .single-service:hover .serial span {
  border-color: transparent;
  background: #fff;
  color: #C0262E;
  border-radius: 50%;
}

.services .single-service h3 a {
  color: #333;
  font-weight: 600;
  font-size: 22px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.services .single-service:hover h3 a {
  color: #fff;
}

.services .single-service p {
  margin-top: 20px;
  line-height: 24px;
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.services .single-service:hover p {
  color: #fff;
}

.circles-wrap {
  position: absolute;
  bottom: -65%;
  right: -50%;
  z-index: -1;
}

span.circle {
  border-radius: 50%;
  position: absolute;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.services .single-service:hover span.circle {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.services .circles {
  height: 400px;
  width: 400px;
  background: 0 0;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1
}

.services span.circle.circle-1 {
  height: 100px;
  width: 100px;
  background: #fff;
  opacity: 0.2;
  z-index: 5;
  display: inline-block;
  z-index: 5;
}

.services span.circle.circle-2 {
  height: 200px;
  width: 200px;
  background: #fff;
  opacity: 0.2;
  z-index: 4;
}

.services span.circle.circle-3 {
  height: 300px;
  width: 300px;
  background: #fff;
  opacity: 0.2;
  z-index: 3;
}

.services span.circle.circle-4 {
  height: 400px;
  width: 400px;
  background: #fff;
  opacity: 0.2;
  z-index: 2;
}

.services .single-service:hover span.circle,
.services .single-service.active span.circle {
  transform: scale(1);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s
}

.services .single-service:hover span.circle,
.single-service.active span.circle {
  transform: scale(1);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.services .service-area .circles-wrap {
  position: absolute;
  bottom: -32%;
  left: auto;
  z-index: -1;
  right: -50%
}

.services .single-service {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px;
}

.services .single-service img {
  height: 100%;
  width: 100%;
  z-index: 2;
}

.services .single-service .content {
  z-index: 2;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 30px;
}

.services .single-service .content h4 {
  display: block;
  margin-bottom: 25px;
  padding-bottom: 15px;
  color: #181E4E;
  position: relative;
}

.services .single-service .content h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 80px;
  background: #C0262E;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .single-service:hover .content h4:before {
  width: 110px;
}

.services .single-service .content h4:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: #e6eefb;
  z-index: -1;
}

.services .single-service .content h4 a {
  color: #fff;
  font-weight: 600;
  font-size: 23px;
  color: #181E4E;
}

.services .single-service .content p {
  color: #666;
  transition: all 0.4s ease;
}

.services .single-service .content .button {
  margin-top: 30px;
}

.services .single-service .content .button .btn {
  border: 2px solid #C0262E;
  color: #C0262E;
  background: transparent;
}

.services .single-service .content .button .btn:hover {
  border-color: transparent;
  color: #fff;
  background: #C0262E;
}

/* Service Details */
.service-details {
  box-shadow: 0 0 35px #eee !important;
}

.service-details .detail-post-navigation {
  margin-bottom: 0 !important;
  margin-top: 30px;
}

.service-details .content-body {
  padding: 40px;
  background: #fff;

}

.service-details p {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 20px;
}

.service-details ul li {
    
    margin-left: 20px;
    list-style-type: circle;   
}

.service-details ol li {
    
    margin-left: 20px;
    list-style-type: decimal;   
}



.service-details p:last-child {
  margin: 0;
}

.service-details .quote-icon+p {
  position: relative;
  top: -6px;
}

.service-details h3 {
  margin-bottom: 20px;
  font-weight: 700;
  margin-top: 20px;
}

/*service sidebar*/
.service-single-img {
  width: 100%;
  overflow: hidden;
}

.service-single-img img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar.service-sidebar .service-category {
  margin-bottom: 30px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 35px #eee !important;
}

.sidebar.service-sidebar .service-docs>li {
  margin-bottom: 10px;
}

.sidebar.service-sidebar .service-category>li {
  margin-bottom: 10px;
}

.sidebar.service-sidebar .service-docs>li:last-child,
.sidebar.service-sidebar .service-category>li:last-child {
  margin-bottom: 0;
}

.sidebar.service-sidebar .service-category>li>a {
  display: flex;
  background: #f7f7f7;
  align-items: center;
  justify-content: space-between;
  padding: 16px 35px;
  font-size: 14px;
  font-weight: 500;
}

.sidebar.service-sidebar .service-category>li>a>i {
  font-size: 18px;
}

.sidebar.service-sidebar .service-category>li>a:hover {
  background-color: #C0262E;
  color: #fff;
}

.sidebar.service-sidebar .service-category>li>a:hover>i {
  opacity: 1;
}

.sidebar.service-sidebar .service-docs {
  margin-bottom: 30px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 35px #eee !important;
}

.sidebar.service-sidebar .service-docs>li>a {
  display: flex;
  background: transparent;
  align-items: center;
  padding: 16px 35px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #f7f7f7;
}

.sidebar.service-sidebar .service-docs>li>a:hover {
  color: #C0262E;
}

.sidebar.service-sidebar .service-docs>li>a>i {
  margin-right: 20px;
  color: #C0262E;
  font-size: 17px;
}

.sidebar.service-sidebar .service-quote {
  /*! border: 2px solid #f7f7f7; */
  padding: 30px;
  position: relative;
  padding-right: 15px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 35px #eee !important;
}

.sidebar.service-sidebar .service-quote .quote-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.sidebar.service-sidebar .service-quote .quote-author .quote-img {
  width: 60px;
  height: 60px;
  margin-right: 20px;

}

.sidebar.service-sidebar .service-quote .quote-author .quote-text {
  width: calc(100% - 80px);
}

.sidebar.service-sidebar .service-quote .quote-author .quote-text h5 {
  font-weight: 600;
  font-size: 18px;
}

.adv-banner {
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 35px #eee !important;
  text-align: center;
  
}

.adv-banner a:hover {
  color: #C0262E;
}


.related-service {
  background: #fff;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 35px #eee !important;
  margin-top: 30px;
}

.related-service .title {
  position: relative;
  font-size: 25px;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.related-service .title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background: #C0262E;
}

.related-service .single-service {
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none;
  border: 1px solid #eee;
}

.related-service {
  position: relative;
}

.related-service .tns-controls {
  position: absolute;
  right: 40px;
  top: 40px;
}

.related-service .tns-outer [aria-controls] {
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 0;
  background: transparent;
  color: #333;
  font-size: 15px;
  border: 1px solid #eee;
}

/*======================================
	End services CSS
========================================*/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/AdobeStock_225410051.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(129, 129, 129, 0.5);
    border-style: solid;
    border-color: black;}

}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .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;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/

/* News Details */
.blog-single {
  background: #fff;
}

.post-details {}

.post-details .detail-inner {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 35px #eee !important;
}

.post-details .post-thumbnils {
  margin-bottom: 30px;
}

.post-details .post-title {
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 32px;
}

.post-details .post-title a {
  font-size: 26px;
  font-weight: 600;
}

.post-details .post-title a:hover {
  color: #017EAD;
}

ul.custom-flex {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.post-details .post-meta li {
  font-weight: 500;
  font-size: 15px;
  margin-right: 25px;
  margin-bottom: 20px;
}

.post-details .post-meta li a i {
  font-weight: 400;
  margin-right: 3px;
}

.post-details .post-meta li a:hover {
  color: #017EAD;
}

.post-details p {
  font-size: 15px;
  margin-bottom: 20px;
}

.post-details h3 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 28px;
}

.post-details p:last-child {
  margin-bottom: 0;
}

.blog-middle-image {
  overflow: hidden;
  width: 100%;
}

.blog-middle-image img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog-middle-image:hover img {
  transform: scale(1.1);
}

blockquote {
  position: relative;
  padding: 40px 40px 50px 30px;
  color: #666;
  font-weight: 400;
  font-style: italic;
  text-align: left;
  clear: both;
  box-shadow: 0 0 20px #eee !important;
  border-left: 10px solid #106eea;
  z-index: 1;
  margin: 25px 0;
}

blockquote h4 {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}

.post-details .list {
  margin-bottom: 30px;
  margin-left: 30px;
}

.post-details .list li {
  color: #888;
  font-weight: 400;
  position: relative;
  padding-left: 18px;
  display: block;
  margin-bottom: 12px;
}

.post-details .list li:last-child {
  margin: 0;
}

.post-details .list li::before {
  position: absolute;
  content: "";
  left: -5px;
  top: 1px;
  border-radius: 0;
  transform: rotate(-45deg);
  content: "\eab6";
  font-family: icofont;
  text-align: left;
  color: #017EAD;
  font-size: 12px;
}

.popular-tag-widget .tag-title {
  margin-bottom: 20px;
  font-weight: 500;
}

.popular-tag-widget .tags>a {
  display: inline-flex;
  justify-content: center;
  padding: 4px 15px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  background: #017EAD;
  margin-right: 7px;
  margin-bottom: 10px;
  color: #fff;
}

.post-tags-media .share-title {
  margin-bottom: 20px;
  font-weight: 500;
}

.post-details .post-tags-media .post-tags .tags a:hover {
  color: #fff;
  background-color: #017EAD;
}

.post-details .post-tags-media .post-social-media ul {
  justify-content: flex-end;
}

.post-details .post-tags-media .post-social-media ul>li>a {
  color: #b5becf;
  font-size: 18px;
  margin-left: 30px;
  margin-bottom: 10px;
  display: inline-flex;
}

.post-details .post-tags-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.post-details .post-meta li {
  font-weight: 500;
  font-size: 15px;
  margin-right: 25px;
  margin-bottom: 20px;
}

.post-details .post-meta li a {
  font-weight: 500;
}

.post-details .post-meta li a {
  font-size: 14px;
  font-weight: 400;
}

.post-details .post-meta li a i {
  font-weight: 400;
  margin-right: 5px;
  color: #017EAD;
}

.post-details>p {
  font-size: 14px;
}

.post-details .post-image {
  margin: 40px 0;
  width: 100%;
  overflow: hidden;
}

.post-details .post-image img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.post-details>ul>li {
  font-weight: 500;
}

.post-details .image-alignment.left {
  margin-right: 25px;
  margin-bottom: 0;
}

.post-details .post-tags-media .post-tags .tags a {
  color: #333;
  background: transparent;
}

.post-details .post-tags-media .post-tags .tags a:hover {
  color: #fff;
  background-color: #017EAD;
}

.post-details .post-tags-media .post-social-media {
  text-align: right;
}

.post-details .post-tags-media .post-social-media ul {
  justify-content: flex-end;
}

.post-details .post-tags-media .post-social-media ul>li>a {
  color: #b5becf;
  font-size: 14px;
  margin-left: 12px;
  margin-bottom: 10px;
  display: inline-flex;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border: 1px solid #eee;
  border-radius: 0;
}

.post-details .post-tags-media .post-social-media ul>li>a:hover {
  color: #017EAD;
}

.detail-post-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 30px;
  border: 1px solid #eee;
}

.blog-single .detail-post-navigation {}

.detail-post-navigation .next-post {
  text-align: right;
}

.detail-post-navigation .prev-post span,
.detail-post-navigation .next-post span {
  font-size: 13px;
  font-weight: 500;
  color: #017EAD;
  display: block;
}

.detail-post-navigation .prev-post {
  position: relative;
  width: 50%;
  padding-right: 20px;
}

.detail-post-navigation .prev-post span i {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
  color: #017EAD;
  position: relative;
  top: 2px;
}

.detail-post-navigation .prev-post a:hover i {
  background: #017EAD;
  color: #fff;
  border-color: transparent;
}

.detail-post-navigation .next-post {
  position: relative;
  width: 50%;
  padding-left: 20px;
}

.detail-post-navigation .next-post span i {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  color: #017EAD;
  position: relative;
  top: 2px;
}

.detail-post-navigation .next-post a:hover i {
  background: #017EAD;
  color: #fff;
  border-color: transparent;
}

.detail-post-navigation .prev-post a,
.detail-post-navigation .next-post a {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.detail-post-navigation .prev-post a:hover,
.detail-post-navigation .next-post a:hover {
  color: #017EAD;
}

.detail-post-navigation span.icon {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(0%, -50%);
}

/*comments*/
.post-comments {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 35px #eee !important;
  margin-top: 40px;
}

.comment-title {
  margin-bottom: 30px !important;
  font-size: 25px;
  font-weight: 600;
  border-left: 4px solid #017EAD;
  padding-left: 10px;
  padding-bottom: 5px;
  line-height: 28px;
}

.comment-reply-title {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  font-size: 25px;
  font-weight: 600;
  border-left: 4px solid #017EAD;
  padding-left: 10px;
  padding-bottom: 5px;
  line-height: 28px;
}

.post-comments .comments-list li {
  padding-left: 130px;
  position: relative;
  font-size: 14px;
}

.post-comments .comments-list li .comment-img {
  position: absolute;
  left: 0;
  width: 100px;
  height: 100px;
}

.post-comments .comments-list li .comment-img img {
  max-width: 100px;
  max-height: 100px;
}

.post-comments .comments-list li .comment-desc .desc-top {
  margin-bottom: 20px;
  position: relative;
  display: block;
}

.post-comments .comments-list li .comment-desc .desc-top h6 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.post-comments .comments-list li .comment-desc .desc-top h6 .saved {
  color: #096bda;
  font-size: 14px;
  margin-left: 10px;
}

.post-comments .comments-list li .comment-desc .desc-top span.date {
  font-size: 13px;
  font-weight: 400;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 10px 0px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link i {
  margin-right: 5px;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link:hover {
  color: #017EAD;
}

.post-comments .comments-list li .comment-desc p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 14px;
}

.post-comments .comments-list li.children {
  margin-left: 130px;
}

.post-comments .comments-list li:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #eaeaea;
}

/*Comment form*/
.comment-form {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 35px #eee !important;
  margin-top: 40px;
}

.comment-form form {}

.comment-form form .form-box {
  position: relative;
}

.comment-form form .form-box .icon {
  position: absolute;
  top: 17px;
  right: 25px;
  font-size: 16px;
}

.comment-form form .form-box .form-control-custom {
  border: none;
  background: #fff;
  font-size: 14px;
  color: #333;
  padding: 25px;
  padding-left: 30px;
  padding-right: 50px;
  font-weight: 500;
  height: 60px;
  border: 2px solid #eee;
  margin-bottom: 25px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
}

.comment-form form .form-box textarea.form-control-custom {
  height: auto;
}

.comment-form form .form-box .form-control-custom::placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* News sidebar */
.sidebar .widget {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 35px #eee !important;
}

.sidebar .widget .widget-title {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1;
  position: relative;
  padding-left: 18px;
  font-weight: 600;
}

.sidebar .widget .widget-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #017EAD;
  content: '';
}

.sidebar .widget.search-widget form {
  position: relative;
}

.sidebar .widget.search-widget form input {
  width: 100%;
  background-color: transparent;
  height: 60px;
  border: none;
  padding: 0 80px 0 20px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  border: 2px solid #eee;
}

.sidebar .widget.search-widget form input::placeholder {
  color: #333;
}

.sidebar .widget.search-widget form button {
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 1;
  background-color: #017EAD;
  font-size: 17px;
  transition: all 0.3s ease-out 0s;
  color: #fff;
  border-radius: 0;
}

.sidebar .widget.search-widget form button:hover {
  background-color: #333;
  color: #fff;
}

.sidebar .widget.popular-feeds .single-popular-feed {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  align-items: center;
}

.sidebar .widget.popular-feeds .single-popular-feed:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-img {
  width: 80px;
  margin-right: 15px;
  border-radius: 50%;
  height: 80px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc {
  width: calc(100% - 95px);
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a {
  font-size: 14px;
  font-weight: 500;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a:hover {
  color: #017EAD;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time {
  font-weight: 400;
  font-size: 13px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time>i {
  margin-right: 4px;
}

.sidebar .widget.categories-widget ul li {
  margin-bottom: 10px;
}

.sidebar .widget.categories-widget ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.categories-widget ul li a {
  font-size: 14px;
  height: 35px;
  background-color: transparent;
  display: block;
  position: relative;
  line-height: 35px;
  color: #333;
  transition: all 0.3s ease-out 0s;
  font-weight: 500;
  padding: 0;
}

.sidebar .widget.categories-widget ul li a span {
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: transparent;
  color: #333;
  transition: all 0.3s ease-out 0s;
  border-radius: 50%;
  border: 1px solid #eee;
  font-size: 13px;
}

.sidebar .widget.categories-widget ul li a:hover {
  color: #017EAD;
}

.sidebar .widget.categories-widget ul li a:hover span {
  background: #017EAD;
  color: #fff;
  border-color: transparent;
}

.sidebar .widget.social-widget ul li {
  display: inline-block;
  margin-right: 10px;
}

.sidebar .widget.social-widget ul li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 15px;
  background-color: #f3f5f7;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar .widget.social-widget ul li a:hover {
  background-color: #017EAD;
  color: #fff;
}

.sidebar .widget.popular-tag-widget {
  padding-bottom: 30px;
}

.popular-tag-widget .tags>a {
  display: inline-flex;
  justify-content: center;
  padding: 6px 16px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500;
  background: #017EAD;
  margin-right: 7px;
  margin-bottom: 10px;
  color: #fff;
  background: transparent;
  color: #888;
  border: 1px solid #eee;
}

.popular-tag-widget .tags>a:hover {
  background-color: #017EAD;
  color: #fff;
  border-color: transparent;
}

/* Blog List */
.blog-list .single-list {
  margin-bottom: 40px;
}

.blog-list .single-list:last-child {
  margin-bottom: 0;
}

.blog-list .single-list .button {
  margin-top: 30px;
}

.blog-list .single-list .button .btn {}

/*======================================
	End Latest News CSS
========================================*/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/AdobeStock_225410051.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/AdobeStock_475759767.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/