@media screen and (orientation:portrait) {
    #opentext h1 {
        font-size: 3.2rem !important;
        letter-spacing: 0.4rem !important; 

    }
}










#contact {
    display: grid;
    grid-template-columns: 3fr 2fr;
    background-color: white;
    width: 100%;
    max-width: 1920px;
}



#right {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


#right a {
    color: #00C2FF;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    transition: 0.3s ease-in;
    
}



#right a:hover {
    color: #006180;
    transition: 0.3s ease-in;

}

#right a svg {
    transition: 0.3s ease-in;
}


#right a:hover > svg{
    fill: #006180;
    transition: 0.3s ease-in;

}


#right a small {
    font-variant: small-caps;
    display: block;
}


#right a svg {
    fill: #00C2FF;
    height: 8rem;
}



#left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.quote-form {
    background-color: #F0F0F0;
    border-radius: 2rem;
    padding: 1.5rem;
    /*box-shadow: 0.3rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);*/
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-form h2 {
    color: #00c2ff;
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
}

.quote-form label {
    display: block;
    font-size: 1.4rem;
    text-transform: uppercase;

    margin: 1.3rem 0 0 1rem;
    color: #00c2ff;
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
    width: calc(100% - 2rem);
    margin-top: 0;
    padding: 0.2rem 0.5rem;
    border: none;
    border-bottom: 0.2rem solid #00c2ff;
    color: #006180;
    outline: none;
    font-size: 1.4rem;
    resize: none;
    background-color: transparent;
    overflow: hidden;
}


.quote-form textarea {
    transition: 0.3s ease-in;
    height: 1.7rem;

}


.quote-form textarea:focus-within {
    height: calc(1.65rem * 5);

    transition: 0.3s ease-in;
    overflow-y: scroll;
}



.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 2rem);

}

.features-container label {
    margin-left: 0;
}

#data-import {
    border: 0.15rem solid #00c2ff;
    background-color: transparent;
    color: #00c2ff;
    padding: 0.3rem 0.6rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: 0.3s ease-in;
    width: 30%;
    font-weight: 900;
    margin-top: 1rem;
    min-width: fit-content;

}

#data-import:hover {
    background-color: #00c2ff;
    color: white;
    transition: 0.3s ease-in;

}

.consent {
    margin-top: 1.5rem;
    text-align: left;
    width: calc(100% - 2rem);
    
}

.consent label {
    display: inline;
    font-weight: normal;
    color: #00c2ff;
    text-transform: none;
}

.consent input {
    margin-right: 0;
}

.consent a {
    color: #00c2ff;
    text-decoration: underline;
}

.consent a:hover {
    text-decoration: underline;
}

.quote-form button[type="submit"] {
    text-align: center;
    width: fit-content;
    background-color: #00c2ff;
    color: white;
    border: none;
    padding: 0.7rem 2.5rem;
    font-size: 18px;
    border-radius: 5rem;
    cursor: pointer;
    transition: 0.3s ease-in;
    margin-top: 2rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.1rem;
    font-size: 1.7rem;
}

.quote-form button[type="submit"]:hover {
    transition: 0.3s ease-in;
    scale: 102%;
}





#left {
    margin-bottom: 2rem;
}




@media screen and (orientation:portrait) {
    #contact {
        display: flex;
        flex-direction: column-reverse;

    }
    

    #right {
        margin: 2rem 0;

    }


    .features-container {
        flex-direction: column;
        align-items: start;
    }


    .features-container button {
        width: fit-content;

    }

    .quote-form textarea:focus-within {
        height: calc(1.65rem * 10);
    
        transition: 0.3s ease-in;
    }
    
    



}



nav#nav a:nth-child(4) {
    background-color: white;
    color: #006180;
}



input[type="checkbox"] {
    margin-left: 1rem;
    width: 1.3rem; /* Adjust width as needed */
    height: 1.3rem; /* Adjust height as needed */
    border: 0.15rem solid #00C2FF; /* Change the border color and thickness */
    -webkit-appearance: none; /* Remove default appearance for WebKit browsers */
    appearance: none; /* Remove default appearance */
    cursor: pointer;
    transform: translateY(0.2rem);
    border-radius: 0.3rem;
}
/* Style for the checked state */
input[type="checkbox"]:checked {
    background-color: #00C2FF; /* Change the background color when checked */
}


* {
    caret-color: #00C2FF;
}


#siker {
    
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center; 
    animation: eltunes 10s forwards;
}


#siker div {
    color: black;
    background-color: greenyellow;
    padding: 1rem 2rem;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 2rem;
}


@keyframes eltunes {
    0% {
        opacity: 100%;
    }

    80% {
        opacity: 100%;
    }

    99% {
        opacity: 0;
        display: flex;
    }

    100% {
        display: none;
    }
}


.grecaptcha-badge {
    display: none;
}