/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Airevo HVAC
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header-con
3. Banner  /.banner-con
4. About Us /.about-us-con
5. Services /.services-con
6. Pricing Plan /.pricing-plan-con
7. Service Area /.service-area-con
8. Testimonials /.testimonials-con
9. Latest Articles /.latest-articles-con
10. Call To Action  /.cta-con
11. FAQ /.faq-con
11. Partners /.partners-con
12. Footer  /.footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]

 #  --primary--color: #f8cf2a;

*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy:  "Inter", sans-serif;
Heading: "Urbanist", sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", sans-serif;
}

.urbanist-font {
    font-family: "Urbanist", sans-serif;
}

.inter-font {
    font-family: "Inter", sans-serif;
}

.poppins-font {
    font-family: "Poppins", sans-serif;
}

:root {
    --primary--color: #f8cf2a;
    --secondary--color: #ffffff;
    --accent--color: #060b2c;
    --text--color: #5a5c67;
    --black--color: #000000;
    --green--color: #2ecc71;
    --navy--color: #201464;
    --border--color: #eeeeee;
    --light-yellow-bg--color: #fefae9;

}

figure {
    margin-bottom: 0;
}

h1,
.heading1,
h2.heading1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    color: var(--secondary--color);
    margin-bottom: 20px;
}

h2 {
    font-size: 46px;
    line-height: 56px;
    font-weight: 700;
    color: var(--accent--color);
}

h3 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: var(--accent--color);
}

h3.heading3 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent--color);
}

h4 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    color: var(--accent--color);
}

h5 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    color: var(--accent--color);
}

h5.heading {
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    color: var(--primary--color);
}

h6 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: var(--accent--color);
}

p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text--color);
    overflow-wrap: break-word;
    /* word-break: break-word; */

}

.text-size-18 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text--color);
}

.text-size-16 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--text--color);
}

.text-size-14 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text--color);
}

.special-text {
    color: var(--primary--color);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    font-weight: 500;
}

.heading-title-con h2 {
    margin-bottom: 22px;
}

.primary_btn {
    font-size: 16px;
    min-width: 255px;
    padding: 0;
    height: 60px;
    line-height: 60px;
    font-weight: 500;
    text-align: center;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    color: var(--accent--color);
    background-color: var(--primary--color);
    transition: all 0.8s ease-in-out;
}

.primary_btn i,
.secondary_btn i {
    font-size: 13px;
    margin-left: 16px;
}

.primary_btn:hover {
    color: var(--secondary--color);
    /* background-color: rgb(255 255 255 / 20%); */
    background-color: var(--accent--color);
}

.secondary_btn {
    font-size: 16px;
    min-width: 255px;
    padding: 0;
    height: 60px;
    line-height: 60px;
    font-weight: 500;
    text-align: center;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    color: var(--secondary--color);
    background-color: transparent;
    border: 1px solid var(--secondary--color);
    transition: all 0.8s ease-in-out;
}

.secondary_btn:hover {
    color: var(--accent--color);
    background-color: var(--secondary--color);
}


html {
    scroll-behavior: smooth;
}

.all_row {
    display: flex;
    flex-wrap: wrap;
}

.all_column {
    display: flex;
}

.all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.padding-top {
    padding-top: 135px;
}

.padding-bottom {
    padding-bottom: 135px;
}

.heading-title-con {
    margin-bottom: 50px;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-500 {
    font-weight: 500;
}

.text-black {
    color: var(--black--color);
}

.text-yellow {
    color: var(--primary--color);
}

.text-accent {
    color: var(--accent--color);
}

.background-none {
    background-image: none !important;
}

.background-accent {
    background-color: var(--accent--color);
}

.background-primary {
    background-color: var(--primary--color);
}

.background-fff {
    background-color: var(--secondary--color);
}

.background-light {
    background-color: var(--light-yellow-bg--color);
}

body {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: var(--text--color);
}

/* Home Page */
/* TOP BAR SECTION */
.topbar-con {
    padding: 6px 0;
}

/* HEADER SECTION */
.header-con .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    color: var(--accent--color);
    font-weight: 500;
    padding: 10px 0 !important;
    position: relative;
}

.header-con .navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary--color);
}

.header-con .navbar-expand-lg .navbar-nav {
    gap: 52px;
    justify-content: center;
    align-items: center;
}

.header-con {
    z-index: 5;
    padding: 0;
}

