@font-face {
    font-family: 'Allura';
    src: url('../font/Allura-Regular.woff2') format('woff2'),
    url('../font/Allura-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.carousel{
    margin-bottom: 40px;
}
p{
    font-size: 16px !important;
}
/*-------------------------------------*/
/* MAIN NAV */
/*-------------------------------------*/

.main_nav{
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: transparent;
    z-index: 10;
    display: none;
}

.main_nav .primary_menu{
    height: 100vh;
    text-transform: uppercase;
    padding: 0;
    margin: 0 auto;
    float: right;
    display: none;
    visibility: hidden;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeOutLeft;
    /*animation-delay: 0.4s;*/
}
.main_nav .primary_menu li{
    position: relative;
    height: auto;
    vertical-align: top;
    list-style: none;
    margin: 0;
    align-items: center;
    display:block;
    padding: 10px 20px;
    border-bottom: 1px solid #f3f3f3;
}
.main_nav .primary_menu > li{
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-name: fadeInUp;
}
.main_nav .primary_menu > li:nth-child(1) {
    animation-delay: 0.3s;
    margin-top: 100px;
}

.main_nav .primary_menu > li:nth-child(2) {
    animation-delay: 0.4s;
}

.main_nav .primary_menu > li:nth-child(3) {
    animation-delay: 0.5s;
}

.main_nav .primary_menu > li:nth-child(4) {
    animation-delay: 0.6s;
}

.main_nav .primary_menu > li:nth-child(5) {
    animation-delay: 0.7s;
}

.main_nav .primary_menu > li:nth-child(6) {
    animation-delay: 0.8s;
}

.main_nav .primary_menu > li:nth-child(7) {
    animation-delay: 0.9s;
}

.main_nav .primary_menu > li:nth-child(8) {
    animation-delay: 1s;
}

.main_nav .primary_menu > li:nth-child(9) {
    animation-delay: 1.3s;
}

.main_nav .primary_menu > li:nth-child(10) {
    animation-delay: 1.4s;
}


.main_nav .primary_menu .nav_sub,
.main_nav .primary_menu .nav_sub .nav_sub_child{
    position: fixed;
    width: 250px;
    /*background-color: #fff;*/
    top: 70px;
    padding: 0;
    margin: 0;
    text-transform: none;
    display: none;
}

.main_nav .primary_menu .nav_sub .nav_sub_child{
    position: absolute;
    right: 0;
    top: 0 !important;
}
.main_nav .primary_menu .nav_sub li,
.main_nav .primary_menu .nav_sub .nav_sub_child li{
    position: relative;
    height: 50px;
    left: 0;
    padding: 0 10px;
    border-bottom: 1px solid #f3f3f3;
    z-index: 2;
    display: flex;
}
.main_nav .primary_menu .nav_sub .nav_sub_child li {
    border-bottom: none !important;
    height: auto !important;
}
.main_nav .primary_menu .nav_sub li {
    height: auto;
    font-size: 13px;
    padding: 0 0 0 20px;
    margin: 5px 0;
    border: none;
}

.main_nav .primary_menu .nav_sub li a {
    color: #000;
}

.main_nav .primary_menu .nav_sub li a:after {
    background-color: #000 !important;
}
.main_nav .primary_menu .nav_sub li:last-child,
.main_nav .primary_menu .nav_sub .nav_sub_child li:last-child{
    border-bottom: 0;

}
.main_nav .primary_menu .nav_sub li a,
.main_nav .primary_menu .nav_sub .nav_sub_child li a{
    position: relative;
    color: #000;
}
.main_nav .primary_menu .nav_sub li a:hover,
.main_nav .primary_menu .nav_sub .nav_sub_child li a:hover{
    text-decoration: none;
}
.main_nav .primary_menu .nav_sub:after,
.main_nav .primary_menu .nav_sub .nav_sub_child:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height:100%;
    background-color: #fff;
    box-shadow: rgba(0,0,0,0.09) 1px 10px 10px;
    display: none;
    opacity: 0;
    z-index: 1;
}


