/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

#wpadminbar {
    display: none;
}

:root {
    /* size */
    --S-10: 10px;
    --S-14: 14px;
    --S-15: 15px;
    --S-16: 16px;
    --S-18: 18px;
    --S-20: 20px;
    --S-24: 24px;
    --S-30: 30px;
    --S-32: 32px;
    --S-40: 40px;
    --S-80: 80px;

    /* weight */
    --W-700: 700;
    --W-600: 600;
    --W-500: 500;
    --W-400: 400;

    /* line-height */
    --LH-27: 27px;
    --LH-24: 24px;

    /* border-radius */
    --BR-5: 5;
    --BR-10: 10px;
    --BR-20: 20px;

    /* colors */
    --BG-COLOR: #EBEBEB;
    --green: #226160;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', serif;
}

html, body {
    margin-top: 0 !important;
}

body {
    background-color: var(--BG-COLOR);
}

.container {
    width: 90%;
    max-width: 1440px;
    background-color: transparent;
    margin: auto;
}

.article-container {
    width: 90%;
    max-width: 1100px;
    background-color: transparent;
    margin: auto;
}

.container_wrap {

}

.section {

}

a{
    text-decoration: none;
}

.green-text {
    color: var(--green);
}


/*---------- btn-styles --------------*/

.black-btn {
    background-color: #010504;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: var(--W-700);
    font-size: var(--S-14);
    padding: 10px 20px;
    transition: background-color ease-in-out 0.3s;
}

.black-btn:hover{
    background-color: var(--green);
}

.contact-form-1 input[type="submit"]{
    transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
}

.contact-form-1 input[type="submit"]:hover{
    background-color: var(--green);
    color: white;
}


/*-------------- HOME PAGE -------------*/

/*------------- section-1 --------------*/

.home-page-section-1 {
    display: flex;
    gap: 15px;
    margin-top: 200px;
}

.home-page-section-1 .right-block{
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
}

.home-page-section-1 .left-block {
    max-width: 900px;
}

.home-page-section-1 .right-block>div{
    max-width: 300px;
}

.home-page-section-1 h1 {
    font-size: var(--S-20);
    text-transform: uppercase;
    font-weight: var(--W-700);
    letter-spacing: 2px;
    width: max-content;
    padding: 10px;
    background-color: #D9D9D9;
    margin-bottom: 50px;
}

.home-page-section-1 .company-name {
    font-size: 200px;
    text-transform: capitalize;
    display: flex;
    font-weight: var(--W-700);
    margin-bottom: 80px;
}

.home-page-section-1 .description,
.home-page-section-1 .text-1 {
    font-size: var(--S-18);
	font-weight: var(--W-600);
	display: inline-block;
}

.home-page-section-1 .text-1 {
	margin-top: 30px;
}

.home-page-section-1 .icons-block {
    display: flex;
    gap: 15px;
}

.home-page-section-1 .icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.home-page-section-1 .icon img {
    height: 25px;
    transition: opacity 0.3s;
}

.home-page-section-1 .icon span {
    display: none;
    font-size: var(--S-14);
    background-color: var(--green);
    color: white;
    position: absolute;
    top: -21px;
    left: 50%;
    padding: 1px 4px;
}

.home-page-section-1 .icon:hover img {
    content: url('../img/ua-icon-colored.svg');
}

.home-page-section-1 .icon.ua:hover img {
    content: url('../img/ua-icon-colored.svg');
}

.home-page-section-1 .icon.eu:hover img {
    content: url('../img/eu-icon-colored.svg');
}

.home-page-section-1 .icon.usa:hover img {
    content: url('../img/usa-icon-colored.svg');
}

.home-page-section-1 .icon:hover span {
    display: block;
}

.home-page-section-1 .text-2,
.home-page-section-1 .text-3 {
    font-size: var(--S-15);
    font-style: italic;
    display: block;
    margin-top: 20px;
}

.home-page-section-1 .bg-img-1 {
    position: absolute;
    top: -24px;
    right: -90px;
    z-index: -100;
    scale: 0.7;
}

