@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #dedddd;
    background-image:url(../image/background\ edit.png);
}

.koulen-regular {
    font-family: "Koulen", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hanuman-thin {
    font-family: "Hanuman", serif;
    font-weight: 100;
    font-style: normal;
  }
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #e9e9e9;
}

ul {
    list-style-type: none;
}
h1,
h2,
h3,
h4 {
    font-family: "Koulen", sans-serif;
}
h1{
    color: #000000;
}

p {
    font-family: "Hanuman", serif;
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;

}

#navbar {
    width: 100%;
    height: 80px;
    /* background-color: cyan; */
    font-family: "Koulen", sans-serif;
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: center;
}

#navbar .con {
    min-width: 1200px;
    margin: auto;
}

#navbar .nav-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#navbar .nav-con .logo{
    width: 200px;
    height: 70px;
    /* background-color: cyan; */
}
#navbar .nav-con .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#navbar.scrolled {
    background-color:#173540;
    /* background-color: #173540; */
}

#navbar .navbar-nav {
    display: flex;
}

#navbar .navbar-nav .nav-item .nav-link {
    display: block;
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    color:#F7941F;
}

#navbar .navbar-nav .nav-item .nav-link:hover {
    color: lime;
}

#navbar .navbar-nav .nav-item .drop-down {
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    justify-content: center;
    position: absolute;
    visibility: hidden;
    top: 100%;
    left: 0;
}

.hover-box {
    width: 100px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row {
    width: 1200px;
    height: 100%;
    background-color: white;
    display: flex;
    gap: 10px;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 {
    width: calc(1200px/5);
    height: 100%;
    /* background-color: teal; */
    margin: 10px 0px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop {
    /* background-color: chartreuse; */
    display: block;
    padding: 10px 20px;
    color: black;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop:hover {
    color: lime;
    /* background-color: #f2f1f1; */
}

#navbar .navbar-nav .nav-item:hover .drop-down {
    visibility: visible;
}

#navbar .nav-button {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

#navbar .nav-button button {
    border-radius: 5px;
    border: none;
    background-color: transparent;
    border: 2px solid #F7941F;
    border-radius: 10px;
}

#navbar .nav-button button>a {
    display: block;
    font-family: "Koulen", sans-serif;
    padding: 10px 20px;
    font-size: 15px;
    /* color: #F7941F; */
}
.nav-button .icon-button a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #F7941F;
}

.nav-button .notification-button .link-note{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #F7941F;
}
.nav-button .notification-button .link-note{
    position: relative;
}
.nav-button .notification-button .link-note .message{
    width: 18px;
    height: 18px;
    background-color: red;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -5px;
}
.nav-button .notification-button .link-note .message span{
    font-size: 14px;
}
.nav-button .notification-button{
    position: relative;
}
.nav-button .notification-button .dropdown-note{
    width: 330px;
    /* height: 100px; */
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    z-index: 99;
    right: -55px;
    visibility: hidden;
    top: 60px;
    border-radius: 10px;
    padding: 0px 10px 10px 10px;
}
.nav-button .notification-button:hover .dropdown-note{
    visibility: visible;
}
.nav-button .notification-button:hover .dropdown-note .droplist-note .tittle{
    display: flex;
    justify-content: space-between;
}
.nav-button .notification-button:hover .dropdown-note .droplist-note .tittle h3{
    color: #173540;
    font-size: 20px;
    font-weight: 100;
}

