.container {
    width: 100%;
    min-width: 320px;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
    border-top: 0 solid transparent;
}
.container::after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
    height: 0;
}

img{
    max-width: 100%;
}

main{
    background: #fff;
    padding-bottom: 100px;
}

.landing-hero{
    height: 75vh;
    background: var(--hero-background) no-repeat;
    background-size: cover;
    background-position: center;
}

.landing-hero .container{
    position: relative;
    height: 100%;
}

.landing-hero-text{
    font-size: 26px;
    padding: 10px 20px;
    background: #ffffffc7;
    box-shadow: 0 0 5px rgb(0 0 0 / 30%);
    display: inline-block;
    max-width: 300px;
    font-weight: bold;
    position: absolute;
    bottom: 50px;
    left: 0;
    color: #000;
}

.landing-content
{
    padding-top: 90px;
}

.landing-content h1{
    font-size: 46px;
    line-height: 55px;
    color: #002442;
    margin-bottom: 50px;
    position: relative;
}

.row{
    display: flex;
    gap: 15px;
}

.row .col{
    flex-basis: 50%;
}

.row .col-33{
    flex-basis: 33%;
}

.row .col-66{
    flex-basis: 66%;
}

.landing-content h1:before{
    content: "";
    background: #0260CA;
    display: block;
    position: absolute;
    top: -15px;
    height: 5px;
    width: 150px;
}

.landing-content .landing-benefits ul li{
    font-size: 26px;
    line-height: 40px;
    color: #002442;
    list-style-position: inside;
    list-style: none;
    position: relative;
    padding-left: 40px;
    margin-bottom: 38px;
}

.landing-content .landing-benefits ul li:last-of-type
{
    margin-bottom: 0;
}

.landing-content .landing-benefits ul li:before{
    content: url('/wp-content/themes/dispetcher training/service/i/list-marker.svg');
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
}

.pre-post-content
{
    margin-top: 50px;
}

.landing-content h3{
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 37px;
    color: #002442;
}

.landing-content h4{
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
    color: #002442;
}

.landing-content p{
    color: #6B7176;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 20px;
}

section.blog{
    margin-top: 100px;
}

section.blog .heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.blog .heading a{
    font-size: 20px;
    line-height: 30px;
    display: block;
    text-decoration: none;
    color: #0260CA;
}

section.blog .row{
    flex-wrap: wrap;
    column-gap: 15px;
    margin-top: 50px;
    justify-content: space-between;
}

section.blog h2{
    font-size: 46px;
    line-height: 55px;
    color: #002442;
    position: relative;
}

section.blog h2:before{
    content: "";
    background: #0260CA;
    display: block;
    position: absolute;
    top: -15px;
    height: 5px;
    width: 150px;
}

section.blog .row .col-33{
    background-size: cover;
    background-position: center;
    flex-basis: 32%;
    text-decoration: none;
    color: #fff;
    height: 266px;
    padding: 0 30px;
    position: relative;
    overflow: hidden;
}

section.blog .row .col-33 a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 70px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to top, black, transparent);
}

section.blog .row .col-33 a:hover {
    transform: translateY(-70px);
}

section.blog .row .col-33 a p, section.blog .row .col-33 a h5{
    padding: 0 30px;
}

section.blog .row .col-33 a h5{
    font-size: 20px;
}

section.blog .row .col-33 a p{
    margin-bottom: 15px;
}

section.blog .row .col-33 a .read-more {
    height: 70px;
    background: #0260CA;
    display: flex;
    align-items: center;
    padding: 0 30px;
    color: #fff;
}

.landing-content .form-block{
    background: rgb(242, 242, 242);
    padding: 15px 30px;
    flex-basis: 40%;
}

.landing-content .form-block button[type="submit"]{
    display: flex;
    width: auto;
    padding: 25px 60px;
    align-items: center;
    line-height: 0;
    justify-content: center;
    margin: 0 auto;
    border: none;
    background: #0260CA;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0);
}