.home-page-section-1 .black-btn {
    display: inline-block;
    margin-top: 50px;
}



/*------------- section-2 --------------*/


.home-page-section-2{
    margin-top: 95px;
}

.home-page-section-2 h2{
    font-size: 60px;
    font-weight: var(--W-400);
}

.home-page-section-2 .services{
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    transition: border-color 0.3s ease-in-out;
    gap: 40px;
    justify-content: space-between;
    cursor: pointer;
}

.home-page-section-2 .service-card{
    max-width: 400px;
    border-left: 2px solid #D9D9D9;
    padding-left: 15px;
}

.service-card h3{
    font-size: var(--S-16);
    font-weight: var(--W-600);
    color: #010504;
    margin-bottom: 15px;
}

.service-card p{
    font-size: var(--S-16);
    font-weight: var(--W-400);
    color: #525558;
}

.service-card .number {
    font-size: 40px;
    font-weight: var(--W-400);
    color: #D9D9D9;
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s ease-in-out;
}

.service-card:hover .number{
    color: var(--green);
}

.service-card:hover{
    border-color: var(--green);
}


/*------------- section-with-form --------------*/

.container-with-form {
    /*min-height: 800px;*/
    width: 100%;
    max-width: unset;
}

.home-page-contact-section {
    position: relative;
    right: 0;
    left: 0;
    background: #010504;
    color: white;
    margin-top: 200px;
}

.home-page-contact-section .bg-img-top,
.home-page-contact-section .bg-img-bottom {
    max-width: 100%;
    /*position: absolute;*/
}

.home-page-contact-section .bg-img-top{
    transform: translateY(-96%);
}

.home-page-contact-section .bg-img-bottom{
    /*transform: translateY(-5%);*/
    margin-bottom: -4%;
}

.home-page-contact-section .top-block{
    width: 90%;
    display: flex;
    /*height: 265px;*/
    max-width: 1440px;
    margin: auto;
    margin-bottom: 70px;
}

.home-page-contact-section .top-block div{
    width: 50%;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: start;
}

.home-page-contact-section .top-block img{
    position: absolute;
    top: -340px;
    right: -100px;
    scale: 0.8;
}

.home-page-contact-section .top-block h2{
    font-size: 90px;
    font-weight: var(--W-700);
    letter-spacing: 0;
    line-height: 90px;
    text-transform: uppercase;
}

.home-page-contact-section .top-block span{
   font-size: var(--S-20);
    font-weight: var(--W-400);
    max-width: 250px;
    margin-left: 10%;
}




.page-template-home .other-articles-section{
    margin-top: 150px;
}



/*-------------- SERVICE COST PAGE -------------*/

/*------------cost-page-section-1---------------*/


.cost-page-section-1 {
    margin-top: 200px;
}

.cost-page-section-1 h2{
    font-size: 90px;
    font-weight: var(--W-700);
     margin-bottom: 200px;
}

.cost-page-section-1 .titles{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
}

.cost-page-section-1 .titles span{
    font-size: var(--S-18);
    font-weight: var(--W-500);
    color: #525558;
}

.cost-page-section-1 .service-pricing {

}

.cost-page-section-1 .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 15px 0;
    border-bottom: 1px solid;
    border-color: #525558;
    cursor: pointer;
    transition: border-color ease-in-out 0.3s;

}

.cost-page-section-1 .service-title {
    font-size: 22px;
    font-weight: var(--W-500);
    color: #010504;
    margin-right: 20px;
    transition: color ease-in-out 0.3s;
}

.cost-page-section-1 .service-description {
    font-size: 22px;
    color: #010504;
    font-style: italic;
    font-weight: 200;
    transition: color ease-in-out 0.3s;
}

.cost-page-section-1 .service-cost {
    font-size: 22px;
    font-weight: var(--W-500);
    color: #525558;
    min-width: max-content;
    transition: color ease-in-out 0.3s;
}

