@font-face {
    font-family: RE;
    src: url(./fonts/Rejouice-Headline.woff2);
}

@font-face {
    font-family: poppins;
    src: url(./fonts/Poppins-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    /* background-color: #002F69; */
    color: white;
    font-family: poppins;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
}

#page1 {
    height: 16vh;
    width: 100%;
    /* background-color: ; */
    display: flex;
    justify-content: center;
    align-items: center;

}

nav {
    height: 75%;
    width: 90%;
    /* background-color: #004658; */
    /* background-color: aliceblue; */
    /* box-shadow: 0 0 6px black; */
    border-bottom: 2px solid #000;
    /* border-radius: 1rem; */
    padding: 1.2vw 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #FFFFFF; */

}

.links .hometag {
    /* background-color: ; */
    padding: 0.2vw 0.9vw;
    color: #91618f;
    border-radius: 0.9rem;
    font-weight: 800;
}

nav .logo img {
    width: 7vw;
    /* background-color: aliceblue; */
    margin-top: 0.8vw;
}

.logo h3 {
    color: black;
    font-size: 1.6vw;
}

/* .logo img{
    height: 80%;
    width: 100%;
    object-fit: cover;
} */
nav .links {
    display: flex;
    align-items: center;
    gap: 2vw;
    font-size: 1.2vw;


}

.links a {
    color: black;
    font-weight: 600;
    transition: all ease 0.4s;

}

.links a:hover {
    padding-bottom: 0.5vw;
    /* text-decoration: underline; */
}

#menutag {
    display: none;
}

.fixed {
    display: none;
}

@media (max-width: 700px) {
    nav {
        width: 100%;
        padding: 1vw 4vw;
    }

    #menutag {
        display: block;
        font-size: 7vw;
    }

    nav .links a {
        display: none;
    }

    nav .logo img {
        width: 20vw;
        margin-top: 5vw;
    }

    #menutag {
        display: block;
        font-size: 7vw;
        color: black;
        z-index: 999;
        /* background-color: red; */
        /* test only */
    }


    /* Updated .fixed styles */
    .fixed {
        display: none;
        position: fixed;
        /* changed from absolute */
        z-index: 1000;
        height: 100vh;
        width: 60%;
        background-color: #003344;
        top: 0;
        /* changed from 13% */
        right: -70%;
        padding: 5vw;
        overflow-y: auto;
        overflow-x: hidden;
        transition: right 0.3s linear;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    }


    .fixed .res-links {
        display: flex;
        flex-direction: column;
        gap: 6vw;
        margin-top: 15vw;
        /* text-align: center; */

    }

    .res-links a {
        text-decoration: none;
        color: white;
        font-size: 7vw;
    }

    .fixed span i {
        color: #fff;
        font-size: 9vw;

    }

    .hero {
        flex-direction: column;
    }




}

#page2 {
    height: 83vh;
    width: 100%;
    background-color: #002F69;
    padding: 1vw 4vw;
    display: flex;
}

#page2 .left {
    height: 100%;
    width: 50%;
    /* background-color:burlywood; */
    display: flex;
    justify-content: right;
    align-items: center;
    /* padding: 1vw;    */
}

.left-box {
    height: 85%;
    width: 70%;
    background-color: antiquewhite;
}

.left-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#page2 .right {
    height: 100%;
    width: 50%;
    /* background-color:cadetblue; */
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 1vw;
}

#page2 .right-box {
    height: 85%;
    width: 88%;
    /* background-color: black; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2vw;

}

.right-box h2 {
    display: flex;
    gap: 1vw;
    align-items: center;
}

.head-text {
    height: 6vh;
    width: 100%;
    /* background-color:aqua;    */
    padding-left: 2.2vw;
}

.right-box h1 {
    font-size: 5vw;
    line-height: 5vw;
}