.header-con .navbar {
    padding: 11px 30px;
    background-color: var(--secondary--color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.header-con .navbar-light .navbar-nav .nav-link:hover::before {
    width: 100%;
}

.header-con .navbar-light .navbar-nav .nav-link::before {
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    background: var(--primary--color);
    transition: ease-in-out 0.6s;
}

.header-con .navbar-light .navbar-nav .nav-link.active {
    color: var(--primary--color);
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link:hover::after {
    width: 0;
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link::after {
    width: unset;
    position: absolute;
    background: none;
    top: 20px;
    font-size: 15px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu {
    padding: 10px;
    margin: 0;
    background-color: var(--secondary--color);
    border: 0;
    z-index: 2;
    width: 230px;
    margin-top: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 8%);
    border-radius: 10px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu a:last-child {
    border-bottom: none;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item {
    padding: 7px 12px;
    border-bottom: 1px solid var(--secondary--color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 10px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active,
.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item.active {
    background-color: var(--primary--color);
    color: var(--accent--color);
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary--color);
    color: var(--accent--color);
}

.header-con .navbar-light .navbar-brand {
    margin: 0;
    padding: 0;
}

.header-con .phone-num figure {
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--green--color);
    border-radius: 100px;
    margin-right: 9px;
}

.header-con .phone-num a {
    font-size: 20px;
    color: var(--navy--color);
    font-weight: 700;
}


.other_list {
    margin-right: 0;
    z-index: 20;
}

.other_list .other_list_item {
    margin-right: 4px;
}

.other_list .country-selector {
    z-index: 60;
    position: relative;
}

.other_list .country-selector {
    font-size: 14px;
    line-height: 14px;
    min-width: auto;
    text-align: right;
    font-weight: 500;
    margin-right: 0;
    color: var(--black--color) !important;
    /* font-family: "Plus Jakarta Sans", sans-serif; */
    transition: all 0.8s ease-in-out;
}

.other_list .country-selector>div.caption {
    margin-left: 0;
}

.other_list .country-selector>div.caption img {
    position: relative;
    top: -1px;
    margin-left: 9px;
    margin-right: 0;
}

.other_list div.country-selector>div.list {
    position: absolute;
    width: 100px;
    display: none;
    left: 0;
    top: 30px;
    background-color: var(--secondary--color);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    text-align: left;
    z-index: 60;
}

.other_list div.country-selector>div.list>div.item {
    padding: 10px;
    align-items: center;
}

.other_list div.country-selector>div.list>div.item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--accent--color);
    transition: all 0.3s ease-in-out;
}

.other_list div.country-selector>div.list>div.item:hover a {
    color: var(--primary--color);
}

.other_list div.country-selector>div.list>div.item img {
    position: relative;
    top: -1px;
    margin-right: 6px;
}

.other_list div.country-selector>div.caption {
    cursor: pointer;
    margin-left: 19px;
}

/* Header */

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--primary--color);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 10px;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: var(--accent--color);
    font-weight: 600;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover {
    transform: translateY(-5px);
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(248 207 42 / 40%)
    }

    to {
        box-shadow: 0 0 0 35px rgba(115, 0, 209, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(248 207 42 / 40%)
    }

    to {
        box-shadow: 0 0 0 35px rgba(115, 0, 209, .01)
    }
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary--color);
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--primary--color);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--primary--color);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* PRIVACY POLICY PAGE */
.privacy-policy-content-con h4 {
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--accent--color);
}

.privacy-policy-content-con p,
.privacy-policy-content-con ul li {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: var(--text--color);
}

.privacy-policy-content-con ul li {
    padding-left: 24px;
    margin-bottom: 8px;
}

.privacy-policy-content-con ul li i {
    left: 0;
    position: absolute;
    top: 6px;
    color: var(--primary--color);
    font-size: 14px;
}

/* 404 page styling start here */
.coming-soon-con,
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: var(--light-pink-bg--color); */
    /* background-image: linear-gradient(to right, rgba(60, 176, 242, 0.2) 0%, rgba(125, 100, 248, 0.2) 100%); */
    /* background-image: url(../images/banner-bg-img.png); */
    /* color: rgb(60, 176, 242);
    color: rgb(125, 100, 248); */
}

.error-con {
    position: relative;
    z-index: 2;
}

.error-con h2 {
    font-size: 170px;
    line-height: 165px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--accent--color);
}

.error-con h2 i {
    font-size: 130px;
    line-height: 140px;
    color: var(--primary--color);
}

.error-con h4 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 18px;
    color: var(--black--color);
}

.error-con p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 30px;
    color: var(--text--color);
}

.error-con .primary_btn {
    min-width: 220px;
}

.error-banner,
.coming-soon-con {
    flex-grow: 1;
}

/* COMING SOON PAGE */
.coming-soon-con .new-logo {
    margin-bottom: 35px;
}

.coming-soon-con h1 {
    margin-bottom: 30px;
    font-size: 85px;
    line-height: 95px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--navy--color);
}

.coming-soon-con h3 {
    margin-bottom: 20px;
    font-size: 34px;
    color: var(--accent--color);
}