.cost-page-section-1 .service-item:hover{
    border-color: var(--green);
}

.cost-page-section-1 .service-item:hover .service-cost,
.cost-page-section-1 .service-item:hover .service-description,
.cost-page-section-1 .service-item:hover .service-title {
    color: var(--green);
}




/*------------cost-page-section-2---------------*/

.cost-page-section-2 {
    position: absolute;
    right: 0;
    left: 0;
    background: #010504;
    color: white;
    margin-top: 200px;
}

.cost-page-section-2 .bg-img-top,
.cost-page-section-2 .bg-img-bottom {
    max-width: 100%;
    position: absolute;
}

.cost-page-section-2 .bg-img-top{
    transform: translateY(-96%);
}

.cost-page-section-2 .bg-img-bottom{
    transform: translateY(-5%);
}

.cost-page-section-2 .container{
    display: flex;
    flex-direction: row;
    padding: 50px 0;
}

.cost-page-section-2 .left,
.cost-page-section-2 .right{
    width: 50%;
}

.cost-page-section-2 h2{
    font-size: var(--S-40);
    font-weight: var(--W-500);
    margin-bottom: 40px;
}

.cost-page-section-2 h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.cost-page-section-2 p{
    font-size: var(--S-15);
    font-weight: var(--W-500);
    margin-bottom: 30px;
    display: block;
}





/*-------------- ABOUT US PAGE -------------*/

/*--------- about-us-page-section-1 ------------*/


.about-us-page-section-1 {
    margin-top: 200px;
}

.about-us-page-section-1 h2{
    font-size: 90px;
    font-weight: var(--W-700);
    margin-bottom: 200px;
}

.about-us-page-section-1 .description {
    display: flex;
}

.about-us-page-section-1 .description .arrow {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: end;
}

.about-us-page-section-1 .description .text {
    width: 50%;
    font-size: 28px;
    font-weight: 500;
}

.about-us-page-section-1 .description .text .white-text{
    color: white;
}

.about-us-page-section-1 .description .text .green-background {
    background-color: var(--green);
    padding-left: 3px;
    font-weight: 700;
}

.about-us-page-section-1 .description .text .italic {
    font-weight: 100;
    font-style: italic;
}

.about-us-page-section-1 .description .text .small-text{
    font-size: 18px;
    display: block;
    margin-top: 15px;
    font-weight: 400;
}



    /*----- about-us-page-section-2 (group-1) -----*/

.about-us-page-section-2 {
    position: absolute;
    right: 0;
    left: 0;
    background: #010504;
    color: white;
    margin-top: 200px;
}

.about-us-page-section-2 .bg-img-top,
.about-us-page-section-2 .bg-img-bottom {
    max-width: 100%;
    position: absolute;
}

.about-us-page-section-2 .bg-img-top{
    transform: translateY(-96%);
}

.about-us-page-section-2 .bg-img-bottom{
    transform: translateY(-5%);
}

.about-us-page-section-2 .container{
    display: flex;
    flex-direction: row;
    padding: 80px 0;
}

.about-us-page-section-2 .left,
.about-us-page-section-2 .right{
    width: 50%;
}

.about-us-page-section-2 h2{
    font-size: var(--S-40);
    font-weight: var(--W-500);
    margin-bottom: 40px;
}

.about-us-page-section-2 h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.about-us-page-section-2 p{
    font-size: var(--S-15);
    font-weight: var(--W-500);
    margin-bottom: 30px;
    display: block;
}



/*----- about-us-page-section-2 (group-2) -----*/

.about-us-page-section-2 .group-2 .custom-heading p {
    width: 100%;
    margin-bottom: 0;
    font-size: 50px;
}

.about-us-page-section-2 .group-2 .custom-heading{
    margin-left: -300px;
    margin-bottom: 60px;
}

.about-us-page-section-2 .group-2 .custom-heading p.left{
    text-align: left;
}

.about-us-page-section-2 .group-2 .custom-heading p.center{
    text-align: center;
}

.about-us-page-section-2 .group-2 .custom-heading p.right{
    text-align: right;
}

