*,
*::before,
*::after {
	margin: 0;
	padding: 0;

	border: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
    color: #fff;
}

ul,
ol,
li {
	list-style: none;
}

img {
	vertical-align: top;
}

html,
body {
	position: relative;

	font-family: 'Calibri', sans-serif;
    background: #020955;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 18.76px;
	text-wrap: balance;
	letter-spacing: 0;

	scroll-behavior: smooth;
}

.header-container {
    padding: 20px;
    background: #020955;
    border-bottom: 1px solid #fd7e01;
}

header > .contacts {
    display: flex;
    justify-content: end;
    padding: 20px 0;
    gap: 60px;
}

header > .contacts > .phone {
    margin-right: 20px;
}

header > .contacts > a {
    font-size: 18px;
}

.logo {
    width: 200px;
    padding-top: 30px;
}

.logo-text {
    padding: 10px 20px 0;
    font-size: 32px;
}

main > p {
    font-size: 40px;
}

.hero-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-section > .first {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 110%;
}

.hero-section > h1 {
    padding-top: 80px;
    font-size: 48px;
    color: #fd7e01;
    text-align: center;
    line-height: 105%;
}

.hero-section > .second {
    padding: 80px 100px;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
    text-wrap: wrap;
}

.technical-services {
    display: flex;
    background: #fff;
    padding: 50px 100px;
    color: #020955;
}

.technical-services > div {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.technical-services > div > h2 {
    font-size: 36px;
    padding-top: 40px;
}

.technical-services > div > p {
    font-size: 18px;
    line-height: 115%;
}

.technical-services > img {
    width: 50%;
}

.wrapper {
    padding: 100px 100px 140px;
    display: flex;
}

.wrapper > img {
    width: 50%;
    padding-top: 60px;
}

.wrapper > div > h2 {
    font-size: 36px;
    padding-top: 30px;
    color: #fd7e01;
}

.wrapper > div {
    padding-left: 80px;
}

.wrapper > div > ul {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wrapper > div > ul > li {
    font-size: 22px;
    line-height: 115%;
}

.contacts-section {
    padding: 60px 100px 140px;
    background-color: #fff;
    color: #020955;
}

.contacts-section > address > span > a,
.contacts-section > address > a {
    color: #020955;
    font-size: 24px;
}

.contacts-section > h2 {
    font-size: 48px;
    text-align: center;
}

address {
    padding-top: 50px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

address > span {
    display: flex;
    font-size: 24px;
    gap: 10px;
    line-height: 105%;
}

@media(max-width:1024px) {
    .technical-services {
        padding: 50px 20px;
    }

    .wrapper {
        padding: 50px 20px 140px;
    }

    .contacts-section {
        padding: 60px 20px;
    }
}

@media(max-width:768px) {
    .hero-section > .second {
        padding: 60px 20px;
    }

    .technical-services {
        flex-direction: column;
    }

    .technical-services > div > p {
        text-wrap: wrap;
    }

    .technical-services > img {
        width: 100%;
    }

    .wrapper {
        flex-direction: column-reverse;
    }

    .wrapper > img {
        width: 100%;
    }

    .wrapper > div {
        padding-left: 20px;
    }
}

@media(max-width:375px) {
    header > .contacts {
        justify-content: center;
    }

    header > .contacts > .phone {
        margin-right: 0;
    }

    .hero-section > .second {
        padding: 60px 20px;
    }


}