/* coming soon countdown timer styling */
.compaign_countdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.compaign_countdown ul li {
    float: left !important;
    width: auto;
    margin: 0;
    text-align: center;
    margin: 0 13px;
    min-height: 133px;
    min-width: 133px;
    /* background-color: var(--accent--color); */
    background-color: var(--primary--color);
    padding: 20px 16px;
    color: var(--navy--color);
    font-size: 22px;
    font-weight: 400;
    border-radius: 20px;
}

.compaign_countdown ul li:first-child {
    margin-left: 0;
}

.compaign_countdown ul li:last-child {
    margin-right: 0;
}

.compaign_countdown ul li span.days,
.compaign_countdown ul li span.hours,
.compaign_countdown ul li span.minutes,
.compaign_countdown ul li span.seconds {
    display: block;
    color: var(--accent--color);
    width: auto;
    font-size: 60px;
    line-height: 65px;
    border-radius: 10px;
    font-weight: 600;
}

.compaign_countdown {
    margin: 0 auto;
    width: 70%;
}

.coming-soon-con {
    flex-grow: 1;
    min-height: 100vh;
}

/* Login Form Page Style  */

.login-form {
    min-height: 100vh;
    background-color: var(--light-yellow-bg--color);
}

.login-form .login-form-title {
    margin-bottom: 40px;
}

.login-form .login-page-logo {
    margin-bottom: 25px;
}

.login-form .login-form-box {
    width: 450px;
    margin: 0 auto;
    position: relative;
}

.login-form .login-card {
    padding: 30px;
    margin-bottom: 30px;
    line-height: 0.8;
    border-radius: 20px;
    background: var(--accent--color);
}

.login-form .login-card label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 13px;
    color: var(--secondary--color);
}

.login-form .login-card .input-field {
    font-size: 16px;
    font-weight: 500;
    height: 54px;
    width: 100%;
    line-height: 16px;
    padding: 0 21px;
    border-radius: 100px;
    background: transparent;
    color: var(--secondary--color);
    border: 1px solid rgb(255 255 255 / 100%);
}

.login-form .login-card .input-field:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--primary--color);
}

.login-form .login-card .form-group {
    margin-bottom: 16px;
}

.login-form .login-card .btn-primary {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 20px 15px;
    margin-bottom: 16px;
    width: 100%;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    color: var(--accent--color);
    background-color: var(--primary--color);
    transition: all 0.8s ease-in-out;
}

.login-form .login-card .btn-primary:hover {
    color: var(--accent--color);
    background-color: var(--secondary--color);
}

.login-form .login-card .forgot-password {
    color: var(--primary--color);
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}

.login-form .login-card .forgot-password:hover {
    text-decoration: underline;
}

.login-form .login-form-box .join-now-outer a {
    font-size: 16px;
    line-height: 18px;
    color: var(--accent--color);
    text-decoration: none;
}

.login-form .login-form-box .join-now-outer a:hover {
    text-decoration: underline;
    color: var(--primary--color);
}

.login-form .login-card .select-option option {
    font-size: 16px;
    color: black;
}

.login-form .form_style::placeholder {
    color: var(--createform-border-color);
    opacity: 1;
}

.login-form .form_style:-ms-input-placeholder {
    color: var(--createform-border-color);
}

.login-form .form_style::-ms-input-placeholder {
    color: var(--text--color);
}

/* Join-Now Form Page Style */

.sign-up-form {
    padding: 70px 0;
}

.sign-up-form .login-form-box {
    width: 700px;
}

.sign-up-form .login-card label small {
    font-size: 14px;
}

.sign-up-form .login-card .select-option {
    padding: 0 40px 0 21px;
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 96.5% 24px !important;
    background-image: url('../images/dropdown-arrow.png') !important;
}

.sign-up-form .login-card .select-option:focus {
    outline: none;
    box-shadow: none;
}

.item,
.owl-item,
.owl-stage {
    display: flex;
}

/* FOOTER SECTION */

/* FOOTER SECTION */