.about-us-page-section-2 .group-2 .description p{
    margin-bottom: 15px;
}



/*----- about-us-page-section-2 (group-3) -----*/

.about-us-page-section-2 .group-3 .subtitle {
    display: block;
    margin-bottom: 40px;
}
.about-us-page-section-2 .group-3 .right h2 {
    margin-bottom: 15px;
}

.about-us-page-section-2 .group-3
.service-cost-item h3 {
    position: relative;
    padding-left: 1.2em;
}

.about-us-page-section-2 .group-3
.service-cost-item h3::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 22px;
    line-height: 1;
}



/*-------------- CONTACTS PAGE -------------*/

/*--------- contacts-page-section-1 ------------*/


.contacts-page-section-1 {
    margin-top: 200px;
}

.contacts-page-section-1 h1{
    font-size: 90px;
    font-weight: var(--W-700);
    margin-bottom: 200px;
}

.contacts-page-section-1 .description {
    display: flex;
}

.contacts-page-section-1 .description .arrow {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: end;
}

.contacts-page-section-1 .description .text {
    width: 50%;
    font-size: 28px;
    font-weight: var(--W-400);
    color: #010504;
}

.contacts-page-section-1 .description .text .white-text{
    color: white;
}

.contacts-page-section-1 .description .text .green-background {
    background-color: var(--green);
    padding-left: 3px;
    font-weight: 700;
}

.contacts-page-section-1 .description .text .italic {
    font-weight: 100;
    font-style: italic;
}

.contacts-page-section-1 .description .text .small-text{
    font-size: 18px;
    display: block;
    margin-top: 15px;
    font-weight: 400;
}

.page-template-contacts #top-element-footer{
    display: none;
}



/*----- contacts-page-section-2 (group-1) -----*/

.contacts-page-section-2 {
    right: 0;
    left: 0;
    background: #010504;
    color: white;
    margin-top: 200px;
}

.container-contacts-page-section-2 {
    width: 100%;
    max-width: unset;
}

.contacts-page-section-2 .bg-img-top,
.contacts-page-section-2 .bg-img-bottom {
    max-width: 100%;
    position: absolute;
}

.contacts-page-section-2 .bg-img-top{
    transform: translateY(-96%);
}

.contacts-page-section-2 .container{
    display: flex;
    flex-direction: row;
    padding: 80px 0;
}

.contacts-page-section-2 .left,
.contacts-page-section-2 .right{
    width: 50%;
}

.contacts-page-section-2 h2{
    font-size: var(--S-40);
    font-weight: var(--W-500);
    margin-bottom: 20px;
}

.contacts-page-section-2 h3{
    font-size: var(--S-16);
    margin-bottom: 50px;
    font-weight: var(--W-600);
}

.contacts-page-section-2 p{
    font-size: var(--S-15);
    font-weight: var(--W-500);
    margin-bottom: 30px;
    display: block;
}

.contacts-page-section-2 .right .contact-item {
    margin-bottom: 40px;
}

.contacts-page-section-2 .right .contact-item:last-child {
    display: flex;
    flex-direction: column;
}

.contacts-page-section-2 .right .contact-item:last-child a{
    margin-bottom: 5px;
}

.contacts-page-section-2 .right .contact-item .title{
    display: block;
    font-size: var(--S-16);
    color: var(--green);
    font-weight: var(--W-500);
}

.contacts-page-section-2 .right .contact-item a{
    text-decoration: none;
    font-size: 40px;
    color: white;
    font-weight: var(--W-500);
}

.contacts-page-section-2 .right .contact-item a:hover{
    color: var(--green);
}



/*----- contacts-page-section-2 (group-2) -----*/

.about-us-page-section-2 .group-2 .custom-heading p {
    width: 100%;
    margin-bottom: 0;
    font-size: 50px;
}

.about-us-page-section-2 .group-2 .custom-heading{
    margin-left: -300px;
    margin-bottom: 60px;
}

