* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 700;
    src: url('../fonts/Gilroy-Black.ttf');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 600;
    src: url('../fonts/Gilroy-Bold.ttf');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 900;
    src: url('../fonts/Gilroy-Extrabold.ttf');
}

body {
    background: #FFFFFF;
    font-family: 'Gilroy';
}

body .content p {
    margin: 0 0 15px 0;
}

body a {
    text-decoration: none;
}

body a:first-child {
    z-index: 10;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0 0 0;
}
.intro {
    position: relative;
    padding: 80px 0 69px 0;
    background: url('../img/bg.png') center / cover no-repeat;
}
.intro::before,
.intro::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
}
.intro::before {
    top: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.intro::after {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    transform: matrix(1, 0, 0, -1, 0, 0);
}
.header nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}
.header nav img {
    height: 35px;
}
.header nav ul {
    display: flex;
    margin: 0;
}
.header nav ul li {
    margin: 0 38px 0 0  ;
    list-style: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1A2339;
    transition: .3s;
    text-transform: capitalize;
}
.header nav ul li:hover {
    color: #2ECA5A;
}
.header nav ul li a {
    text-decoration: none;
    color: inherit;
}
.intro .body {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 678px;
    padding: 62px 0 0 0;
    z-index: 3;
}
.intro .body h1 {
    margin: 0 0 15px 0;
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    color: #1A2339;
}
.intro .body h1 span {
    color:  #FF3D00;
}
.intro .body p {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1A2339;
}
.intro .body a {
    margin: 30px 0 0 0;
    padding: 15px 45px;
    align-self: flex-start;
    text-decoration: none;
    background: #2ECA5A;
    border-radius: 10px;
    transition: .3s;
}
.intro .body a:hover {
    background: #FF3D00;
}
.intro .body a span {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    transition: .3s;
}
.burger {
    display: none;
}

.content {
    margin: 32px 0 0 0;
}
.content h2 {
    margin: 25px 0 15px 0;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 900;
    font-size: 28px;
    line-height: 35px;
    color: #FF3D00;
}
.content p,
.content ul li,
.content ol li {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #7B7B7B;
}
.content p {
    margin: 0 0 15px 0;
}
.content ul,
.content ol {
    margin: 0 0 15px 20px;
}

.container-error {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px);
}
.container-error h3 {
    margin: 0;
    color: #1A2339;
    font-size: 8em;
    line-height: 150%;
}
.container-error h4 {
    margin: 0;
    color: #FF3D00;
    font-size: 6em;
    line-height: 150%;
}

footer {
    margin: 32px 0;
}
footer .bor {
    border: 1px solid #565656;
    margin: 0 0 32px 0;
}
footer nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer nav img {
    height: 35px;
}
footer nav ul {
    display: flex;
    margin: 0;
}
footer nav ul li {
    margin: 0 0 0 38px;
    list-style: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1A2339;
    transition: .3s;
    text-transform: capitalize;
}
footer nav ul li:hover {
    color: #2ECA5A;
}
footer nav ul li a {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }
}

@media screen and (max-width: 1100px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 50px;
        max-width: 100%;
    }
    .burger {
        display: block;
        width: 30px;
        height: 20px;
        background: url('burger.svg') center / cover no-repeat;
        z-index: 10;
    }
    .header.active .burger {
        background-image: url('close.svg');
    }
    .header nav {
        position: static;
    }
    .header nav ul {
        position: absolute;
        top: -1500%;
        left: 0;
        display: flex;
        flex-direction: column;
        margin: 20px 0 0 0;
        padding: 80px 50px 50px 50px;
        width: 100%;
        z-index: 8;
        background: #FFFFFF;
        transition: .3s;
    }
    .header.active nav ul {
        top: 0;
    }
    .header nav ul li {
        display: flex;
        justify-content: flex-start;
        margin: 10px 0 0 0;
        color: #1A2339;
    }
    .header nav ul li a {
        padding: 20px;
        width: 100%;
    }
    .header nav ul li:hover {
        background: #2ECA5A;
        border-radius: 4px;
        color: #FFFFFF;
    }
    .header nav img {
        z-index: 10;
    }

    .container-error h3 {
        font-size: 5em;
    }
    .container-error h4 {
        font-size: 3em;
    }

    .border {
        margin: 0 0 20px 0;
        border: 1px solid #ECECEC;
    }
    footer nav ul {
        margin: 0 0 0 104px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer nav ul li {
        margin: 0 0 16px 0;
        width: 47%;
    }
}

@media screen and (max-width: 425px) {
    .container {
        padding: 0 15px;
    }
    body .content p {
        margin: 0 0 8px 0;
    }
    .header {
        padding: 22px 0 0 0;
    }
    .intro {
        padding: 80px 0 32px 0;
        background-image: url('../img/mob.png');
    }
    .intro::before {
        height: 50px;
    }
    .intro::after {
        opacity: 1;
        bottom: 0;
    }
    .header nav img {
        height: 20px;
    }
    .burger {
        width: 22px;
        height: 15px;
    }
    .intro .body {
        padding: 19px 0 0 0;
        max-width: 100%;
    }
    .intro .body h1 {
        margin: 0 0 8px 0;
        font-size: 18px;
        line-height: 23px;
    }
    .intro .body p {
        font-size: 12px;
        line-height: 15px;
    }
    .intro .body a {
        margin: 21.5px 0 0 0;
        padding: 12.5px 45px;
        border-radius: 10px;
    }
    .intro .body a span {
        font-size: 12px;
        line-height: 12px;
    }
    .header nav ul {
        top: -2550%;
    }
    .header nav ul {
        margin: 0;
        padding: 60px 15px 15px 15px;
    }
    .header .border {
        margin: 0 0 10px 0;
    }
    .header nav ul li {
        font-size: 12px;
        line-height: 15px;
    }
    .header nav ul li a {
        padding: 8px 13px;
    }
    .content {
        margin: 17px 0 0 0;
    }
    .content h2 {
        margin: 15px 0 8px 0;
        font-size: 16px;
        line-height: 20px;
    }
    .content p,
    .content ul li,
    .content ol li {
        margin: 0 0 8px 0;
        font-size: 12px;
        line-height: 15px;
    }
    .content ul,
    .content ol {
        margin: 0 0 0 15px;
    }

    .container-error h3 {
        font-size: 2em;
    }
    .container-error h4 {
        font-size: 1em;
    }

    footer {
        margin: 16px 0;
    }
    footer nav ul li {
        font-size: 12px;
        line-height: 15px;
    }
    footer nav img {
        height: 20px;
    }
    footer nav {
        align-items: flex-start;
    }
}
/* lang switcher */
.lang-switcher {
	width: 7%;
    display: flex;
    justify-content: space-between;
}
.lang-switcher img {
	height:40px !important;
}
@media screen and (max-width:768px) {
	.lang-switcher img {
		height:auto;
		width:100%;
	}
	.lang-switcher a {
		margin-right:20px;
	}
	.lang-switcher {
		width:50%;
		padding:0 !important;
		justify-content:center !important;
		position: relative;
   		z-index: 1000;
	}
}

@media (min-width:769px) and (max-width:1280px) {
	.lang-switcher {
		width:11%;
	}
}