/* Custom Font Faces */
@font-face {
    font-family: 'KenyanCoffee-BoldItalic';
    src: url('../fonts/Kenyan-Coffee-Bd-It.otf') format('opentype');
}

@font-face {
    font-family: 'KenyanCoffee-Bold';
    src: url('../fonts/Kenyan-Coffee-Bd.otf') format('opentype');
}

@font-face {
    font-family: 'KenyanCoffee-Regular';
    src: url('../fonts/Kenyan-Coffee-Rg.otf') format('opentype');
}

@font-face {
    font-family: 'KenyanCoffee-RegularItalic';
    src: url('../fonts/Kenyan-Coffee-RgIt.otf') format('opentype');
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --pfont: "Poppins", sans-serif;
    --kanit-font: "Kanit", sans-serif;
    --white-color: #FFFFFF;
    --theme-color: #1179AC;
    --black-color: #000000;
}

body {
    font-family: var(--pfont);
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
}

p {
    margin: 0px;
    padding: 0px;
}

h1 {
    font-family: 'KenyanCoffee-Regular', sans-serif;
}

.main-heading {
    font-family: 'KenyanCoffee-Regular', sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 68px;
    text-align: center;
    text-transform: capitalize;
    position: relative;

}

.main-heading::before {
    position: absolute;
    content: "";
    width: 235px;
    height: 30px;
    /* bottom: -10px;
    left: 50%;
    transform: translateX(-50%); */
    background-image: url('../images/heading-line.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: -50%;
    left: 40%;
}

header {
    padding: 0px 60px;
    background-color: #FFFFFF;
}

.dropdown-menu {
    border-radius: 0;
}

.navbar-nav.mx-auto {
    gap: 30px;
}

.dropdown-menu .sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
    visibility: hidden;
    margin-top: -1px
}

.dropdown-menu li:hover .sub-menu {
    visibility: visible
}

.nav-tabs .dropdown-menu,
.nav-pills .dropdown-menu,
.navbar .dropdown-menu {
    margin-top: 0
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #cccccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #ffffff;
}

.dropdown-submenu .pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}



ul.dropdown-menu li {
    height: 35px;
    line-height: 35px;
}

.nav-item.active a {
    color: #ED1C24;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 29px;

}

.nav-item a {
    color: #1A1A1A;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 29px;

}

.login-signup {
    background-color: #ED1C24;
    padding: 10px 20px;
    color: #FFFFFF;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    border-bottom: 2px solid #000;
    margin-left: 20px;
    text-transform: capitalize;
}

.login-signup:hover {
    background-color: #000;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.9s ease-in-out;
}

