* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --resizer: 1440;
    --black: rgba(14, 26, 43, 1);
    --green: rgba(41, 168, 104, 1);
    --white: rgba(247, 249, 252, 1);
    --yellow: rgb(228, 228, 38);
    --pulse: rgba(225, 225, 225, 0.4);
    --pulse-2: rgba(225, 225, 225, 0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
}

a:focus,
input:focus,
textarea:focus {
    outline: none;
}

.container {
    margin: 0 auto;
    max-width: calc(1200vw / var(--resizer) * 100);
    width: 100%;
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(12vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100);
    background: transparent;
    border-radius: calc(6vw / var(--resizer) * 100);
    border: none;
    cursor: pointer;
    transition: .4s background ease-in;
}

.button span {
    font-family: "Montserrat", sans-serif;
    font-size: calc(14vw / var(--resizer) * 100);
    font-weight: 500;
    line-height: calc(16vw / var(--resizer) * 100);
    color: var(--white);
    transition: .4s color ease-in;
}

.button._buttonColor {
    background: var(--green);
    border: calc(1.5vw / var(--resizer) * 100) solid var(--green);
    animation: pulse-2 2s infinite;
}

.button._pulse--tr {
    animation: pulse 2s infinite;
}

.button._buttonColor:hover {
    background: transparent;
}

.button._buttonColor span {
    color: var(--white);
}

.button._buttonColor:hover span {
    color: var(--green);
}

.button._buttonBorder {
    border: calc(1.5vw / var(--resizer) * 100) solid var(--white);
    animation: pulse-3 2s infinite;
}

.button._buttonBorder:hover {
    background: var(--white);
}

.button._buttonBorder:hover span {
    color: var(--green);
}

.button._buttonBorder2 {
    border: calc(1.5vw / var(--resizer) * 100) solid var(--green);
    animation: pulse-2 2s infinite;
}

.button._buttonBorder2:hover {
    background: var(--green);
}

.button._buttonBorder2 span {
    color: var(--green);
}

.button._buttonBorder2:hover span {
    color: var(--white);
}

.button._buttonWhite {
    border: calc(1.5vw / var(--resizer) * 100) solid var(--white);
    background: var(--white);
}

.button._buttonWhite:hover {
    background: var(--green);
}

.button._buttonWhite span {
    color: var(--green);
}

.button._buttonWhite:hover span {
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    padding: calc(20vw / var(--resizer) * 100) 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 calc(9vw / var(--resizer) * 100) calc(19vw / var(--resizer) * 100) 0 rgba(41, 168, 104, 0.27);
    z-index: 9;
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._logo {
    display: flex;
    height: calc(27vw / var(--resizer) * 100);
    width: auto;
    text-decoration: none;
}

._logo img {
    width: inherit;
    height: inherit;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

header nav ul li {
    margin: 0 calc(11.5vw / var(--resizer) * 100);
    font-size: calc(14vw / var(--resizer) * 100);
    font-weight: 500;
    line-height: calc(16vw / var(--resizer) * 100);
    text-align: left;
    color: var(--black);
    transition: .4s color ease-in;
}

header nav ul li:hover {
    color: var(--green);
}

header nav ul li a {
    text-decoration: none;
    color: inherit;
}

header .action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._socialBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 calc(15vw / var(--resizer) * 100) 0 0;
    width: calc(30vw / var(--resizer) * 100);
    height: calc(30vw / var(--resizer) * 100);
    text-decoration: none;
    transition: .4s transform ease-in;
}

._socialBtn:hover {
    transform: scale(1.1);
}

._socialBtn img {
    width: 100%;
    height: 100%;
}

header .action .actionRow {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: calc(130vw / var(--resizer) * 100);
}

header .action .actionRow a {
    position: absolute;
    bottom: 110%;
    left: 50%;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: calc(14vw / var(--resizer) * 100);
    font-weight: 500;
    line-height: calc(16vw / var(--resizer) * 100);
    text-align: center;
    text-decoration: none;
    color: var(--green);
    transform: translateX(-50%);
    transition: .4s color ease-in;
}

header .action .actionRow a:hover {
    color: var(--black);
}

header .action .button {
    padding: calc(6vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100);
}

main {
    display: flex;
    flex-direction: column;
}

main h2 {
    font-family: "Montserrat", sans-serif;
    font-size: calc(36vw / var(--resizer) * 100);
    font-weight: 700;
    line-height: calc(40vw / var(--resizer) * 100);
    color: var(--black);
}

main p {
    font-size: calc(18vw / var(--resizer) * 100);
    font-weight: 400;
    line-height: calc(22vw / var(--resizer) * 100);
}

.content ul,
.content ol {
    margin: 0 0 calc(10vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100);
}

.content li {
    font-size: calc(18vw / var(--resizer) * 100);
    font-weight: 400;
    line-height: calc(22vw / var(--resizer) * 100);
}

.intro {
    position: relative;
    padding: calc(150vw / var(--resizer) * 100) 0;
    background: linear-gradient(rgba(14, 26, 43, 0.75), rgba(14, 26, 43, 0.75)) center / cover no-repeat;
    height: 100vh;
}

.intro .row {
    display: flex;
    flex-direction: column;
}

.intro h1 {
    font-family: "Montserrat", sans-serif;
    font-size: calc(52vw / var(--resizer) * 100);
    font-weight: 700;
    line-height: calc(58vw / var(--resizer) * 100);
    text-align: center;
    align-self: center;
    color: var(--white);
    width: 60%;
}

.intro p {
    margin: calc(18vw / var(--resizer) * 100) 0 0 0;
    text-align: center;
    align-self: center;
    max-width: 50%;
    color: var(--white);
}

.intro .introButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: calc(22vw / var(--resizer) * 100) 0 0 0;
}