.about-us-page-section-2 .group-2 .custom-heading p.left{
    text-align: left;
}

.about-us-page-section-2 .group-2 .custom-heading p.center{
    text-align: center;
}

.about-us-page-section-2 .group-2 .custom-heading p.right{
    text-align: right;
}

.about-us-page-section-2 .group-2 .description p{
    margin-bottom: 15px;
}




/*-------------- PRIVACY POLICY PAGE -------------*/

/*--------- policy-page-section-1 ------------*/


.policy-page-section-1 {
    margin-top: 200px;
    margin-bottom: 80px;
}

.policy-page-section-1 h1{
    font-size: 90px;
    font-weight: var(--W-700);
    margin-bottom: 300px;
    max-width: 1150px;
}

.policy-page-section-1 .description {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
}


/*--------- policy-page-section-2 ------------*/


.policy-page-section-2 h3{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.policy-page-section-2 .item {
    margin-bottom: 50px;
}

.policy-page-section-2 .item .answer {
    font-size: var(--S-18);
    font-weight: var(--W-400);
    line-height: 26px;

}

.policy-page-section-2 .item .answer li {
    margin-left: 30px;
}





/*-------------- BLOG PAGE -------------*/

/*--------- blog-page-section-1 ------------*/



.blog-page-section-1 {
    margin-top: 200px;
}

.blog-page-section-1 h1{
    font-size: 90px;
    font-weight: var(--W-700);
    margin-bottom: 200px;
}

.blog-page-section-1 .description {
    display: flex;
}

.blog-page-section-1 .description .arrow {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: end;
}

.blog-page-section-1 .description .text {
    width: 50%;
    display: flex;
    font-size: 36px;
    font-weight: var(--W-400);
    justify-content: right;
}

.blog-page-section-1 .description .text div{
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-page-section-1 .industry-title {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.blog-page-section-1 .search-toggle .search-label {
    margin-left: 6px;
}

.blog-page-section-1 #industry-list {
    list-style: none;
    padding: 15px;
    margin: 45px 0 0 0;
    position: absolute;
    background-color: var(--green);
    color: white;
    font-size: var(--S-18);
    font-weight: var(--W-400);
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: white transparent;
    z-index: 2;
}

.blog-page-section-1 #industry-list::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}

.blog-page-section-1 #industry-list::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 4px;
}

.blog-page-section-1 #industry-list::-webkit-scrollbar-track {
    background: transparent;
}

.blog-page-section-1 #industry-list::-webkit-scrollbar-button {
    display: none;
    height: 0;
}

.blog-page-section-1 #industry-list li {
    cursor: pointer;
    padding: 0.3rem 0;
    transition: background 0.2s ease;
}

.blog-page-section-1 #industry-list li:hover,
.blog-page-section-1 #industry-list li.active {
    font-weight: var(--W-600);
    text-decoration: underline;
}

.blog-page-section-1 #industry-list.hidden {
    display: none;
}

.blog-page-section-1 .industry-title img {
    transition: transform 0.3s ease;
}

.blog-page-section-1 .industry-title img.rotated {
    transform: rotate(180deg);
}

.blog-page-section-1 .search-box {
    margin-top: 10px;
}

.blog-page-section-1 .search-box input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;

}

.blog-page-section-1 .search-toggle {
    cursor: pointer;
}

.blog-page-section-1 .search-toggle {
    display: inline-flex;
    align-items: center;
}

.blog-page-section-1 .search-input {
    padding: 5px 8px 5px 0;
    border: none;
    font-size: 24px;
    font-weight: 400;
    min-width: 411px;
    outline-offset: unset !important;
    background-color: var(--background);
    margin-left: 6px;
}

.blog-page-section-1 .search-input:focus-visible {
    outline: none;
    border-bottom: 2px solid var(--green);
}

.blog-page-section-1 .hidden {
    display: none;
}



/*--------- blog-page-section-2 ------------*/

.blog-page-section-2 {
    min-height: 300px;
    margin-bottom: 100px;
}