.footer-con {
    background-image: url(../images/footer-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-con .middle_portion .footer-logo {
    margin-bottom: 18px;
    display: inline-block;
}

.footer-con .middle_portion {
    padding-top: 165px;
    padding-bottom: 85px;
}

.footer-con .middle_portion .links.var1 {
    padding-left: 70px;
}

.footer-con .middle_portion .links.var2 {
    padding-left: 17px;
}

.footer-con .middle_portion .logo-content p {
    margin-bottom: 27px;
    line-height: 24px;
    color: var(--secondary--color);
}

.footer-con .middle_portion .social-icons li {
    display: inline-block;
    margin: 0 3px;
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion .social-icons li a {
    text-decoration: none;
}

.footer-con .middle_portion .social-icons li:first-child {
    margin-left: 0;
}

.footer-con .middle_portion .social-icons li:last-child {
    margin-right: 0;
}

.footer-con .middle_portion .social-icons i {
    font-size: 14px;
    transition: all ease-in-out 0.6s;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--secondary--color);
    line-height: 40px;
    color: var(--secondary--color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-con .middle_portion .social-icons i:hover {
    background-color: var(--primary--color);
    border-color: var(--primary--color);
    color: var(--accent--color);
    transform: translateY(2px);
}

.footer-con .middle_portion h5 {
    margin-bottom: 34px;
}

.footer-con .middle_portion .links {
    padding-left: 0;
}

.footer-con .middle_portion .links li {
    margin-bottom: 5px;
}

.footer-con .middle_portion li:last-child {
    margin-bottom: 0 !important;
}

.footer-con .middle_portion .links li i {
    font-size: 10px;
    top: -1px;
    position: relative;
    color: var(--primary--color);
}

.footer-con .middle_portion .links li a {
    font-size: 14px;
    line-height: 14px;
    padding-left: 8px;
    font-weight: 400;
    text-decoration: none;
    color: var(--secondary--color);
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion .links li a:hover {
    color: var(--primary--color);
}

.footer-con .middle_portion .contact {
    padding-left: 45px;
}

.footer-con .middle_portion .contact .text {
    position: relative;
    margin-bottom: 12px;
    padding-left: 32px;
    display: inline-block;
}

.footer-con .middle_portion .contact a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--secondary--color);
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion .contact i {
    font-size: 14px;
    left: 1px;
    top: 7px;
    position: absolute;
    color: var(--primary--color);
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion .contact li a:hover {
    color: var(--primary--color);
    text-decoration: none;
}

.footer-con .copyright-con {
    padding: 26px 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-con .copyright-con p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    color: var(--secondary--color) !important;

}

/* PARTNERS SECTION */
.partners-con {
    padding: 59px 0 40px;
}

.partners-con ul li figure img {
    filter: grayscale(100%);
    transition: ease-in-out 0.6s;
}

.partners-con ul li:hover figure img {
    filter: grayscale(0);
    transform: translateY(-2px);
}

/* BANNER SECTION */
.home-outer-wrapper {
    background-image: url(../images/banner-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 836px;
}

.banner-con,
.sub-banner-con {
    padding-top: 112px;
}

.banner-con span.welcome-text {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary--color);
}

.banner-con p,
.sub-banner-con p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 41px;
}

.banner-con .primary_btn {
    margin-right: 17px;
}

.ac-image-wrap figure {
    margin-top: -150px;
}

/* about us */
.about-us-con p {
    margin-bottom: 20px;
}

.about-us-con ul {
    margin-bottom: 37px;
}

.about-us-con ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 5px;
}

.about-us-con ul li i {
    color: var(--primary--color);
    position: absolute;
    left: 0;
    top: 4px;
}

.about-us-con .statistics-wrapper {
    justify-content: space-between;
    width: 85%;
    margin-bottom: 34px;
}

.about-us-con .statistics-wrapper .statistics-box span.digit,
.about-us-con .statistics-wrapper .statistics-box sup {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-us-con .statistics-wrapper .statistics-box sup {
    top: unset;
}

.about-us-con .statistics-wrapper .statistics-box span.span-text {
    font-size: 16px;
    line-height: 24px;
}

.vector1 {
    bottom: 95px;
    right: 183px;
}

.vector2 {
    left: 185px;
    top: 59px;
}

.about-us-image-con figure img {
    border: 5px solid var(--secondary--color);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.about-us-image-con::before {
    content: '';
    background-color: transparent;
    border: 3px solid var(--primary--color);
    border-radius: 10px;
    box-shadow: 0px 1px 50px rgb(0 0 0 / 10%);
    width: 255px;
    height: 450px;
    position: absolute;
    right: 85px;
    left: unset;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
}

.about-us-image-con .video-card {
    position: absolute;
    overflow: hidden;
    right: 0;
    top: 0%;
    bottom: 0;
    margin: auto;
    border-radius: 10px;
    border: 5px solid var(--secondary--color);
    z-index: 2;
    height: 350px;
}

.about-us-image-con .video-card .overlay img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    left: 0;
}

/* SERVICES SECTION */
.services-con figure img {
    border-radius: 10px;
}

.services-con figure {
    padding-bottom: 68px;
    border-radius: 10px;
}

.services-con h5 {
    margin-bottom: 20px;
}

.services-con .col-lg-4.col-md-6 {
    margin-bottom: 50px;
}

.services-con .col-lg-4.col-md-6:nth-last-of-type(-n+3) {
    margin-bottom: 0;
}

.services-con .services-box figure.yellow-box {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 119px;
    background-color: var(--primary--color);
    border-radius: 10px;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.services-con .services-box figure.yellow-box img {
    border-radius: 0;
}

.services-con .services-box {
    transition: ease-in-out 0.6s;
}

.services-con .services-box:hover {
    transform: translateY(-3px);
}

/* PRICING PLANS SECTION */
.pricing-plan-con .pricing-box {
    border-radius: 10px;
    padding: 40px 30px 50px;
    display: flex;
    flex-direction: column;
    transition: ease-in-out 0.6s;
    border: 1px solid transparent;
}

.pricing-plan-con .pricing-box figure img {
    margin-bottom: 28px;
}

.pricing-plan-con .pricing-box h5 {
    margin-bottom: 19px;
}

.pricing-plan-con .pricing-box p {
    line-height: 26px;
    margin-bottom: 22px;
}

.pricing-plan-con .pricing-box span.starting-at {
    font-size: 14px;
    margin-bottom: 8px;
}

.pricing-plan-con .pricing-box .price {
    font-size: 40px;
    line-height: 40px;
    color: var(--accent--color);
    margin-bottom: 23px;
}

.pricing-plan-con .pricing-box ul li i {
    left: 0;
    top: 4px;
    position: absolute;
    color: var(--primary--color);
}

.pricing-plan-con .pricing-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 15px;
}

.pricing-plan-con .pricing-box ul {
    margin-bottom: 30px;
}

.pricing-plan-con .pricing-box .primary_btn {
    height: 54px;
    line-height: 54px;
    margin-top: auto;
}

.pricing-plan-con .pricing-box:hover {
    border: 1px solid var(--accent--color);
    transform: translateY(-4px);
}

.pricing-plan-con .pricing-box .yellow-tag {
    background-image: url(../images/yellow-tag.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 95px;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent--color);
    right: -17px;
    top: 30px;
}

/* FAQ SECTION */
.faq-con .accordion-card {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 10px;
    background-color: transparent;
}

.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}

.faq-con .accordion-card p {
    font-size: 16px;
    line-height: 26px;
}

.faq-con .accordion-card .btn-link h6 {
    color: var(--accent--color);
}

.faq-con .accordion-card .collapsed h6 {
    color: var(--accent--color);
    white-space: inherit;
    word-break: break-word;

}

.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--accent--color);

}

.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid var(--border--color);
}

