@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Montserrat', sans-serif;
}


a {
    outline: none;
    transition: color .2s ease;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding: 0px 15px;
    margin: 0 auto;
}

.content-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100%;
	justify-content: flex-start;
}

.main {
    flex-grow: 1;
}

.header {
    padding: 30px 0px;
    background-color: #1d1b26;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.header-logo span {
    display: block;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

.header-logo:hover {
    color: #ffaa00;
}

.header-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.header-right_top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.header-right_phone {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    margin-right: 15px;
}

.header-right_phone:hover {
    color: #ffaa00;
}

.header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-social a {
    display: block;
    text-decoration: none;
    width: 24px;
    height: 24px;
    margin-left: 5px;
}

.header-social a:hover {
    transform: scale(1.1);
}

.header-social a svg {
    width: 100%;
    height: 100%;
}

.header-social a svg circle {
    fill: #ffaa00;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-menu nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    line-height: 15px;
}

.header-menu nav a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-menu nav a:hover {
    color: #ffaa00;
}

.header-menu nav span {
    display: inline-block;
    margin: 0 10px;
}

.main-block {
    width: 100%;
    min-height: calc(100vh - 119px);
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 44%, rgba(0, 0, 0, 0.52) 100%), linear-gradient(rgba(0, 0, 0, 0.37) 0%, rgba(255, 255, 255, 0) 34%), url("../img/main-bg.jpg"); /*url("../img/main-bg.webp");*/

    background-position: center;
    background-size: cover;
}

.main-content {
    padding-left: 50%;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 119px);
    justify-content: center;
}

.main-content h1 {
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-shadow: 1px 1px 1px #000000;
}

.main-content h1 span {
    display: block;
    font-weight: 700;
    font-size: 50px;
    line-height: 56px;
    color: #ffaa00;
    margin-bottom: 20px;
}

.main-content h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-shadow: 1px 1px 1px #000000;
    margin-top: 20px;
}

.main-slogan {
    margin-top: 20px;
    color: #ffaa00;
    letter-spacing: 1px;
}

.main-slogan span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 1px 1px 1px #000000;
}

.main-slogan span:nth-child(2) {
    margin-left: 50px;
}

.main-slogan span:nth-child(3) {
    margin-left: 100px;
}

.services-block {
    padding: 60px 0px;
}