.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note{
    width: 100%;
    background-color: rgb(221, 218, 218);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-4{
    width: 50px;
    /* background-color: yellow; */
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-4 .icon{
    width: 50px;
    font-size: 20px;
    height: 50px;
    border-radius: 100%;
    color: #292831;
    background-color:#9acd32;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}  
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8{
    width: 240px;
    height: auto;
    padding: 5px 0px;
    /* background-color: rgb(129, 108, 108); */
    margin-left: 10px;
} 
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8 p{
    font-size: 16px;
    margin-left: 15px;
    color: #000000;
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8 p span{
    font-size: 14px;
}
.profile-button .link-profile{
    display: block;
    width: 40px;
    height: 40px;
    /* line-height: 50px; */
    border-radius: 100%;
    /* overflow: hidden; */
    text-align: center;
    position: relative;
}
.profile-button .link-profile .img{
    position: relative;
}
.bookmark{
    width: 12px;
    height:12px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    position: absolute;
    top: -4px;
    right: 5px;
    z-index: 99;
}
.profile-button .link-profile .img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .link-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button{
    position: relative;
}
.profile-button .dropdown-profile{ 
    width: 280px;
    height: auto;
    background-color:#fff;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    border-radius: 10px;
    padding: 15px;
    visibility: hidden;
    right: 0;
    top: 60px;
    /* box-shadow: 1px 1px 15px rgb(209, 207, 207); */
}
.hold{
    width: 40px;
    height: 20px;
    background-color: rgba(255, 0, 0, 0);
    z-index: 99;
    position: absolute;
    right: 0;
    top: 100%;
}
.profile-button .dropdown-profile .droplist-profile a:hover .icon-click{
    color: lime;
}
.profile-button:hover .dropdown-profile{
    visibility: visible;
}
.profile-button .dropdown-profile .droplist-profile a .fa-chevron-right{
    float: right;
}
.profile-button .dropdown-profile .droplist-profile a .icon-click{
    color: black;
    font-size: 16px;
    padding: 5px;
}
.profile-button .dropdown-profile .droplist-profile .body-profile{
    width: 100%;
    /* background-color: red; */
    border-bottom: 1px solid black ;
    display: flex;
    transition: none;
    padding-bottom: 8px;
    margin-bottom: 15px;
    gap: 20px;
    align-items: center;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img{
    display: block;
    width: 40px;
    height: 40px;
    transition: none;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name{
    /* width:200px ; */
    height: 60px;
    color: black;
    /* background-color:teal; */
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name h4{
    color: black;
}
.swiper {
    width: 100%;
    height: 100vh;
  }

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit:cover;
  }
  .overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 200;
}
.swiper .text{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 201;
    color: white;
}
.swiper .text #demo{
    font-size: 90px;
    color: white;
}
.swiper .text #demo1{
    color: white;
    text-align: center;
    font-size: 70px;
}
img{
    width: 100%;
    height: 100%;
}
.province h1{
    display: flex;
    justify-content: center;
    padding: 60px;
    font-size: 35px;
}
/* province*/
.detail-province{
    width: 1200px;
    height: 500;
    margin:  auto;
}
.detail-province .row {
    width: 100%;
    height: 570px;
    display: flex;
    justify-content: center; /* Center the background horizontally */
    position: relative;
}

.detail-province .row .background {
    width: 1200px; 
    height: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
    left: 50%; 
    transform: translateX(-50%); 
    /* top: 15%; */
    border-radius: 20px;
}

.detail-province .row .col-4 {
    width: 1200px;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center; 
    z-index: 4;
    text-align: center;
    margin: auto;
    color: white;
}

.detail-province .row .col-4 p {
    font-size: 30px;
    padding: 0px 20px;
    /* color: rgb(119, 115, 111); */
}

.detail-province .row .col-8 {
    /* top: -20px; */
    width: 100%;
    height: 100%;
    position: absolute; 
}
.detail-province .row .col-8 .province-circle {
    width: 100%;
    height: 100%;
    position: relative;
}
.detail-province .row .col-8 img{
    object-fit: cover;
    border-radius: 20px;
}

.container{
    width: 1200px;
    margin: auto;
}
.visted-temple{
    width: 100%;
    margin: auto;
    padding-top: 70px;
}
.visted-temple .visted-name h1{
    margin: auto;
    display: flex;
    justify-content: center;
    font-size:35px;
    padding-bottom: 60px;
}
.visted-temple .place-entertanment{
    gap: 10px;
    padding-top: 30px;
}
.visted-temple .row{
    width: 100%;
    display: flex;
}
.visted-temple .row .down{
    margin-top: 90px;
}
.visted-temple .col-4{
    width: 33.33%;
    height: 300px;
    /* background-color: aqua; */
    position: relative;
    padding: 0 10px;
}
.visted-temple .col-4 .temple-img-sr{
    border-radius: 50px 0px 50px 0px;
    object-fit: cover;
}
.visted-temple .col-4 .redius{
    border-radius: 0px 50px 0px 50px;
}
.visted-temple .row .col-4 .temple-name{
    width: 200px;
    height: 50px;
    background-color: #173540;
    color: #F4F5F6;
    position: absolute;
    top: 275px;
    left: 100px;
    border-radius: 10px;
    z-index: 4;
    cursor: pointer;
}
.temple-name:hover p{
    border: 2px solid #173540;
}
.visted-temple .row .col-4 .temple-name a{
    font-size: 25px;
}
.temple-name:hover p,
  .temple-name:hover a {
    background-color: #F4F5F6;
    color: #173540;
    border-radius: 10px;
  }
.visted-temple .row .col-4 .temple-name p{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
}
.col-4 .box-overlay{
    width: 100%;
    height: 100%;
    z-index: 3;
    position: absolute;
    border-radius: 50px 0px 50px 0px;
    transition: 1s;
    cursor: pointer;
}
.col-4:hover .box-overlay{
    background: linear-gradient(#0003, #000);

}
.col-4 .hidden{
    overflow: hidden;
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 50px 0px 50px 0px;
}
.col-4 .overlay2{
    width: 100%;
    height: 100%;
    z-index: 3;
    position: absolute;
    border-radius: 0px 50px 0px 50px;
    transition: 1s;
    cursor: pointer;
}
.col-4 .hidden1{
    overflow: hidden;
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 0px 50px 00px 50px;
}
.col-4 .box-overlay p{
    color: #F4F5F6;
    text-align: center;
    padding: 0px 10px;
    position: absolute;
    z-index: 4;
    top: 300px;
    transition: 0.8s;
    font-size: 20px;
    transition: 1s;
}
.col-4:hover p{
    top: 95px;
}
.col-4:hover .neakpon{
    top: 70px;
}
.mountain h1{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 35px;
    padding: 60px 0px;
}
/* province*/
.detail-mountain{
    width: 100%;
}
.row{
    width: 100%;
    display: flex;
}
.detail-mountain .row .col-6{
    width: 50%;
    height: 400px;
    padding: 0px 3px;
    position: relative;
}
.detail-mountain .row .img{
    width: 100%;
    height: 100%;
}
.detail-mountain .row img{
    border-radius: 10px;
    object-fit: cover;
}
.detail-mountain .row .overlay{
    width: 99%;
    height: 100%;
    position: absolute;
    z-index: 1;
    border-radius: 10px;
}
.detail-mountain .row h1{
   top: 50px;
   left: 40%;
   color: white;
    position: absolute;
    z-index: 2;
}
.detail-mountain .row p{
    top: 90px;
    padding: 30px;
    color: white;
     position: absolute;
     z-index: 2;
     font-size: 20px;
 }
.relex{
    margin-top: 20px;
}
.col-small-6{
    width: 100%;
    height: 200px;
    display: flex;
}
.col-mb-6{
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin: 0px 5px;
}
.col-small-6 .col-mb-6:hover img{
    transform: scale(1.1); 
}
.col-small-6 .col-mb-6 img{
    transition: transform 0.3s ease;
}
.col-small-6 .col-mb-6 .img1{
    width: 100%;
    height: 100%;
}
.col-small-6 .img2{
    width: 100%;
    height: 95%;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 10px;
}
.down{
    margin-top: 20px;
}
.visited-btn{
    position: absolute;
    top: 80%;
    left: 37%;
    z-index: 10;
}
.visited-btn .btn-view{
    padding: 10px 30px;
    background-color: #183540;
    border: 1px solid #183540;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    font-size: 17px;
    font-family: "Hanuman", serif;
    transition: 0.5s;
}
.visited-btn .btn-view:hover
{
    background-color: white;
    color: #183540;
}
.do h1{
    display: flex;
    justify-content: center;
    padding: 60px;
    font-size: 35px;
}
.container .row{
    width: 100%;
    display: flex;
}
.splide{
    width: 1200px;
    margin: auto;
    position: relative;
}
.splide__list {
    width: 100%;
    display: flex;
} 
.splide_slide{
    width: 100%;
}
.splide_slide .col-4{
    width: 33.33%;
    border-radius: 10px;
    /* box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .13), 0 1px 1px 0 rgba(0, 0, 0, .11); */
    margin-left: 5px;
    overflow: hidden;
} 
.splide_slide .col-4 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
/* .slider_wrapper{
    padding: 50px 15px;
    max-width: 1200px;
    margin: 0 auto;
} */
.splide__arrow{
    width: 40px !important;
    height: 40px !important;
    background-color: rgb(208, 208, 205) !important;
    top: 40% !important;
}
.splide__slide .col-4{
    width: 100%;
    border-radius: 10px;
    background-color:white ;
    border: 1px solid rgb(237, 237, 237);
    gap: 10px !important;
}
.splide__slide .col-4 .img{
    padding: 10px;
    position: relative;
    z-index: 1;
}
.splide__slide .col-4 .save{
    display: flex;
    justify-content: center;
}
.splide__slide .col-4 .save i{
    position: absolute ;
    font-size: 18px;
    cursor: pointer;
     /* top: 7px;
     left: 11px; */
    z-index: 2;
    color: #000;
}
.splide__slide .col-4 .save span a:hover{
    background-color: rgb(223, 223, 223);
}
.splide__slide .col-4 .save span a{
    width: 40px;
    height: 40px;
    background-color: #F4F5F6;
    position: absolute;
    z-index: 3;
    right: 20px;
    display:flex ;
    align-items: center;
    justify-content: center;
    top: 20px;
    border-radius: 50%;
}
.splide__slide .col-4 img{
    border-radius: 10px;
    width: 100%;
    height: 250px;
}
.splide__slide  .col-4 .body-txt h2{
    padding: 5px;
    font-size: 25px;
    color: black;
}
.splide__slide .col-4 .body-txt .name-place{
    display: flex;
    justify-content: space-between;
}
.splide__slide .col-4 .body-txt .name-place .fa-solid{
    padding-top: 18px;
    color:  #EBCA0F;;
    display: flex;
    font-size: 20px;
}
.splide__slide .col-4 .body-txt .name-place span p{
    padding-top: 16px;
    padding-right: 10px;
    font-size: 20px;
}
.splide__slide .col-4 .body-txt .name-place .star{
   display: flex;
}
.splide__slide .col-4 .body-txt .view{
    display: flex;
    justify-content: space-between;
    /* padding: 0px 10px; */
    cursor: pointer;
}
.splide__slide .col-4 .body-txt .view h4 a {
    color: #071516;
}
.splide__slide .col-4 .body-txt h4{
    padding: 10px;
}
.splide__slide .col-4 .body-txt{
    padding: 0px 20px;
}
.splide__slide .col-4 .body-txt .question p{
    width: 100%;
    padding-top: 10px;
    font-size: 20px;
    font-weight: bold;
}
.splide__slide .col-4 .body-txt .tip{
    font-size: 17px;
    padding: 15px 0px;
}

.container .hotel-name h1{
    margin: auto;
    display: flex;
    justify-content: center;
    font-size:35px;
    padding-top: 60px;
}
.booking{
    width: 1200px ;
    margin-top: 60px;
}
.booking .row{
    width: 1200px ;
    height: 400px;
    margin-top: 20px;
}
.booking-hotel{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
}
.booking-hotel .col-3{
    width: 25%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .13), 0 1px 1px 0 rgba(0, 0, 0, .11);
    cursor: pointer;
}
.booking-hotel .col-3:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.booking-hotel .col-3 .pic-hotel {
    width: 100%;
    height: 200px;
    padding: 10px; /* Initial padding */
    overflow: hidden;
    position: relative;
}

.booking-hotel .col-3 .pic-hotel span{
    width: 30px;
    height: 30px;
    background-color: white;
    position: absolute;
    z-index: 3;
    right: 20px;
    top: 20px;
    border-radius: 50%;
}
.booking-hotel .col-3 .pic-hotel span:hover{
    background-color: rgb(223, 223, 223);
}
.booking-hotel .col-3 .pic-hotel span a{
    position: absolute;
    z-index: 3;
    left: 7px;
    top: 8px;
    color: #071516;
}
.booking-hotel .col-3 .pic-hotel img{
    border-radius: 10px;
}
.col-3 .name-rate{
    display: flex;
    justify-content: center;
    padding: 0px 10px;
}
.col-3 .hotel-name{
    width: 100%;
    height: 30px;
}
.col-3 .hotel-name h4{
    font-weight: normal;
} 
.col-3 .icon-star {
    padding: 0px 10px;
}
.col-3 .icon-star span{
    display: flex;
    width: 50px;
}
.col-3 .icon-star i{
    display: flex;
    justify-content: center;
    color: gold;
    padding: 4px 5px;
}
.col-3 .icon-star p{
    font-size: 20px;
}
.col-3 .text{
    width: 100%;
    height: 100px;
    padding: 10px 10px;
    text-align: left;
}
.line{
    width: 100%;
    height: 1px;
    background-color: rgb(237, 237, 237);
    padding: 0px 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}
.total {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
    /* background-color: red; */
}
.total .price{
    padding: 20px 0px;
    font-size: 17px;
}
.col-3 .btn{
    padding: 15px 0px;
}
.col-3 .btn-booking {
    padding: 5px 20px;
    border-radius: 5px;
    font-family: "Hanuman", serif;
    color: #ffffff;
    background-color: #173540;
    cursor: pointer;
    font-size: 17px;
}
.btn-booking:hover{
    border: 2px solid #173540;
}
.btn-booking:hover,
.btn-booking:hover a {
    background-color: white;
    color: #173540;
}
/* footer */
.footer{
    width: 100%;
    margin-top: 100px;
    height: auto;
}
.footer .row-foot{
    width: 100%;
    height:400px;
    background-color: #183540;
    border-radius: 200px 0px 0px 0px;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .row-foot .col-3{
    width: calc(1200px/4);
    height: 100%;
    /* background-color: red; */
    padding: 20px;
}
.footer .row-foot .col-3>h2{
    font-size: 27px;
    margin-top: 20px;
    font-weight: 100;
    color:#F7941F;
}
.footer .row-foot .col-3 .logo{
    width: 200px;
    height: 70px;
}
.footer .row-foot .col-3 .logo img{
    width:100%;
    height: 100%;
    object-fit: cover; 
}
.footer .row-foot .col-3 .body-txt{
    margin-top: 10px;
}
.footer .row-foot .col-3 .body-txt h2{
    color: #F4F5F6;
}
.footer .row-foot .col-3 .body-txt p{
    padding: 5px 0px;
    font-size: 17px;
    font-family: "Koulen", sans-serif;
    color: #F4F5F6;
}
.footer .row-foot .col-3 .body-txt a{
    color: #F4F5F6;
    font-family: "Koulen", sans-serif;
}
.footer .row-foot .col-3 .body-txt .link{
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    color: #F4F5F6;
    /* background-color: cadetblue; */
    margin-top: 20px;
}
.footer .row-foot .col-3 .body-txt .icon{
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 15px;
}
.footer .row-foot .col-3 .body-txt .icon a{
    color: #F4F5F6;
}