/*****************************/
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(30%);
        transform: translateY(30%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(30%);
        transform: translateY(30%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

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


/* highlight section  */
.highlight {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight p {

    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 29px;
    color: #ED1C24;

}

.highlight a {
    font-weight: 800;
    font-size: 14px;
    line-height: 29px;
    text-decoration: underline;
    color: #ffffff;
    margin-left: 16px;
}

.main-highlight {
    background-color: #000;
    padding: 16px 0px;
}

/* highlight section  */

/* banner section  */
.banner {
    background: url('../images/home-banner.png') no-repeat center;
    background-size: cover;
    padding: 240px 0px;
    text-align: center;
    color: #FFFFFF;
}

.banner h1 {
    font-family: 'KenyanCoffee-Regular', sans-serif;
    font-weight: 400;
    font-size: 75px;
    line-height: 68px;
    text-transform: uppercase;

}

.banner p {
    margin-top: 15px;
    font-weight: 600;
    font-size: 25px;
    line-height: 29px;
    letter-spacing: 2px;
}

.fields-wrap {
    display: flex;
    gap: 15px;
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    ;
    backdrop-filter: blur(80px);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
}

.search-bar .login-signup {
    padding: 10px 30px;
    font-size: 16px;
    background-color: #000;
    color: #FFFFFF;
    border: 0px;
    margin-top: 18px;
}

/* banner section  */

/* browse section  */
.browse {
    padding: 100px 0px;
}

.city-box .city-img {
    position: relative;
    /* width: 315px;
    height: 315px; */
    overflow: hidden;
    border: 2px solid #000;
    border-radius: 20px;
}

.city-box .city-img span {
    position: absolute;
    background: linear-gradient(to right, rgb(43 43 43 / 86%) 0%, rgba(255, 255, 225, 0) 100%);
    width: 50%;
    padding: 10px;
    margin-top: 30px;
    color: #fff;
}

.city-box .city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-box-wrap {
    padding-top: 70px;
}

.city-box h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 23.4px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 30px;

}

/* browse section  */

/* job type section   */
.job-type {
    padding: 100px 0px;
    background-image: url('../images/job-type.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.job-type .main-heading {
    color: #FFFFFF;
}

.job-type-box-wrap {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.job-type-box {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 20px;
}

.job-type-box h3 {
    font-family: 'kenyanCoffee-Regular', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 23.4px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    margin-top: 15px;

}

/* job type section   */

/* how work section  */
.how-work {
    padding: 100px 0px;
}

.how-work .main-heading {
    color: #000000;
}

.how-work-box {
    border: 1px dashed #000;
    border-radius: 20px;
    padding: 37px 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.how-work-box h4 {
    margin: 0px 0px 0px 30px;
    font-weight: 600;
    font-size: 21px;
    line-height: 23.4px;
    text-align: center;
    text-transform: capitalize;
}

.heading-number h3 {
    font-weight: 600;
    font-size: 50px;
    line-height: 23.4px;
    text-align: center;
    text-transform: capitalize;
    color: #ED1C24;

}

.heading-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-work-box.width-2 {
    width: 513px;
}

.how-work-box.width-3 {
    width: 577px;
}

.how-work-box.width-4 {
    width: 630px;
}

.mt65 {
    margin-top: 65px;
}

/* how work section  */

/* make section  */
.makes {
    padding: 85px 0px;
    background-image: url('../images/makes.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.makes-box {
    padding: 15px;
    background-color: #ED1C24;
    box-shadow: 0px 4px 4px 0px #0000001A;
    border-radius: 20px;
}

.col-lg-3:nth-child(even) .makes-box {
    background-color: #FFFFFF;
}

.col-lg-3:nth-child(even) .makes-box h3,
.col-lg-3:nth-child(even) .makes-box p {
    color: #000000;
}

.makes-box h3 {
    font-weight: 400;
    font-size: 25px;
    line-height: 23.4px;
    text-transform: capitalize;
    color: #FFFFFF;
    font-family: 'kenyanCoffee-Regular', sans-serif;
    margin: 35px 0px 10px;
}

.makes-box p {
    font-weight: 400;
    font-size: 13px;
    line-height: 19.4px;
    text-transform: capitalize;
    color: #fff;
}

/* make section  */

/* testimonial section  */
.testimonial {
    padding: 100px 0px;
    background-image: url('../images/testimonial.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .main-heading::before {
    display: none;
}

.testimonial .main-heading {
    color: #FFFFFF;
}

.testimonial-box {
    padding: 20px;
    border: 1px solid;
    border-image-source: linear-gradient(163.13deg, #ED1C24 2.41%, rgba(237, 28, 36, 0) 34.75%, rgba(237, 28, 36, 0) 67.99%, #ED1C24 95.84%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(120px);
    box-shadow: 0px 5px 9px 0px #FFFFFF14 inset;
}

.testimonial-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 0px;

}

.testimonial-box h6 {
    font-weight: 700;
    font-size: 15px;
    line-height: 42px;
    text-align: center;
    color: #FFFFFF;
}

.testimonial-box span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: #FDBD15;
}

/* testimonial section  */
/* help section  */
.help {
    padding: 75px 0px 160px;
}

.help .logos-img {
    padding: 20px 30px;
    border: 1px dashed #000;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* need section  */
.need {
    padding: 100px 0px;
    background: url('../images/need.png') no-repeat center;
    background-size: cover;
    position: relative;
}

.need h2 {
    font-weight: 400;
    font-size: 100px;
    line-height: 68px;
    font-family: 'KenyanCoffee-Regular', sans-serif;
    color: #FFFFFF;
}

.need p {
    font-weight: 400;
    font-size: 24px;
    line-height: 68px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.doctor-img {
    position: absolute;
    top: -100%;
    width: 100%;
    right: 0px;
}

.need .login-signup {
    background-color: #000;

    padding: 10px 20px;
    color: #FFFFFF;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    border-bottom: 2px solid #ED1C24;
    margin-left: 20px;
    text-transform: capitalize;
}

.need .login-signup:hover {
    background-color: #ED1C24;
    border-bottom: 2px solid #000;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.9s ease-in-out;
}

/* need section  */
/* footer  */
.footer-menu {
    padding: 85px 0px;
    background-color: #000;
    color: #FFFFFF;
}

.soial-icons {
    display: flex;
    margin-top: 36px;
}

.soial-icons li i {
    color: #FFFFFF;
}

.soial-icons li {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: solid 1px #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.footer-menu h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 28.6px;
    color: #FFFFFF;
}

.footer-links li,
.footer-services li {
    margin-top: 10px;
}

.footer-links li a,
.footer-services li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    color: #929292;
    margin-top: 44px;
}

.footer-services {
    list-style-type: circle;
}

.copy-right {
    padding: 30px 0px;
    background-color: #0A0A0A;
}

.copy-right p {
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #FFFFFF;
    text-align: center;
}

.copy-right .space-between {
    justify-content: space-between;
}

.copy-right span {
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #ED1C24;
}

/* footer  */
.owl-theme .owl-dots .owl-dot.active span {
    background: #ED1C24 !important;
    width: 40px;
}
