@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --bluef: #001e40;
    --background: #eef9ff;
    --bluefooter: #e7f1f7;
    --bluec: #e7f7fe;
    --redc: #ffc0c0;
    --redf: #680000;
    --red:#dc3545;
    --titleclamph1: clamp(1.625rem, 1.05rem + 2.875vw, 4.5rem);
    --titleclamph2: clamp(1.625rem, 1.2625rem + 1.8125vw, 3.4375rem);
    --greenvalidate: #82e778;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Poppins;
    color: var(--bluef);
}

button {
    cursor: pointer;
}

.btn-var {
    color: white;
    background-color: var(--bluef);
    border: none;
}

.btn-var:hover {
    color: white !important;
}

.btn-var-reverse {
    color: var(--bluef);
    background-color: white;
    border: 2px solid var(--bluef);
    /* border-color: var(--bluef) var(--bluef); */
}

.contact-button {
    background-color: #001e40;
    border-radius: 8px;
    border: #001e40;
    color: white;
    transition: all 0.3s ease !important;
}

.contact-button:hover {
    transform: scale(1.05);
    background-color: var(--bluef) !important;
}

.w-40 {
    width: 40% !important;
}

.hidden {
    display: none;
}

.h2-responsive {
    font-size: clamp(2rem, 1.7857rem + 1.0714vw, 3.5rem);
}

.margin-0 {
    margin: 0;
}

.padding-0 {
    padding: 0;
}

.bold700 {
    font-weight: 700;
}

.bold600 {
    font-weight: 600;
}

.bold500 {
    font-weight: 500;
}

.bold400 {
    font-weight: 400;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}
.gap-50 {
    gap: 50px;
}

.gradient {
    background-image: linear-gradient(225deg, #0097e4, #59b2e0);
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.hidden-img {
    width: 30px;
    height: 30px;
}

.label-selected {
    border: 1px solid var(--bluef) !important;
    background-color: var(--bluec) !important;
    color: var(--bluef) !important;
}

#bodyContent {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
}

.loader-full{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 1500;
    color: white;
}

.loader-full-content{
    position:absolute;
    top: 45%;
    left: 45%;
}

.loader-full_icon i{
    font-size: 52px;
    margin: 20px;
}

.logo-animation{
    width: 4rem !important;
    animation: spin 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
}


@media (max-width: 600px) {
    body::-webkit-scrollbar {
        display: none;
    }
}
