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

html, body{
    width: 100%;
    height: 100%;
}

:root {
    --primary-color: #CDE456;
    --light-primary-color: #E9F3E8;
    --secondary-color: #EC7F1E;
    --dark-text: #000000;
    --light-text: #0086C4;
    --title-text: #fff;
    --secondary-bg: #111111;
}

ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;

}

ul {
    list-style: none;
    padding: 0;
}

.section-gap{
    padding: 100px 0;
}

img{
    width: 100%;
}

.logo{
    width: 250px;
    margin: auto;
}

header{
    background-color:rgba(233, 243, 232, 233);
    padding: 15px 16px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.h-banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    padding-top: 100px;
}

.h-banner span{
    background-color: var(--light-primary-color);
    padding:5px 20px ;
    border-radius: 50px;
    width: fit-content;
}

.h-banner h1{
    width: 60%;
    font-size: 60px;
    font-weight: 700;
}

.h-content{
    position: relative;
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.h-content img {
    position: absolute;
    z-index: -1;
}

.h-content img:nth-child(1) {
    top: 0;
    left: 0;
    width: 100px;
}

.h-content img:nth-child(2) {
    top: 0;
    right: 10px;
    width: 100px;
}

.h-content img:nth-child(3) {
    bottom: -70px;
    right: 90px;
    width: 100px;
}

.h-content img:nth-child(4) {
    bottom: -90px;
    left: 90px;
    width: 100px;
}

.btn{
    display: flex;
    gap: 20px;
}

.btn1 {
	padding: 8px 36px;
	color: var(--title-text);
	background: var(--secondary-color);
	border-radius: 100px;
    border: none;
    font-size: 18px;
}

.btn2 {
	padding: 8px 36px;
	color: var(--secondary-color);
	background: var(--title-text);
	border-radius: 100px;
    border: 1px solid var(--secondary-color);
    font-size: 18px;
}

.card{
    border-radius: 30px;
    height: 300px;
}
.card img{
    border-radius: 30px;
    height: fit-content;
    overflow: hidden;
    height: 300px;
    object-fit: cover;
}

.content{
    background-color:var(--secondary-bg);
    overflow: hidden;
    display: flex;
    justify-content: end;
}

.content p{
  font-size: 23px;
  font-weight: 400;
  padding: 40px;  
  color: white;
}

h2{
    font-size: 42px;
    font-size: 600;
    /* width: 40%; */
}

.abt-content p{
    padding: 30px 0;
    color: #AFB3AE;
    font-size: 18px;
}

.abt-card{
    background-color: #D4E0E5;
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--light-text);
    border-radius: 30px;
}

.abt-card span{
    font-size: 55px;
    color: var(--light-text);
    font-weight: 600;
}

.abt-card img{
    border-radius: 30px;
    height: fit-content;
    overflow: hidden;
    height: 250px;
    object-fit: cover;
}

/* privacy policy */
.privacy-p{
    background-color: var(--light-primary-color);
}
.p-content h1{
    width: 40%;
    font-weight: 600;
}

.p-content p{
    color: #AFB3AE;
    padding: 20px 0;
    width: 90%;
    font-size: 18px;
}

.p-card{
    background: #F0DECE;
    color: var(--secondary-color);
}
.p-card span{
    color: var(--secondary-color);
}

.p-card-left{
    margin-top: 50px;
}
footer{
    background: var(--secondary-bg);
    padding: 30px 0;
    color: var(--title-text);
}
footer a{
    color: var(--title-text);
    font-size: 18px;
}

footer a:hover{
    color: var(--secondary-color);
}

footer p{
    font-size: 18px;
    color: var(--title-text);
}

.overview h2{
margin-bottom: 35px;
margin-top: 40px;
}

.overview h2:first-child{
    margin-top: 0px;
}

.overview h3{
    margin-bottom: 20px;
    margin-top: 20px;
}

.overview h3:first-child{
    margin-top: 0px;
}

.overview ul {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 20px;
margin-bottom: 20px;
}

.overview ul li {
    position: relative;
    padding-left: 17px;
}

.overview ul li::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    left: 0;
    top: 7px;
}
.terms{
    background-color: var(--light-primary-color);
}

.terms-banner{
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms-banner img{
    position: absolute;
    z-index: -1;
}

.terms-banner img:nth-child(1) {
    top: 0;
    left: 20px;
    width: 100px;
}

.terms-banner img:nth-child(2) {
    top: 0;
    right: 90px;
    width: 80px;
}

.terms-banner img:nth-child(3) {
    bottom: 0;
    left: 200px;
    width: 40px;
}

.terms-banner img:nth-child(4) {
    bottom: 10px;
    right: 150px;
    width: 40px;
}


.terms-content p{
    margin-bottom: 20px;
}

/* reponsive */
@media (max-width: 1024px){
    .h-banner h1 {
        width: unset;
    }

    .p-content h1 {
        width: unset;
    }
    
    .abt-content{
        margin-bottom: 20px;
    }
}

@media (max-width: 992px){
    .hide-card{
        display: none;
    }
}

@media (max-width: 768px){
    .hide-card{
        display: none;
    }
    .card{
        margin-bottom: 20px;
    }

    footer>div{
      display: flex;
      flex-direction: column-reverse; 
    }
    .section-gap{
        padding: 50px 0;
    }

    .h-content img:nth-child(2) {
       top: unset;
       bottom: 0;
     }

    .h-content img:nth-child(4) {
       display: none;
    }
   
    .h-content img:nth-child(3) {
       display: none;
    }

    .terms-banner img:nth-child(1) {
        top: 0;
        left: 0px;
        width: 60px;
    }
    
    .terms-banner img:nth-child(2) {
        top: 0;
        right: 10px;
        width: 70px;
    }

    .terms-banner img:nth-child(3) {
        bottom: 0;
        left: 90px;
        width: 40px;
    }

    .terms-banner img:nth-child(4) {
        bottom: 0px;
        right: 150px;
        width: 30px;
    }
    
    .privacy-p{
        padding-top: 150px;
    }
}

@media (max-width: 600px){
    .h-banner h1 {
        font-size: 52px;
    }

    .abt-hide{
        display: none;
    }

}