ul,li,p,h1,h2,p,*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Lato' !important;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #0B1F33;
    background-color: #f5f5f5;
}

.wraper{
    overflow: hidden;
}

.section_title{
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    color: #0B1F33;
}
.section_description{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #0B1F33;
    opacity: 0.75;
    margin-top: 14px;
}
.block_title{
    font-weight: 600;
    font-size: 28px;
    line-height: 28px;
    color: #0B1F33;
    margin: 0;
}


/* HEADER */
header .header_row{
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header_row .header_left{
    display: flex;
    align-items: center;    
}

header .header_row .header_left .hamburger{
    height: 24px;
    width: 24px;
}

header .header_row .header_left .logo{
    margin: 0 86px 0 14px;
}
header .header_row .header_left .header_nav{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 49px;
    margin: 0;
    padding: 0;
}
header .header_row .header_left .header_nav .header_link{
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 101, 177, 0.8);
    text-decoration: none;
    transition: .3s all ease;
}
header .header_row .header_left .header_nav .header_link:hover{
    font-weight: 500;
    font-size: 17px;
    color: #0065B1;
}
header .header_row .search{
    display: flex;
    align-items: center;
}
header .header_row .search input{
    background: rgba(228, 236, 253, 0.4);
    width: 248px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 101, 177, 0.5);
    border-radius: 0 8px 8px 0;
    padding: 8px 12px;
    border: none;
    outline: none;
    box-shadow: none;
}
header .header_row .search input::placeholder{
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 101, 177, 0.5);
}
header .header_row .search button{
    background: rgba(228, 236, 253, 0.4);
    background-image: url(images/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 19px;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
    box-shadow: none;
}

/* HERO */

.hero{
    background-color:#EFF5F9;
    padding: 72px 0;
}
.hero .container{
    display: flex;
    justify-content: flex-start;
    gap: 70px;
    align-items: center;
}

.hero .hero_image_block{
    height: 176px;
    width: 176px;
}

.hero .hero_links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding-bottom: 22px;
}
.hero .hero_links.big{
    gap: 26px;
}
.hero .hero_links .hero_link{
    background: linear-gradient(90deg, #1349BE 47%, #1853D4 100%);
    border-radius: 4px 20px 20px 20px;
    opacity: 0.69;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 8px 14px;
    text-decoration: none;
}
.hero .hero_links.big .hero_link{
    background: linear-gradient(90deg, #1349BE 47%, #1853D4 100%);
    padding: 14px 16px;
    border-radius: 8px 8px 8px 4px;
    padding-right: 46px;
    position: relative;
}
.hero .hero_links.big .hero_link::after{
    position: absolute;
    display: block;
    content: "";
    width: 9px;
    height: 14px;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
    background-image: url(images/hero_link_arow.svg);
    background-repeat: no-repeat;
}
.hero .hero_links.big .hero_link img{
    padding-right: 13px;
}
.hero .hero_form{
    max-width: 1000px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.hero .hero_form input{
    padding: 14px 0 14px 12px;
    background: #FFFFFF;
    border-radius: 8px 0 0 8px;
    width: 90%;
    border: none;
    outline: none;
    box-shadow: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #66727F;
}
.hero .hero_form button{
    width: 10%;
    border-radius: 0 8px 8px 0;
    border: none;
    padding: 26px;
    background: #fff;
    background-image: url(images/search_send_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/* SERVICES */

.services{
    padding: 48px 0;
}
.services .services_block{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 24px;
    padding: 36px 0 48px 0;
}
.services .services_block .service_item{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(0, 101, 177, 0.8);
    padding: 18px 12px;
    width: calc(12.5% - 24px);
    height: 88px;
    background: linear-gradient(180deg, rgba(31, 80, 232, 0.1) 0%, rgba(92, 127, 237, 0.1) 88.33%);
    border-radius: 8px;
    text-decoration: none;
}
.services .services_block .service_item img{
    width: 24px;
}
.services .checkPay{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 34px 0 48px 0;
}
.services .checkPay .checkPay_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 24px;
    width: calc(25% - 36px);
    background: #FFFFFF;
    box-shadow: 0px 6px 16px rgba(230, 235, 245, 0.8);
    border-radius: 12px;
    text-decoration: none;
    padding-bottom: 48px;
}
.services .checkPay .checkPay_item .checkPay_name{
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: #0B1F33;
    margin: 18px 0 8px 0;
}
.services .checkPay .checkPay_item .checkPay_info{
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #66727F;
}
.services .accordion{
    padding-top: 36px;
}
.services .accordion .accordion-item{
    background: rgba(217, 217, 217, 0.04);
    border-color: #E9ECEF;
    overflow: hidden;
}
.services .accordion .accordion-item:first-child{
    border-radius: 16px 16px 0 0;
}
.services .accordion .accordion-body{
    padding: 36px;
}
.services .accordion .accordion-body ul{
    margin-left: 20px;
    list-style: none;
}
.services .accordion .accordion-body span{
    color: #0B1F33;
}
.services .accordion .accordion-body a{
    color: #0065B1;
    text-decoration: none;
}
.services .accordion .accordion-body .accordion_text{
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.5px;
    color: #66727F;
    margin-bottom: 15px;
}
.services .accordion .accordion-button{
    padding: 24px 36px 24px 19px;    
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #0B1F33;
    background: rgba(217, 217, 217, 0.04);
    border-radius: 0px;
}
.services .accordion .accordion-button:focus{
    box-shadow: none;
    border-color: #F8F9FA;
    background: rgba(0, 101, 177, 0.04);
    border-radius: 0;
}
.services .accordion .accordion-button:not(.collapsed){
    color: #0B1F33;
    background: rgba(217, 217, 217, 0.04);
    box-shadow: none;
}
.services .accordion .accordion-button img{
    padding-right: 16px;
}
.accordion-button:not(.collapsed)::after{
    transform: rotate(-90deg) !important;
}
.accordion-button::after{
    background-image: url(images/accordionVector.svg) !important;
    width: 24px !important;
    height: 12px !important;
}
.services .show_all{
    text-align: center;
    width: 100%;
    padding: 11px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
    background: #0065B1;
    border-radius: 10px;
    display: none;
}

/* HELPFUL */
.helpful{
   padding-bottom: 48px; 
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.helpful .section_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 34px;
}
.helpful .section_top .show_all{
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #0D4CD3;
    text-decoration: none;
}
.helpful_item{
    text-align: left;
}
.helpful_item .helpful_image{
    border-radius: 16px;
}
.helpful_item .helpful_info{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #0B1F33;
    margin: 24px 0 14px 0;
}
.helpful_item .date{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #66727F;
    margin: 0;
}

/* FOOTER */
footer{
    background: #fff;
}
footer .footer_row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 95px;
    padding: 48px 0;
}
footer .aboutUs{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #848E98;
}
footer .links_name{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #0B1F33;
    display: none;
}
footer .footer_about{
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #848E98;
    opacity: 0.8;
    margin: 0;
    margin-top: 10px;
}
footer .footer_links{
    display: flex;
    align-items: flex-start;
    gap: 80px;
}
footer .footer_links ul{
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
}
footer .footer_links a{
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #848E98;
    text-decoration: none;
}
footer .footer_links li{
    margin-bottom: 16px;
}
footer .footer_links li:last-child{
    margin-bottom: 0;
}
footer .footer_right{
    text-align: right;
}
footer .footer_right .social_media{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
    padding-bottom: 16px;
}
footer .footer_right .mail{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #848E98;
    text-decoration: none;
}

/* MEDIA */
@media (min-width:1600px){
    .container{
        max-width: 1544px !important;
    }
}
@media (max-width:1400px){
    footer .footer_row{
        gap: 50px;
    }
    footer .footer_links{
        gap: 40px;
    }
}
@media (max-width:1200px){
    .services .services_block .service_item{
        width: calc(25% - 20px);
    }
    .services .checkPay .checkPay_item{
        width: calc(25% - 20px);
    }
    footer .footer_row{
        flex-wrap: wrap;
    }
    footer .aboutUs{
        width: 50%;
    }
    footer .footer_right .social_media{
        justify-content: start;
    }
    footer .footer_right .mail{
        justify-content: start;
    }
}
@media (max-width:992px){
    header .header_row .header_left .header_nav{
        gap: 20px;
    }
    header .header_row .header_left .logo{
        margin: 0 40px 0 14px;
    }
    .services .checkPay{
        flex-wrap: wrap;
        gap: 25px 0;
    }
    .services .checkPay .checkPay_item{
        width: calc(50% - 20px);
    }
    footer .aboutUs{
        width: 100%;
    }    
}
@media (max-width:768px){
    header .header_row .header_left .header_nav{
        display: none;
    }
    .hero .hero_image_block{
        display: none;
    }
    .hero .hero_form input{
        background-image: url(images/hero_icon_small.svg);
        background-repeat: no-repeat;
        background-position: 14px center;
        padding-left: 57px;
    }
    header .header_row .search input{
        display: none;
    }
    header .header_row .search button{
        width: 40px;
        height: 36px;
        background-color: #E4ECFD;
        opacity: 0.4;
        border-radius: 8px;
            }
}

@media (max-width:576px){
    .block_title{
        font-size: 24px;
    }
    .section_description{
        font-size: 20px;
        line-height: 24px;
        padding-top: 12px;
    }
    .section_title{
        font-size: 28px;
        line-height: 32px;
    }
    header .header_row .search input::placeholder{
        display: none;
    }
    .hero{
        padding: 24px 0;
    }
    .services{
        padding: 24px 0 36px 0;
    }
    .services .services_block .service_item {
        width: calc(50% - 12px);
    }
    .services .services_block{
        gap: 12px;
        padding-bottom: 12px;
        padding-top: 18px;
    }
    .services .services_block .service_item:nth-child(n+5){
        display: none;
    }
    .services .show_all{
        display: block;
        margin-bottom: 36px;
    }
    .services .checkPay .checkPay_item{
        width: 100%;
        flex-direction: revert;
        flex-wrap: wrap;
        gap: 24px;
        padding: 20px 24px;
        position: relative;
    }    
    .services .checkPay .checkPay_item::after{
        position: absolute;
        display: block;
        content: "";
        width: 7px;
        height: 12px;
        right: 24px;
        top: 50%;
        transform: translate(0,-50%);
        background-image: url(images/services_item_arow.svg);
    }
    .services .checkPay .checkPay_item.rotate:after{
        transform: rotate(90deg);
        transition: .3s all ease;
    }
    .services .checkPay .checkPay_item .checkPay_info{
        width: 100%;
    }
    .services .checkPay{
        gap: 12px;
        padding-top: 18px;
    }
    .services .checkPay_info{
        display: none;
    }
    .services .accordion .accordion-button img{
        width: 22px;
        margin-right: 11px;
        padding: 0;
    }
    .services .accordion .accordion-button{
        padding: 10px 14px;
    }
    .services .accordion .accordion-body{
        padding: 14px;
    }
    .services .accordion{
        padding-top: 18px;
    }
    .helpful .section_top{
        padding-bottom: 14px;
    }
    .helpful .section_top .show_all span{
        display: none;
    }
    .helpful_item .helpful_info{
        padding-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    footer .links_name, .aboutUs_name{
        display: block;
        margin-bottom: 18px;
        color: #0B1F33;        
    }
    footer .links_block, .aboutUs{
        position: relative;
    }
    footer .links_block:after, .aboutUs:after{
        position: absolute;
        display: block;
        content: "";
        width: 7px;
        height: 12px;
        right: 12px;
        top: 50%;
        transform: translate(0,-50%);
        background-image: url(images/services_item_arow.svg);
    }
    footer .rotate::after{
        transform: rotate(90deg);
        transition: .3s all ease;
    }
    footer .footer_links{
        flex-direction: column;
        gap: 0;    
        width: 100%;    
    }
    footer .footer_links ul{
        padding-bottom: 20px;
    }
    footer .footer_links .links_block{
        width: 100%;
    }
    footer .footer_row{
        flex-direction: column;
        gap: 0;
        padding: 24px 0;
    }
    footer .footer_about, ul{
        display: none;
        padding-right: 20px;
        padding-bottom: 20px;
    }    
    footer .footer_links li{
        padding-bottom: 8px;
    }
    footer .footer_links li:last-child{
        padding: 0;
    }
}