html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    left: 0;
    right: 0;
    display: block;    
    width: 100vw;
    /* height: 100vh; */
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden!important;
    background-color: #202020;
    color: #d3d3d3;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-thumb {
    background-clip: content-box;
    background-color: #d3d3d3;
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: #202020;
    border-radius: 4px;
}
div {    
    box-sizing: border-box;
}

/* COLORS */
.background-dark {
    background-color: #202020!important;
}
.background-light {
    background-color: #d3d3d3!important;
}
.background-white {
    background-color: #fff!important;
}
.background-yellow {
    background-color: #fab702!important;
}
.background-yellow-2 {
    background-color: #fd9e01!important;
}
.color-dark {
    color: #202020!important;
}
.color-light {
    color: #d3d3d3!important;
}
.color-white {
    color: #fff!important;
}

/* LINK */
a {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;  
}
a:hover {
    text-decoration: none;
    color: inherit;   
}
.decoration-link:hover {
    text-decoration: underline;
}

/* DISPLAYS */
.display-block {
    display: block;
}
.display-none {
    display: none;
}

/* WIDTH */
.width-fit-content {
    width: fit-content;
}
.width-100 {
    width: 100%;
}
.width-50 {
    width: 50%;
}
.width-140px {
    width: 140px;
}
/* HEIGHTS */
.height-100 {
    height: 100%;
}
.height-100px {
    height: 100px;
}
.height-80px {
    height: 80px;
}
.height-40px {
    height: 40px;
}

/* POSITIONS */
.position-relative {
    position: relative;
}
.object-fit-cover {
    object-fit: cover;
}

/* MARGINS */
.margin-0 {
    margin: 0;
}
.margin-top-40 {
    margin-top: 40px!important;
}
.margin-top-30 {
    margin-top: 30px!important;
}
.margin-top-20 {
    margin-top: 20px!important;
}
.margin-top-minus-200{
    margin-top: -200px!important;
}
.margin-bottom-40 {
    margin-bottom: 40px!important;
}
.margin-bottom-30 {
    margin-bottom: 30px!important;
}
.margin-bottom-20 {
    margin-bottom: 20px!important;
}
.margin-bottom-10 {
    margin-bottom: 10px!important;
}
.margin-left-10proc {
    margin-left: 10%!important;
}
.margin-left-20proc {
    margin-left: 20%!important;
}

/* PADDINGS */
.padding-top-200 {
    padding-top: 200px!important;
}
.padding-top-100 {
    padding-top: 100px!important;
}
.padding-bottom-100 {
    padding-bottom: 100px!important;
}
.padding-10 {
    padding: 10px;
}

/* GAP */
.gaps-100 {
    gap: 100px;
}
.gaps-40 {
    gap: 40px;
}
.gaps-30 {
    gap: 30px;
}
.gaps-20 {
    gap: 20px;
}
.gaps-10 {
    gap: 10px;
}
.gaps-5 {
    gap: 5px;
}

/* ALIGNS */
.special-align-item-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.align-item-center {
    align-items: center;
}

/* JUSTIFYS */
.justify-content-center {
    justify-content: center;
}
.justify-self-end {
    justify-self: end;
}
.justify-self-centr {
    justify-self: center;
}

/* OVERFLOWS */
.overflow-visible {
    overflow: visible!important;
}

