@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&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');

:root{
    --gradient-main-color: radial-gradient(circle farthest-side at center top, hsl(243, 47%, 40%) 0%, hsl(243, 83%, 30%) 20%, hsl(243, 83%, 30%) 100%);
    --main-color: #140D8A;
    --hover-main-color: #08035c;
    --hover-white-color: #f8f8f8;
    --dark-color: #1212;
    --light-color: #f3efef;

    --logo-font: "Exo 2", sans-serif;
    --logo-font-size: 4rem;
    --logo-font-weight: 720;
    --logo-font-italic: italic; 
    --common-font: "Poppins", sans-serif;
    --common-font-weight: 600;
    --h2-font-size: 2.5rem;
    --h3-font-size: 1.5rem;
    --p-font-size: 1rem;
    

    --border-check: solid 1px #ff0000;
    --border-radius: 10px;
    --box-shadow: 0px 5px 10px rgba(50, 50, 93, 0.5);
}
*{
    margin: 0;
}
.topContainer {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 30vh;
    margin: 0 0 50px;

    filter: drop-shadow(0px 20px 15px rgba(50, 50, 93, 0.5));
}
.topWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    clip-path: ellipse(65% 100% at 50% 0%);
    text-align: center;
    background: var(--main-color);
    color: var(--light-color);
}

.logoWrap{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.topContainer h1{
    font-family: var(--logo-font);
    font-size: var(--logo-font-size);
    font-weight: var(--logo-font-weight);
    font-style: var(--logo-font-italic);
    margin: 0;
}
.topContainer h2{
    font-family: var(--common-font);
    font-size: var(--h2-font-size);
    font-weight: var(--common-font-weight);
    margin: 0;
}
.topContainer img{
    width: 163px;
    margin: 8px 0 0 0;
    object-fit: fill;
}
.mainContainer{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 150px;
    box-sizing: border-box;
}
.middleContainer{
    position: relative;
    display: grid;
}

.buttonContainer{
    display: flex;
    justify-content: center;
    gap: 150px;
    width: 100%;
    margin: 0 0 50px;
    box-sizing: border-box;
}
.buttonContainer button{
    width: 100px;
    height: 100px;

    border-radius: 100px;
    border: none;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}
.defaultColorBtn{
    background: var(--main-color);
}
.defaultColorBtn:hover{
    background: var(--hover-main-color);
}
.buttonActive{
    background: #fff;
}
.buttonActive:hover{
    background: var(--hover-white-color);
}

.buttonContainer button a img{
    width: 60px;
    height: 60px;
    margin: auto;
}
#one{
    background: #fff;
    transform: translateX(0);
    z-index: 0;
}
#two{
    background: #fff;
    transform: translateX(0);
    z-index: 0;
}
#three{
    background: #fff;
    transform: translateX(0);
    z-index: 0;
}
#four{
    background: #fff;
    transform: translateX(0);
    z-index: 0;
}
#five{
    background: #fff;
    transform: translateX(0);
    z-index: 0;
}
a[id="one"],a[id="two"],
a[id="three"],a[id="four"],
a[id="five"]{
    display: none;
}
a[id="one"]:target ~ #one,
a[id="two"]:target ~ #two,
a[id="three"]:target ~ #three,
a[id="four"]:target ~ #four,
a[id="five"]:target ~ #five{
    z-index: 1;
}
a[id="one"]:target ~ #two,
a[id="one"]:target ~ #three,
a[id="one"]:target ~ #four,
a[id="one"]:target ~ #five{
    opacity: 0;
}
a[id="two"]:target ~ #one,
a[id="two"]:target ~ #three,
a[id="two"]:target ~ #four,
a[id="two"]:target ~ #five{
    opacity: 0;
}
a[id="three"]:target ~ #one,
a[id="three"]:target ~ #two,
a[id="three"]:target ~ #four,
a[id="three"]:target ~ #five{
    opacity: 0;
}
a[id="four"]:target ~ #one,
a[id="four"]:target ~ #two,
a[id="four"]:target ~ #three,
a[id="four"]:target ~ #five{
    opacity: 0;
}
a[id="five"]:target ~ #one,
a[id="five"]:target ~ #two,
a[id="five"]:target ~ #three,
a[id="five"]:target ~ #four{
    opacity: 0;
}
 
.descContainerWrap{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.descContainer{
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;

    /* transition: opacity 0.55s cubic-bezier(0, 0, 1, 1); */
}
.descContainer img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: auto;
}
.descWrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: auto;
}
.descWrap h2{
    font-family: var(--common-font);
    font-size: var(--h2-font-size);
    font-weight: var(--common-font-weight);
    margin: 10px 0 0;
    overflow-wrap: break-word;
}
.descWrap h3{
    font-family: var(--common-font);
    font-size: var(--h3-font-size);
    font-weight: 500;
    margin: 0 0 10px;
}
.descWrap p{
    font-family: var(--common-font);
    font-size: var(--p-font-size);
    margin: 10px 0 0;
}
.descWrap a{
    text-decoration: none;
}
.descWrap a:hover{
    text-decoration: underline;
    color: var(--hover-main-color);
}

