@font-face {
    font-family: 'Bebas Neue Pro';
    src:url('fonts/BebasNeuePro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Pro';
    src:url('fonts/BebasNeuePro-Book.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Pro';
    src:url('fonts/BebasNeuePro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    --main-color:#2256A7;
    --padding-bt: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
	display: block;
}

ul, li {
    list-style: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.container {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    position: relative;
}

p {
    margin-bottom: 60px;
}

h1 {
    font-size: 110px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
}

h2 {
    font-size: 100px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 50px;
    position: relative;
}

*::-webkit-scrollbar {
    -webkit-appearance: none;
    cursor: default;
}

*::-webkit-scrollbar:vertical {
    width: 4px;
    cursor: default;
}

*::-webkit-scrollbar:horizontal {
    height: 4px;
    cursor: default;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    cursor: default;
}

*::-webkit-scrollbar-track {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    background-color: #EFEFEF;
    cursor: default;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}


body {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 36px;
    line-height: 1.3;    
    font-weight: 300;
    color: #454545;
    overflow-x: hidden;  
}

header {
    position: absolute;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    padding-top: 40px;
}

header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav a {
    font-size: 24px;
    transition: all .3s;
}

header nav a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

header nav svg {
    display: block;
}

/* .main {
    height: 980px;
    position: relative;
    background: url(img/main_img.jpg) no-repeat;
    background-size: cover;
    padding: 200px 0 100px;
    display: flex;
    align-items: center;
    margin-bottom: var(--padding-bt);
} */

.main {
    height: 980px;
    position: relative;
    background: url(img/main_img.jpg) no-repeat;
    background-size: cover; 
    margin-bottom: var(--padding-bt);
    overflow: hidden;
}

.container.main-box {
    padding: 200px 0 100px;
    display: flex;
    align-items: start;
    height: 100%;
    justify-content: center;
    flex-direction: column;
}

.main-foto {
    position: absolute;
    right: -150px;
    bottom: 0;
}

.main h1  {
    max-width: 740px;
}

.main h1::before {
    width: 350px;
    height: 70px;
    content: '';
    background: var(--main-color);
    opacity: .1;
    border-radius: 20px;
    position: absolute;
    bottom: 125px;
    left: -14px;
}

.main .link {
    bottom: 30px;
    z-index: 1;
}

.main h1 + p {
    max-width: 670px;
    margin-bottom: 0;
}

.main h1 span {
    color: var(--main-color);
}

.main p a {
    font-weight: 400;
    text-decoration: underline;
    transition: all .3s;
}

.main p a:hover {
    color: var(--main-color);
    text-decoration: none;
}

.text {    
    max-width: 400px;
    position: absolute;
}

.text p {
    padding: 18px;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 0;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #00000040;
    background: #fff;
    position: relative;
    z-index: 2;
}

.text-1 { 
    top: 200px;
    right: 400px;
}

.text-1::after { 
    content: '';
    width: 30px;
    height: 30px;
    background: url(img/arrow.png) no-repeat;
    position: absolute;
    right: 30px;
    bottom: -30px;
}

.text-2::before { 
    content: '';
    width: 30px;
    height: 30px;
    background: url(img/arrow2.png) no-repeat;
    position: absolute;
    left: 30px;
    top: -30px; 
}

.text-2 { 
    top: 800px;
    right:  -100px;
    max-width: 320px;
}

.who {
    padding-bottom: var(--padding-bt);
}

.who-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 60px;
}

.who-text {
    padding-right: 40px;
}

.who-img {
    position: relative;
}

.who-img img {
    border-radius: 30px;
}

.who h2::before {
    width: 138px;
    height: 70px;
    content: '';
    background: var(--main-color);
    opacity: .1;
    border-radius: 20px;
    position: absolute;
    bottom: -5px;
    left: -14px;
}

.who p a {
    color: var(--main-color);
    text-decoration: underline;
    transition: all .3s;
}

.who p a:hover { 
    text-decoration: none; 
}

.who-box {
    background: #E6E6E6;
    padding: 50px 60px;
    border-radius: 20px;
}

.who-box strong {
    font-weight: 700;
    display: block;
    margin-bottom: 30px;
    font-size: 48px;
    line-height: 1.1;
}

.who-box strong span {
    color: var(--main-color);
}

.who-box p:last-child {
    margin: 0;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    align-items: center;
    padding-bottom: 60px;
}

.about-img img {
    box-shadow: 0px 0px 20px 0px #00000040;
    border-radius: 20px;
}

.about-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.about-imgs:not(:last-child) {
    margin-bottom: 60px;
}

.about-imgs img{
    box-shadow: 0px 0px 20px 0px #00000040;
    border-radius: 20px;
}

.about {
    padding-bottom: var(--padding-bt);
}

.about h2::before {
    width: 350px;
    height: 70px;
    content: '';
    background: var(--main-color);
    opacity: .1;
    border-radius: 20px;
    position: absolute;
    bottom: -5px;
    right: -14px;
}

.about h2 {
    max-width: 530px;
}

.conclusion {
    margin-bottom: var(--padding-bt);
}

.conclusion h2::before {
    width: 255px;
    height: 70px;
    content: '';
    background: var(--main-color);
    opacity: .1;
    border-radius: 20px;
    position: absolute;
    bottom: -5px;
    left: -14px;
}

.conclusion-row {
    display: grid;
    grid-template-columns: 580px 1fr;
    gap: 80px;
}

.conclusion-img img { 
    border-radius: 30px;
}

.conclusion-img  { 
    position: relative;
}

.link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    font-size: 16px;
    opacity: .5;
}

.conclusion-text .box {
    background: #E6E6E6;
    padding: 50px;
    border-radius: 20px;
}
.conclusion-text p{
    margin-bottom: 50px;
}

.conclusion-text .box span {
    font-weight: 700;
    color: var(--main-color);
}

footer {
    background: #E6E6E6;
    padding: 34px;
    font-size: 24px;
}

.btn-up {
    position: fixed;
    right: 50px;
    bottom: 30px;
    border-radius: 50px;
    cursor: pointer;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    z-index: 15;
    box-shadow: 0px 0px 20px 0px #00000040;
    background: #fff;

}

.btn-up_hide {
    display: none;
}

@media screen and (max-width: 1599px) { 
    .main-foto { 
        right: -40px; 
    }

    .text-1 { 
        right: 470px;
    }

    .text-2 {
        top: 730px;
        right: 0; 
    }
}

@media screen and (max-width: 1399px) { 

    .container {
        max-width: 1170px;
    }

    .main-foto { 
        max-width: 650px;
    }

    .main {
        height: 790px; 
    }

    .container.main-box {
        padding: 0; 
    }

    .main h1 + p {
        max-width: 650px; 
    }

    .text {
        max-width: 308px; 
        font-size: 20px;
    }

    .text-1 {
        right: 420px;
        top: 100px;
    }

    .text-2 {
        top: 590px;
        right: 0;
    }

    .about-imgs { 
        gap: 20px;
    }

    .conclusion-row { 
        grid-template-columns: 500px 1fr;
        gap: 35px;
    }

    body { 
        font-size: 32px; 
    }

    .conclusion-text p {
        margin-bottom: 30px;
    }

    .conclusion-text .box { 
        padding: 40px; 
    }

}

@media screen and (max-width: 1199px) {

    .container {
        max-width: 970px; 
    }

    p {
        margin-bottom: 40px;
    }

    body {
        font-size: 28px;
    }

    h2 {
        font-size: 80px; 
        margin-bottom: 40px; 
    }

    .conclusion h2::before {
        width: 210px; 
    }

    .conclusion-text .box {
        padding: 30px;
    }

    .about-imgs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about h2::before {
        width: 285px; 
        right: 12px;
    }

    .btn-up { 
        right: 30px; 
        border-radius: 30px; 
        width: 65px; 
        height: 85px; 
    }

    .who-row { 
        padding-bottom: 40px;
    }

    .who-text {
        padding-right: 0;
    }
    .who h2::before {
        width: 117px; 
    }

    .text-1 { 
        display: none;
    }

    .main h1 + p {
        max-width: 420px; 
        font-size: 24px;
    }
}

@media screen and (max-width: 991px) {

    .container {
        max-width: 740px;
    }

    .who-row {
        display: block; 
    }

    .who-box strong { 
        font-size: 40px; 
    }

    .who-box { 
        padding: 40px; 
    }

    .about-row {
        display: block; 
        padding-bottom: 40px;
    }

    .about-img {
        display: flex;
        justify-content: center;
    }

    .conclusion-row {
        display: block;  
    }

    .conclusion-img {
        position: relative;
        display: flex;
        justify-content: center;
        max-width: 580px;
        margin: 0 auto 40px;
    }

    .about h2::before { 
        right: auto;
        left: 152px;
    }

    .who-img { 
        max-width: 680px;
    }

    .main {
        height: auto;
        padding-top: 120px;
    }

    .main-foto {
        max-width: 650px;
        position: relative;
        order: 2;
    }

    .text-2::before { 
        z-index: 1;
    }

    .text-2 {
        top: auto;
        right: 40px;
        bottom: 95px;
    }
}

@media screen and (max-width: 767px) {

    .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px; 
    }

    .conclusion h2::before,
    .who h2::before,
    .about h2::before {
        content: none;
    }

    body {
        font-size: 26px;
    }

    .conclusion-text .box {
        padding: 20px;
    }

    .conclusion-text .box span br{
        display: none;
    }

    .conclusion-text p strong br {
        display: none;
    }

    h2 {
        font-size: 70px;
        margin-bottom: 35px;
    }

    p {
        margin-bottom: 30px;
    }

    .who-box {
        padding: 20px;
    }

    .who-box strong {
        font-size: 32px;
    }

    :root { 
        --padding-bt: 80px;
    }

    .btn-up {
        right: 15px;
        border-radius: 20px;
        width: 38px;
        height: 65px;
        padding: 10px;
    }

    header nav a {
        font-size: 20px; 
    }

    header nav { 
        gap: 20px;
    }

    h1 {
        font-size: 48px; 
    }

    .main h1 {
        max-width: 320px;
    }

    .main h1::before {
        width: 150px;
        height: 36px; 
        border-radius: 10px; 
        bottom: 53px;
        left: -5px;
    }

    .container.main-box {
        padding: 0 20px;
    }

    .main-foto {
        max-width: 100%;
        position: relative;
        order: 2;
        width: 100%;
        margin: 0 auto;
        right: auto;
    }

    .text-2 {
        top: auto;
        right: 20px;
        bottom: 50px;
    }

    .text p {
        padding: 15px;
        font-size: 20px; 
    }

    .text {
        max-width: 260px; 
    }

    .main .link {
        bottom: 20px;
        z-index: 1;
    }
}