.hero {
    height: 80vh;
    width: 100%;
    display: flex;
    padding: 2.9vw;
    /* margin: 0 2vw; */
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar {
    display: none;
}

.hero-left {
    height: 100%;
    width: 50%;
    /* background-color: #00BFA6; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.2vw;
    color: black;

}

.hero-head {
    margin-top: 1vw;
}

.hero-left .hero-head h1 {
    font-size: 6vw;
    line-height: 5.9vw;

}

.hero-text {
    height: 5vh;
    width: 100%;
    padding-left: 4vw;
    display: flex;
    align-items: center;

}

.hero-text h2 {
    display: flex;
    align-items: center;
    gap: 1.2vw;
}

.hero-left .btns {
    margin-top: 1.4vw;
    height: 4vw;
    width: 100%;
    /* display: flex; */
    padding-left: 3.2vw;
}

.hero-left .btns a {
    padding: 0.9vw 1.7vw;
    /* background-color: #444EFE; */
    background-color: #997F98;
    border-radius: 0.2rem;
}

.hero-right {
    height: 100%;
    width: 44%;
    /* background-color: #0087FF; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    height: 100%;
    width: 80%;
    border-radius: 50%;
    object-fit: cover;
    padding: 1.5vw;

}

@media (max-width: 600px) {

    .hero {
        /* margin-top: 5vw; */
        height: 65vh;
    }

    .hero-left {
        width: 95% !important;
        justify-content: unset;
        /* align-items: center; */
        align-items: center;
        margin-top: 12vh;
    }

    .hero-left .hero-head h1 {
        font-size: 13vw;
        line-height: 15vw;
    }

    .hero-right {
        display: none;

    }


    .hero-text h2 {
        /* align-items: unset; */
        justify-content: flex-start;
        font-size: 2.3vh;
        line-height: 9vw;
        gap: 2vw;
    }

    .hero-left .btns {
        margin-top: 6vw;
        padding-left: 0vw;
    }

    .hero-left .btns a {
        padding: 2.3vw 5.7vw;
    }

    .hero-right img {
        height: 90%;
        width: 100%;
    }
}





/* page3  */


#page3 {
    min-height: 80vh;
    width: 100%;
    /* background-color: #002F69;    */
    /* margin-top: 3vw; */
    position: relative;

}

#page3 .page3-bg {
    min-height: 90vh;
    width: 100%;
    position: absolute;
    background-image: url(./assets/website\ bg\ abstract\ dark\ .png);
}

.service-section {
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 2vw;
}

.service-heading {
    height: 5vh;
    width: 100%;
    /* background-color: #002F69; */
    text-align: center;
}

.service-heading h3 {
    font-size: 1.8vw;
    color: black;
    border-bottom: 2px solid black;
    padding-bottom: 0.8vw;
}

.servies {
    min-height: 100%;
    width: 100%;
    margin-top: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.service-box {
    height: 55vh;
    width: 23%;
    background: #004658;
    border-radius: 1rem;
    color: white;
    padding: 1.2vw;
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
}

.service-box h3 {
    text-align: center;
    margin-top: 1.2vw;
    border-bottom: 2px solid;
    padding-bottom: 0.6vw;
}

.service-box p {
    height: 27vh;
    width: 100%;
    /* background-color: #000; */
    font-size: 15px;
    margin-top: 2vw;
}

.service-btn a {
    padding: 0.6vw 1.5vw;
    background-color: white;
    color: #0087FF;
    /* margin: 0 0.9vw; */
    border-radius: 0.5rem;
           
}




/* page4 */


#page4 {
    min-height: 100vh;
    width: 100%;
    background-color: #EEEEF0;
    /* margin-top: 4vw; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* gap: 1.2vw; */
    color: black;
}

.up-box {
    height: 25%;
    width: 80%;
    /* background-color: #002F69; */
    display: flex;
    align-items: center;
    padding: 2vw;
}

.up-box h1 {
    font-size: 3vw;
    line-height: 3vw;
}

.up-box h1 span {
    border-top: 5px solid #002F69;
}

.down-box {
    height: 25%;
    width: 70%;
    /* background-color: #002F69; */
    display: flex;
    padding: 2vw;
    padding-right: 4vw;
    justify-content: right;
}

.down-box p {
    width: 50%;
    text-align: justify;

}


/* page5 */



#page5 {
    min-height: 100vh;
    width: 100%;
    background-color: #004658;
}

.chooseh1 {
    text-align: center;
    /* margin-top: 3vw; */
    border-bottom: 1px solid white;
    padding-bottom: 0.8vw;
    padding: 2vw;

}

.chooseh1 {
    font-size: 1.4vw;
}

#choosediv {
    min-height: 60vh;
    width: 100%;
    /* background-color: #00BFA6; */
    margin-top: 5vw;
    padding: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-text {
    height: 100%;
    width: 50%;
    /* background-color: #011627; */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;

}

.choose-text h4 {
    font-weight: 100;
    margin-bottom: 0.5vw;


}

.choose-text>h4 {
    color: wheat;
}

.choose-text h3 {
    font-size: 2.5vw;
}

.choose-text p {
    margin-top: 0.7vw;
    width: 90%;

}

.choose-img {
    height: 90%;
    width: 40%;
    /* background-color: #452c2c; */
}

.choose-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.spandiv {
    display: flex;
    margin-top: 3vw;
    gap: 2vw;
    flex-wrap: wrap;
}

.spandiv h4 {
    display: flex;
    align-items: center;
    gap: 0.4vw;
}

