@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Gilroy';
    font-size: 17px;
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    transition: all 0.2s;
    text-decoration: none;
    color: var(--blue-color);
}

p {
    line-height: 1.5;
}

h2 {
    text-align: center;
    font-weight: 800;
    font-size: 26px;
    color: var(--blue-color);
    text-transform: uppercase;
}

section {
    max-width: 1280px;
    margin: 0 auto 70px auto;
}

.menu li a:hover {
    color: var(--blue-color) !important;
}

.btn {
    background-color: var(--blue-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    display: block;
    width: max-content;
}

header {
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white-color);
    z-index: 2;
    box-shadow: 1px 2px 3px 0px #0000006b;
}

section.main_block1 {
    margin-top: 80px;
}

.header_line1 {
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: auto;
}

.header_line1 .menu li a:hover {
    border-bottom: 2px solid var(--green-color);
}

.header_line1 .menu li a {
    text-decoration: none;
    color: var(--text-primary-color);
}

.header_line1 .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.wrapper_single_post_header {
    height: 350px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.wrapper_info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

img.custom-logo {
    max-width: 100px;

}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wrapper_main_block1 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.wrapper_main_block1 {
    position: relative;
    /* background-color: #3498db; */
    overflow: hidden;
    color: var(--white-color);
}

.wrapper_main_block1::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    right: -10px;
    bottom: -10px;
    background-color: var(--bg-color);
    transform: rotate(-2deg) scaleY(0.9);
    z-index: -1;
}

.wrapper_main_block1_left {
    padding: 70px;
    width: 70%;
}

.main_block1_title {
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
    font-size: 26px;
}

.btn_main_block2 {
    margin-top: 25px;
}

.wrapper_about {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.wrapper_about_left {
    position: relative;
}

.wrap_about_more {
    position: absolute;
    bottom: 3px;
    left: -15px;
    color: #fff;
    background-color: var(--blue-color);
    padding: 10px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wrap_about_more_title {
    font-size: 60px;
}

.wrap_about_more_desc {
    width: 80px;
}

.b_title {
    font-size: 32px;
    color: var(--blue-color);
}

.wrap_item_services_title::before {
    content: "\2014";
    margin-inline: 5px;
    color: var(--blue-color);
    font-weight: 600;
}

span.wrap_item_services_title {
    font-size: 20px;
    font-weight: 600;
}

.wrapper_services {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px
}

.wrap_item_services {
    width: 45%;
}

.wrap_item_services_desc {
    margin-top: 5px;
}

.adv_icon {
    max-width: 80px;
}

.wrapper_advantages {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 70px;
}

.wrap_item_advantages {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wrapper_portfolio_photo {
    height: 350px;
}

.swiper-pagination-bullet {
    border: 1px solid #fff;
    opacity: 1;
}

.wrapper_contacts {
    position: relative;
    margin-inline: 30px;
}

.wrapper_contacts_info {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--blue-color);
    color: var(--white-color);
    padding: 25px;
    border-radius: var(--border-radius);
    position: absolute;
    bottom: 60px;
    left: 30px;
}

section.page_section {
    margin-top: 80px;
}

.wrap_cont_item {
    display: flex;
    flex-direction: column;
}

.citem {
    color: #fff;
    font-weight: 700;
}

.personal_data {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-block: 5px;
}

:root {
    --bg-color: #454545;
    --text-primary-color: #000;
    --blue-color: #97B3DB;
    --white-color: #fff;
    --border-radius: 8px;
}