@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Maitree:wght@200;300;400;500;600;700&display=swap');
:root{
    --red: #ee4242;
    --blue: #19204B;
    --bg: #e2e2e2;
    --bg2:#fff5f5;
    --bg3: #edf3ff;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Outfit", sans-serif; */
    
    /* font-family: "Josefin Sans", sans-serif; */
    font-family: "Fira Sans", sans-serif;
    /* font-family: "Maitree", serif; */
    /* font-family: "Oswald", sans-serif; */
    /* font-family: "Space Grotesk", sans-serif; */
    /* font-family: "Inter Tight", sans-serif; */
    /* font-family: "Montserrat", sans-serif; */
    scroll-behavior: smooth;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--red);
    width: 60px;
    height: 60px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 10px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.8em;
    line-height: 50px;
    color: var(--white);
    transition: .3s ease-in-out;
  }
  #top:hover {
    cursor: pointer;
    color: var(--white);
    background-color: var(--blue);
  }
  #top:hover::after {
    color: var(--white);
  }
  #top:active {
    background-color: var(--black);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/
.all-btn a {
    text-decoration: none;
    color: var(--white);
    padding: 12px 20px;
    background-color: var(--red);
    border-radius: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.all-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -130%;
    width: 120%;
    height: 110%;
    background-color: var(--blue);
    border-radius: 10px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.all-btn a:hover::after {
    left: 0;
}
.all-btn a:hover i{
    color: var(--blue);
}
.all-btn a span, 
.all-btn a i {
    position: relative;
    z-index: 1;
}

.all-btn a i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 5px;
    color: var(--red);
    background-color: var(--white);
    transition: all 0.5s ease-in-out;
}
.heading .h-tag{
    display: block;
    padding-bottom: 0;
    color: var(--red);
    font-weight: 600;
    font-size: 17px;
    padding-left: 10px;
    position: relative;
}
.heading .h-tag::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #cfcfcf;
}
.heading h1{
    font-size: 50px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
}

/********* Header Section Start *********/

#nav{
    background-color: rgba(0, 0, 0, 0.25);
    /* border-bottom: 2px solid rgba(255, 255, 255, 0.3); */
}
#nav .menu ul{
    justify-content: right;
    display: flex;
}
#nav .menu ul li{
    margin-right: 30px;
    list-style: none;
}
#nav .menu ul li .menu-link{
    opacity: 1;
    font-size: 19px !important;
    font-weight: 500;
    text-decoration: none;
    color: var(--white) !important;
    text-transform: uppercase;
    padding: 7px 0;
    position: relative;
    transition: .4s ease-in-out;
}
#nav .menu ul li .menu-link::after{
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-radius: 30px;
    height: 2px;
    transition: .4s ease-in-out;
    background-color: var(--red);
}
#nav .menu ul li .menu-link:hover::after{
    width: 50%;
}
#nav .menu ul li .menu-link:hover{
    opacity: 1;
}
#nav{
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 999999999;
    /* background-color: var(--white); */
    margin: 0 auto !important;
    transition: .4s ease-in-out;
    /* box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3); */
}
#nav img{
    transition: .4s height ease-in-out;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%); */
}
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
#nav .mcon span{
    font-size: 14px;
}
#nav .mcon i{
    color: var(--yellow);
    margin-right: 5px;
    margin-top: 40px !important;
    font-size: 16px;
}
.col-black{
    color: var(--black) !important;
}
.logo-wrap{
    height: 200%;
    background-color: var(--white);
}
.logo-white img{
    /* height: 50px; */
    filter: none !important;
}
#about h2{
    font-weight: 700;
    color: var(--blue);
}
#nav .n-btn a{
    padding: 5px 0;
    text-transform: uppercase;
    border-bottom: 2px solid var(--red);
    text-decoration: none;
    font-weight: 600;
    color: var(--white);
    transition: .3s ease-in-out;
}
#nav .n-btn a:hover{
    text-decoration: none;
    color: var(--red);
}
#nav .ham .ham-wrap{
    display: block;
    width: 82px;
    height: 82px;
    font-size: 40px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: var(--red);
}
.sub-menu{
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
    height: 100vh !important;
    width: 450px;
    background-color: #f1f1f1;
    transition: 1s ease-in-out;
}
.sub-menu p{
    font-size: 14px;
    color: var(--blue);
    font-weight: 500;
}
.sub-menu h5{
    font-weight: 500;
    font-size: 15px;
    color: #585858;
    line-height: 1.5;
    margin-bottom: 0;
}
.sub-menu h3{
    color: var(--blue);
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 700;
}
.sub-menu .pad{
    padding: 40px 30px 40px 60px;
}
.sub-menu .close a{
    color: var(--white);
    background-color: var(--red);
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}
.sub-menu .close a:hover{
    color: var(--white);
}
.closed{
    right: -450px !important;
    opacity: 0 !important;
}
.opens{
    right: 0 !important;
    opacity: 1 !important;
}
.m-social ul{
    display: flex;
}
.m-social ul li {
    margin-right: 10px;
    list-style: none;
}
.m-social ul li a{
    width: 40px;
    height: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--red);
    text-decoration: none;
    transition: .3s ease-in-out;
}
.m-social ul li a:hover{
    background-color: var(--black);
}