.blog-item__wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--background);
    padding: 10px 0;
    height: 150px;
    position: relative;
    margin-bottom: 15px;
}

.title-information {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #525558;
    font-weight: 500;
    margin-top: 55px;
    margin-bottom: 25px;
}

.blog-item__image img {
    height: auto;
    object-fit: cover;
}

.blog-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-bottom: 2px solid #D9D9D9;
}

.blog-item__title {
    font-size: 30px;
    margin: 0 0 8px;
    font-weight: bold;
}

.blog-item__title a{
    color: black;
}

.blog-item__meta {
    font-size: 14px;
    color: #525558;
    display: flex;
    align-items: end;
    font-weight: var(--W-500);
    gap: 20px;
}

.blog-item__meta span + span::before {
    content: " ";
    margin: 0 5px;
}

.blog-item__date {
    font-size: 30px;
    font-weight: var(--W-400);
    color: #D9D9D9;
    text-align: right;
    position: absolute;
    right: 0;
}

.custom-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    gap: 20px;
    margin-top: 80px;
}

.custom-pagination a{
    color: #010504 !important;
}

.custom-pagination a.active{
    color: #D9D9D9 !important;
}

.custom-pagination .arrow {
    background-color: #000;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    cursor: pointer;
    color: #fff;
}

.custom-pagination .arrow.left {
    background-image: url('/wp-content/themes/custom/assets/img/arrow-left.png');
    background-size: cover;
}

.custom-pagination .arrow.right {
    background-image: url('/wp-content/themes/custom/assets/img/arrow-right.png');
    background-size: cover;
}

.custom-pagination .arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}





/*-------------- ARTICLE PAGE -------------*/

/*--------- article-page-section-1 ------------*/

.article-page-section-1 {
    margin-top: 200px;
    margin-bottom: 80px;
}

.article-page-section-1 a{
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 60px;
    display: block;
}

.article-page-section-1 h1{
    font-size: 60px;
    font-weight: 700;
    display: block;
    margin-bottom: 40px;
}

.article-page-section-1 .info{
    font-size: 16px;
    font-weight: 400;
    color: #525558;
}


/*--------- article-page-section-2 ------------*/


.article-page-section-2 {
    margin-bottom: 80px;
}

.article-page-section-2 .main-article-img{
    width: 100%;
}


/*--------- article-page-section-3 ------------*/


.article-page-section-3 {
    display: flex;
    gap: 60px;
    margin-bottom: 150px;
}

.article-page-section-3 .author-info img.main {
    width: 220px;
    height: 267px;
}

.article-page-section-3 .content p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
}

.article-page-section-3 .content h2{
    margin: 40px 0 30px 0;
    font-size: 26px;
    font-weight: 600;
}

.article-page-section-3 .content em{
    font-size: 22px;
    font-weight: 300;
}

.author-info .name {
    font-size: 24px;
    font-weight: 600;
}

.author-info .position {
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
}

.author-info .interests {
    font-size: 14px;
    font-weight: 400;
    color: #525558;
    margin-bottom: 10px;
}

.author-info .description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    border-bottom: 2px solid #D9D9D9;
}

.author-info .media-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.author-info .media-links a {
    background: black;
    width: min-content;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*--------- other-articles-section ------------*/


.other-articles-section {
    margin-bottom: 100px;
}

.other-articles-section h2.title{
    font-size: 60px;
    font-weight: 400;
    display: block;
    margin-bottom: 50px;
    max-width: 1100px;
}

.other-articles-section .blog-item__wrapper {
    display: block;
    height: auto;
}

.other-articles-section .blog-list-simple{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.other-articles-section .blog-item__meta {
    position: relative;
}

.other-articles-section .blog-item__title {
    font-size: 30px;
    margin: 0 0 25px;
    font-weight: bold;
}

.other-articles-section .blog-item__title a {
    font-weight: 500;
    display: block;
    max-width: 900px;
}




/*--------- PART TEMPLATE ----------*/

/*------- contact-us-section --------*/

.contact-us-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin: 140px 0 80px 0;
}

.contact-us-section h2{
    font-size: 90px;
    text-transform: uppercase;
    max-width: 700px;
    text-align: center;
}

.contact-us-section a {
    display: inline-block;
}




/*------------ PAGE 404 --------------*/

#error-404 h1{
    font-size: 226px;
    margin-bottom: 70px;
}

