/*================ 
Author: Elite Corporate Medical Services Inc.
=======================*/

/********************** 
[Table Of Content]

01. General CSS
02. Header
03. Hero section
04. logo Section
05. About Us Section
06. Services Section
07. How We Work Section
08. Appointment Section
09. Professional Team Section
10. Testimonials Section
11. Blog Section
12. Newsletter Section
13. Footer Section
14. About Page
15. Services Page
16. Appointment Page
17. Our Team Page
18. Blog Page
19. FAQ's Page
20. Single Page  
21. Contact Page  
22. Coming Soon Page
23. 404 Page

**********************/

/************************* 
    01. General CSS
*************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

:root {
    --primary-font: "Mitr";
    --secondary-font: "Mitr";
    --primary-color: #7FAEC0;
    --secondary-color: #626262;
    --black-color: #000;
    --white-color: #fff;
    --success-color: #777777;
    --white-smoke-color: #F1F1F2;
}

body {
    padding: 0px;
    margin: 0px;
    border: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    font-family: var(--primary-font);
    color: var(--success-color);
}

p {
    margin: 0px;
    color: var(--success-color);
    font-family: var(--primary-font);
    padding: 0;
}

/*** header ***/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
    margin: 0 0 10px;
    padding: 0;
}

h1 {
    font-size: 64px;
    line-height: 78px;
    font-weight: 500;
}

h2 {
    font-size: 46px;
    line-height: 56px;
    font-weight: 500;
}

h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
}

h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

h6 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

/*** text-wrap ***/
.text-wrap {
    color: var(--primary-color);
}

/*** list ***/
ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

/*** link ***/
a {
    color: var(--success-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a,
a:active,
a:focus,
a:active {
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

/*** btn ***/
.btn {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 13px 32px;
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}

.btn:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
}

/* text-effect */
.subtitle-effect {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.subtitle-effect:before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #7FAEC0 !important;
    border-radius: 2px;
    height: 100%;
    width: 2px;
    left: 0;
    transition: all 1s ease 0s;
    color: #040447 !important;
}

.subtitle-effect:hover {
    outline: 0;
    transition: color 1s ease;
    cursor: pointer;
    color: #ffffff !important;
}

.subtitle-effect:hover h6 {
    color: #fff !important;
}

.subtitle-effect {
    transition: color 1s ease;
}

.subtitle-effect:hover:before {
    width: 100%;
}

/*** padding-top-bottom ***/
.ptb-120 {
    padding: 120px 0px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

/*** margin-top-bottom ***/
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

/************************* 
    02. Header
*************************/
.header-wrap .top-bar {
    background-color: var(--primary-color);
}

.header-wrap .top-bar .social-icon i {
    width: 38px;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 10px;
    margin-right: 5px;
    border-radius: 30px;
    font-size: 18px;
    transition-duration: 0.3s;
    transition-property: transform;
}

.header-wrap .top-bar .social-icon i:hover {
    background-color: var(--white-smoke-color);
    transform: scale(1.1);
}

.header-wrap .top-bar .content-info ul li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    font-family: var(--primary-font);
    color: var(--white-color);
}

.header-wrap .top-bar .content-info ul li a:hover {
    color: var(--white-smoke-color);
}

.header-wrap .main-inner {
    background-color: var(--white-color);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.07);
}

.header-wrap .main-inner .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 10px 20px !important;
    color: var(--black-color);
}

.header-wrap .main-inner .navbar .navbar-nav .nav-item .active {
    color: var(--primary-color) !important;
}

.header-wrap .main-inner .navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
    transform: scale(1.1);
    transition: all 0.5s;
}

.header-wrap .main-inner .navbar-toggler {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    border: 0px;
    border-radius: 0px;
}