.intro .introButtons .button {
    margin: 0 calc(10vw / var(--resizer) * 100);
}

.down {
    position: absolute;
    left: 50%;
    bottom: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50vw / var(--resizer) * 100);
    height: calc(50vw / var(--resizer) * 100);
    transform: translateX(-50%);
    cursor: pointer;
    transition: .4s transform ease-in;
}

.down:hover {
    transform: translateX(-50%) scale(1.1);
}

.down img {
    width: 100%;
    height: 100%;
}

.aboutUs {
    padding: calc(200vw / var(--resizer) * 100) 0;
}

.aboutUs .row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aboutUs .row::before {
    content: '';
    position: absolute;
    bottom: 85%;
    left: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 80%;
    height: calc(156vw / var(--resizer) * 100);
    user-select: none;
    transform: translateX(-50%);
    z-index: -1;
}

.aboutUs .row img {
    width: 46%;
    height: auto;
    border-radius: calc(12vw / var(--resizer) * 100);
}

.aboutUs .aboutUsBody {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.aboutUs p {
    margin: calc(15vw / var(--resizer) * 100) 0 0 0;
}

.aboutUs .aboutUsRow {
    display: flex;
    align-items: center;
    margin: calc(30vw / var(--resizer) * 100) 0 0 0;
}

.aboutUs .aboutUsInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 calc(35vw / var(--resizer) * 100);
}

.aboutUs .aboutUsInfo .aboutUsInfoItem {
    display: flex;
    flex-direction: column;
    margin: 0 calc(20vw / var(--resizer) * 100) 0 0;
}

.aboutUs .aboutUsInfo .aboutUsInfoItem h3 {
    font-family: "Montserrat", sans-serif;
    font-size: calc(24vw / var(--resizer) * 100);
    font-weight: 600;
    line-height: calc(26vw / var(--resizer) * 100);
    text-align: center;
    align-self: center;
    color: var(--green);
}

.aboutUs .aboutUsInfo .aboutUsInfoItem span {
    margin: calc(5vw / var(--resizer) * 100) 0 0 0;
    font-size: calc(10vw / var(--resizer) * 100);
    font-weight: 500;
    line-height: calc(12vw / var(--resizer) * 100);
    text-align: center;
    align-self: center;
    color: var(--black);
}

.ourServices {
    padding: calc(70vw / var(--resizer) * 100) 0;
}