#error-404 .description .text {
    display: flex;
    width: 30%;
    flex-direction: column;
    gap: 25px;
}

#error-404 .description {
    justify-content: end;
}

#error-404 .black-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}












/*---------------- MEDIA QUERY-----------------*/

@media (max-width: 1400px){
    .home-page-contact-section .top-block div{
        width: auto;
    }

    .home-page-contact-section .top-block img{
        /*top: 180px;*/
        /*left: -453px;*/
        scale: 0.6;
    }

    .container-with-form{
        /*min-height: 1000px;*/
    }


}


@media (max-width: 1280px){
    .home-page-section-1 {
        flex-direction: column;
    }

    .home-page-section-1 .right-block{
        align-items: start;
        padding-top: 5%;
    }

    .home-page-section-1 .right-block>div{
        max-width: unset;
    }

    .home-page-contact-section .top-block img{
        /*left: -380px;*/
    }

    .blog-item__title {
        font-size: 24px;
    }

    .blog-item__date{
        font-size: 24px;
    }

    .blog-page-section-1 .description {
        flex-direction: column;
    }

    .blog-page-section-1 .description .text {
        width: 100%;
    }
}


@media (max-width: 1000px) {
    .home-page-section-1 .company-name{
        font-size: 100px;
    }

    .home-page-section-2 .service-card{
        max-width: unset;
    }

    .home-page-contact-section .top-block{
        height: auto;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .home-page-contact-section .top-block h2{
        font-size: 55px;
        line-height: 55px;
        margin-top: 60px;
        margin-bottom: 10px;
    }

    .home-page-contact-section .top-block div:last-child{
        justify-content: end;
    }

    .home-page-contact-section .top-block img{
        /*left: unset;*/
        /*right: -142px;*/
        /*top: 110px;*/
        /*z-index: 2;*/
        /*scale: 0.3;*/

        left: unset;
        right: -142px;
        top: -437px;
        z-index: 2;
        scale: 0.4;
    }

    .cost-page-section-1 h2{
        font-size: 60px;
    }

    .cost-page-section-1 .service-title,
    .cost-page-section-1 .service-cost,
    .cost-page-section-1 .service-description {
        font-size: var(--S-18);
    }

    .cost-page-section-2 .container,
    .about-us-page-section-2 .container,
    .contacts-page-section-2 .container{
        flex-direction: column;
        gap: 25px;
    }

    .cost-page-section-2 .left,
    .cost-page-section-2 .right,
    .about-us-page-section-2 .left,
    .about-us-page-section-2 .right,
    .contacts-page-section-2 .left,
    .contacts-page-section-2 .right {
        width: 100%;
    }

    .about-us-page-section-1 h2{
        font-size: 60px;
    }
    .about-us-page-section-2 .group-2 .custom-heading {
        margin-left: 0;
    }

    .about-us-page-section-2 h2{
        font-size: 30px;
    }

    .about-us-page-section-2 .group-2 .custom-heading p{
        font-size: 35px;
    }

    .contacts-page-section-1 h1{
        font-size: 60px;
    }

    .contacts-page-section-2 .right .contact-item a{
        font-size: 28px;
    }

    .policy-page-section-1 h1 {
        font-size: 45px;
        margin-bottom: 130px;
    }

    .blog-item__title {
        font-size: 20px;
    }

    .blog-item__date {
        font-size: 20px;
    }

    .blog-page-section-1 h1 {
        font-size: 60px;
    }

    .article-page-section-1 h1 {
        font-size: 50px;
    }

    .other-articles-section h2.title{
        font-size: 50px;
    }

}

@media (max-width: 780px){
    .contact-us-section h2{
        font-size: 40px;
    }

    .about-us-page-section-1 .description {
        flex-direction: column;
    }

    .about-us-page-section-1 .description .text{
        width: 100%;
    }

    .about-us-page-section-1 .description .arrow{
        order: 2;
        margin-top: 30px;
    }

    .contacts-page-section-1 .description {
        flex-direction: column;
    }

    .contacts-page-section-1 .description .text{
        width: 100%;
    }

    .contacts-page-section-1 .description .arrow{
        order: 2;
        margin-top: 30px;
    }

    .blog-item__meta{
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 5px;
        text-align: end;
        font-size: 11px;
    }

    .blog-item__date{
        left: 0;
        bottom: 0;
        font-size: 19px;
        right: unset;
    }

    .blog-item__image img{
        height: 80px;
    }

    .blog-item__wrapper{
        position: relative;
        min-height: 130px;
        border-bottom: 2px solid #D9D9D9;
        height: unset;
    }

    .blog-item__content{
        border-bottom: none;
    }

    .blog-page-section-1 .description .text{
        font-size: 25px;
    }

    .blog-page-section-1 .industry-title img,
    .blog-page-section-1 .search-toggle img {
        height: 20px;
    }

    .blog-page-section-1 .search-input{
        min-width: 294px;
        font-size: 20px;
    }

    .blog-page-section-1 #industry-list {
        margin: 30px 0 0 0;
    }

    .other-articles-section .blog-item__wrapper{
        border-bottom: none;
    }

    .other-articles-section .blog-item__meta{
        border-bottom: 2px solid #D9D9D9;
    }

    .article-page-section-3 {
        flex-direction: column;
        margin-bottom: 100px;
    }

    .article-page-section-3 .author-info{
        order: 2;
    }

    #error-404 .description .text {
        width: 100%;
    }

    #error-404 h1 {
        font-size: 180px;
    }

}