.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}

.faq-con .accordian-inner .card-header a {
    padding: 21px 20px;
}

.faq-con .accordian-inner .card-body {
    padding: 0 20px 21px 20px;
}

.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}

.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}

.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
    white-space: inherit;
    word-break: break-word;
}

.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}

.faq-con .accordion-card .btn-link:before {
    content: "\f063";
    font-size: 15px;
    line-height: 15px;
    top: 25px;
    right: 24px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--accent--color);
}

.faq-con .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--accent--color);
}

.faq-con.faq-main-con .accordian-section-inner h5.sub-heading5 {
    margin-bottom: 30px;
}

.faq-con.faq-main-con .accordian-section-inner h5.sub-heading5 i {
    color: var(--primary--color);
}

.faq-con.faq-main-con .accordian-inner .accordion-card {
    background-color: var(--secondary--color);
    box-shadow: 0px 5px 50px rgb(0 0 0 / 5%);
}

.faq-con.faq-main-con .accordion-card:has(.collapsed) {
    border: 1px solid transparent;
}

.faq-con.faq-main-con .faq_content {
    padding-bottom: 55px;
    border-bottom: 1px solid var(--primary--color);
    margin-bottom: 55px;
}

/* CTA SECTION */
.cta-con {
    background-image: url(../images/cta-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 655px;
}

.cta-con .primary_btn {
    min-width: 220px;
    margin-top: 19px;
}

.cta-con .special-text {
    margin-bottom: 12px;
}

.cta-con h2 {
    margin-bottom: 21px;
}

/*  LATEST ARTICLES SECTION */
.latest-articles-con .article-box {
    border-radius: 10px;
    padding: 15px 10px;
    transition: ease-in-out 0.6s;
    border: 1px solid transparent;
}

.latest-articles-con .article-box img {
    border-radius: 10px;
    margin-bottom: 24px;
}

.latest-articles-con .article-box span {
    font-size: 14px;
    line-height: 18px;
    padding-right: 9px;
    padding-left: 9px;
    border-right: 1px solid var(--accent--color);
    margin-bottom: 12px;
}

.latest-articles-con .article-box h6 {
    margin-bottom: 20px;
}

.latest-articles-con .article-box a:hover {
    text-decoration: none;
}

.latest-articles-con .article-box a:hover h6 {
    color: var(--primary--color);
}

.latest-articles-con .article-box .primary_btn {
    min-width: 171px;
    height: 48px;
    line-height: 48px;
}

.latest-articles-con .article-box:hover {
    border: 1px solid var(--accent--color);
    transform: translateY(-3px);
}

.latest-articles-con .article-inner-wraper {
    padding: 0 16px 15px;
}

/* TESTIMONIALS SECTION */

.testimonials-con .left-quote {
    top: 95px;
    left: 95px;
}

.testimonials-con .right-quote {
    bottom: 95px;
    right: 95px;
}

.testimonials-con .testimonial-box {
    margin-bottom: 45px;
}

.testimonials-con .testimonial-box h4 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--primary--color);
}