.ourServices .row {
    position: relative;
    display: flex;
    flex-direction: column;
}

.ourServices .row::before {
    content: '';
    position: absolute;
    bottom: 72%;
    left: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 80%;
    height: calc(156vw / var(--resizer) * 100);
    user-select: none;
    transform: translateX(-50%);
    z-index: -1;
}

.ourServices h2 {
    align-self: center;
}

.ourServices p {
    margin: calc(15vw / var(--resizer) * 100) 0 0 0;
    align-self: center;
}

.ourServices .ourServicesRow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(25vw / var(--resizer) * 100);
    margin: calc(70vw / var(--resizer) * 100) 0 0 0;
}

.ourServices .ourServicesRow .ourServicesItem {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(10vw / var(--resizer) * 100);
    width: 100%;
    height: calc(150vw / var(--resizer) * 100);
    border-radius: calc(8vw / var(--resizer) * 100);
    overflow: hidden;
}

.ourServices .ourServicesRow .ourServicesItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 26, 43, 0.55);
    z-index: 2;
    transition: .4s background ease-in-out;
}

.ourServices .ourServicesRow .ourServicesItem:hover::before {
    background: transparent;
}

.ourServices .ourServicesRow .ourServicesItem span {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: calc(16vw / var(--resizer) * 100);
    font-weight: 700;
    line-height: calc(18vw / var(--resizer) * 100);
    text-align: center;
    color: var(--white);
    z-index: 3;
    transition: .4s text-shadow ease-in-out;
}

.ourServices .ourServicesRow .ourServicesItem:hover span {
    text-shadow: 0 0 calc(10vw / var(--resizer) * 100) var(--black);
}

.ourServices .ourServicesRow .ourServicesItem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s transform ease-in-out;
    z-index: 1;
}

.ourServices .ourServicesRow .ourServicesItem:hover img {
    transform: scale(1.1);
}

.ourServices .button {
    margin: calc(15vw / var(--resizer) * 100) 0 0 0;
    align-self: center;
}

.whyChooseUs {
    padding: calc(70vw / var(--resizer) * 100) 0;
}

.whyChooseUs .row {
    position: relative;
    display: flex;
    flex-direction: column;
}

.whyChooseUs .row::before {
    content: '';
    position: absolute;
    bottom: 62%;
    left: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 80%;
    height: calc(156vw / var(--resizer) * 100);
    user-select: none;
    transform: translateX(-50%);
    z-index: -1;
}

.whyChooseUs h2 {
    align-self: center;
}

.whyChooseUs .whyChooseUsRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(10vw / var(--resizer) * 100);
    margin: calc(80vw / var(--resizer) * 100) auto 0 auto;
    width: 60%;
}

.whyChooseUs .whyChooseUsRowItem {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(10vw / var(--resizer) * 100);
    height: calc(140vw / var(--resizer) * 100);
    border-radius: calc(8vw / var(--resizer) * 100);
    background: var(--black);
}

.whyChooseUs .whyChooseUsRowItem h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: calc(125vw / var(--resizer) * 100);
    font-weight: 700;
    text-align: center;
    color: rgba(247, 249, 252, 0.09);
    user-select: none;
    transform: translate(-50%, -50%);
    transition: .4s transform ease-in-out;
}

.whyChooseUs .whyChooseUsRowItem:hover h3 {
    transform: translate(-50%, -50%) scale(1.1);
}

