@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand+SC&family=Roboto:wght@300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

:root{
    --font-size: 1rem;
    --color1: #fff;
    --color2: #000;
    --color3: #4580f7;
    --color4: #7dbaff;
    --color4-hover: #77b7ff75;
    --gradient1: linear-gradient(to left, #3c74e0, #4886e9, #5897f1, #69a9f8, #7dbaff); /* background-image */
    --gradient2: linear-gradient(to right, #3c74e0, #4886e9, #5897f1, #69a9f8, #7dbaff); /* background-image */
    
    --box-shadow1: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    --box-shadow2:rgba(0, 0, 0, 0.1) 0px 4px 12px;
    --animate-delay: 0ms;
}

html, body, nav, header, main, footer{
    width: 100%;
}

html{
    scroll-behavior: smooth;
    background-color: var(--color1);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body{
    /* overflow-x: hidden;
    overflow-y: hidden; */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;

}


@media (hover: none) and (pointer: coarse) {
    body.no-scroll {
      overflow-y: hidden;
    }
  }

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}


.container{
    max-width: 1600px;
    width: 90%;
}

.title{
    font-size: calc(var(--font-size) * 3);
    font-weight: 700;
}

.h2{
    font-size: calc(var(--font-size) * 2);
    font-weight: 500;
}

.highlight{
    color: var(--color3);
}

.underline{
    text-decoration: underline;
    font-weight: 600;
}

#loader-block{
    background-color: white;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--color3);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    -webkit-animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);;
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);;
    }
} 


#send-ok{
    position: fixed;
    max-width: 200px;
    width: 100%;
    height: 50px;
    z-index: 1209;
    top: 100px;
    right: 5%;
    background-color: rgba(172, 255, 47, 0.808);
    border-radius: 12px;
    
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: calc(var(--font-size) * 1);
}