.testimonials-con .testimonial-box h3 {
    font-size: 30px;
    line-height: 42px;
    padding: 0 5%;
    font-weight: 400;
    color: var(--accent--color);
}

.testimonials-con .testimonial-box .star-img img {
    margin-bottom: 30px;
}

.testimonials-con .carousel-indicators {
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.testimonials-con .carousel-indicators li {
    text-indent: 0;
    width: 64px;
    height: 64px;
    opacity: 1;
    margin: 0 18px;
    border-radius: 100%;
}

.testimonials-con .carousel-indicators li:first-child {
    margin-left: 0;
}

.testimonials-con .carousel-indicators li:last-child {
    margin-right: 0;
}

.testimonials-con .carousel-indicators li figure {
    background-color: var(--black--color);
    border-radius: 100%;
    transition: ease-in-out 0.6s;
}

.testimonials-con .carousel-indicators li figure img {
    border-radius: 100%;
    opacity: 60%;
    transition: ease-in-out 0.6s;
}

.testimonials-con .carousel-indicators .active {
    transition: ease-in-out 0.6s;
}

.testimonials-con .carousel-indicators .active figure img {
    width: 82px;
    opacity: 1;
    transform: scale(1.28);
    transition: ease-in-out 0.6s;
}

.testimonials-con .carousel-indicators li .name_wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -78px;
    margin: 0 auto;
    display: none;
}

.testimonials-con .carousel-indicators li .name_wrapper .person {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    color: var(--accent--color);
}

.testimonials-con .carousel-indicators li .name_wrapper .review {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--text--color);
}

.testimonials-con .carousel-indicators .active .name_wrapper {
    display: block;
}

/* Hide default Bootstrap arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
}

/* Custom arrows */
.carousel-control-prev-icon:after,
.carousel-control-next-icon:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: var(--accent--color);
}

.testimonials-con .carousel-control-next,
.testimonials-con .carousel-control-prev {
    opacity: 1;
}

.carousel-control-prev-icon:after {
    content: "\f060";
}

.carousel-control-next-icon:after {
    content: "\f061";
}

/* Arrow position */
.testimonials-con .carousel-control-prev,
.testimonials-con .carousel-control-next {
    width: 50px;
    top: unset;
    bottom: 10%;

}

.testimonials-con .carousel-control-prev {
    left: 27%;
}

.testimonials-con .carousel-control-next {
    right: 27%;
}

/* SERVICES AREA SECTION */
.service-area-con {
    background-image: url(../images/services-area-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 200px;
}

.service-area-con .services-area-inner-content .heading-title-con p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 26px;
}

.service-area-con .services-area-inner-content .heading-title-con h6 {
    font-size: 18px;
    margin-bottom: 16px;
}

.service-area-con .services-area-inner-content .heading-title-con h2 {
    margin-bottom: 20px;
}

.service-area-con .services-area-inner-content ul li i {
    color: var(--primary--color);
    position: absolute;
    left: 0;
    top: 5px;
}

.service-area-con .services-area-inner-content ul {
    margin-bottom: 34px;
}

.service-area-con .services-area-inner-content ul li {
    position: relative;
    padding-left: 30px;
    color: var(--secondary--color);
    font-size: 18px;
    margin-bottom: 5px;
}

.service-area-con .services-area-inner-content .primary_btn {
    min-width: 365px;
}

.social-vertical-icons {
    top: 50%;
    transform: translate(-50%, -50%);
}

.social-vertical-icons li {
    margin: 14px 0;
    transition: ease-in-out 0.6s;
}

.social-vertical-icons li i {
    color: var(--accent--color);
    font-size: 16px;
    background-color: var(--secondary--color);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: ease-in-out 0.6s;
}

.social-vertical-icons li:hover i {
    background-color: var(--primary--color);
    transform: translateX(-4px);
}

/*  */

.map-pin {
    position: absolute;
    width: 52px;
    height: 68px;
    background-image: url(../images/pin-location.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: ease-in-out 0.6s;
}

.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.07);
}

.map-pin i {
    top: 13px;
    position: relative;
    color: var(--accent--color);
}

.pin-popup {
    position: absolute;
    width: 270px;
    height: 309px;
    background-image: url(../images/pin-loc-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    z-index: 50;
}

.pin-popup img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.close-popup {
    position: absolute;
    top: 6px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.location-content {
    padding: 17px;
}

.location-content p {
    font-size: 14px;
    color: var(--text--color);
}

.location-content h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--accent--color);
}

.location-content p i {
    color: var(--primary--color);
    margin-right: 5px;
}

.pin1 {
    right: 0;
    top: 33%;
}