.whyChooseUs .whyChooseUsRowItem span {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: calc(14vw / var(--resizer) * 100);
    font-weight: 700;
    line-height: calc(16vw / var(--resizer) * 100);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.whyChooseUs .button {
    margin: calc(15vw / var(--resizer) * 100) 0 0 0;
    align-self: center;
}

.ourProjects {
    padding: calc(70vw / var(--resizer) * 100) 0;
}

.ourProjects .row {
    position: relative;
    display: flex;
    flex-direction: column;
}

.ourProjects .row::before {
    content: '';
    position: absolute;
    bottom: 61%;
    left: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 80%;
    height: calc(156vw / var(--resizer) * 100);
    user-select: none;
    transform: translateX(-50%);
    z-index: -1;
}

.ourProjects h2 {
    align-self: center;
}

.ourProjects p {
    margin: calc(15vw / var(--resizer) * 100) 0 0 0;
    align-self: center;
}

.ourProjectsRow {
    display: flex;
    gap: calc(10vw / var(--resizer) * 100);
    margin: calc(70vw / var(--resizer) * 100) 0 0 0;
	width: 100%;
}

.ourProjectsRow .ourProjectsRowItem {
	position: relative;
	flex: 1;
	height: calc(400vw / var(--resizer) * 100);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: calc(40vw / var(--resizer) * 100);
	cursor: pointer;
	overflow: hidden;
    box-shadow: 0 0 calc(12vw / var(--resizer) * 100) 0 rgba(14, 26, 43, 0.49);
	transition: all .5s ease-in-out;
}

.ourProjectsRow .ourProjectsRowItem.active {
	flex: 10;
	border-radius: calc(25vw / var(--resizer) * 100);
}

.steps {
    padding: calc(70vw / var(--resizer) * 100) 0;
}

.steps .row {
    position: relative;
    display: flex;
    flex-direction: column;
}

.steps .row::before {
    content: '';
    position: absolute;
    bottom: 60%;
    left: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 80%;
    height: calc(156vw / var(--resizer) * 100);
    user-select: none;
    transform: translateX(-50%);
    z-index: -1;
}

.steps h2 {
    align-self: center;
}

.steps .stepsRow {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: calc(100vw / var(--resizer) * 100) 0 0 0;
}

.steps .stepsRow img {
    width: 52%;
    height: auto;
    border-radius: calc(12vw / var(--resizer) * 100);
}

.steps .stepsBody {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.steps .stepsBody .stepsBodyItem {
    display: flex;
    align-items: center;
    margin: 0 0 calc(26vw / var(--resizer) * 100) 0;
}

.steps .stepsBody .stepsBodyItem span {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 calc(12vw / var(--resizer) * 100) 0 0;
    width: calc(30vw / var(--resizer) * 100);
    font-family: "Montserrat", sans-serif;
    font-size: calc(51vw / var(--resizer) * 100);
    font-weight: 500;
    text-align: center;
    color: var(--green);
}

.steps .stepsBody .stepsBodyItem span::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 55%;
    transform: translateX(-50%);
    width: calc(1.2vw / var(--resizer) * 100);
    height: calc(40vw / var(--resizer) * 100);
    background: rgba(0, 0, 0, 1);
}

.steps .stepsBody .stepsBodyItem:last-of-type span::after {
    display: none;
}

.steps .stepsBody .button {
    align-self: flex-start;
}

.contacts {
    padding: calc(70vw / var(--resizer) * 100) 0;
}

.contacts .row {
    position: relative;
    display: flex;
    flex-direction: column;
}

.contacts .row::before {
    content: '';
    position: absolute;
    bottom: 72%;
    left: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 80%;
    height: calc(156vw / var(--resizer) * 100);
    user-select: none;
    transform: translateX(-50%);
    z-index: -1;
}

.contacts h2 {
    align-self: center;
}

.contacts .contactsMap {
    margin: calc(100vw / var(--resizer) * 100) 0 0 0;
    width: 70%;
    height: calc(400vw / var(--resizer) * 100);
    align-self: center;
    border-radius: calc(12vw / var(--resizer) * 100);
}

.contacts .contactsRow {
    display: flex;
    justify-content: space-between;
    margin: calc(15vw / var(--resizer) * 100) 0 0 0;
    width: 70%;
    align-self: center;
    align-items: flex-start;
}

.contacts .contactsBody {
    display: flex;
    flex-direction: column;
}

.contacts .contactsBody p {
    margin: 0 0 calc(10vw / var(--resizer) * 100) 0;
}

.contacts .contactsBody p a {
    text-decoration: none;
    color: inherit;
    transition: .4s color ease-in;
}

.contacts .contactsBody p a:hover {
    color: var(--green);
}

.contacts .contactsBody ._social {
    display: flex;
}

.contacts .contactsButtons {
    display: flex;
}

.contacts ._buttonBorder2 {
    margin: 0 0 0 calc(10vw / var(--resizer) * 100);
}

footer {
    padding: calc(15vw / var(--resizer) * 100) 0 calc(5vw / var(--resizer) * 100) 0;
    background: var(--black);
}

footer .row {
    display: flex;
    flex-direction: column;
}

footer .footerTop {
    display: flex;
    justify-content: space-between;
}

footer .footerTopLeft {
    display: flex;
    flex-direction: column;
}

footer .footerTopLeft span {
    margin: calc(5vw / var(--resizer) * 100) 0 0 0;
    font-size: calc(12vw / var(--resizer) * 100);
    font-weight: 400;
    line-height: calc(14vw / var(--resizer) * 100);
    text-align: left;   
    color: var(--white);
}

footer .footerTopRight {
    display: flex;
    flex-direction: column;
}

footer .footerTopSocials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

footer .footerTopSocials a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 calc(10vw / var(--resizer) * 100);
    width: calc(15vw / var(--resizer) * 100);
    height: calc(15vw / var(--resizer) * 100);
}

