@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;500;600&family=Prompt:wght@300;400&display=swap");

@font-face {
    font-family: "Material Symbols Outlined";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v61/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1n-q_4MrImHCIJIZrDCvHOejbd5zrDAt.woff2)
    format("woff2");
}

:root {
    --themeRed: #5846ff; /* #ef4024 */
    --headerFont: "Lexend Deca", sans-serif !important;
}


html {
    scroll-behavior: smooth !important;
}

a:hover {
    transition: 0.3s ease !important;
    text-decoration: none !important;
}

/* SITE HEADER */
.site-header {
    top: 0;
    z-index: 111;
    max-width: 100%;
    overflow: hidden;
    padding: 15px 0;
    position: sticky;
    background-color: #FFF;
    border-bottom: 1px solid #d3d3d3;
}

.site-header-logo{
    top: -3px;
    height: auto;
    max-width: 135px;
    position: relative;
}
.header-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-navigation-list {
    margin: 0;
    padding: 0%;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.header-navigation-list li:not(:last-child) {
    margin-right: 30px;
}

.header-navigation-list li a:not(.btn-theme-primary-outline) {
    color: #000;
    font-size: 16px;
}


.header-navigation-list li a:not(.btn-theme-primary-outline):hover {
    color: var(--themeRed);
}


.btn-nav-toggler {
    width: 40px;
    padding: 0;
    height: 40px;
    overflow: hidden;
    color: #FFF;
    border: none;
    background-color: transparent;
}

.btn-nav-toggler span {
    color: #404040;
    font-size: 40px;
}


/* SITE FOOTER */

/* COMMON COMPONENTS */


.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}


.form-control {
    padding: 10px 15px;
    min-height: 40px;
}

.form-control.error{
    border-color: var(--themeRed) !important;
}

.section-header {
    color: #4f4f4f;
    /* font-size: 14px; */
    font-size: 38px;
    font-weight: 500;
    /* margin-bottom: 15px; */
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--headerFont) !important;
}

.section-title {
    max-width: 80%;
    color: #404040;
    /* font-size: 38px; */
    font-size: 18px;
    margin-bottom: 60px;
    
}

.section-title span,
.section-header span {
    color: var(--themeRed);
}

.btn-theme-primary {
    width: 100%;
    font-size: 16px;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: var(--headerFont);
    border: 2px solid var(--themeRed);
    background-color: var(--themeRed);
    transition: 0.3s ease-in-out;
}

.glowingEffect {
    z-index: 0;
    color: #000;
    position: relative;
    border-radius: 5px !important;
}

.glowingEffect:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
     border-radius: 5px;
}
 
.glowingEffect:after {
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 5px;
    position: absolute;
    transition: .3s ease;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.glowingEffect:hover::after{
    color: #FFF;
    background-color: var(--themeRed);
}

/* .btn-theme-primary.is-loading{
    pointer-events: none;
    color: var(--themeRed);
    background: var(--themeRed) url('../img/icons/loader-light.svg') no-repeat center center;
    background-size: 30px !important;
} */

.btn-theme-primary:hover {
    color: var(--themeRed);
    background-color: #fff;
}

.btn-theme-primary-outline {
    line-height: 1;
    padding: 10px !important;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s ease-in-out;
    background-color: transparent;
    border: 2px solid var(--themeRed);
}

.btn-theme-primary-outline:hover {
    color: #fff;
    background-color: var(--themeRed);
}

/* COMMON COMPONENTS ENDS */

/* HERO SECTION */
.section-hero {
    padding: 15px 0;
    border-bottom: 1px solid #ededed;
    background-color: #FFFBFB;
}

.hero-slide{
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 30px 5px #ef402430;
}

/* INTRO SECTION */
.section-intro {
    padding: 75px 0 50px 0;
}

.intro-card {
    margin-bottom: 40px;
}

.intro-card-img {
    margin-bottom: 15px;
}

.intro-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-family: var(--headerFont);
}