.landing-content .form-block .inputs-wrapper{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.landing-content .form-block input, .landing-content .form-block textarea{
    width: 100%;
    display: block;
    height: 40px;
    border: none;
    background: #fff;
    outline: none;
    border-bottom: 1px solid #fff;
    font-weight: 300;
    font-size: 14px;
    resize: none;
    padding: 5px 15px;
    color: #002442;
}

.landing-content .form-block input, .landing-content .form-block textarea::placeholder{
    color: #002442;
}

.landing-content .form-block textarea{ height: 100px; }

.post-content{
    margin-top: 50px;
}

.post-content ul li, .pre-post-content ul li{
    list-style: none;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: #6B7176;
}

.post-content ul li:before, .pre-post-content ul li:before{
    content: url("/wp-content/themes/dispetcher training/service/i/list-marker-sm.svg");
    position: absolute;
    left: 0;
    top: 0;
}

.landing-contacts{
    display: flex;
    gap: 32px;
    margin-top: 50px;
}

.landing-contacts a {
    display: flex;
    width: auto;
    padding: 25px 60px;
    align-items: center;
    line-height: 0;
    justify-content: center;
    border: 3px solid rgba(0, 0, 0, 0);
    background: #f2f2f2;
    color: #002442;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    margin: 0;
    transition: all 0.3s ease;
}

.landing-contacts a:first-of-type{
    background: #0260CA;
    color: #fff;
}

.landing-video
{
    margin-top: 100px;
}

.landing-video h2
{
    margin-bottom: 50px;
    font-size: 46px;
    line-height: 55px;
    color: #002442;
}

.landing-video iframe
{
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
    aspect-ratio: 16/9;
}

.links-section{
    margin-top: 80px;
}

.links-section h2
{
    margin-bottom: 50px;
    font-size: 46px;
    line-height: 55px;
    color: #002442;
    text-align: center;
}

.links-section .row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 30px;
    max-width: 90%;
}

.links-section .row a{
    padding: 15px 25px;
    font-size: 20px;
    color: #fff;
    background: #0260CA;
    text-decoration: none;
    line-height: 1;
    border: 3px solid rgba(0, 0, 0, 0);
}

.landing-content .form-block button[type="submit"], button, button[type="submit"], .links-section .row a, .landing-contacts a
{
    transition: all 0.3s ease;
}

.landing-content .form-block button[type="submit"]:hover, button:hover, button[type="submit"]:hover, .links-section .row a:hover, .landing-contacts a:hover
{
    border: 3px solid #0260CA;
    background: #fff !important;
    color: #0260CA;
}

@media screen and (max-width: 768px)
{
    .row{
        flex-direction: column;
    }
    .landing-content
    {
        padding-top: 50px;
    }

    .post-content{
        margin-top: 30px;

    }

    .landing-hero-text{
        font-size: 14px;
        padding: 5px 10px;
        background: #ffffffc7;
        box-shadow: 0 0 5px rgb(0 0 0 / 30%);
        display: inline-block;
        max-width: 300px;
        font-weight: bold;
        position: absolute;
        bottom: 15px;
        left: 0;
        color: #000;
    }

    .landing-content .landing-benefits ul li
    {
        font-size: 16px;
        line-height: 40px;
        padding-left: 30px;
    }
    .landing-content .landing-benefits ul li:before
    {
        content: url("/wp-content/themes/dispetcher training/service/i/list-marker-sm.svg")
    }
    .landing-content h1
    {
        margin-bottom: 20px;
    }
    .landing-content h1:before
    {
        top: -10px;
        height: 3px;
        font-size: 36px;
        line-height: 46px;
    }

    .landing-contacts
    {
        flex-direction: column;
    }

    .landing-hero
    {
        height: 300px;
    }

    section.blog .row .col-33
    {
        min-height: 266px;
    }

    section.blog .row .col-33 a p, section.blog .row .col-33 a h5
    {
        padding: 0 15px;
    }

    .landing-video h2 {
        margin-bottom: 35px;
        font-size: 30px;
        line-height: 1.4;
    }

    section.blog h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .landing-content h1 {
        font-size: 30px;
        line-height: 1.4;
    }

    .landing-video {
        margin-top: 50px;
    }

    .links-section{
        margin-top: 50px;
    }

    .links-section .row{
        max-width: 100%;
    }

    .links-section h2{
        margin-bottom: 35px;
        font-size: 30px;
        line-height: 1.4;
    }

}