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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
:root {
    --textColor: #fff;
}
body {
    background: linear-gradient(180deg, #3C4545 0%, #26CCC8 100%);
    background-repeat: no-repeat;
    min-height: 100vh;
}
.pattern__img1 {
    position: absolute;
    background-image: url(../img/pattern_1.png);
    top: 23px;
    left: 0;
    right: 0;
    max-width: 792px;
    height: 534px;
    margin: 0 auto;
}
.pattern__img2 {
    position: absolute;
    background-image: url(../img/pattern_2.png);
    top: 150px;
    left: 0;
    right: 0;
    max-width: 792px;
    height: 534px;
    margin: 0 auto;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    transition: all ease .3s;
}
.header {
    border-bottom: 0.6px solid var(--textColor);
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}
.logo {
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: -0.165px;
    color: var(--textColor);
}
.nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}
.nav__item:not(:last-child) {
    margin-right: 5px;
}

.social__item:hover {
    cursor: pointer;
    animation: bounce 1s;
}
@keyframes bounce {
	0%, 20%, 60%, 100% {
		transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		transform: translateY(-20px);
		transform: translateY(-20px);
	}

	80% {
		transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.box__title {
    font-weight: 800;
    font-size: 80px;
    line-height: 98px;
    letter-spacing: -0.165px;
    color: var(--textColor);
}
.box__desc {
    margin-top: 10px;
    font-weight: 400;
    font-size: 50px;
    line-height: 61px;
    letter-spacing: -0.165px;
    color: var(--textColor);
    margin-bottom: 40px;
}
.box__download {
    display: block;
    font-weight: 700;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.165px;
    text-transform: uppercase;
    color: var(--textColor);
    position: relative;
    margin-bottom: 18px;
}
.box__download svg {
    height: 14px;
    margin-left: 10px;
}
.box__icon a {
    width: 100%;
    text-decoration: none;
}
.box__icon a:hover img {
    cursor: pointer;
}
.box__icon a:not(:last-child) {
    margin-right: 10px;
}
.main__phone {
    z-index: 2;

}

@media (max-width: 1399px) {
    .container {
        padding: 0 20px;
    }
}
@media (max-width: 910px) {
    .header {
        display: none;
    }
    .main .container {
        flex-direction: column-reverse;
        margin-bottom: 50px;
    }
    .main__box {
        text-align: center;
    }
    .main__phone {
        margin-bottom: 30px;
        width: 211px;
        height: 433px;
    }
    .box__title {
        font-size: 40px;
        line-height: 49px;
    }
    .box__desc {
        font-size: 24px;
        line-height: 29px;
    }
    .box__download {
        font-size: 16px;
        line-height: 20px;
    }
    .box__download svg {
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 10px;
        height: 10px;
        margin-left:unset;
    }
    .pattern__img1,
    .pattern__img2 {
        background-size: cover;
    }
}
@media (max-width: 438px) {
    .box__icon {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
    .box__icon a:not(:last-child) {
        margin-right: unset;
    }
}