.intro-card p {
    margin: 0;
    color: #404040;
    font-size: 16px;
}

/* BRANDS SECTION */
.section-brands {
    padding: 75px 0;
    background-color: #fff9f9;
}

.slick-arrow,
.slick-next{
    font-size: 40px;
    z-index: 1;
    position: absolute;
    top: calc(50% - 20px);
    color: var(--themeRed);
}


.btn-slick-prev{
    left: -40px;
}

.btn-slick-next{
    right: -40px;
}


.brand-card {
    margin-bottom: 40px;
}

.brand-card-img {
    margin-bottom: 15px;
}

.brand-card h3 {
    font-size: 20px;
    margin-bottom: 0;
    font-family: var(--headerFont);
}

/* GET IN TOUCH */
.section-git {
    padding: 100px 0;
}

.git-content-wrapper {
    max-width: 90%;
}

.git-links-wrapper {
    padding-top: 20px;
}

.git-link {
    width: auto;
    align-items: center;
    display: inline-flex;
}

.git-link div {
    line-height: 1.35;
    font-size: 14px;
    color: #4f4f4f;
    margin-bottom: 3px;
}

.git-link u {
    color: #000;
}

.git-form-wrapper {
    padding: 25px 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 4px 30px 5px #ef402430;
}

.git-checkbox-wrapper {
    padding-left: 20px;
    position: relative;
}

.git-checkbox-wrapper input {
    top: 2.5px;
    left: 0;
    width: 12.5px;
    height: 12.5px;
    margin-right: 10px;
    position: absolute;
}

.git-checkbox-wrapper label {
    opacity: 0.5;
    font-size: 10px !important;
    line-height: normal !important;
}

.git-field-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.git-field-wrapper label {
    line-height: 1;
    font-size: 14px;
    color: #404040;
    margin-bottom: 5px;
}

.git-field-wrapper label.error{
    top:5px;
    right: 0;
    margin-bottom: 0;
    position: absolute;
    color: var(--themeRed);
}

.site-footer {
    color: #d3d3d3;
    padding: 60px 0 30px 0;
    background-color: #000;
}

.footer-intro p {
    font-size: 16px;
    max-width: 500px;
    margin: 20px 0 45px 0;
}

.footer-section-header {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-family: var(--headerFont);
}

.footer-endline {
    width: 100%;
    display: flex;
    opacity: 0.75;
    font-size: 12px;
    padding-top: 25px;
    margin-top: 45px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #525252;
}

.footer-endline a,
.footer-endline p {
    color: #fff;
    margin-bottom: 0;
    margin-bottom: 0;
    display: inline-table;
    transition: color 0.2s ease-in-out;
}

.footer-endline a:hover {
    color: #fff;
}

.icon-link {
    color: #fff;
    display: table;
    padding-left: 30px;
    position: relative;
    margin-bottom: 25px;
    transition: color 0.3s ease-in;
}

.icon-link:hover {
    color: var(--themeRed);
    text-decoration: none;
}

.icon-link img {
    left: 0;
    top: 3px;
    position: absolute;
}


/* AUTH PRODUCT PAGE */
.section-auth{
    padding: 60px 0 100px 0;
    background-color: #FFFBFB;
}

.section-auth h1{
    color: #000;
    font-size: 48px;
    line-height: .9;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: var(--headerFont);
}