footer .footerTopSocials a img {
    width: inherit;
    height: inherit;
}

footer .footerTopRight ul {
    margin: calc(5vw / var(--resizer) * 100) 0 0 0;
    list-style: none;
}

footer .footerTopRight ul li  {
    font-size: calc(12vw / var(--resizer) * 100);
    font-weight: 300;
    line-height: calc(14vw / var(--resizer) * 100);
    color: var(--white);
}

footer .footerTopRight ul li a {
    color: inherit;
    text-decoration: none;
}

footer .footerTopRight ul li:hover {
    color: var(--green);
}

footer .footerText {
    margin: calc(10vw / var(--resizer) * 100) 0 0 0;
    font-size: calc(12vw / var(--resizer) * 100);
    font-weight: 300;
    line-height: calc(14vw / var(--resizer) * 100);
    align-self: center;
    text-align: center;
    color: var(--white);
}

.modalWrapper {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: .3s all linear;
}

.modalWrapper.active {
    opacity: 1;
    visibility: visible;
}

.modalWrapper .modal {
    display: flex;
    flex-direction: column;
    padding: calc(20vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100) calc(40vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100);
    width: calc(330vw / var(--resizer) * 100);
    border-radius: calc(8vw / var(--resizer) * 100);
    background: var(--green);
}

.modalWrapper .modalClose {
    background: url('/wp-content/themes/twentytwentyfive/assets/images/close.svg') center / cover no-repeat;
    width: calc(16vw / var(--resizer) * 100);
    height: calc(16vw / var(--resizer) * 100);
    align-self: flex-end;
    border: none;
    cursor: pointer;
}

.modalWrapper form {
    display: flex;
    flex-direction: column;
    margin: calc(20vw / var(--resizer) * 100) 0 0 0;
}

.modalWrapper form input {
    margin: 0 0 calc(10vw / var(--resizer) * 100) 0;
}

.modalWrapper form input,
.modalWrapper form textarea {
    padding: calc(8vw / var(--resizer) * 100) calc(12vw / var(--resizer) * 100);
    border: none;
    font-family: "Montserrat", sans-serif;
    font-size: calc(14vw / var(--resizer) * 100);
    font-weight: 500;
    line-height: calc(16vw / var(--resizer) * 100);
    border-radius: calc(4vw / var(--resizer) * 100);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.modalWrapper form input::placeholder,
.modalWrapper form textarea::placeholder {
    color: var(--white);
}

.modalWrapper form button {
    margin: calc(32vw / var(--resizer) * 100) 0 0 0;
    padding: calc(10vw / var(--resizer) * 100) calc(50vw / var(--resizer) * 100);
    align-self: center;
}

.dg-control-round {
    background-color: var(--black);
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--pulse);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px var(--pulse-2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 var(--pulse-2);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--pulse);
        box-shadow: 0 0 0 0 var(--pulse);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px var(--pulse-2);
        box-shadow: 0 0 0 10px var(--pulse-2);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 var(--pulse-2);
        box-shadow: 0 0 0 0 var(--pulse-2);
    }
}

