@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 {
    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 {
    font-family: "Koulen", sans-serif;
    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;
    font-size: 18px;
}

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

#navbar {
    width: 100%;
    height: 80px;
    background-color:#173540;
    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;
}


  /* ============================== */

.section-1{
    width: 100%;
    background-color: #173540;;
}
.container1{
    width: 1200px;
    height: 500px;
    /* background-color: #183540; */
    border-radius: 5px;
    margin: 0px auto;
    /* border: 1px solid #eee; */
}
.container1 .row{
    display: flex;
    justify-content: space-between;
}
.container1 .row .col-title{
    width: 550px;
    height: 400px;
    margin-top: 40px;
    padding:50px 0px;
    /* background-color: red; */
}
.col-title h1{
    font-family: "Koulen", sans-serif;
    font-size: 40px;
    color: #F4F5F6;
    font-weight: 500;
}
.col-title p{
    font-size: 18px;
    color: #F4F5F6;
    line-height: 30px;
    font-family: "Hanuman", serif;
}
.col-title .btn-read{
    cursor: pointer;
    width: 100px;
    height: 35px;
    margin-top: 30px;
    padding-top: 3px;
    border: none;
    border-radius: 5px;
    font-family: "Koulen", sans-serif;
    font-size: 16px;
    background-color:transparent;
    border: 1px solid #F7941F;
    color: #fff;
    transition: 0.3s;
}
.col-title .btn-read:hover{
    background-color: #F7941F;
}
.col-title a{
    /* text-decoration: none; */
    color: #fff;
    font-size: 18px;
    font-family: "Hanuman", serif;
}
.container1 .row .col-img{
    width: 650px;
    height: auto;
    /* background-color: red; */
}
.container1 .row .col-img img{
    width: 900px;
    margin-top: -155px;
    margin-left: -120px;
    /* object-fit: cover; */
}
/* ---------------end s1------------------------- */
.section-0{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
}
.container{
    width: 1200px;
    margin: 50px 0;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.container h3{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Koulen", sans-serif;
    font-weight: normal;
}
.container .box{
    width: 100%;
    margin: 10px 0px;
}
.container .box p{
    /* font-family: "Koulen", sans-serif; */
    font-family: "Hanuman", serif;
    font-size: 20px;
    font-weight: bold;
}
.box .progress_bar_box{
    display: flex;
    align-items: center;
}
.box .progress_bar_box .progress_bar{
    width: 100%;
    height: 10px;
    background-color: #f2f2f2;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}
.box .progress_bar_box .progress_bar .line{
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: #F7941F;
    border-radius: 100px;
    transition: 0.2s;
}
.box .progress_bar_box .increasing_percentage{
    margin-left: 10px;
    font-size: 20px;
}
.box .progress_bar_box .total_percentage{
    display: none;
}
/* --------end s0----------------- */
.section-2{
    width: 100%;
}
.section-2 .title-con-2{
    width: 1200px;
    height: auto;
    margin:30px auto;
}
.section-2 .title-con-2 h1{
    font-size: 30px;
    font-family: "Koulen", sans-serif;
    font-weight: normal;
}
.section-2 .container-2{
    width: 1200px;
    height: auto;
    margin: auto;
    /* background-color: teal; */
}
hr{
    border: 1px solid rgb(148, 148, 148);
}
.container-2 .row{
    width: 100%;
    height: auto;
}
.container-2 .row .skill{
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}
.skill .title-box{
    width: 300px;
    height: 100%;
    /* background-color: red; */
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0 10px;
}
.skill .title-box h3{
    font-size: 25px;
    font-weight: normal;
}
.skill .title-box h1{
    font-size: 25px;
    font-weight: normal;
}

.skill .detail-box{
    width: 600px;
    height: 100%;
    /* background-color: aqua; */
    align-content: center;
    padding: 5px;
}
mark{
    color: #F7941F;
    background-color: transparent;
    font-weight: bold;
}
.skill .detail-box p{
    font-size: 16px;
    text-align: start;
    color: #545454;
    font-family: "Hanuman", serif;
}

.skill .icon-box{
    width: 150px;
    height: 100%;
    /* background-color: orange; */
    align-content: center;
}
.skill .icon-box i{
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #545454;
    background-color:transparent;
    border: 1px solid #545454;
    border-radius: 100%;
    padding-top: 10px;
    transition: 0.3s;
}
.skill .icon-box i:hover{
    background-color: #5454542f;
}
/* -------end section-2----------- */
.section-3{
    width: 100%;
    margin-top: 30px;
    /* background-color: #00000014; */
}
.section-3 .title-team{
    width: 1200px;
    height: auto;
    margin:30px auto;
    padding-top: 30px;
}
    .title-team h1{
    font-size: 30px;
    font-family: "Koulen", sans-serif;
    font-weight: normal;
    }
    .title-team p{
        font-size: 18px;
        font-family: "Hanuman", serif;
    }
    /* --------------- */
.section-3 .container-3{
    width: 1200px;
    height: 400px;
    /* background-color: #173540; */
    margin:20px auto;
}
.container-3 .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.container-3 .card{
    width: 585px;
    height: 165px;
    /* background-color:#ffffff9a ; */
    display: flex;
    border-radius: 10px;
    /* box-shadow: rgba(255, 162, 0, 0.728) 0px 2px 8px; */
    box-shadow: rgba(255, 162, 0, 0.728) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.container-3 .card .image-team{
    width: 120px;
    height: 165px;
    border-radius: 5px;
    overflow: hidden;
}
.image-team img{
    width: 100%;
    border-radius: 5px;
    transition: 0.3s;
    object-fit: contain;
}
.image-team img:hover{
    transform: scale(1.05);
}
.container-3 .detail-team{
    width: 395px;
    height: 160px;
    /* background-color: pink; */
    padding:5px 20px;
}
.detail-team h1{
    font-size: 18px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.detail-team .p-title{
    font-size: 15px;
    color: #F7941F;
    line-height: 21px;
}
.detail-team p{
    font-size: 15px;
    font-family: "Hanuman", serif;
    color: #545454;
    line-height: 22px;
    /* padding-top: 2px; */
}
.detail-team .socail-icon{
    width: 150px;
    height: 35px;
    margin-left: -10px;
}
.detail-team .socail-icon i{
    font-size: 20px;
    padding-left: 10px;
    color: #545454;
    /* color: #4b4bff; */
    transition: 0.2s;
}
.detail-team .socail-icon i:hover{
    color: #4b4bff;
}
/* ------end section-3---------- */
.section-4{
    width: 100%;
    margin-top: 30px;
}
.section-4 .title-exper{
    width: 1200px;
    margin:20px auto;
}
.title-exper h1{
    font-size: 30px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.section-4 .container-4{
    width: 1200px;
    height: 400px;
    background-color:transparent;
    border-radius: 5px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.container-4 .left-box{
    width: 500px;
    height: 100%;
    /* background-color: red; */
}
.left-box .letter{
    width: 400px;
    height: auto;
    /* background-color: aqua; */
    padding: 20px 0;
}
.left-box .letter h1{
    font-size: 20px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
    color: #000;
    padding: 0 20px;
    border-left: 4px solid #F7941F;
}
.left-box .image-exper{
    width: 300px;
    height: 200px;
    /* background-color: chartreuse; */
    padding-top: 5px;
}
.left-box .image-exper img{
    width: 350px;
    /* margin-left: 20px; */
}
.container-4 .right-box{
    width: 600px;
    height: 100%;
    margin-right: 20px;
    /* background-color: blue; */
}
.right-box .detail-exper{
    width: 600px;
    height: auto;
    /* background-color: rgb(209, 209, 209); */
    border-radius: 10px;
    margin-top: 25px;
    padding:5px 20px;
    display: flex;
    /* box-shadow: rgba(255, 162, 0, 0.728) 0px 1px 4px; */
    justify-content: space-between;
    align-items: center;
    border: 3px solid #F7941F;
}
.detail-exper .num{
    width: 60px;
    height: 40px;
    /* margin-left: 5px; */

}
.detail-exper .num h1{
    font-size: 20px;
    padding-left: 10px;
    line-height: 40px;
    color: #000;
    font-family: "Hanuman", serif;
    /* font-weight: normal; */
}
.detail-exper .year-ex{
    width: 540px;
    height: 100%;
    /* padding: 5px; */
    /* padding-top: 5px; */
}
.detail-exper .year-ex h1{
    font-size: 20px;
    color: #000;
    /* font-family: "Hanuman", serif; */
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.detail-exper .year-ex p{
    font-size: 16px;
    line-height: 23px;
    color: #2e2e2e;
    font-family: "Hanuman", serif;
}
/* ------end section-4---------- */
.section-5{
    width: 100%;
    margin-top: 40px;
    padding-top: 10px;
    background-color: #00000014;
}
.section-5 .title-choose{
    width: 1200px;
    margin:30px auto;
}
.title-choose h1{
    font-size: 30px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.section-5 .container-5{
    width: 1200px;
    height: 400px;
    /* background-color: teal; */
    margin: auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 30px; */
}
.container-5 .choose-box{
    position: relative;
    width: 585px;
    height: 150px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(255, 162, 0, 0.728) 0px 1px 4px;
}
.container-5 .choose-box .icon-img{
    position: absolute;
    width: 60px;
    height: 60px;
    /* background-color: gray; */
    top: -30px;
    left: 20px;
    border-radius: 10px;
    text-align: center;
}
.choose-box .icon-img img{
    width: 100%;
}
.choose-box .title{
    position: absolute;
    width: 535px;
    height: 100px;
    top: 30px;
}
.choose-box .title h1{
    font-size: 20px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.choose-box .title p{
    font-size: 16px;
    text-align: start;
    color: #545454;
    font-family: "Hanuman", serif;
}
/* ------end section-5---------- */

.section-6{
    width: 100%;
    background-color: #00000014;
}
.section-6 .title-feed{
    width: 1200px;
    margin: auto;
}
.title-feed h1{
    font-size: 30px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.section-6 .container-6{
    width: 1200px;
    height: 400px;
    /* background-color:teal; */
    margin: auto;
    border-radius: 5px;
}
.container-6 .row{
    display: flex;
    justify-content: space-between;
}
.container-6 .col-3{
    width: 277px;
    height: auto;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(255, 162, 0, 0.728) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.container-6 .col-3 .profile-img{
    width: 140px;
    height: 140px;
    margin: 10px auto;
    border-radius: 100%;
    background-color: blue;
}
.col-3 .profile-img img{
    width: 140px;
    height: 140px;
    border-radius: 100%;
    object-fit: cover;
}
.container-6 .col-3 .profile-detail{
    width: 100%;
    height: 180px;
    padding:0px 20px;
}
.col-3 .profile-detail .name{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.col-3 .profile-detail .name h1{
    font-size: 18px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.col-3 .profile-detail .name h3{
    font-size: 16px;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.col-3 .profile-detail p{
    font-size: 15px;
    text-align: inherit;
    color: #545454;
    font-family: "Hanuman", serif;
}
/* ------end section-6---------- */
.section-7{
    width: 100%;
    background-color: #00000014;
    margin-bottom: 100px;
}
.section-7 .container-7{
    width: 1200px;
    height: 200px;
    background-color:#183540;
    margin: auto;
    padding-top: 10px;
    border-radius: 5px;
}
.container-7 .title-cont{
    width: 900px;
    height:50px;
    /* background-color: red; */
    margin: 10px auto;
    margin-top: 30px;
    text-align: center;
    font-size: 30px;
    color: #fff;
    font-family: "Koulen",sans-serif;
    font-weight: normal;
}
.container-7 .btn-contact{
    width: 200px;
    height: 50px;
    background-color: #f7961fd7;
    margin: auto;
    border-radius: 10px;
}
.container-7 .btn-contact .btn-link{
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    font-size: 20px;
    font-family: "Hanuman", serif;
    /* font-family: "Koulen",sans-serif; */
    font-weight: normal;
    text-align: center;
    align-content: center;
    color: #fff;
    transition: 0.3s;
    border-radius: 10px;
}
.container-7 .btn-contact .btn-link:hover{
    background-color: #ff8c00;
}


/* 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 p a{
    color: #F4F5F6;
}
.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;
}