/************************* 
    03. Hero Section
*************************/
.home-section {
    background-color: var(--white-smoke-color);
    background-image: url(../images/hero-Image.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 100%;
    padding: 140px 0px ;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.home-section .home-content h1 {
    color: var(--black-color);
    position: relative;
    padding-top: 20px;
}

.home-section .home-content h6 {
    padding-left: 10px;
    color: var(--primary-color);
    display: block;
    transition: color 1s ease;
}

.home-section .home-content p {
    font-weight: 300;
    color: var(--secondary-color);
    width: 65%;
}

.home-section .home-content .divider {
    position: absolute;
    top: 60%;
    left: 0;
    width: 50%;
    height: 5px;
    border: 5px solid var(--primary-color);
    filter: blur(7px);
}

.home-section .play-icon i {
    padding: 26px 30px;
    background-color: var(--white-color);
    color: var(--primary-color);
    display: inline-block;
    text-align: end;
    font-size: 35px;
    border-radius: 91px;
}

/************************* 
    04. logo Section
*************************/
.logo-section .logo-image-wrap img {
    width: 100%;
}

.logo-section .logo-image-wrap {
    padding: 20px;
    border: 1px solid var(--success-color);
    width: 20%;
    border-radius: 10px;
}

.logo-section .logo-image-wrap:hover {
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.logo-section .logo-image-wrap img:hover {
    transform: scale(1.1);
    transition: all 0.5s;
}

/************************* 
    05. About US Section
*************************/
.about-wrap .about-img img {
    width: 80%;
}

.about-wrap .about-content .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
}

.about-wrap .about-content h2 {
    color: var(--black-color);
}

.about-wrap .about-icon-list ul li i {
    color: var(--primary-color);
    font-size: 22px;
}

.about-wrap .about-icon-list ul li span {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

/************************* 
    06. Services Section
*************************/
.services-wrap {
    background-color: var(--white-smoke-color);
}

.services-wrap .services-title .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
    margin-bottom: 10px;
}

.services-wrap .services-title h2 {
    color: var(--black-color);
}

.services-wrap .services-box-wrap .card {
    width: 370px;
    padding: 0px 20px 30px 20px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: linear all 0.3s;
}

.services-wrap .services-box-wrap .card:hover {
    background-color: var(--primary-color);
    transform: translateY(-10px);
}

.services-wrap .services-box-wrap .card .card-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    display: flex;
    height: 100px;
    justify-content: center;
    margin-top: -50px;
    width: 100px;
    border-radius: 70px;
}

.services-wrap .services-box-wrap .card:hover .card-icon {
    background-color: var(--black-color);
    color: var(--primary-color);
}

.services-wrap .services-box-wrap .card:hover .card-body .card-text,
.services-wrap .services-box-wrap .card:hover .card-body .card-title {
    color: var(--white-color) !important;
    cursor: pointer;
}

/************************* 
    07.  How We Work
*************************/
.work-wrap .work-content .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
}

.work-wrap .work-content h2 {
    width: 70%;
    color: var(--black-color);
}

.work-wrap .work-content p {
    width: 84%;
    color: var(--black-color);
}

.work-wrap .work-services-wrap .work-services-icon i {
    background-color: var(--primary-color);
    padding: 30px;
    margin-right: 15px;
    width: 85px;
    color: var(--white-color);
    font-size: 28px;
    border-radius: 60px;
    transition: linear all 0.3s;
}

.work-wrap .work-services-wrap .work-services-icon i:hover {
    transform: scale(1.1);
    background-color: var(--white-smoke-color);
    cursor: pointer;
    color: var(--primary-color);
}

.work-wrap .work-img img {
    width: 75%;
    text-align: center;
}

.work-wrap .work-services-text p {
    width: 70%;
}

/************************* 
    08. Appointment Section
*************************/
.appointment-wrap {
    background-color: var(--white-smoke-color);
}

.appointment-wrap .appointment-content .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
    margin-bottom: 10px;
}

.appointment-wrap .appointment-content p {
    width: 35%;
}
.appointment .get-touch-wrap .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
}
/************************* 
    09. Professional Team Section
*************************/
.team-wrap .team-title .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
}

.team-wrap .team-title h2 {
    width: 60%;
}

.team-box-wrap .team-box .card {
    background-color: transparent;
    border: 0px;
    text-align: center;
    align-items: center;
    width: 370px;
}