@-webkit-keyframes pulse-2 {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--green);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px var(--pulse-2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 var(--pulse-2);
    }
}

@keyframes pulse-2 {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--green);
        box-shadow: 0 0 0 0 var(--green);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px var(--pulse-2);
        box-shadow: 0 0 0 10px var(--pulse-2);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 var(--pulse-2);
        box-shadow: 0 0 0 0 var(--pulse-2);
    }
}

@-webkit-keyframes pulse-3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--white);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px var(--pulse-2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 var(--pulse-2);
    }
}

@keyframes pulse-3 {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--white);
        box-shadow: 0 0 0 0 var(--white);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px var(--pulse-2);
        box-shadow: 0 0 0 10px var(--pulse-2);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 var(--pulse-2);
        box-shadow: 0 0 0 0 var(--pulse-2);
    }
}

.burger {
    display: none;
}

header nav .action {
    display: none;
}

.message {
    position: fixed;
    top: 11%;
    right: calc(10vw / var(--resizer) * 100);
    padding: calc(4vw / var(--resizer) * 100) calc(16vw / var(--resizer) * 100);
    border-radius: calc(8vw / var(--resizer) * 100);
    background: var(--green);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    transition: .4s all linear;
}

.message.active {
    visibility: visible;
    opacity: 1;
}

.message p {
    font-size: calc(16vw / var(--resizer) * 100);
    line-height: calc(20vw / var(--resizer) * 100);
    font-weight: 400;
    color: var(--white);
}

.content {
    padding: calc(100vw / var(--resizer) * 100) 0 calc(50vw / var(--resizer) * 100) 0;
}

.content h1 {
    margin: 0 0 calc(30vw / var(--resizer) * 100) 0;
    font-family: "Montserrat", sans-serif;
    font-size: calc(48vw / var(--resizer) * 100);
    font-weight: 700;
    line-height: calc(50vw / var(--resizer) * 100);
    color: var(--black);
    word-wrap: break-word;
}

.content h2 {
    margin: calc(25vw / var(--resizer) * 100) 0 0 0;
}