/*.main_nav .primary_menu .nav_sub .nav_sub_child:after{*/
/*    top: 0 !important;*/
/*}*/
.main_nav .primary_menu .nav_sub li:hover .nav_sub_child{
    display: block;

}
.main_nav .primary_menu li:hover .nav_sub {
    display: none;
}
.main_nav .primary_menu li:hover .nav_sub li,
.main_nav .primary_menu .nav_sub li:hover .nav_sub_child li{
    position: relative;
    vertical-align: top;
    list-style: none;
    align-items: center;
    display:block;
    padding: 0 0 0 20px

}



.main_nav .primary_menu li:hover .nav_sub:after,
.main_nav .primary_menu .nav_sub li .nav_sub_child:after{
    opacity: 1;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeIn;
    animation-delay: 0s;

}

.main_nav .primary_menu .nav_link{
    position: relative;
    font-size: 12px;
    color: #000;
    padding: 0;
    font-weight: 500;
}
.main_nav .primary_menu .nav_link:hover{
    text-decoration: none;
    /*color: #03a3c4;*/
}
.main_nav .primary_menu .nav_link:after {
    left: 0;
}
.main_nav .primary_menu .nav_sub li a:after{
    left: 0 !important;
    top: 0 !important;
}
.main_nav .primary_menu .nav_link:after,
.main_nav .primary_menu .nav_sub li a:after{
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #000;
    left: 0;
    top: 0;
    transition: all 0.6s ease;
}
.main_nav .primary_menu .nav_link:hover:after,
.main_nav .primary_menu .nav_sub li a:hover:after{
    width: 10px;
}
.main_nav .primary_menu .nav_sub,
.main_nav .primary_menu .nav_sub .nav_sub_child {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
}
.main_nav .primary_menu .nav_tel{
    font-size: 12px;
    background-color: transparent;
    padding: 0 10px;
    transition: all 0.4s;
    cursor: pointer;
}
.main_nav .primary_menu .nav_tel:hover{
    background-color:#193c61;
}
.main_nav .primary_menu .nav_tel a{
    color: #000;
}
.main_nav .primary_menu .nav_tel:hover a{
    text-decoration: none;
    color: #fff;
}
.main_nav .primary_menu .primary_group{
    display: none;
}
.main_nav .primary_menu .primary_group .a_group{
    font-weight: 400;
}
.main_nav .primary_menu .nav_sub .nav_sub_child.active,
.main_nav .primary_menu .primary_group .nav_sub.active,
.main_nav .primary_menu .nav_sub.active {
    display: block;

}
.main_nav .primary_menu li .nav_sub.active,
.main_nav .primary_menu .nav_sub li .nav_sub_child.active{
    display: block !important;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeIn;
    animation-delay: 0.4s;
}

.main_nav .primary_menu .ico_dropdown{
    position: absolute;
    top: 6px;
    right: 10px;
    width: 25px;
    height: 25px;
    text-align: center;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transition: all 0.3s;
    cursor: pointer;
    z-index: 2;
    display: block;

}
.main_nav .primary_menu .ico_dropdown.active{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);

}
.main_nav .primary_menu .ico_dropdown i{
    font-size: 16px;
}
.booking_mobile{
    display: none;
}