.team-box-wrap .team-box .card-img-top {
    width: 65%;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 8px solid var(--white-smoke-color);
    transition: linear all 0.3s;
}

.team-box-wrap .team-box .card-img-top:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.team-box-wrap .team-box .card-body {
    background-color: var(--white-smoke-color);
    width: 75%;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
}

/************************* 
    10. Testimonials  Section
*************************/
.testimonials-wrap {
    background-color: var(--white-smoke-color);
}

.testimonials-wrap .testimonials-title .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
}

.testimonials-wrap .testimonial-slide {
    padding: 43px 47px;
    background-color: #7FADBF;
    border-radius: 15px;
    margin-right: 10px;
    cursor: pointer;
}

.testimonials-wrap .testimonials-img img {
    width: 80%;
}

.slick-arrow {
    display: none !important;
}

.slick-dots {
    display: flex;
    justify-content: start;
    margin: 0;
    padding: 20px 0px 0px;
    list-style-type: none;
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: var(--primary-color);
}

/************************* 
    11. Blog Section
*************************/
.blog-content .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
}

.blog-text-wrap .card {
    border-radius: 0px;
    border: none;
    width: 100%;
    cursor: pointer;
}

.blog-text-wrap .card:hover .card-img-top {
    filter: brightness(81%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.blog-text-wrap .card:hover .blog-btn {
    color: var(--black-color);
}

.blog-btn {
    color: var(--primary-color);
    font-weight: 400;
}

.blog-btn:hover {
    color: var(--secondary-color);
    font-weight: 400;
}

/************************* 
    12. Newsletter Section
*************************/
.newsletter-wrap {
    background-color: var(--white-smoke-color);
}

.newsletter-wrap .newsletter-content .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
    margin-bottom: 10px;
}

.newsletter-wrap .newsletter-content p {
    width: 35%;
}

.newsletter-wrap .newsletter-content .contact-form p {
    width: 100%;
}

.newsletter-content .form-control {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 5px 0px 0px 5px;
    border-right: 0px;
    padding: 12px;
}

.form-control:focus,
.form-select:focus {
    background-color: transparent;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 10px #7FAEC061;
    color: var(--black-color);
}

.form-btn {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 13px 23px;
    border-radius: 0px 5px 5px 0px;
}

.form-btn:hover {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 13px 23px;
    border-radius: 0px 5px 5px 0px;
}

/************************* 
    13. Footer Section
*************************/
.footer-wrap {
    background-color: var(--primary-color);
    padding: 60px 0px 0px;
}

.footer-wrap .contact-text p {
    width: 90%;
    color: var(--white-color);
}

.footer-wrap .contact-text .social-icon i {
    width: 38px;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 10px;
    margin-right: 5px;
    border-radius: 30px;
    font-size: 18px;
    transition-duration: 0.3s;
}

.footer-wrap .contact-text .social-icon i:hover {
    background-color: var(--white-smoke-color);
    transform: scale(1.1);
}

.footer-wrap-quick h4,
.appointment-details h4,
.footer-details h4 {
    color: var(--white-color);
}

.footer-wrap-quick .quick-menu a {
    color: var(--white-color);
}

.quick-menu .active {
    color: var(--black-color) !important;
}

.footer-wrap-quick .quick-menu a:hover {
    color: var(--black-color);
}

.footer-details .contact-list:hover.contact-list i {
    color: var(--black-color);
}

.footer-details .contact-list a {
    color: var(--white-color);
    padding-left: 15px;
}

.footer-details .contact-list a:hover {
    color: var(--black-color);
    padding-left: 15px;
}

.footer-details .contact-list i {
    font-size: 18px;
    height: 18px;
    color: var(--white-color);
}

.footer-details .contact-list-time {
    width: 60%;
}

.appointment-details .appointment-contact-detail {
    padding: 17px 20px;
    background-color: #ffffff26;
    border-radius: 10px;
}

.appointment-details .appointment-contact-detail i {
    padding: 16px;
    background-color: var(--primary-color);
    width: 70px;
    color: var(--white-color);
    border-radius: 10px;
    font-size: 38px;
    margin-right: 20px;
    transition: linear all 0.3s;
}

.appointment-details .appointment-contact-detail i:hover {
    transform: scale(1.1);
}

.footer-copyright {
    margin-top: 60px;
}

.footer-copyright-wrap {
    border-top: 1px solid var(--white-color);
    display: flex;
    padding: 20px 0px;
}

.footer-copyright-text span:hover {
    color: var(--black-color) !important;
    cursor: pointer;
}

/************************* 
    14. About Page
*************************/
.about-section {
    background-color: var(--white-smoke-color);
    padding: 100px 100px;
}

.about-section {
    position: relative;
}

.about-section h1 {
    color: var(--black-color);
    z-index: 2;
    position: relative;
}

.divider {
    width: 20%;
    display: inline-block;
    position: absolute;
    top: 58%;
    left: 40%;
    height: 4px;
    border: 3px solid var(--primary-color);
    filter: blur(5px);
}

.counter-wrap {
    background-color: var(--white-smoke-color);
}

.count-icon {
    background-color: var(--primary-color);
    width: 95px;
    padding: 25px 0px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.counter-wrap-content .item h2,
.counter-wrap-content .item h5 {
    color: var(--black-color);
}

.counter-wrap-content .item span {
    font-size: 34px;
    line-height: 44px;
    color: var(--black-color);
}

.emergency-wrap {
    background-color: var(--white-smoke-color);
}

.emergency-wrap-text {
    background-color: #B9D3DB;
    border-radius: 15px;
    padding: 50px;
}

.emergency-wrap-text p {
    width: 80%;
}

.emergency-wrap-contact i {
    background-color: var(--primary-color);
    padding: 20px;
    font-size: 24px;
    color: var(--white-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.emergency-wrap-contact i:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.emergency-wrap-contact a {
    color: var(--black-color);
    font-weight: 500;
}

.emergency-wrap-img img {
    width: 60%;
}

/************************* 
    15. Services Page
*************************/
.services-section-wrap {
    background-color: var(--white-color);
}

/************************* 
    16. Appointment Page
*************************/
.appointment .appointment-form {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 15px;
    margin-right: 50px;
}

.appointment .appointment-form .form-control,
.appointment .appointment-form .form-select,
.contact-section .contact-section-wrap .form-control,
.contact-section .contact-section-wrap .form-select {
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid #6262621c;
    color: var(--secondary-color);
}

.appointment .appointment-list i {
    font-size: 38px;
    color: var(--primary-color);
    padding-right: 15px;
}

/************************* 
    17. Our Team Page
*************************/
.our-emergency-wrap .emergency-wrap-img img {
    width: 63%;
    margin-top: -34px;
}

/************************* 
    18. Blog Page
*************************/
.blog-text-section .divider {
    width: 12%;
    left: 44%;
}

/************************* 
    19. FAQ's Page
*************************/
.faq-section .accordion-container .accordion-item {
    background-color: var(--white-color);
    border: none;
    border-radius: 8px;
    margin-bottom: 25px;
}

.faq-section .accordion-item .accordion-header {
    background-color: var(--white-color);
    color: var(--black-color);
    font-weight: 400;
    padding: 20px 30px 20px 30px;
    border: none;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.active {
    color: var(--primary-color) !important;
}

.faq-section .accordion-item .accordion-content {
    overflow: hidden;
    max-height:0px;
    transition: max-height 0.3s ease;
}

.faq-section .accordion-item .accordion-content p {
    margin: 15px 20px 0px 20px;
}

.faq-section .accordion-header .icon {
    transition: transform 0.3s ease;
    font-size: 34px;
}

.faq-section .active .icon {
    transform: rotate(45deg);
}

.appointment-wrap .faq-section-content h2 {
    width: 57%;
}

.appointment-wrap .faq-section-content p {
    width: 50%;
}

/************************
    20. Single Page  
*************************/
.single-blog .blog-details-image img {
    width: 100%;
    border-radius: 15px;
}

.related-box {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 20px 20px;
    border-radius: 8px;
}

.blog-box .related-box .card-img-top {
    width: 30%;
    background-size: cover;
    border-radius: 10px;
}

.blog-box .related-box .site-info i:hover {
    background-color: var(--black-color);
    transform: translateY(-8px);
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    cursor: pointer;
}

.blog-box .related-box .site-info i {
    background-color: var(--primary-color);
    padding: 12px 14px;
    color: var(--white-color);
    border-radius: 50px;
    margin-right: 5px;
    font-size: 18px;
    list-style: 28px;
}

/************************
    21. Contact Page  
*************************/
.map-section-wrap .map-section iframe {
    width: 100%;
    height: 550px;
    border-radius: 15px;
}

.map-section-wrap {
    z-index: -1;
    position: relative;
}

.contact-section {
    margin-top: -200px;
    margin-bottom: 100px;
}

.contact-section .contact-section-wrap {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin: 0px 50px;
    background-color: var(--white-color);
}

.contact-section .contact-content .subtitle-effect h6 {
    color: var(--primary-color);
    transition: color 1s ease;
}

.contact-section .contact-content p {
    width: 88%;
}

.contact-section .contact-content .work-services-box .work-services-icon i {
    background-color: var(--primary-color);
    padding: 15px;
    text-align: center;
    margin-right: 15px;
    width: 60px;
    font-size: 30px;
    color: var(--white-color);
    border-radius: 60px;
    transition: linear all 0.3s;
}

.contact-section .contact-content .work-services-box .work-services-icon i:hover {
    transform: scale(1.1);
    background-color: var(--white-smoke-color);
    cursor: pointer;
    color: var(--primary-color);
}
/************************
    22. Coming Soon Page
*************************/
.coming-hero-section{
    background-image: url(../images/coming-image.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.coming-hero-title{
    font-family: var(--primary-font);
    font-size: 98px;
    font-weight: 500;
    line-height: 178px;
    color: var(--white-color);
}
.coming-hero-title span{
    color: var(--primary-color);
    font-style: italic;
}
.coming-hero-title p {
    width: 30%;
}
.coming-hero-text .contact-form .form-control{
    background-color: var(--white-color);
    border: 2px solid var(--white-smoke-color);
    color: var(--black-color) !important; 
}
.coming-hero-text .contact-form .form-btn{
    border-radius: 10px;
    margin-left: 15px;
}
/************************
    23. 404 Page
*************************/
.error-page {
    background: linear-gradient(0deg, rgb(0 0 0 / 41%), rgb(0 0 0 / 41%)), url(../images/error.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.error-page-text-area img{
    width: 50%;
}
.error-page .error-page-text-area h3 {
    color: #FFFFFF;
}
.error-page .error-page-text-area .btn-home:hover {
    color: var(--primary-color);
    background: var(--white-color);
}


/****
Kayla style for about us sections
****/

.chooseUs {}

.chooseUs_title {
    margin: 0;
    padding: 0;
}

.chooseUs_title li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 33.33333333%;
    display: inline-block;
    position: relative;
    float: left;
}

.chooseUs_title li a {
    display: block;
    font-size: 20px;
    line-height: .8;
    color: #000000;
    letter-spacing: 0.80px;
    background: #f4f4f4;
    padding: 49px 0;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.chooseUs_title li:hover a,
.chooseUs_title li.active a {
    background: var(--dark);
     color: var(--light-text);
}

.chose_img {
    position: relative;
    margin: 60px 0 0;
}

.chose_img img {
    width: 100%;
    height: auto;
}

.wh_choose {
    position: relative;
    margin: 51px 0 0;
}

.wh_choose p {
    margin: 0 0 25px;
}

.wh_choose ul {
    margin: 0;
    padding: 0;
}

.wh_choose ul li {
    display: block;
    line-height: 36px;
}

.wh_choose ul li i {
    font-size: 14px;
    color:  var(--primary);
    line-height: 32px;
    margin-right: 15px;
}

.chooseUs_title li{
    width: 100%;
}
.chooseUs_title li a{
    padding: 32px 0;
    font-size: 18px;
}
.wh_choose ul li{
    line-height: 20px;
    margin-bottom: 10px;
}