@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
    --clr-neutral-900: hsl(207, 19%, 9%);
    --clr-neutral-100: hsl(0, 0%, 100%);
    --clr-accent-400: hsl(142, 90%, 61%);
}

*, 
*::before,
*::after {
    font-family: 'Poppins', sans-serif;
}
.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}
.scrollbar-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none; 
}
html {
    overflow:   scroll;
  }
    ::-webkit-scrollbar {
      width: 0px;
      height: 0px;
      background: #bbbbbb;  
} 

header{
    width: 100%;
    height: 70px;
    background: #F8F8F8;
    display: flex;
    justify-content: space-around;
    align-items: center; 
}
.Logo{
    color: rgb(44, 44, 44);
    font-size: 1.5em;
    line-height: 50px;
}
.nav{
    display: flex;
    align-items: center;
}
.nav ul{
    display: flex;
    list-style: none;
}
.btn{
    position: relative;
    width: 25px;
    height: 25px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    display: none;
}
.btn::before{
    content: '\f0c9';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Font Awsome 5 Free';
    font-weight: 700;
    font-size: 2em;
}
.nav ul li{ margin: 0.4em;}
.nav ul li a{
    text-decoration: none;
    padding: 0,2em 1.2em 0.9em 1.2em;
    border-radius: 10px 10px 0 0;
    color: rgb(39, 39, 39);
    transition: all .4s;
    position: relative;
    z-index: 1;
}
.nav ul li a::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 21px;
    border-radius: 10px 10px 0 0;
    background: #853333;
    transform-origin: bottom;
    background: linear-gradient(to right, 
    #2C5364, #203A43, #173542);
    transform: scaleY(0.05);
    z-index: -1;
    transition: all .4s;
}
.nav ul li a:hover::before{ transform: scaleY(1.1); }
.nav ul li a:hover{ color: white; }

@media (min-width: 1536px) and (max-width: 1200px) {
    .btn{
        display: flex;
        z-index: 100;
    }
    header{
        justify-content: space-between;
        padding: 0 3em;
    }
    .nav{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        background: #F8F8F8;
        transform: translateY(0%);
        transition: all .4s;
    }
    input:checked::before{
        content: '\f00d';
    }
}
@media (min-width: 500px) {
    .nav ul{
        flex-direction: row;  
        text-align: center;
    }
}


.IndexSection1{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(/images/RingBG.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.AboutUsLand{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(/images/wallpaper1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.ContactLand{ 
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(/images/wallpaper2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.InfoLand{ 
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(/images/wallpaper3.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.indx-text-box{
    width: 100%;
    color: #fff;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.abt-text-box{
    width: 100%;
    color: #fff;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.cnt-text-box{
    width: 100%;
    color: #fff;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.indx-text-box h1 {
    font-size: 42px;
}
.indx-text-box p{
    margin: 10px 0 40px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.63);
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}
@media (max-width: 700px) {
    .indx-text-box h1{
        font-size: 20px;
    }
}

.Section2{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.Section2-row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.Section2-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 2%;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.Section2-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 700px) {
    .Section2-row{
        flex-direction: column;
    }
}

.Section3{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.card{
    color: var(--clr-neutral-100);
    text-align: left;
    background-image: url(/images/item1.jpg) ;
    background-size: cover;
    padding: 30rem 0 0;
    max-width: 42ch;
    border-radius: 0.8rem;
    overflow: hidden;

    transition: transform 500ms ease;
}
.card:hover,
.card:focus-within {
    transform: scale(1.05);
}

.card-content {
    --padding: 1.5rem;
    padding: var(--padding);
    background: linear-gradient(
        hsl(0 0% 0% / 0),
        hsl(0 0% 0% / 0.2) 10%,
        hsl(0 0% 0% / 1)
        );
}

.card-title {
    position: relative;
    width: max-content;
}
.card-title::after {
    content: "";
    position: absolute;
    height: 4px;
    left: calc(var(--padding) * -1);
    bottom: -3px;
    width: calc(100% + var(--padding));
    background: var(--clr-accent-400);
    transform-origin: left;
    transition: transform 500ms ease;
}
.card:hover .card-title:after,
.card:focus-within .card-title:after {
    transform: scaleX(1);
}

.card-body {
    color: rgb(255 255 255 / 0.8);
}

.button {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: var(--clr-neutral-900);
    background-color: var(--clr-accent-400);
    padding: 0.5em 1.25em;
    border-radius: 0.25em;
}
.button:hover,
.button:focus {
    background-color: var(--clr-neutral-100);
}

@media (hover) {
    .card-content {
        transform: translateY(70%);
        transition: transform 500ms ease;
    }
    .card:hover .card-content,
    .card:focus-within .card-content {
        transform: translateY(0);
        transition-delay: 500ms;
    }
    .card:focus-within .card-content {
        transition-duration: 0ms;
    }
    .card-content > *:not(.card-title) {
        opacity: 0;
        transition: opacity 500ms linear;
    }
    .card:hover .card-content > *:not(.card-title),
    .card:focus-within .card-content > *:not(.card-title) {
        opacity: 1;
        transition-delay: 900ms;
    }

    .card-title::after {
        transform: scaleX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms
        !important;
        animation-iteration-count: 1
        !important;
        transition-duration: 0.01ms
        !important;
        scroll-behavior: auto 
        !important;
        transition-delay: 0ms 
        !important;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 20px 0;
    margin-top: 10em;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
.Copyright{
    text-align: center;
}
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);

body {
  margin: 0;
  padding: 0;
}

/* #cloud {
  font-family: 'Open Sans', 'sans-serif';
  font-size: 70px;
  content: '';
  opacity: 1;
  width: 100%;
  position: absolute;
  top: 80;
  left: 1em;
  display: flex;
  color: #ffffff;
} 
#cloud2 {
  font-family: 'Open Sans', 'sans-serif';
  font-size: 70px;
  content: '';
  opacity: 1;
  width: 100%;
  position: absolute;
  top: 80;
  left: 1em;
  display: flex;
  color: #000000;
} */
#btnScrollToTop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e62739;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
}
#btnScrollToTop:active {
    background: #cc2333;

}