/********* Header Section End *********/

/********* Banner Section Start *********/

#banner{
    height: 958px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
#banner video{
    width: 100%;
}
#banner .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}
#banner .ban-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}
#banner .ban-text h1{
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    font-size: 57px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
#banner .ban-text h1 span{
    color: var(--red);
}
#banner .ban-text p{
    font-weight: 300;
    color: var(--white);
    font-size: 20px;
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}
#banner img{
    position: relative;
    object-fit: cover;
    vertical-align: top;
    height: 953px;
    overflow: hidden;
}
.carousel-caption{
    z-index: 2 !important;
    width: 40%;
    text-align: left;
    position: absolute;
    left: 950px;
    top: 55%;
    transform: translateY(-50%);
}
.spa{
    display: inline-block;
    color: var(--blue);
    position: relative;
}
.spa::after{
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--white);
    z-index: -1;
}

.carousel-caption h1{
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    font-size: 70px;
}
.carousel-caption h1 span{
    color: var(--yellow);
}
.carousel-caption p{
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-size: 18px;
}
#banner .b-btn a{
    background-color: var(--red);
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--black);
    color: var(--white);
}


/********* Banner Section End *********/

/********* About Section Start *********/

#about{
    overflow: hidden;
    position: relative;
    /* background-color: var(--bg3); */
    padding-left: 200px;
    /* background-image: url(./img/a-bg.webp);
    background-size: cover;
    background-position: right; */
}
#about h1{
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 25px;
}
#about p{
    font-size: 16px;
    font-weight: 400;
    color: #6d6d6d;
    margin-bottom: 25px;
}
#about .a-btn a{
    text-decoration: none;
    padding: 14px 24px;
    background-color: var(--red);
    color: var(--white);
    transition: .3s ease-in-out;
}
#about .a-btn a:hover{
    background-color: var(--black);
}
#about .a-img{
    position: relative;
}
#about .a-img img{
    position: relative;
    z-index: 2;
}
/* #about .a-img::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
    background-color: #ffdfdf;
} */
#about .list p{
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
}
#about .list i{
    margin-right: 10px;
    color: green;
}
#about .a-wrap{
    border-bottom: 1px solid #d4d4d4;
}
#about .a-wrap img{
    margin-right: 20px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(2503%) hue-rotate(345deg) brightness(90%) contrast(106%);
}
#about .a-wrap i{
    font-size: 60px;
    margin-right: 20px;
    color: var(--red);
}
#about .a-wrap h4{
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 20px;
    max-width: 150px;
}
#about .heading .top-head{
    color: var(--red);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
#about .a-wrap2{
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--red);
    height: 100%;
}
#about .head{
    position: relative;
    background-image: url(./img/s2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#about .head-text{
    position: absolute;
    border-radius: 10px;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    width: 290px;
}
#about .head-text h3{
    font-size: 23px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 10px;
}
#about .head-text p{
    font-weight: 500;
}
#about .head img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    max-height: 100%;
}
#about .hm{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   padding: 30px;
}
#about .hm h1{
    font-weight: 700;
    color: var(--white);
   font-size: 80px;
}
#about .hm h4{
    font-weight: 600;
    color: var(--white);
   font-size: 30px;
}
#about .he{
    position: relative;
    background-color: var(--white);
}
#about .he img{
    position: absolute;
    left: 0;
    bottom: 10px;
}
#about .he .circle{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--red);
}
#about .he h2{
    font-weight: 600;
}
#about .he h2 span{
    color: var(--red);
}

/********* About Section End *********/

/********* Services Section Start *********/

#services{
    background-color: var(--bg2);
}
#services .s-wrap{
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 20px;
}
#services .s-text{
    width: 90%;
    text-align: center;
    position: absolute;
    display: block;
    left:50%;
    transform: translateX(-50%);
    z-index: 4;
    bottom: 10px;
}
#services .s-wrap h5{
    font-size: 27px;
    color: var(--white);
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
}
#services .s-wrap p{
    color: #585858;
    opacity: 0.7;
    font-size: 15px;
}
#services .s-wrap .s-link a{
    display: block;
    background-color: transparent;
    border: 1px solid var(--white);
    text-decoration: none;
    color: var(--white);
    padding: 8px 10px;
    border-radius: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    transition: .3s ease-in-out;
}
#services .s-wrap .s-link a:hover{
    background-color: var(--red);
    border-color: var(--red);
}
#services .s-wrap img{
    transition: .3s ease-in-out;
}
#services .s-wrap:hover img{
    transform: scale(1.1);
}
#services .s-btn a{
    text-decoration: none;
    padding: 14px 24px;
    background-color: var(--red);
    color: var(--white);
    transition: .3s ease-in-out;
} 
#services .s-btn a:hover{
    background-color: var(--black);
}
#services .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