.pin2 {
    right: 40%;
    bottom: 0;
}

.pin3 {
    right: 19%;
    top: 57%;
}

.pin4 {
    top: 46%;
    right: 32%;
}

.pin5 {
    bottom: -7%;
    right: 19%;
}

.pin6 {
    top: 6%;
    right: 36%;
}

.pin7 {
    right: 6%;
    top: 65%;
}


#popup1 {
    right: -189px;
    top: -137px;
}

#popup2 {
    right: 26.5%;
    bottom: 76px;
}

#popup3 {
    right: 5.5%;
    top: 1%;
}

#popup4 {
    right: 18.5%;
    top: -10%;
}

#popup5 {
    right: 5.5%;
    bottom: 6%;
}

#popup6 {
    right: 22.5%;
    top: -50%;
}

#popup7 {
    right: -7.5%;
    top: 9%;
}

/*  */
.sub-outer-wrapper {
    background-image: url(../images/sub-banner-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 639px;
}

/*  */

/* breadcrumb */
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: var(--primary--color);
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.breadcrumb {
    background-color: transparent;
    padding: 21px 15px;
    min-width: 190px;
    border: 1px solid rgb(255 255 255 / 20%);
    transition: ease-in-out 0.6s;
    border-radius: 10px;
    justify-content: center;
    background-color: transparent;

}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--secondary--color);
}

.breadcrumb-item a:hover {
    color: var(--primary--color);
}


.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary--color);
    content: "~";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    padding: 0 10px;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0 !important;
}

/* TEAM SECTION */

.our-team-con .team-box .designation {
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text--color);
    line-height: 20px;
}

.our-team-con .team-box figure {
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.our-team-con .team-box figure img {
    transition: ease-in-out 1s;
    border-radius: 20px;
}

.our-team-con .team-box:hover figure img {
    transform: scale(1.02);
}

.our-team-con .team-box ul li a {
    margin: 0 2px;
}

.our-team-con .team-box ul li:hover i {
    transform: translateY(-2px);
}

.our-team-con .team-box h6 {
    margin-bottom: 5px;
}

.our-team-con .team-box ul li i {
    width: 38px;
    height: 38px;
    font-size: 15px;
    background-color: var(--accent--color);
    line-height: 38px;
    color: var(--secondary--color);
    border-radius: 100%;
    transition: ease-in-out 0.5s;
}

.our-team-con .team-box ul li i:hover {
    background-color: var(--primary--color);
}

.our-team-con .team-box {
    transition: ease-in-out 0.6s;
    padding-bottom: 20px;
}

.our-team-con .team-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: var(--secondary--color);
}

.our-team-con .col-lg-3.col-md-6 {
    margin-bottom: 65px;
}

.our-team-con .col-lg-3.col-md-6:nth-last-of-type(-n+4) {
    margin-bottom: 0;
}

.sub-outer-yellow-bg-wrapper {
    background-image: url(../images/sub-banner-yellow-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 639px;
}

/* ABOUT INFO SECTION */
.who-we-are-con .about-info-box figure img {
    border-radius: 10px;
    margin-bottom: 33px;
}

.who-we-are-con h5 {
    margin-bottom: 20px;
}

.who-we-are-con p {
    margin-bottom: 22px;
}

.who-we-are-con .primary_btn {
    min-width: 186px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    width: auto !important;
    max-width: max-content !important;
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
}

/*  */
.team-banner-wrapper {
    background-image: url(../images/team-bg-banner-img.jpg);
}

.faq-banner-wrap {
    background-image: url(../images/faq-banner-img.jpg);
}

.why-choose-con {
    background-image: url(../images/why-choose-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 198px;
}

.why-choose-con h2 {
    margin-bottom: 20px;
}

.why-choose-con p {
    padding-right: 10%;
    margin-bottom: 30px;
}

.why-choose-con ul li {
    position: relative;
    padding-left: 29px;
    margin-bottom: 5px;
    font-size: 18px;
}

.why-choose-con ul {
    margin-bottom: 32px;
}

.why-choose-con ul li span {
    color: var(--primary--color);
    display: inline-block;
}

.why-choose-con ul li i {
    color: var(--primary--color);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
}

.why-choose-con .primary_btn {
    min-width: 235px;
}

.why-choose-con .primary_btn:hover {
    background-color: var(--secondary--color);
    color: var(--accent--color);
}

.faq-bottom-con h5 {
    margin-bottom: 22px;
}

/*  */
.services-detail-wrapper {
    background-image: url(../images/services-detail-bg-img.jpg);
}

.why-choose-details-con {
    background-image: url(../images/why-choose-detail-bg.jpg);
}

.yellow-box {
    background-color: var(--primary--color);
    border-radius: 10px;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    margin: 0 auto 24px;
}

/*  */
.ac-repair-con img.ac-repair-img {
    border-radius: 10px;
    margin-bottom: 40px;
}

.our-repair-process-con .repair-box h5 {
    margin-bottom: 20px;
}

.our-repair-process-con .row {
    min-height: 265px;
}

.position-var {
    align-self: flex-end;
}

.our-repair-process-con .arrow1 {
    position: absolute;
    right: 0;
}

.our-repair-process-con .arrow2 {
    position: absolute;
    right: -20px;
    top: 31px;
}

.our-repair-process-con .arrow3 {
    position: absolute;
    right: -14px;
    top: -30px;
}

/*  */
.contact-banner-wrapper {
    background-image: url(../images/contact-banner-bg-img.jpg);
}

/*  */
/* CONTACT INFO SECTION */
.contact-info-box {
    background-color: var(--secondary--color);
    border-radius: 15px;
    padding: 49px 30px 43px;
    border-bottom: 2px solid transparent;
    transition: ease-in-out 0.6s;
}

.contact-info-con .row {
    margin-bottom: 48px;
}

.contact-info-box:hover {
    transform: translateY(-3px);
    border-bottom: 2px solid var(--primary--color);
}

.contact-info-box figure img {
    margin-bottom: 30px;
}

.contact-info-box h5 {
    margin-bottom: 10px;
}

.contact-info-box a,
.contact-info-box p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text--color);
}

