body{
    font-family: 'Montserrat', sans-serif !important
}

.home-head{
    height: 100vh;
    position: relative;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    background-size: cover;
}
.home-head::before{
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
video.home-head__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.home-head__container{
    position: relative;
    z-index: 3;
}
.home-head__title {
    font-weight: normal;
    font-size: 30px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 100px;
}
.home-head__cities{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
    .home-head__citi{
        font-weight: bold;
        font-size: 20px;
        line-height: 120%;
        margin: 0 20px;
        display: inline-flex;
        align-items: center;
        color: #fff !important;
    }
    .home-head__citi svg {
        height: 26px;
        width: 19px;
        margin-right: 18px;
    }
.home-head__scroll{
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-bottom: 60px;
    transform: translateX(-50%);
    z-index: 3;
}
.home-head__scroll svg{
    height: 32px;
    width: auto;
}
.section-title {
    font-weight: bold;
    font-size: 30px;
    line-height: 130%;
    text-transform: uppercase;
    color: #E23400;
    display: block;
    margin-bottom: 30px;
}

.home-branch {
    background: #E9E9E9;
    padding: 15px 0;
    overflow: hidden;
}
.home-branch__item{
    overflow: hidden;
    position: relative;
}
.home-branch__item .container{
    display: flex;
    align-items: flex-end;
}
.home-branch__item .content,
.home-branch__item .image{
    width: 50%;
}
.home-branch__item .title:after {
    content: '';
    background: rgba(33, 33, 33, 0.9);
    width: 5000px;
    height: 100%;
    right: 100%;
    position: absolute;
    top: 0;
}
.home-branch__item .title {
    font-weight: 600;
    font-size: 30px;
    line-height: 130%;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 0;
    background: rgba(33, 33, 33, 0.9);
    padding-right: 50px;
    display: inline-block;
    position: relative;
}
.home-branch__item .description{
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.015em;
    color: #000000;
    margin-bottom: 50px;
    margin-top: 40px;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}
.slick-dots li.slick-active {
    background: #015996;
}
.slick-dots li {
    display: block;
    width: 60px;
    height: 5px;
    top: 1617px;
    background: #C4C4C4;
    border-radius: 11px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    display: none;
}

.home-service{
    margin: 50px 0;
}
.home-service__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}
.home-service__item {
    height: 136px;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.home-service__item.main {
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    color: #333333;
    border-bottom: 2px solid #E20613;
}

.home-service__item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.home-service__item .title {
    position: absolute;
    left: 0;
    width: 100%;
    background: rgba(1, 89, 150, 0.9);
    color: #fff;
    bottom: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    font-size: 14px;
    line-height: 120%;
    transition: all 0.3s;
}
.home-service__item:hover .title {
    height: 100%;
}

.home-about {
    font-size: 24px;
    line-height: 130%;
    text-align: justify;
    letter-spacing: 0.015em;
    color: #333333;
    margin-bottom: 50px;
}
.home-advantage{
    margin-bottom: 50px;
}
.home-advantage__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.home-advantage__item {
    background: #015996;
    border-radius: 5px;
    padding: 16px;
    font-size: 16px;
    line-height: 130%;
    color: #F8F8F8;
    min-height: 240px;
    position: relative;
    z-index: 1;
}

.home-advantage__item .description{
    position: relative;
    z-index: 1;
}
.home-advantage__item::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background: url("../_i/advantage-bg-i.png") no-repeat  50% 100px;
    z-index: -1;
}

.home-advantage__item .title {
    font-weight: bold;
    font-size: 15px;
    line-height: 130%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
    border-bottom: 1px solid #60A3D2;
    margin-bottom: 12px;
    padding-bottom: 12px;
    padding-left: 60px;
    height: 65px;
    position: relative;
}

.home-advantage__item img {
    position: absolute;
    left: 0;
    height: 38px;
    max-width: 50px;
    object-fit: contain;
}


.home-price__description {
    background: #363636;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 24.1248px;
    line-height: 130%;
    padding: 25px 15px;
    margin-bottom: 40px;
}

.home-price{
    margin-bottom: 50px;
}

.home-price__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.home-price__item {
    display: flex;
    margin-bottom: 30px;
}
.home-price__item  .image{
    flex: 0 0 150px;
    text-align: center;
}

.home-price__item  .image .signature {
    max-width: 100px;
    display: inline-block;
}

.home-price__item  .content {
    background: #F1F1F1;
    border-radius: 0px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 130%;
    color: #333333;
    padding: 25px;
}

.home-help{
    margin-bottom: 50px;
}
.home-help__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 33px;
    color: #F5F5F5;
    margin-bottom: 8px;
}
.home-help__container{
    background: #363636;
    border-radius: 5px;
    padding: 16px;
    font-size: 20px;
    line-height: 22px;
    color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-help__social {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    width: 50%;
}
.home-help__item{
    width: 80px;
}
.home-help__item a {
    width: 66px;
    height: 66px;
    border: 3px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s;
}
.home-help__item.whatsapp a{
    border: 3px solid #27AE60;
}
.home-help__item.viber a{
    border: 3px solid #9B51E0;
}
.home-help__item.telegram a{
    border: 3px solid #00BEFF;
}
.home-help__item a svg {
    height: 36px;
    width: auto;
}

footer{
    position: relative;
    height: auto;
    background: #212121;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
}
.footer-item__logo img{
    height: 60px;
    width: auto;
}

.footer-item__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-info {
    flex: 2;
}
.footer-item__phone {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 5px;
}
.footer-item__phone a{
    color: #F5F5F5;
}
.footer-item__app {
  text-align: center;
  flex: 2;
}
.footer-item__app span {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}
.footer-item__app a {
    display: inline-block;
}
.footer-item__menu {
    flex: 5;
    text-align: center;
}
.footer-item__menu ul{
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.footer-item__menu ul li{
    display: block;
    margin: 0 14px;
}
.footer-item__menu ul li a{
    font-size: 14px;
    line-height: 15px;
    color: #FFFFFF;
}
.footer-item__menu ul li a:hover,
.footer-item__phone a:hover{
    color: #E20613;
}

.footer-item__menu ul .sub-menu {
    position: relative;
    padding-left: 15px;
    display: none;
}

.footer-item__copyright {
    color: #C8C8C8;
    margin-top: 12px;
}
.footer-item__call,
.footer-item__email{
    display: none;
}

.hamburger-menu__show {
    position: fixed;
    z-index: 88;
    right: 50px;
    top: 50px;
}
.hamburger-menu__show img{
    display: block;
}
.hamburger-menu__show:hover{
    background-color: #000000;
    border-radius: 5px;
}

.mobile-hamburger__box {
    position: fixed;
    top: 0;
    right: 0;
    background: #363636;
    border-radius: 5px 0px 0px 5px;
    z-index: 99;
    width: 270px;
    height: 100vh;
    padding: 64px 24px 24px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    display: none;
}
.hamburger-menu__closet {
    position: absolute;
    top: 24px;
    right: 24px;
    border-radius: 5px;
}
.hamburger-menu__closet:hover{
    background: rgba(0, 0, 0, 0.4);
}

.mobile-hamburger__box ul{
    margin:0;
    padding: 0;
}
.mobile-hamburger__box ul li{
    padding: 15px 0;
    border-bottom: 1px solid #F3F3F3;;
    position: relative;
}
.mobile-hamburger__box ul li a{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.mobile-hamburger__app {
    display: flex;
    gap: 5px;
}

.mobile-hamburger__phone,
.mobile-hamburger__whatsapp{
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    display: block;
}

.mobile-hamburger__phone span,
.mobile-hamburger__whatsapp span{
    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    color: #E2E2E2;
    display: block;
    margin-top: 3px;
}

.mobile-hamburger__phone img,
.mobile-hamburger__whatsapp img{
    position: absolute;
    left: 0;
    top: 2px;
}

.mobile-hamburger__box ul li a:hover,
.mobile-hamburger__phone a:hover,
.mobile-hamburger__whatsapp a:hover{
    color: #E20613;
}

.body-show-mobile {
    overflow: hidden;
    padding-right: 16px;
}

.contact-us-modal-show {
    position: fixed;
    right: 20px;
    bottom: 20px;
	z-index: 98;
}

.contact-us-modal-show svg {
    height: 36px;
    width: 36px;
}

.contact-us-modal {
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
    padding: 40px 15px;
    background: transparent;
}

.fancybox-is-open .fancybox-bg{
    background: rgba(0, 0, 0, 0.95);
    opacity: 1;
}

.contact-us-modal .section-title{
    font-weight: normal;
    font-size: 20px;
    line-height: 22px;
    text-decoration: none;
    color: #FFFFFF;
    text-transform: none;
}
.contact-us-modal  .home-help__social{
    flex-wrap: wrap;
    justify-content: center;
    background: transparent !important;
    width: 100%;
}
.contact-us-modal .home-help__item{
    display: block !important;
    width: 80px;
    margin-bottom: 30px;
    color: #fff;
}
.contact-us-modal .linner-b{
    display: block;
    width: 100%;
}

.grecaptcha-badge {
    display: none !important;
}

.mobile-hamburger__box .sub-menu{
    display: none;
    margin-top: 10px;
}

.mobile-hamburger__loc {
    display: none;
}

.menu-item-has-children span {
    width: 24px;
    height: 24px;
    display: flex;
    position: absolute;
    right: -5px;
    top: 14px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}
.menu-item-has-children span.active {
    transform: rotate(180deg);
}

.menu-item-has-children span svg path{
    fill: #fff !important
}

.mobile-hamburger__box .sub-menu li{
    padding: 8px;
}
.mobile-hamburger__box .sub-menu li:last-child{
    border: none;
}
.mobile-hamburger__box .sub-menu li a{
    font-size: 14px;
}
.mobile-hamburger__box .header-menu{
    margin-bottom: 50px;
}

.footer-item__menu .menu-item-has-children span{
    display: none;
}

@media (max-width: 768px) {
    .home-head__title{
        font-size: 20px;
        line-height: 130%;
        color: #FFFFFF;
        text-transform: none;
        margin-bottom: 32px;
        text-align: left;
        font-weight: bold;
    }
    .home-head__logo img{
        height: 62px;
    }
    .home-head__cities{
        display: block;
    }
    .home-head__scroll{
        display: none;
    }
    .home-head__citi{
        display: block;
        text-align: left;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .home-head__citi svg {
        height: 18px;
        width: auto;
        margin-right: 6px;
    }
    .home-branch{
        padding-bottom: 0;
        overflow: visible;
    }
    .home-branch__item .container{
        display: block;
    }
    .home-branch__item .content, .home-branch__item .image{
        width: 100%;
    }
    .home-branch__item .content{
        padding-top: 160px;
    }
    .home-branch__item .title {
        font-size: 14px;
        line-height: 130%;
        padding: 10px 0;
        width: 200px;
    }
    .home-branch__item .description {
        font-weight: normal;
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .home-branch__item .image img{
        position: absolute;
        height: 200px;
        top: 0;
        right: 0px;
		left: 0px;
        width: auto;
        object-fit: cover;
        z-index: -1;
		margin: 0 auto;
    }
    .slick-dots li {
        display: block;
        width: 20px;
        height: 3px;
        margin: 0 4px;
    }
    .slick-dots{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 15px;
    }

    .home-service__list{
        display: block;    
    }
    .home-service__item{
        height: 160px !important;
        width: 160px;
        box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        display: block;
        margin-right: 10px;
        overflow: visible;
    }
    .home-service__item:after {
        content: '';
        width: 80%;
        height: 2px;
        background: #666666;
        border-radius: 10px;
        display: block;
        bottom: -2px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
    }
    .home-service__item.slick-current:after {
        background: #E20613;
    }
    .home-service__item .title {
        font-size: 12px;
        line-height: 120%;
        color: #333333;
        text-align: left;
        height: 55px;
        background: transparent;
    }

    .home-service__item:hover .title{
        height: 55px;
    }
    
    .home-service__item .image {
        border: 1px solid #F4F4F4;
        box-sizing: border-box;
        border-radius: 4px;
        position: absolute;
        top: 0;
        left: 0;
        height: 100px;
        display: block;
        width: 100%;
    }

    .hamburger-menu__show{
        top: 15px;
        right: 15px;
    }
    .hamburger-menu__show img{
        height: 30px;
        width: 30px;
    }

    .mobile-hamburger__box{
        background: #FFFFFF;
        border-radius: 5px 0px 0px 5px;
        color: #333333;
    }
    .mobile-hamburger__box ul li{
        display: block;
        border-color:  #C4C4C4;
    }
    .mobile-hamburger__box ul li a, 
    .mobile-hamburger__phone a, 
    .mobile-hamburger__whatsapp a{
        color: #333333;
    }
    .mobile-hamburger__phone, 
    .mobile-hamburger__whatsapp {
        color: #333333;
    }

    .mobile-hamburger__phone span, 
    .mobile-hamburger__whatsapp span{
        color: #666666;
    }

    .hamburger-menu__show{
        display: block !important;
    }
    
    .menu-item-has-children span svg path {
        fill: #5a5a5a !important;
    }

    .section-title {
        font-weight: bold;
        font-size: 16px;
        line-height: 18px;
        text-transform: uppercase;
        color: #E23400;
        margin-bottom: 15px;
    }
    .home-about {
        font-size: 12px;
        line-height: 130%;
        text-align: justify;
        color: #333333;
    }
    .home-advantage__list{
        display: block;
    }
    .home-advantage__item{
        width: 210px;
        min-height: 170px;
        height: auto !important;
        margin-right: 10px;
    }
    .home-advantage__item::before {
        background: url(../_i/advantage-bg-i.png) no-repeat 50% 90px;
        background-size: 130px;
    }
    .home-advantage__item .title {
        font-weight: bold;
        font-size: 10px;
        padding-left: 50px;
    }
    .home-advantage__item .description {
        font-size: 12px;
        line-height: 130%;
    }
    .home-advantage__item img {
        height: 30px;
        max-width: 45px;
    }
    .home-price{
        margin-bottom: 0;
    }
    .home-price__item .image img{
        height: 20px;
        width: auto ;
    }
    .home-price__item .content {
        font-size: 12px;
        color: #333333;
        padding: 13px 8px;
    }
    .home-price__description{
        display: none;
    }
    .home-price__list{
        display: flex;
        flex-wrap: wrap;
    }
    .home-price__item{
        display: block;
        width: calc(50% - 10px);
    }
    
    .home-help__container{
        display: block;
    }
    .home-help{
        margin-bottom: 0;
    }
    .home-help__container{
        background: transparent;
    }
    .home-help__social {
        background: #F1F1F1;
        width: 100%;
        padding: 15px;
    }
    .home-help .container{
        padding: 0 ;
    }
    .home-help__container {
        font-weight: bold;
        font-size: 12px;
        line-height: 130%;
        text-transform: uppercase;
        color: #333333;
        padding: 0;
    }
    .home-help__item {
        width: auto;
        font-size: 12px;
        line-height: 13px;
        text-align: center;
        color: #333333;
        font-weight: normal;
        width: 60px;
    }
    .home-help__item.maneger{
        display: none;
    }
    .home-help__item a {
        width: 48px;
        height: 48px;
        background: #666666;
        border-color: #666666;
    }
    .home-help__item.whatsapp a {
        background: none;
    }
    .home-help__item.viber a {
        background: none;
    }
    .home-help__item.telegram a {
        background: none;
    }
    	
	.home-help .home-help__item.whatsapp a svg path {
		fill:#27AE60 !important;
	}
	.home-help .home-help__item.viber a svg path {
		fill:#9B51E0 !important;
	}	
	.home-help .home-help__item.telegram a svg path{
        fill:#00BEFF !important;
    }	
	.callzvon svg path{ 
	   fill:#666666 !important;
	}	
	
	
    .home-help__item a svg{
        height: 24px;
    }
    .home-help__head{
        padding: 15px ;
    }
    .home-help__title{    
        font-weight: bold;
        font-size: 16px;
        line-height: 18px;
        text-transform: uppercase;
        color: #E23400;
        margin-bottom: 15px;
    }
    footer{
        background: #F1F1F1;
        color: #333333;
        padding: 0;
    }
    footer .container{
        padding: 0;
    }
    .footer-item__container{
        flex-direction: column;
    }
    .footer-item__menu {
        flex: 5;
        text-align: center;
        width: 100%;
        padding: 0 45px;
        background: #373737;
        order: 1;
    }
    .footer-item__menu ul{
        display: block;
    }
    .footer-item__menu ul li{
        display: block;
        margin:0;
        padding: 14px 0;
        border-bottom: 1px solid #6C6C6C;
        text-align: left;
        position: relative;
    }
    .footer-item__menu ul li a{
        font-size: 18px;
        line-height: 1;
    }

    .footer-item__menu ul .sub-menu li:last-child {
        border: none;
    }
    .footer-item__menu ul .sub-menu li {
        padding: 10px 0;
    }
    
    .footer-item__menu ul .sub-menu li a{
        font-size: 15px;
    }

    .footer-item__menu .menu-item-has-children span{
        display: block;
    }

    .footer-item__menu .menu-item-has-children span svg path {
        fill: #fff !important;
    }

    .footer-info{
        order: 2;
        padding: 30px;
        font-size: 14px;
        line-height: 15px;
        color: #333333;
        font-weight: bold;
    }
    .footer-item__app{
        order: 3;
    }
    .footer-item__logo{
        display: none;
    }
    .footer-item__phone a{
        color: #333333;
        font-size: 18px;
    }
    .footer-item__copyright {
        font-size: 14px;
        line-height: 15px;
        text-align: center;
        color: #333333;
        margin-top: 20px;
        padding-bottom: 15px;
    }
    .page-template-template-home .slick-list{
        width: 100% ;
        max-width: 100%;
    }
    .page-template-template-home  .slick-track{
        display: flex;
    }
    .footer-item__call,
    .footer-item__email{
        display: block;
        margin: 15px 0;
    }
    .footer-item__call a,
    .footer-item__email a{
        font-size: 12px;
        line-height: 13px;
        color: #333333;
        font-weight: normal;
    }
    .contact-us-modal .home-help__item a{
        background: transparent !important;
    }
    .contact-us-modal .home-help__item.call a,
    .contact-us-modal .home-help__item.maneger a{
        border-color: #fff;
    }
    
    .mobile-hamburger__box .location.choosen {
        font-weight: bold;
        font-size: 18px;
        line-height: 120%;
        display: flex;
        align-items: center;
        color: #333333;
    }
    .mobile-hamburger__box .location.choosen img{
        margin-right: 8px;
    }
    .mobile-hamburger__loc{
        display: block;
    }

    .mobile-hamburger__locdrop {
        position: relative;
        display: flex;
        flex-direction: column;
        display: none;
    }

    .mobile-hamburger__locdrop a {
        color: #363636;
        font-size: 16px;
        margin: 5px 0;
    }

    .mobile-hamburger__loc>span {
        font-weight: bold;
        font-size: 12px;
        line-height: 120%;
        display: flex;
        align-items: center;
        text-decoration-line: underline;
        color: #333333;
        margin: 5px 0;
        cursor: pointer;
    }

}


.fancybox-button svg path {    
    color: #FFF;
}


header .menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

header .menu .menu-item-has-children .sub-menu {
    position: absolute;
    width: 250px;
    left: 0;
    top: 49px;
    padding: 0;
    display: none;
    background: #1E1E1E;
}

header .menu .menu-item-has-children .sub-menu li a {
    padding: 10px 35px;
    display: block;
}

header .menu .menu-item-has-children .sub-menu li:hover a {
    background: #E20613;
}

header .menu .menu-item-has-children>a:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: url(../_i/_icons/arrow.svg)no-repeat center;
    top: 20px;
    margin-left: 5px;
}





@media (max-width: 768px) { 
	.wrapper{
        overflow: hidden;
    }
	.home-service__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
	}
	
	.home-advantage__list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    }
	
}


@media (max-width: 480px) { 
	
	.home-service__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
	}
	
	.home-advantage__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    }
	
	
	
}

@media (max-width: 320px) { 
	
	
	
}