.section-auth h1 span{
    color: var(--themeRed);
}
@media (max-width: 767px) {
    
    /* SITE HEADER */
    .site-header {
        padding: 10px 0;
    }
    
    .site-header-logo{
        max-width: 125px;
    } 
    
    .header-content-wrapper {
        flex-wrap: wrap;
    }
    
    .header-navigation-list {
        width: 100%;
        display: none;
        margin-top: 15px;
        text-align: center;
    }
    
    .header-navigation-list.is-active {
        display: block;
    }
    
    .header-navigation-list li {
        margin: 0;
        padding: 10px 0;
    }
    
    .header-navigation-list li a {
        font-size: 18px;
    }
    
    .header-navigation-list li:not(:last-child) {
        margin: 0;
        border-bottom: 1px solid #d3d3d3;
    }
    
    
    /* COMMON COMPONENTS */
    
    .form-control {
        padding: 10px;
    }
    
    .section-title {
        max-width: 100%;
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 40px;
    }
    
    /* INTRO SECTION */
    .section-intro {
        padding: 60px 0 25px 0;
    }
    
    /* BRANDS SECTION */
    .section-brands {
        padding: 60px 0;
    }
    
    .brand-card {
        margin-bottom: 30px;
    }
    
    .brand-card-img {
        margin-bottom: 7.5px;
    }
    
    .intro-card h4,
    .brand-card h3 {
        font-size: 18px;
    }
    
    /* GIT SECTION */
    .section-git {
        padding: 60px 0 75px 0;
    }
    
    .git-form-wrapper {
        margin: 0 auto;
        padding: 25px 20px;
        max-width: calc(100% - 15px);
    }
    
    .footer-endline {
        display: block;
        text-align: center;
    }
    
    .footer-endline p {
        margin-bottom: 15px;
    }
    
    .icon-link {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .icon-link img {
        top: 0;
    }
    
    /* GET IN TOUCH SECTION */
    
    .git-content-wrapper {
        max-width: 100%;
    }
    .git-links-wrapper {
        padding: 15px 0 50px 0;
    }
    
    .git-field-wrapper label {
        font-size: 12px;
    }

    /* AUTH PRODUCT PAGE */
    .section-auth{
        padding: 50px 0 75px 0;
    }
    .section-auth h1{
        line-height: 1;
        font-size: 48px;
        margin-bottom: 30px;
    }


}
/* FANCYBOX */

#confirmation-message,
#response_message_container{
    display: none;
    text-align: center;
}

#confirmation-message img, 
#response_message_container img{
    height: auto;
    width: 100%;
    max-width: 280px;
    margin-bottom: 30px;
}

#confirmation-message i{
    font-size: 60px;
    margin-bottom: 30px;
    color: var(--themeRed);
}


/* CITY AUTOCOMPLETE */
.ui-autocomplete{
    margin: 5px 0 0 0;
    padding: 0;
    padding: 4px;
    list-style: none;
    max-height: 275px;
    overflow-y: auto;
    border-radius: 3px;
    overflow-x: hidden;
    background-color: #FFF;
    max-width: 350px !important;
    border: 1px solid #d3d3d3;
}

.ui-autocomplete li{
    font-size: 14px;
    list-style: none;
    border-radius: 3px;
    padding: 3px 5px;
    transition: .3s ease;
    border: 2px solid transparent;
}

.ui-autocomplete li:hover{
    color: #fff;
    border: 2px solid transparent;
    background-color: rgb(45, 94, 228);
}

.ui-helper-hidden-accessible{
    opacity: 0;
    display: none;
    visibility: hidden;
    position: absolute;
}

/* General Styling */
.contact-form-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

/* Form Styling */
.contact-form {
    width: 410px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

/* Terms & Conditions Checkbox */
.terms-checkbox {
    padding-left: 20px;
    position: relative;
  }
  
  .terms-checkbox input {
    top: 2.5px;
    left: 0;
    width: 12.5px;
    height: 12.5px;
    margin-right: 10px;
    position: absolute;
  }
  
  .terms-text {
    font-size: 9px;
    line-height: 1.2;
    max-width: 250px;
    text-align: justify;
  }

.terms-checkbox label {
    opacity: 0.5;
    font-size: 10px !important;
    line-height: normal !important;
}

.terms-checkbox a {
    color: #007bff;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Send Message Button */
.btn-send-message {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-send-message:hover {
    background-color: #0056b3;
}

/* Required Field Indicator */
.required {
    color: #ff0000;
}