/********* Services Section End *********/

/********* Infrastructure Section Start *********/

@keyframes zoom {
  0% {background-size: 130%;}
  50% {background-size: 150%;}
  100% {background-size: 130%;}
}
#infra{
    background-image: url(./img/por.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    z-index: 1;
}
#infra .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
#infra .heading{
    z-index: 2;
}
#infra .heading h1{
    color: var(--white);
}
#infra .heading .h-tag{
    color: var(--white);
}
#infra .i-wrap{
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    border: 1px solid var(--red);
    border-radius: 10px;
    height: 100%;
    position: relative;
    z-index: 2;
}
#infra .i-icon{
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--red);
}
#infra .i-text h5{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 15px;
}
#infra .i-text p{
    font-weight: 400;
    color: #474747;
    font-size: 14px;
}
#infra .i-wrapper{
    color: var(--white);
    background-color: var(--red);
}
#infra .all-btn a{
    background-color: var(--white);
    color: var(--red);
}
#infra .all-btn a::after{
    background-color: var(--blue);
}
#infra .all-btn a:hover{
    color: var(--white);
}
#infra .all-btn a i{
    background-color: var(--red);
    color: var(--white);
}
#infra .all-btn a:hover i{
    background-color: var(--white);
    color: var(--blue);
}

/********* Infrastructure Section End *********/

/********* Port Info Section Start *********/
#p-info{
    background-color: var(--red);
    /* background-image: url(./img/por.webp);
    background-size: 100%;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoom 25s infinite linear both; */
}
#p-info .p-wrap{
    position: relative;
    z-index: 2;
}
#p-info h1{
    font-size: 54px;
    font-weight: 600;
    /* text-shadow: 0 0 15px rgba(0, 0, 0, 0.7); */
    color: var(--white);
}
#p-info .all-btn a{
    background-color: var(--white);
    color: var(--red);
}
#p-info .all-btn a::after{
    background-color: var(--blue);
}
#p-info .all-btn a:hover{
    color: var(--white);
}
#p-info .all-btn a i{
    background-color: var(--red);
    color: var(--white);
}
#p-info .all-btn a:hover i{
    background-color: var(--white);
    color: var(--blue);
}

/********* Port Info Section End *********/

/********* Sus Section Start *********/

#block img{
    border-radius: 30px;
}
#block h1{
    font-size: 55apx;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 25px;
}
#block h1 span{
    color: var(--red);
}

/********* Sus Section Start *********/

/********* Sus Section Start *********/

#sus{
    background-color: var(--blue);
    /* background-image: url(./img/sus.webp);
    background-size: cover;
    background-position: center center; */
}
#sus .all-btn a::after{
    background-color: var(--white);
}
#sus .all-btn a:hover{
    color: var(--red);
}
#sus .all-btn a:hover i{
    background-color: var(--red);
    color: var(--white);
}
#sus .pos{
    position: sticky;
    padding-top: 30px;
    top: 0;
}
#sus .boat{
    margin-top: 10px;
    margin-left: 20px;
    position: relative;
    margin-top: 0;
}
#sus .boat::before{
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 335px;
    position: absolute;
    z-index: 3;
    background: linear-gradient(179.83deg, #19204b 13.15%, rgba(5, 38, 50, 0) 99.85%);
}

#sus .sus-item img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    border-radius: 50px;
}
#sus .heading .top-head{
    color: var(--red);
}
#sus .heading h1{
    color: var(--white);
    margin-bottom: 20px;
}
#sus .heading p{
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 20px;
}
:root {
	--cards: 4;
	--cardHeight: 500px;
	--cardTopPadding: 2em;
	--cardMargin: 1vw;
}

#cards {
	list-style: none;
	padding-left: 0;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(var(--cards), var(--cardHeight));
	gap: var(--cardMargin);
	padding-bottom: calc(var(--cards) * var(--cardTopPadding));
	margin-bottom: var(--cardMargin);
}

#card1 {
	--index: 1;
}
#card2 {
	--index: 2;
}
#card3 {
	--index: 3;
}
#card4 {
	--index: 4;
}

.sus-item {
	position: sticky;
	top: 0;
	padding-top: calc(var(--index) * var(--cardTopPadding));
}