.services-block_title {
    font-weight: 900;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.services-block_item {
    padding: 5px;
}

.services-block_bg {
    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 300px;
    position: relative;
}

.services-block_bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.services-block_content {
    padding: 30px;
    position: relative;
    z-index: 3;
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.services-block_content span {
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 1px;
    text-align: right;
}

.services-block_content a {
    text-decoration: none;
    text-transform: uppercase;
    color: #0a001f;
    background-color: #ffaa00;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    margin-top: 15px;
}

.services-block_content a:hover {
    color: #ffffff;
}

.footer {
    padding: 20px 0px;
    background-color: #1d1b26;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.footer-logo span {
    display: block;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.05em;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-logo:hover {
    color: #ffaa00;
}

.footer-wrapper .header-right_top {
    margin-bottom: 0px;
    flex-direction: column;
    align-items: flex-end;
}

.footer-wrapper .header-right_phone {
    margin: 0 0 10px 0px;
}

[class*="ymaps-2"][class*="-ground-pane"] {
    -webkit-filter: grayscale(100%);
}

.map-container {
    width: 100%;
    height: 450px;
}

#map {
    width: 100%;
    height: 100%;
    position: relative;
}

.contacts-items {
    padding: 30px;
    background-color: #1d1b26;
    position: absolute;
    z-index: 1;
    transform: translateY(20%);
    max-width: 350px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
    border-radius: 5px;
    color: #ffffff;
}

.contacts-item {
    margin-bottom: 20px;
}

.contacts-item label {
    font-size: 13px;
    opacity: .75;
    display: block;
    margin-bottom: 5px;
}

.contacts-item div {
    font-size: 16px;
    line-height: 1.2;
}

.contacts-item div a {
    font-size: 16px;
    color: inherit;
    display: block;
    text-decoration: none;
}

.contacts-item div a:hover {
    color: #ffaa00;
}

.clients-block {
    padding: 60px 0px;
}

.clients-block_title {
    font-weight: 900;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.clients-slider {
    position: relative;
    padding: 30px 0px;
}

.clients-item {
    text-align: center;
}

.clients-item img {
    height: 100px;
    filter: grayscale(100%);
}

.clients-item:hover img {
    filter: none;
}

.certificates-block {
    padding: 60px 0px;
}

.certificates-block_title {
    font-weight: 900;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.certificates-slider {
    position: relative;
    padding: 30px 0px;
}

.certificates-item {
    text-align: center;
}

.certificates-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.certificates-item img {
    /*height: 450px;*/
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

.certificates-item:hover img {
    filter: none;
}

.swiper-prev {
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 15%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 10;
    left: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-next {
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 15%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 10;
    right: 0;
    transform: translate(50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-next:hover, .swiper-prev:hover {
    background-color: #ffaa00;
}

.swiper-next:hover svg path, .swiper-prev:hover svg path {
    stroke: #ffffff;
}

.command-block {
    background-color: #1d1b26;
    padding: 60px 0px;
    color: #ffffff;
}

.command-block_title {
    font-weight: 900;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.command-block_main {
    margin-bottom: 30px;
}

.command-block_main img {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.command-block_peoples {
    justify-content: center;
}

.command-block_people {
    text-align: center;
    margin-bottom: 40px;
}

.command-block_people img {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.command-block_people:hover img {
    /*transform: scale(1.1);*/
}

.command-block_name {
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}

.command-block_staff {
    font-size: 13px;
    line-height: 16px;
}

.works-block {
    background-color: #1d1b26;
    padding: 60px 0px;
    color: #ffffff;
}

.showreel {
    text-align: center;
    margin-bottom: 30px;
}
.showreel_title {
    font-weight: 900;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.showreel_video {
    display: inline-block;
    text-decoration: none;
}

.showreel_video img {
    display: inline-block;
}

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
}

.video-item img {
    display: inline-block;
    width: 100%;
}

.video-item:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .25);
    z-index: 1;
}

.video-item:after {
    content: '';
    display: block;
    position: absolute;
    width: 76px;
    height: 76px;
    top: 50%;
    left: 50%;
    background-image: url('../img/play-button.svg');
    z-index: 2;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.video-item span {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
    width: 100%;
}

.video-item:hover:after {
    transform: translate(-50%, -50%) scale(1.1);
}

.works-list_title {
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.works-list_wrap {
    gap: 25px 0px;
}

.mob-menu_btn {
    display: none;
}

.mobile-menu {
    display: none;
}

.service_data {
    /*max-width: 1000px !important;*/
    padding: 20px 0px;
}

.service_data p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 15px;
}

.service_data ul, .service_data ol {
    margin-left: 15px;
}

.service_data ul li, .service_data ol li {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service_data_title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.brif-block {
    padding: 100px 0px;
    background-color: #ffaa00;
}

.brif-block_title {
    text-align: center;
    font-weight: 900;
    font-size: 44px;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #0a001f;
}

.brif-bottom {
    text-align: center;
}

.brif-btn {
    text-decoration: none;
    text-transform: uppercase;
    background-color: #0a001f;
    color: #ffaa00;
    padding: 20px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.brif-btn:hover {
    color: #ffffff;
}


.modal {
    display: none;
    width: 100%;
    max-width: 750px !important;
}

.modal-title {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 25px;
}

.modal form .form-row {

}

.modal form input[type='text'] {
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    font-family: inherit;
    padding: 10px 10px 10px 14px;
    font-size: 14px;
    line-height: 16px;
    color: #0a001f;
    height: 45px;
    outline: none;
    border: 2px solid #CFD3DE;
    margin-bottom: 15px;
    width: 100%;
}

.modal form textarea {
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    font-family: inherit;
    padding: 10px 10px 10px 14px;
    font-size: 14px;
    line-height: 16px;
    color: #0a001f;
    height: 70px;
    outline: none;
    border: 2px solid #CFD3DE;
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
}

.modal form select {
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    font-family: inherit;
    padding: 10px 10px 10px 14px;
    font-size: 14px;
    line-height: 16px;
    color: #0a001f;
    height: 45px;
    outline: none;
    border: 2px solid #CFD3DE;
    margin-bottom: 15px;
    width: 100%;
}

.modal form .form-row > label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal form .form-row .form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.modal form .form-row .form-checkboxes label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    margin: 0 15px 15px 0;
}

.modal form .form-row .form-checkboxes label input {
    margin-right: 5px;
}

.field__wrapper {
    width: 100%;
    position: relative;
    margin: 15px 0;
    text-align: center;
}

.field__file {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.field__file-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.field__file-fake {
    height: 45px;
    width: calc(100% - 130px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 10px 10px 14px;
    border: 2px solid #CFD3DE;
    border-radius: 4px 0 0 4px;
    border-right: none;
    font-size: 14px;
    line-height: 16px;
}

.field__file-button {
    width: 130px;
    height: 45px;
    background: #CFD3DE;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.modal form .form-row button {
    text-decoration: none;
    text-transform: uppercase;
    color: #0a001f;
    background-color: #ffaa00;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    font-family: inherit;
    border: none;
    outline: none;
    align-items: center;
    margin: 30px auto 0px;
    cursor: pointer;
}

.modal form .form-row button:hover {
    color: #ffffff;
}

.industries-block {
    padding: 60px 0;
    color: #0a001f;
    background-color: #ffaa00;
}

.industries-block_title {
    font-weight: 900;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industries-grid_item {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    position: relative;
    padding-left: 30px;
}

.industries-grid_item:before {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: 0;
    top: 4;
    background-image: url('../img/dot.svg');
    background-size: contain;
}


.pagetitle {
    font-weight: 900;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-top: 25px;
}

.service_photo {
    padding: 30px 0px;
}

.service_photo a {
    display: block;
    text-decoration: none;
}

.service_photo a img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.wow {
    /*visibility: hidden !important;*/
    /*-webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;*/
}

.swiper-wrapper {
	height: auto !important;
}

.footer-info {
	color: #fff;
	font-size: 12px;
	text-align:center;
	line-height: 18px;
}