@media (max-width: 500px) {
    .home-page-section-1 {
        margin-top: 150px;
    }

    .home-page-section-1 .company-name{
        font-size: 70px;
    }

    .home-page-section-1 h1 {
        font-size: var(--S-10);
    }

    .home-page-section-1 .bg-img-1{
        top: 56px;
    }

    .home-page-section-2 h2{
        font-size: 42px;
    }

    .home-page-contact-section .top-block img {
        left: unset;
        right: -142px;
        top: -500px;
        z-index: 2;
        scale: 0.4;
    }

    .home-page-contact-section .top-block h2 {
        font-size: 55px;
        line-height: 55px;
        margin-top: 80px;
        margin-bottom: 10px;
    }

        .cost-page-section-1 .service-title,
    .cost-page-section-1 .service-cost,
    .cost-page-section-1 .service-description {
        font-size: var(--S-18);
    }

    .cost-page-section-1 .titles{
        margin-bottom: 10px;
    }

    .about-us-page-section-2 .group-2 .custom-heading p{
        font-size: 20px;
    }

    .policy-page-section-1 h1{
        font-size: 39px;
    }

    .blog-item__title {
        font-size: 19px;
        margin: 0 0 15px;
    }

    .custom-pagination {
        font-size: 15px;
        margin-top: 40px;
    }

    .custom-pagination .arrow {
        width: 30px;
        height: 30px;
    }

    .blog-page-section-2 {
        margin-bottom: 60px;
    }

    .blog-page-section-1 h1 {
        margin-bottom: 110px;
    }

    .article-page-section-1 h1 {
        font-size: 35px;
    }

    .other-articles-section h2.title {
        font-size: 35px;
    }

    .other-articles-section .blog-item__title a {
        font-size: 20px;
    }

    .other-articles-section .blog-item__title {
        margin: 0 0 10px;
    }


    .page-template-home .other-articles-section{
        margin-top: 100px;
    }

    #error-404 h1 {
        font-size: 70px;
        margin-bottom: 30px;
    }

    .page-template-home .contact-form-1 span.wpcf7-form-control-wrap{
        width: 100%;
    }
}