.spandiv h4 i {
    padding: 0.3vw;
    border-radius: 50%;
    border: 1px solid white;
}


#page5 .boxes {
    min-height: 70vh;
    width: 100%;
    margin-top: 4vw;
}

.boxes h1 {
    text-align: center;
}

.boxes p {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-top: 1.4vw;
}

.box-div {
    height: 40vh;
    width: 100%;
    padding: 1.5vw;
    /* background-color: #00BFA6; */
    margin-top: 2vw;
    display: flex;
    justify-content: center;
    gap: 1.3vw;
}

.box-div .box {
    height: 30vh;
    width: 20%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;
}

.box .box-img {
    height: 14vh;
    width: 14vh;
    /* background-color: #0087FF; */
}

.box .box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.box h3 {
    text-align: center;
    margin-top: 1.3vw;
}

#page6 {
    height: 50vh;
    width: 100%;
    position: relative;
    background-color: white;
    margin-top: 4vw;
}

#page6 .bg-img {
    height: 100%;
    width: 100%;
    background-image: url(assets/website\ bg\ white\ and\ dark.png);
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

.bg-text {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    /* background-color: #000; */
    color: #000;
    padding: 2.4vw;
}

.bg-text h3 {
    text-align: center;
    margin-top: 3vw;
    font-size: 1.5vw;
    color: #002F69;
}

.bg-text p {
    font-size: 2vw;
    text-align: center;
    margin-top: 1.4vw;
    font-weight: 600;
}

.bg-text a {
    padding: 0.6vw 1.5vw;
    background-color: #0087FF;
    border-radius: 0.3vw;
}

.bg-text .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.4vw;

}










#page7 {
    height: 70vh;
    width: 100%;
    margin-top: 3vw;
}

a {
    color: #fff;
    text-decoration: none;
}

.pg-footer {
    font-family: 'Roboto', sans-serif;
}


.footer {
    background-color: #004658;
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 42px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 42px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 42px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 45px;
}

.footer-copyright {
    background-color: #027b9a;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}


.footer-logo-link img {
    width: 120px;
}






/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px) {

    body {
        /* width: 103%; */
    }

    .servies {
        min-height: 70%;
        flex-direction: column;

    }

    .page3-bg {
        display: none;
    }

    .service-box {
        width: 90%;
        height: 40vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3vw;
    }

    #page3 {
        min-height: 180vh;
    }

    .service-heading {
        height: 8vh;
    }
    .service-btn{
        margin-top: 9vw;
    }

    .service-btn a {
        padding: 2vw 3vw;
        background-color: white;
        color: #0087FF;
        /* margin: 0 0.9vw; */
        border-radius: 0.3rem;
         margin-top: 4vw;
    }

    .service-box h3 {
        padding-bottom: 2.6vw;
    }

    .service-box p {
        height: 15vh;
        margin-top: 4vw;
    }

    .service-heading h3 {
        font-size: 6.8vw;
    }

    #paage4 {
        min-height: 85vh;
        gap: 5.2vw;
    }

    .down-box p {
        width: 100%;
    }

    .up-box h1 {
        font-size: 6vw;
        line-height: 8vw;
    }


    .chooseh1 {
        font-size: 5.4vw;
    }

    #choosediv {
        flex-direction: column;
    }

    .choose-text {
        height: 100%;
        width: 100%;
        padding: 3vw;
    }

    .choose-text p {
        margin-top: 1.7vw;
    }

    .choose-img {
        height: 90%;
        width: 100%;
    }

    .boxes h1 {
        text-align: center;
        font-size: 6vw;
        padding: 3vw;
    }

    .boxes p {
        text-align: center;
        width: 85%;
    }

    .choose-text h3 {
        font-size: 6.5vw;
    }

    #page5 .boxes {
        margin-top: 4vw;
        min-height: 60vh;
        width: 100%;
    }

    .box-div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .box .box-img {
        height: 4vh;
        width: 3vh;
    }

    .box h3 {
        font-size: 3vw;
    }

    .box-div .box {
        height: 30vh;
        width: 50%;
    }

    #page6 {
        height: 24vh;
    }


.bg-text{
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
}

.bg-text h3 {
    text-align: center;
    margin-top: 3vw;
    font-size: 3.5vw;
}
.bg-text p {
    font-size: 4vw;
}
.bg-text a {
    padding: 2vw 5vw;
    background-color: #0087FF;
    border-radius: 0.6vw;
    font-size: 3.2vw;
}





    /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:480px) and (max-width:599px) {

    /* smartphones, Android phones, landscape iPhone */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:600px) and (max-width: 800px) {

    /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}





@media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }

    .footer-wave-svg {
        height: 50px;
    }

    .footer-content-column {
        width: 24.99%;
    }
}