.main_nav  .nav_booknow{
    position: absolute;
    right: 0;
    height: 70px;
    font-size: 12px;
    vertical-align: top;
    align-items: center;
    background-color: #03a3c4;
    padding: 0 10px;
    transition: all 0.4s;
    cursor: pointer;
    display: none;
}
.main_nav .nav_booknow:hover{
    background-color: #193c61;
}
.main_nav .nav_booknow a,
.main_nav .nav_booknow span{
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
.main_nav .primary_menu .nav_booknow a:hover{
    text-decoration: none;
}
/*-------------------------------------*/
/* MAIN NAV ACTIVE */
/*-------------------------------------*/
.main_nav.active{
    background-color: transparent !important;
    box-shadow: none !important;
}
.main_nav.active .primary_menu {
    position: absolute;
    width: 30%;
    top: 0;
    right: 0;
    background-color: #fff;
    opacity: 1;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeIn;
    animation-delay: 0.4s;
    display: block !important;
    visibility: visible;
}
.main_nav.active .site_logo {
    opacity: 0;
}
/*-------------------------------------*/
/* MAIN NAV CHILD */
/*-------------------------------------*/
/*#nav_child_top.active{*/
/*    height: 100vh;*/
/*    overflow: scroll;*/
/*}*/
.main_nav.nav_child{
    top: 0;
    height: 70px;
    background-color: #fff;
    z-index: 9;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeIn;
}
.main_nav.nav_child .site_logo{
    bottom: 10px;
    width: 110px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.main_nav.nav_child .primary_menu{
    height: 100vh;
}
.main_nav.nav_child .primary_menu li{
    height: auto;
}
.main_nav.nav_child .primary_menu .nav_link:after,
.main_nav.nav_child .primary_menu .nav_sub li a:after{
    background-color: #000;
}
.main_nav.nav_child .primary_menu .nav_link{
    color: #000;
}
.main_nav.nav_child .primary_menu .nav_sub,
.main_nav.nav_child .primary_menu .nav_sub .nav_sub_child{
    top: 0;
}
.main_nav.nav_child .primary_menu .nav_sub li a,
.main_nav.nav_child .primary_menu .nav_sub .nav_sub_child li a{
    color: #000;

}
.main_nav.nav_child .primary_menu .nav_sub li,
.main_nav.nav_child .primary_menu .nav_sub .nav_sub_child li{
    border-bottom: none;
}
.main_nav.nav_child .primary_menu .nav_sub:after,
.main_nav.nav_child .primary_menu .nav_sub .nav_sub_child:after{
    background-color: #fff;

}
.main_nav.nav_child .primary_menu .nav_booknow,
.main_nav.nav_child .primary_menu .nav_tel{
    display: block;
}


/*-------------------------------------*/
/* HEMBURGER */
/*-------------------------------------*/
.hamburger {
    position: fixed;
    top: 25px;
    right: 70px;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 10;
    display: block;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.hamburger.active{
    filter: none !important;
    -webkit-filter: none !important;
}

.hamburger_box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger_box .menu_text:before,
.hamburger_box .menu_text:after {
    position: absolute;
    top: 0;
    left: 45px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: block;
}
.hamburger_box .menu_text:after{
    left: 35px !important;
}
.hamburger_box .menu_text:before{
    content: "Menu";
    animation-name: fadeInLeft;
}
.hamburger.active .hamburger_box .menu_text:before{
    animation-name: fadeOutLeft;
}
.hamburger_box .menu_text:after{
    animation-name: fadeOutLeft;
}
.hamburger.active .hamburger_box .menu_text:after{
    content: "close";
    animation-name: fadeInLeft;
}
.hamburger_inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger_inner, .hamburger_inner::before, .hamburger_inner::after {
    width: 35px;
    height: 2px;
    background-color: #000;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;


}

.hamburger_inner::before, .hamburger_inner::after {
    content: "";
    display: block;
    transition: all 0.6s;
}
.hamburger_inner::before {
    width: 20px;
    top: -6px;
    right: 0;
    transition: all 0.6s !important;

}
.hamburger:hover .hamburger_inner::before{
    width: 35px;

}
.hamburger_inner::after {
    bottom: -6px;
}


/*-------------------------------------*/
/* HEMBURGER SPIN */
/*-------------------------------------*/

.hamburger_spin .hamburger_inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger_spin .hamburger_inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
.hamburger_spin .hamburger_inner::after {
    transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger_spin.active .hamburger_inner {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger_spin.active .hamburger_inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger_spin.active .hamburger_inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*-------------------------------------*/
/* WORABURA BOOKING MOBILE */
/*-------------------------------------*/
.booking_mobile {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 5;
    display: none;
}
.booking_mobile .mail,
.booking_mobile .tel {
    background: #fff;
    width: 25%;
    float: left;
    padding: 10px;
    height: 40px;
    text-align: center;
    transition: all 0.6s;
}
.booking_mobile .mail,
.booking_mobile .tel{
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #02364e;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: all .15s;
}
.booking_mobile .mail:hover,
.booking_mobile .tel:hover {
    color: #cb9a4a;
}
.booking_mobile .tel:hover {
    transition: all .15s;
}
.booking_mobile .book label{
    font-weight: 300 !important;
}
.booking_mobile .book {
    background: #02364e;
    width: 50%;
    height: 40px;
    float: left;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-variant: all-small-caps;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.6s;
    line-height: 0;
}

.booking_mobile .book:hover{
    background: #cb9a4a;
}

.bg-social{
    z-index: 5 !important;
}
.bg-white{
    padding: 25px;
}
h1, .bg-white h1{
    font-size: 43px !important;
}
hr{
    width: 100%;
    border: 0;
    border-top: 1px #aaa dashed;
    float: left;
}
.logo_hotel {
    position: absolute;
    top: 0;
    background-color: #fff;
    z-index: 5;

}
.bg-blue{
    border-bottom: #cb9a4a 5px solid !important;
}
.bg-white{
    top: 0 !important;
    z-index: initial !important;
}
.bg-white.info{
    margin-bottom: 50px;

}
.btn_book{
    background-color:#02364e;
    color: #fff !important;
    font-size: 14px;
    padding: 10px;
    text-align: center;
    font-weight: 300;
    display: inline-block;
    transition: all 0.6s;

}
.btn_book:hover{
    background-color: #cb9a4a;

}
.space-for-header{
    z-index: 3 !important;
}

.modal-booking{
    position: relative !important;
}
.modal-booking .img_reser{
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}
.promotion,
.promotion-two{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.accom-title{
    padding: 30px !important;
}
.navbar-static-top{
    z-index: 10 !important;
}

.menu ul{
    text-align: right !important;
}
.reservation_box .arrow_moon{
    z-index: 1 !important;
}
.reservation_box .text_reser,
.reservation-check select{
    color: #02364e !important;
}
.reservation_box .input_night{
    color: #fff !important;
}
.reservation_box .btnbook_reser:hover{
    background: #cb9a4a !important;
}
.book-now-onpromotion{
    display: initial !important;
    transition: all 0.6s;
}
.book-now-onpromotion:hover{
    background-color: #cb9a4a !important;
}
.accom-title h1{
    margin: 0 !important;
    margin-top: auto !important;
}
.accom-title h3{
     margin-top: 10px !important;
     margin-bottom: 0 !important;
}
.accommodation-img{
    padding: 0 20px;
}
/*col_contact*/
.col_contact{
    width: 80%;
    margin: auto;
}
.col_contact .box_detail{
    text-align: center;
    margin: 0 0 30px;
}
.col_contact .box_detail .btn_contactform{
    width: auto !important;
    background: #02364e;
    border: none;
    border-radius: 0;
    padding: 10px;
    margin-top: 20px;
}
.col_contact .box_detail a{
    color: #555 !important;
}
.col_contact .box_detail a:hover{
    color: #2e8daa !important;
}


.space-for-footer{
    text-align: center;
    padding: 15px !important;
    margin-top: 0 !important;
    background: #02364e;
    border-top: #cb9a4a 5px solid !important;
}
.space-for-footer p,
.space-for-footer a{
    color: #fff !important;
    font-size: 13px !important;
}
.col_img{
    position: relative;
    overflow: hidden;
}
.col_img img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .6s ease-in-out;

}
.content-p:hover .col_img img{
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.promotion.right{
    right: 0;
}

.offers_home{
    padding: 20px;
}
.offers_home img{
    padding: 10px;
}

.content-p-accom{
    margin-top: 0 !important;
}
.bg-white.info,
.modal-body ul{
    color: #555;
    font-size: 13px;
    font-weight: 300;
}
.pre-header a{
    color: #fff !important;
}
.hover01 figure img{
    transition: all 0.6s !important;
}
.content-p-accom:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.detail-accom{
    padding: 25px 0 !important;
}
.promotion-accom{
    position: relative !important;
}
.book-now-onpromotion{
    padding: 10px !important;
}

.photo-accom{
    margin-top: 50px;
}

.bg-social{
    padding: 5px !important;
    display: grid;
    text-align: center;
}
.bg-social a{
    background: #2E8DAB;
    color: #fff !important;
    font-size: 18px;
    padding: 5px;
    margin: 5px;
    transition: all 0.6s;
}
.bg-social a:hover{
    background: #cb9a4a;
}

/*Popup banner*/

.cnt223 a{
    text-decoration: none;
}
.popup{
    position: fixed;
    top: 0;
    width: 100%;
    margin: 0 auto;
    display: none;
    z-index: 99999;
    height:100%;
    background:rgba(0,0,0,0.7);

}
.cnt223{
        width: 700px;
    /* min-height: 150px; */
    margin: auto;
    background: none;
    position: absolute;
    z-index: 103;
    text-align: center;
    padding: 10px;
    border-radius: 0;
    transition: all 0.5s;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    top: 80px;
}
.banner_popup img{
    width: 100%;
}
.cnt223 p{
    clear: both;
    color: #555555;
    text-align: center;
}
.cnt223 p a{
    color: #D91900;
    font-weight: bold;
}
.cnt223 .x{
    float: right;
    right: -20px;
    top: 20px;
    position: absolute;
    background: none;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.5s;
    background: #2E8DA9;

}
.cnt223 .x:hover{
    transform: rotate(90deg);
}
.cnt223 label{
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}
.overf{
    overflow: hidden;
}
.list_pagination{
    width: 100%;
    margin: auto;
    text-align: center;
}
.pagination{
    width: 100%;
    padding-left: initial !important;
    margin: auto !important;
}
.pagination > li {
    display: inline-block !important;
}

.bg-social{
    top: 35% !important;
}

.content_footer{
    background-color: #02364e;
    text-align: center;
}
.content_footer .col_box{
    padding: 50px
}
.content_footer .col_box label{
    font-size: 18px;
}
.content_footer .col_box p,
.content_footer .col_box a{
    font-size: 14px !important;
}
.content_footer .col_box h3,
.content_footer .col_box p,
.content_footer .col_box a,
.content_footer .col_box span{
    color: #fff;
    font-weight: 300;
}
.content_footer .col_box a{
    margin: 5px;
}
.tab_warning {
    position: fixed;
    z-index: 4;
    background: #de0000;
    color: #fff;
    width: 100%;
    padding: 10px 50px;
    font-size: 12px;
    text-align: center;
}
.space-for-header{
    top: 34px;
}
.section_awards{
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 30px 0;
}
.section_awards .container{
    width: 768px;
}
.section_awards img{
    height: 100px;
    margin: 0 auto;
}
.section_awards .owl-pagination{
    margin-top: 25px;
}
.details_offers_home{
    position: absolute;
    bottom: 10px;
    right: 10px;
    text-align: center;
}
.details_offers_home h3{
    background: rgba(255, 255, 255, 0.85);
    padding: 10px!important;
    margin: 0!important;
}
.details_offers_home .btn_booknow{
    color: #ffffff;
    padding: 10px;
    font-size: initial;
    text-transform: uppercase;
}
.details_offers_home h3>span{
    font-family: 'Allura';
    margin-right: 5px;
    color: #7b1315;
}
.bg-social img{
    height: 30px;
    filter: brightness(0) invert(1);
    padding: 5px !important;
}
.box_download{
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}
.box_download .page-download{
    width: 100%;
    float: left;
}
.box_download .page-download img{
    width: 100%;
}
.box_download .page-download a{
    color: #ffffff!important;
    background-color: #02364e;
    transition: all 0.25s;
}
.box_download .page-download a:hover{
    background-color: #cb9a4a;
    color: #ffffff!important;
}