/* Z-INDEXSES */
.z-index-1 {
    z-index: 1;
}
/* CONTAINERS */
.section-white-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    color: #202020;
    padding-bottom: 250px;
    overflow: hidden;
}
.section-yellow-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background: linear-gradient(360deg, rgba(255,138,0,1) 0%, rgba(250,183,2,1) 100%);
    color: #fff;
    padding-bottom: 250px;
    overflow: hidden;
}
.section-dark-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #202020;
    color: #ffffff;
    padding-bottom: 250px;
}
.section-dark-map-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #202020;
    background-image: url(../img/map.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 0;
    background-size: 120%;
    color: #ffffff;
    padding-bottom: 250px;
}
.content-container {
    position: relative;
    width: 1200px;
}
.content-container > H2 {
    line-height: 1.2;
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
}
.content-container > H3 {
    line-height: 1.2;
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
}
.flex-container-nowrap {
    display: flex;
    flex-wrap: nowrap;
}
.change-75-container {
    width: 75%;
}
.change-67-container {
    width: 67%;
}
.change-50-container {
    width: 50%;
}
.change-33-container {
    width: 33%;
}
.change-25-container {
    width: 25%;
}
.change-padding-20-container {
    padding: 20px;
}
.scroll-point-container {
    position: absolute;
    top: -100px;
}
.corner-block-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-top: -310px;
}
.container-for-rotate {
    position: absolute;
    top: 190px;
    left: -30px;
    width: 100%;
    height: fit-content;
}
.corner-block-white {
    position: relative;
    width: 105%;
    height: 300px;
    transform: rotate(7deg);
    background-color: #fff;
}
.corner-block-yellow {
    position: relative;
    width: 105%;
    height: 300px;
    transform: rotate(7deg);
    background-color: #fab702;
}
.corner-block-dark {
    position: relative;
    width: 105%;
    height: 300px;
    transform: rotate(7deg);
    background-color: #202020;
}
.img-container {
    width: 100%;
    height: inherit;
    object-fit: cover;
}
@media (max-width: 1220px) {
    .content-container {
        width: 95%;
        padding: 20px;
    }    
}
@media (max-width: 850px) {
    .change-50-container {
        width: 100%;
    }
    .change-67-container {
        width: 50%;
    }
    .change-33-container {
        width: 50%;
    }    
    .change-25-container {
        width: 50%;
    }
    .change-padding-20-container {
        padding: 0px;
    } 
}
@media (max-width: 500px) {
    .change-75-container {
        width: 100%;
    }
    .change-67-container {
        width: 100%;
    }
    .change-33-container {
        width: 100%;
    }
    .change-25-container {
        width: 100%;
    }
}
/* BATTONS */
.yellow-button {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background-color: #fab702;
    color: #fff;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}
.yellow-button:hover {
    color: #fff;
    background-color: #ff8a00;
    border: 0;
}
.white-border-button {
    display: flex;
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    background-color: unset;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    cursor: pointer;
}
.white-border-button:hover {
    color: #fff;
    background-color: #ffffff52;
}

.dark-border-button {
    display: flex;
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    background-color: unset;
    color: #202020;
    border: 1px solid #202020;
    border-radius: 20px;
    cursor: pointer;
}
.dark-border-button:hover {
    color: #202020;
}
.yellow-border-button {
    display: flex;
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    background-color: unset;
    color: #fab702;
    border: 1px solid #fab702;
    border-radius: 20px;
    cursor: pointer;
}
.yellow-border-button:hover {
    color: #fab702;
}
.white-accent-for-button {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: #fff;
    border-radius: 50%;
    animation-name: attention;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: ease-out;
    z-index: 0;
}
@keyframes attention {
    0% {
        opacity:1;
        transform: scale(10%);
    }
    100% {
        opacity: 0;
        transform: scale(200%);
    }   
}

/* TEXT */
.h1-special-bold {
    font-size: 230px;
    margin: 0;
    font-weight: bold;
    line-height: 230px;
}
.h2-special {
    font-size: 80px;
    margin: 0;
    font-weight: 100;
    line-height: 70px;
}
.h3-special-50 {
    font-size: 50px;
    margin: 0;
    font-weight: 100;
    line-height: 30px;
}
.h3-special {
    font-size: 30px;
    margin: 0;
    font-weight: 100;
    line-height: 30px;
}
.h4-special {
    font-size: 20px;
    margin: 0;
    font-weight: 100;
    line-height: 20px;
}
.p-special {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    margin: 0;
}
@media (max-width:850px) {
    .h1-special-bold {
        text-align: center;
    }
    .h2-special {
        text-align: center;
    }
    .p-special {
        text-align: center;
    } 
    
}
.font-roboto {
    font-family: Roboto, sans-serif;
}
.font-oswald {
    font-family: Oswald, sans-serif;
}
.text-align-left {
    text-align: left;
}
.text-align-right {
    text-align: right;
}
.text-align-center {
    text-align: center;
}
.font-12 {
    font-size: 12px;
}
.font-14 {
    font-size: 14px;
}
.font-18 {
    font-size: 18px;
}
.text-uppercase {    
    text-transform: uppercase;
}
.text-lowercase {    
    text-transform: lowercase;
}
.font-bold {
    font-weight: bold;
}
.text-border-top {
    padding-top: 10px;
    border-top: 3px solid #fab702;
}
.line-height-110perc {
    line-height: 110%!important;
}
.text-decoration-underline {
    text-decoration: underline;
}