@media screen and (max-width: 700px) {
    :root {
        --resizer: 400;
    }

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: calc(30vw / var(--resizer) * 100);
        height: calc(25vw / var(--resizer) * 100);
        cursor: pointer;
    }

    .burger span {
        height: calc(4vw / var(--resizer) * 100);
        background: var(--black);
        border-radius: calc(12vw / var(--resizer) * 100);

        display: block;
        width: 100%;

        transition: 0.35s ease;
        transform-origin: center;
        position: relative;
    }

    header.active .burger span:nth-child(1) {
        transform: translateY(calc(10vw / var(--resizer) * 100)) rotate(45deg);
    }

    header.active .burger span:nth-child(2) {
        opacity: 0;
    }

    header.active .burger span:nth-child(3) {
        transform: translateY(calc(-10vw / var(--resizer) * 100)) rotate(-45deg);
    }

    header {
        box-shadow: 0 calc(17vw / var(--resizer) * 100) calc(19vw / var(--resizer) * 100) 0 rgba(41, 168, 104, 0.27);
        transition: .4s all linear;
    }

    header.active {
        box-shadow: none;
    }

    header nav {
        position: absolute;
        top: calc(-500vw / var(--resizer) * 100);
        left: 0;
        display: flex;
        flex-direction: column;
        padding: calc(40vw / var(--resizer) * 100) 0 calc(90vw / var(--resizer) * 100) 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 calc(17vw / var(--resizer) * 100) calc(19vw / var(--resizer) * 100) 0 rgba(41, 168, 104, 0.27);
        transition: .4s all linear;
    }

    header.active nav {
        top: calc(67vw / var(--resizer) * 100);
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    header nav ul li {
        margin: 0 0 calc(15vw / var(--resizer) * 100) 0;
        font-size: calc(20vw / var(--resizer) * 100);
        line-height: calc(28vw / var(--resizer) * 100);
        text-align: center;
    }

    header .action._mb_h {
        display: none;
    }

    header nav .action {
        display: flex;
        flex-direction: column;
        margin: calc(10vw / var(--resizer) * 100) 0 0 0;
    }

    ._socialBtns {
        display: flex;
        justify-content: center;
        margin: 0 0 calc(15vw / var(--resizer) * 100) 0;
    }

    ._socialBtn {
        margin: 0 calc(7.5vw / var(--resizer) * 100);
    }

    header .action .actionRow {
        margin: calc(40vw / var(--resizer) * 100) 0 0 0;
    }

    header .action .actionRow a {
        bottom: 120%;
        font-size: calc(16vw / var(--resizer) * 100);
        line-height: calc(20vw / var(--resizer) * 100);
    }

    .container {
        max-width: calc(360vw / var(--resizer) * 100);
    }

    .intro {
        height: auto
    }

    .intro h1 {
        font-size: calc(36vw / var(--resizer) * 100);
        line-height: calc(39vw / var(--resizer) * 100);
        width: 100%;
    }

    .intro p {
        max-width: 100%;
    }

    main p {
        font-size: calc(16vw / var(--resizer) * 100);
        line-height: calc(20vw / var(--resizer) * 100);
    }

    .down {
        display: none;
    }

    .intro .introButtons {
        flex-direction: column;
        margin: calc(40vw / var(--resizer) * 100) 0 0 0;
    }

    .button {
        min-width: calc(200vw / var(--resizer) * 100);
    }

    .intro .introButtons .button:last-child {
        margin: calc(15vw / var(--resizer) * 100) 0 0 0;
    }

    .button span {
        font-size: calc(16vw / var(--resizer) * 100);
    }

    header .action .button {
        padding: calc(12vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100);
    }

    .aboutUs {
        padding: calc(70vw / var(--resizer) * 100) 0 calc(40vw / var(--resizer) * 100) 0;
    }

    .ourServices,
    .whyChooseUs,
    .ourProjects,
    .steps,
    .contacts {
        padding: calc(40vw / var(--resizer) * 100) 0;
    }

    .aboutUs .row {
        flex-direction: column;
    }

    .aboutUs .row::before {
        bottom: 96%;
        width: 100%;
        height: calc(90vw / var(--resizer) * 100);
    }

    .ourServices .row::before {
        bottom: 84.5%;
        width: 100%;
        height: calc(90vw / var(--resizer) * 100);
    }

    .whyChooseUs .row::before {
        bottom: 78%;
        width: 100%;
        height: calc(63vw / var(--resizer) * 100);
    }

    .ourProjects .row::before {
        bottom: 69%;
        width: 100%;
        height: calc(83vw / var(--resizer) * 100);
    }

    .steps .row::before {
        bottom: 83%;
        width: 100%;
        height: calc(90vw / var(--resizer) * 100);
    }

    .contacts .row::before {
        bottom: 75%;
        width: 100%;
        height: calc(116vw / var(--resizer) * 100);
    }

    .aboutUs .aboutUsBody {
        margin: calc(25vw / var(--resizer) * 100) 0 0 0;
        width: 100%;
    }

    main h2 {
        font-size: calc(28vw / var(--resizer) * 100);
        line-height: calc(28vw / var(--resizer) * 100);
    }

    .aboutUs .aboutUsRow {
        flex-direction: column-reverse;
        margin: calc(20vw / var(--resizer) * 100) 0 0 0;
    }

    .aboutUs h2,
    .ourServices h2,
    .whyChooseUs h2,
    .ourProjects h2,
    .steps h2 {
        text-align: center;
    }

    .aboutUs p,
    .ourServices p,
    .whyChooseUs p,
    .ourProjects p {
        text-align: center;
    }

    .aboutUs .aboutUsInfo {
        justify-content: space-evenly;
        margin: 0;
        width: 100%;
    }

    .aboutUs .aboutUsInfo .aboutUsInfoItem h3 {
        font-size: calc(32vw / var(--resizer) * 100);
        line-height: calc(32vw / var(--resizer) * 100);
    }

    .aboutUs .aboutUsInfo .aboutUsInfoItem {
        margin: 0;
    }

    .aboutUs .aboutUsInfo .aboutUsInfoItem span {
        margin: calc(5vw / var(--resizer) * 100) 0 0 0;
        font-size: calc(14vw / var(--resizer) * 100);
        font-weight: 300;
        line-height: calc(14vw / var(--resizer) * 100);
    }

    .aboutUs .button,
    .ourServices .button,
    .whyChooseUs .button,
    .ourProjects .button{
        margin: calc(25vw / var(--resizer) * 100) 0 0 0;
    }

    .contactsButtons .button {
        margin: calc(15vw / var(--resizer) * 100) 0 0 0;
    }

    .aboutUs .row img {
        width: 100%;
        border-radius: calc(8vw / var(--resizer) * 100);
    }

    .ourServices .ourServicesRow {
        grid-template-columns: repeat(1, 1fr);
    }

    .whyChooseUs .whyChooseUsRow {
        grid-template-columns: repeat(2, 1fr);
        margin: calc(45vw / var(--resizer) * 100) auto 0 auto;
        width: 100%;
    }

    .whyChooseUs .whyChooseUsRowItem {
        height: calc(120vw / var(--resizer) * 100);
    }

    .ourProjectsRow,
    .steps .stepsRow {
        margin: calc(45vw / var(--resizer) * 100) 0 0 0;
    }

    .ourProjectsRow .ourProjectsRowItem {
        height: calc(120vw / var(--resizer) * 100);
        border-radius: calc(8vw / var(--resizer) * 100);
    }

    .ourProjectsRow .ourProjectsRowItem.active {
        border-radius: calc(8vw / var(--resizer) * 100);
    }

    .steps .stepsRow {
        flex-direction: column-reverse;
    }

    .steps .stepsRow img {
        width: 100%;
        border-radius: calc(8vw / var(--resizer) * 100);
    }

    .steps .stepsBody {
        margin: calc(25vw / var(--resizer) * 100) 0 0 0;
        width: 100%;
    }

    .steps .stepsBody .button {
        align-self: center;
    }

    .steps .stepsBody .stepsBodyItem span {
        font-size: calc(38vw / var(--resizer) * 100);
    }

    .steps .stepsBody .stepsBodyItem span::after {
        top: 101%;
        left: 55%;
        width: calc(1vw / var(--resizer) * 100);
        height: calc(28vw / var(--resizer) * 100);
        background: rgba(0, 0, 0, 1);
    }

    .ourProjectsRow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts .contactsMap {
        margin: calc(70vw / var(--resizer) * 100) 0 0 0;
        width: 100%;
        height: calc(200vw / var(--resizer) * 100);
        border-radius: calc(8vw / var(--resizer) * 100);
    }

    .contacts .contactsRow {
        flex-direction: column;
        margin: calc(20vw / var(--resizer) * 100) 0 0 0;
        width: 100%;
    }

    .contacts .contactsBody {
        width: 100%;
    }

    .contacts .contactsBody p {
        text-align: center;
        align-self: center;
    }

    .contacts .contactsBody ._social {
        align-self: center;
    }

    .contacts .contactsButtons {
        flex-direction: column;
        align-self: center;
    }

    footer {
        padding: calc(15vw / var(--resizer) * 100) 0;
    }

    footer .footerTop {
        flex-direction: column;
    }

    footer .footerTopSocials {
        justify-content: center;
        margin: calc(20vw / var(--resizer) * 100) 0;
    }

    footer .footerTopSocials a {
        margin: 0 calc(10vw / var(--resizer) * 100);
        width: calc(20vw / var(--resizer) * 100);
        height: calc(20vw / var(--resizer) * 100);
    }

    footer .footerTopRight ul {
        display: flex;
        justify-content: center;
        margin: 0;
    }
    
    .content h1 {
        font-size: calc(36vw / var(--resizer) * 100);
        line-height: calc(36vw / var(--resizer) * 100);
    }
    
    .content li {
        font-size: calc(16vw / var(--resizer) * 100);
        line-height: calc(18vw / var(--resizer) * 100);
    }
}