.contact-info-box a {
    align-self: flex-start;
}

.contact-info-box a:hover {
    color: var(--primary--color);
    text-decoration: none;
}

/*  */
.contact-map-con iframe {
    height: 576px;
    width: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    pointer-events: none;
    border-radius: 30px;
    border: none;
    position: relative;
    transition: ease-in-out 0.6s;
}

.contact-map-con div:hover iframe {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.issue-item {
    font-size: 16px;
    margin-bottom: 6px;
}

.issue-item i {
    color: var(--primary--color);
    margin-right: 10px;
}

.issue-text {
    margin-top: 33px;
    font-size: 16px;
    margin-bottom: 0;
}

.ac-repair-con .row {
    width: 68%;
}

/*  */
.get-quote-con {
    background-image: url(../images/get-in-touch-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.form-item {
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    z-index: 1;
}

.form-icon {
    left: 0;
    bottom: 0;
    position: absolute;
}

.get-quote-con {
    padding-top: 200px;
}

.get-quote-con span {
    font-weight: 500;
    margin-bottom: 10px;
}

.get-quote-con h2 {
    margin-bottom: 32px;
    color: var(--secondary--color);
}

.get-quote-con .form-box {
    padding: 0 0 0 45px;
}

.contact-form ul {
    display: grid;
    gap: 15px 15px;
    margin-bottom: 11px;
    grid-template-columns: 48.5% 48.5%;
}

.contact-form ul li input:focus,
.contact-form ul li textarea:focus {
    /* .submit-btn:focus{ */
    outline: none;
    border: 1px solid var(--primary--color);
}

.contact-form ul li input,
.contact-form ul li textarea,
.contact-form ul li select {
    width: 100%;
    border: none;
    font-size: 14px;
    line-height: 14px;
    border-radius: 10px;
    padding: 17px 20px 18px;
    color: var(--text--color);
    border: 1px solid transparent;
    background: var(--secondary--color);
}

.contact-form ul li select {
    height: 52px;
    position: relative;
    width: 100%;
    border: none;
    font-size: 14px;
    line-height: 14px;
    border-radius: 10px;
    padding: 17px 20px 18px;
    color: var(--text--color);
    border: 1px solid transparent;
    background: var(--secondary--color);
}

.contact-form ul li select::before {
    content: "\f107";
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.contact-form ul li input::placeholder,
.contact-form ul li select::placeholder {
    font-size: 14px;
    line-height: 14px;
    color: var(--text--color);
}

.contact-form ul li:last-child {
    grid-column: 1/-1;
}

.contact-form ul li textarea {
    resize: none;
    height: 110px;
}

.contact-form span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding-left: 3px;
    margin-top: 6px;
    margin-bottom: 0 !important;
    /* left: 35px; */
    display: block;
    position: relative;
    color: var(--primary--color);
}

.submit-btn {
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    border-radius: 10px;
    text-transform: uppercase;
    color: var(--accent--color);
    padding: 22px 30px 22px 39px;
    width: 100%;
    background: var(--primary--color);
    outline: none;
    border-style: none;
}

.submit-btn i {
    font-size: 12px;
    padding-left: 11px;
    color: var(--accent--color);
    transition: all 0.3s ease-in-out;
}

.submit-btn:hover {
    color: var(--accent--color);
    background: var(--secondary--color);
    border: none;
    outline: none;
}

.submit-btn:hover i {
    color: var(--accent--color);
}

.contact-form {
    z-index: 1;
    position: relative;
}

.text-size-18 {
    font-size: 16px;
    line-height: 24px;
}