@font-face {                         
    font-family: Poppins;
    src: url("../assets/fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: PoppinsBold;
    src: url("../assets/fonts/Poppins-Bold.ttf");
}

body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: Poppins;
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

a {
    /*color: black;*/
    color: #017fd0;
    text-decoration: none;
}
.mobile-navbar-contact a {
    color: black;
} 

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

.navbar {
    padding: 0 10%;
    background-color: #262626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px;
}

#blur {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 10;
    display: none;
}

#mobile-navbar {
    width: 250px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    background-color: #262626;
    transition: right 0.5s ease;
    padding: 25px 0;
    box-sizing: border-box;
}

.mobile-active {
    display: flex !important;
}

#mobile-navbar img:first-of-type {
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.mobile-navbar-references {
    display: flex;
    flex-direction: column;
}

.mobile-navbar-references a, .mobile-navbar-references .dropdown {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    color: white;
    font-size: 18px;
}

.mobile-navbar-contact {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
    margin-top: 20px;
}

.mobile-navbar-contact img {
    width: 30px;
    height: 30px;
    padding: 0 !important;
}

.mobile-navbar-contact #map-marker img {
    height: 35px;
}

.mobile-navbar-contact-ref {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 15px;
}

#logo {
    width: 100%;
}

#mobile-navbar-button {
    background-color: #262626;
    border: none;
    display: none;
}

#mobile-navbar-button img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.navbar a {
    color: white;
    font-weight: bold;
}

.navbar-references {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    gap: 30px;
}

.navbar-references a {
    padding: 40px 10px;
    position: relative;
    font-weight: normal;
}

.navbar-references > a, .navbar-references > .dropdown {
    padding: 40px 10px;
}  

.navbar-references a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 5px;
    background: transparent;
    transition: background 0.3s;
  }

.navbar-references a:hover::after {
    background: #219EFF;
  }

.navbar-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

#map-marker img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(200%) contrast(103%);
    height: 30px;
}

#order-button {
    background-color: #219EFF;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: normal;
}

.special-color {
    color: #219EFF;
}

.button-design {
    font-size: 18px;
    background-color: #219EFF;
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
}

.footer {
    /* background-color: #F5F5F5; */
    background-color: #e5e5e5;
    padding: 30px 10% 30px 10%;
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 3%;
    
}

.footer-col {
    width: 15%;
    
}

.footer-col.footer-col-3 {
    /* background-image: url("../assets/AWD logo.svg");
    background-repeat: no-repeat;
    background-position-y: center; */
}

.footer-references {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 75px; */
}

.footer-subcol {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.footer-subcol a {
    color: #262626;
    /* font-size: 25px; */
    font-weight: bold;
}

.footer-title {
    font-size: 48px;
    font-weight: bold;
    color: #262626;
    line-height: 55px;
    margin-bottom: 25px;
}

.footer-col p {
    color: #262626;   
    font-size: 25px;
    font-weight: bold;
}

.footer-col iframe {
    border-radius: 30px;
    width: 100%;
    height: 400px;
}

.footer-copy {
    color: #262626;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    padding: 25px 0;
    width: 100%;
}

@media (max-width: 1700px) {
    .navbar-references a {
        font-size: 13px;
    }
}

@media (max-width: 1500px) {
    .navbar-references {
        gap: 0;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 0 25px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        height: 75px;
        padding: 0 5%;
    }

    .navbar-references {
        display: none;
    }

    #mobile-navbar-button {
        display: block;
        cursor:pointer;
    }

    .navbar-contact {
        display: none;
    }
 
}

@media(max-width: 800px) {
       .footer {
        flex-direction: column;
        padding: 35px 5% 25px 5%;
        gap: 35px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-references {
        gap: 25px;
    }

    .footer-copy {
        font-size: 20px;
    }
}
@media(max-width: 600px) {
    .footer-references {
        justify-content: space-between;
    }
}

/*JI-CHRONOFORM-NUI override*/
.form-row legend {display:none;}
.form-row {border: none; padding:0;}
form label {display:none;}
button[type="submit"] {
    background-color: #219EFF;
    color: white;
    cursor: pointer;
    border: none;
}
.awd-content .nui.form {
    display:block;
}
.awd-content .nui.form .field input[type="text"],.awd-content .nui.form .field textarea, .awd-content .nui.form input[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    border: solid 1px #707070;
    font-size: 20px;
    padding: 15px 25px;
    margin-bottom: 10px;
    font-family: Poppins;
    outline: none;
}

.awd-content .nui.form input[type="submit"] {
    background-color: #219EFF;
    color: white;
    cursor: pointer;
    border: none;
}
.chronocredits {display:none;}

.awd-content .nui.form .field textarea {
    padding: 30px;
    resize: none;
    height: 250px;
}

/* Desktop dropdown */
.dropdown {
  position: relative;
  display: inline-block;





}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  top: 100%;
  left: 0;
  flex-direction: column;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background-color: white;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;