.bottomContainer{
    display: grid;
    grid-template-rows: repeat(2, auto);
    width: 100%;
    margin: 500px 0 40px;

    box-sizing: border-box;
}
.bottomContainer h2{
    font-family: var(--logo-font);
    font-size: var(--h2-font-size);
    font-weight: var(--logo-font-weight);
    font-style: var(--logo-font-italic);
    text-align: center;
}
.policyContainer{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 100px;

    background: #F0F0F0;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    box-sizing: border-box;
}
.policyContainer p,
.policyContainer li{
    font-family: var(--common-font);
    font-size: var(--p-font-size);
    margin: 2px 0;
}
.policyContainer ul{
    margin: 5px 0 20px;
}
.policyContainer .sectionTitle {
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
    box-sizing: border-box;
}

@media (max-width: 1440px) {
    .topContainer h1 { font-size: 3.25rem; }
    .topContainer h2,
    .descWrap h2,
    .bottomContainer h2 {
        font-size: 2.25rem;
    }
    .mainContainer h3 { font-size: 1.5rem; }
    .mainContainer p  { font-size: 1.125rem; }
    .topContainer img{
        width: 130px;
    }
    .descContainerWrap{
        top: 90%;
        height: 500px;
    }
    .descContainer{
        gap: 30px;
    }
    .descContainer img{
        object-fit: cover;
        height: 400px;
    }
}
@media (max-width: 1024px) {
    .topContainer h1 { font-size: 2.75rem; }
    .topContainer h2,
    .descWrap h2,
    .bottomContainer h2 {
        font-size: 2rem;
    }
    .mainContainer h3 { font-size: 1.375rem; }
    .mainContainer p  { font-size: 1.0625rem; }
    .topContainer img{
        width: 110px;
        margin: 4px 0 0;
    }
    .buttonContainer{
        gap: 100px;
    }
    .buttonContainer button{
        width: 90px;
        height: 90px;
    }
    .buttonContainer button img{
        width: 70px;
        height: 70px;
    }
    .descContainerWrap{
        height: 750px;
    }
    .descContainer{
        grid-template-columns: none;
        gap: 0;
        height: 90%;
    }
    .descContainer img{
        object-fit: cover;
        height: 100%;
    }
    .bottomContainer{
        margin: 700px 0 0;
    }
}
@media (max-width: 794px) {
    .topContainer h1 { font-size: 2.25rem; }
    .topContainer h2,
    .descWrap h2,
    .bottomContainer h2 {
        font-size: 1.75rem;
        margin: 0;
    }
    .descWrap h3 { font-size: 1.25rem; }
    .descWrap p, .policyContainer p  { font-size: 1rem; }
    .topContainer{
        height: 20vh;
    }
    .topContainer img{
        width: 90px;
        margin: 4px 0 0;
    }
    .buttonContainer{
        gap: 60px;
        margin: 0;
    }
    .buttonContainer button{
        width: 75px;
        height: 75px;
    }
    .buttonContainer button img{
        width: 60px;
        height: 60px;
    }
    .mainContainer{
        padding: 0;
    }
    .descContainerWrap{
        top: 130%;
        height: 550px;
    }
    .descContainer{
        grid-template-columns: none;
        gap: 0px;
        height: 100%;
        padding: 0 120px;
    }
    .descContainer img{
        width: 530px;
        height: 100%;
    }
    .bottomContainer{
        margin: 650px 0 0;
    }
    .policyContainer{
        margin: 10px 0 0 ;
        padding: 20px 50px;
    }
}
@media (max-width: 518px) {
    .topContainer h1 { font-size: 1.75rem; }
    .topContainer h2,
    .descWrap h2,
    .bottomContainer h2 {
        font-size: 1.5rem;
    }
    .descWrap h3 { font-size: 1.125rem; }
    .descWrap p, .policyContainer p { font-size: 0.95rem; }
    .topContainer{
        height: 20vh;
    }
    .topContainer img{
        width: 70px;
        margin: 4px 0 0;
    }
    .buttonContainer{
        gap: 20px;
        margin: 0;
    }
    .buttonContainer button{
        width: 60px;
        height: 60px;
    }
    .buttonContainer button img{
        width: 45px;
        height: 45px;
    }
    .mainContainer{
        padding: 0;
    }
    .descContainerWrap{
        top: 120%;
        height: 350px;
    }
    .descContainer{
        grid-template-columns: none;
        gap: 0px;
        height: 100%;
        padding: 0 50px;
    }
    .descContainer img{
        display: none;
        width: 425px;
        height: 100%;
    }
    .bottomContainer{
        margin: 400px 0 0;
    }
    .policyContainer{
        margin: 10px 0 0 ;
        padding: 20px 50px;
    }
}