.sus-text a{
    height: 500px;
    width: 100%;
}
.sus-text {
    background-color: var(--red);
	box-sizing: border-box;
	border-radius: 50px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
	height: var(--cardHeight);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s;
}

/********* Sus Section End *********/

/********* Key Section Start *********/

#key .k-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
#key .k-item{
    background-color: var(--bg3);
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#key .k-items{
    height: 100%;
}
#key .k-item h1{
    font-weight: 700;
    font-size: 70px;
}
#key .k-item h4{
    font-size: 22px;
}
#key .k-item h5{
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    color: #585858;
}
#key .k-img{
    background-image: url(./img/s3.webp);
    background-size: 100%;
    background-position: center;
    transition: .3s ease-in-out;
}
#key .k-img:hover{
    background-size: 120%;
}
#key .k-img2{
    background-image: url(./img/s2.webp);
    background-size: 100%;
    background-position: center;
    transition: .3s ease-in-out;
}
#key .k-img2:hover{
    background-size: 120%;
}

/********* Key Section End *********/

/********* Contact Section Start *********/

#contact{
    /* background-color: var(--bg3); */
    background-image: url(./img/world.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#contact .f-wrap{
    border: 1px dashed #c2c2c2;
}
#contact h2{
    font-weight: 600;
    font-size: 35px;
    color: var(--blue);
}
#contact h1{
    font-weight: 700;
    text-transform: uppercase;
    /* font-size: 40px; */
    color: var(--blue);
}
#contact p{
    margin-top: 20px;
    color: #585858;
    font-size: 20px;
}
 .form {
      background: var(--white);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .form-control:focus {
      box-shadow: none;
      border-color: var(--red);
    }

    .btn-custom {
      background-color: var(--red);
      color: white;
      border-radius: 10px;
    }

    .btn-custom:hover {
      background-color: var(--black);
      color: var(--white);
    }
    #contact h4{
        font-weight: 700;
        font-size: 22px;
        color: var(--red);
        margin-bottom: 5px;
        text-transform: uppercase;
    }
    #contact .cont-det p{
        margin-top: 0;
        margin-bottom: 0;
        font-weight: 400;
        font-size: 16px;
    }
    #contact .form{
        border-radius: 0;
    }
    #contact .form-control{
        border-radius: 10px;
    }

/********* Contact Section End *********/

/********* News Section Start *********/

#news{
    background-color: var(--bg3);
}
#news .n-wrap{
    height: 100%;
    border: 1px solid #e7e7e7;
    background-color: var(--white);
    transition: .4s ease-in-out;
}
#news a{
    text-decoration: none;
}
#news .n-wrap i{
    margin-right: 5px;
    color: var(--red);
}
#news .n-wrap p{
    font-size: 14px;
    color: #434343;
}
#news .n-wrap h6{
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
}
#news .n-link a{
    font-weight: 500;
    color: #999999;
    transition: .4s ease-in-out;
}
#news .n-link a i{
    color: #999999;
    transition: .4s ease-in-out;
}
#news .n-wrap:hover a{
    color: var(--red);
}
#news .n-wrap:hover i{
    transform: translateX(10px);
    color: var(--red);
}
#news .n-wrap:hover{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

/********* News Section End *********/

/********* Footer Section Start *********/

#footer{
    position: relative;
    z-index: 1;
    /* background-color: var(--blue); */
    background-image: url(./img/sus.webp);
    background-size: cover;
    background-position: center;
}
#footer .logo img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%) !important;
}
#footer p{
    opacity: 0.7;
    color: var(--white);
    font-size: 15px;
}
#footer h4{
    font-weight: 500;
    font-size: 24px;
    position: relative;
    text-transform: uppercase;
    color: var(--white);
}
#footer h4::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--red);
}
#footer .men a{
    color: var(--white);
    opacity: 0.7;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#footer .men ul{
    padding-top: 10px;
}
#footer .men a:hover{
    opacity: 1;
    color: var(--red);
}
#footer .men a i{
    transition: .4s ease-in-out;
    margin-right: 0;
}
#footer .men a:hover i{
    margin-right: 5px;
}
#footer .men ul li{
    margin-bottom: 7px;
    list-style: none;
}
#footer .social ul li{
    margin-right: 20px;
    list-style: none;
}
#footer .social ul li a{
    font-size: 25px;
    color: var(--white);
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    justify-content: right;
    display: flex;
}
#footer .contact i{
    margin-right: 15px;
    opacity: 0.7;
    color: var(--white);
    font-size: 20px;
}
#footer .contact li{
    padding-bottom: 8px;
}
#footer span a{
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#footer span a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer hr{
    border-color: #fff;
}
#footer .f-about{
    font-size: 17px;
    opacity: 0.7;
    font-weight: 300;
}
#footer h5{
    opacity: 0.7;
}

/********* Footer Section End *********/
