*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --grayLight: #EFEFEF;
    --gray: #333338;
    --grayDark: #1D1D1B;
    --white: #ffffff;
    --greenLight: #93C01F;
    --greenDark: #008D36;
}

.bg_grayLight{
    background-color: var(--grayLight) !important;
}

.bg_grayDark{
    background-color: var(--grayDark) !important;
}

.bg_white{
    background-color: var(--white) !important;
}

.text_greenLight{
    color: var(--greenLight);
}

.text_greenDark{
    color: var(--greenDark);
}

.fs_xxl{
    font-size: 45px;
}

.title{
    font-family: 'Comfortaa', sans-serif;
    font-size: 55px !important;
}

body{
    color: var(--gray) !important;
    font-family: 'Raleway', sans-serif !important; 
    font-weight: 500 !important;
}

h1{
    font-weight: 600 !important;
    font-size: 40px !important;
    line-height: 45px !important;
}

header{
    background-color: var(--white);
}

.wrapper_img{
    width: 100%;
}

.wrapper_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.svg1{
    width: 110px; 
    position: absolute; 
    top: 0; 
    right: 0;
}
.svg2{
    width: 125px; 
    position: absolute; 
    top: 0; 
    left: 0;
}
.svg3{
    width: 95px; 
    position: absolute; 
    top: 70px; 
    left: 0;
}
.svg4{
    width: 300px; 
    position: absolute; 
    top: 20px; 
    right: 0;
}
#btn_toTop{
    position: absolute; 
    top: -25px; 
    right: 35px;
    width: 50px; 
    height: 50px; 
    background-color: var(--greenDark); 
    border-radius: 15%; 
    padding: 11px; 
    cursor: pointer;
}
@media screen and (max-width: 540px) {
    h1{
        font-size: 30px !important;
        line-height: 30px !important;
    }
    .svg1{
        width: 70px; 
        position: absolute; 
        top: 0px; 
        right: 0px;
    }
    .svg2{
        width: 75px; 
        position: absolute; 
        top: 0; 
        left: 0;
    }
    .svg5{
        width: 75px; 
        position: absolute; 
        top: 30px; 
        left: 0;
    }
    .svg3{
        width: 60px; 
        position: absolute; 
        top: 45px; 
        left: 0;
    }
    .svg4{
        width: 130px; 
        position: absolute; 
        top: 20px; 
        right: 0;
    }
    #btn_toTop{
        background-color: var(--greenDark); 
        border-radius: 15%; 
        width: 40px; 
        height: 40px; 
        padding: 9px; 
        position: absolute; 
        top: -20px; 
        right: 25px;
    }
}