
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body{
    background-color: #253364;
}

.wrapper{
    max-width: 550px;
    margin: auto;
    overflow: hidden;
    min-height: 100vh;
    background-color: #142439;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 700px;
    margin: auto;
}

.navbar{
    width: 100%;
    color: #000;
    opacity: 0.85;
    background: transparent linear-gradient(180deg, #235FD6 0%, #1C1D50 100%) 0% 0% no-repeat padding-box;
    z-index: 100;
    padding: 0px;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 55px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
}
.logo{
    order: 1;
    font-size: 2.3rem;
}
.logo img{
    max-width: 120px;
}
.menu-items li{
    list-style: none;
    font-size: 1.3rem;
}



.navbar{
    opacity: 0.95;
}

.navbar-container input[type="checkbox"],
.navbar-container .hamburger-lines{
    display: block;
}

.navbar-container{
    display: block;
    position: relative;
    height: 65px;
}

.navbar-container input[type="checkbox"]{
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 15px;
    right: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.navbar-container .hamburger-lines{
    display: block;
    height: 22px;
    width: 29px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-container .hamburger-lines .line{
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
}

.navbar-container .hamburger-lines .line1{
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
}

.navbar-container .hamburger-lines .line2{
    transition: transform 0.2s ease-in-out;
}

.navbar-container .hamburger-lines .line3{
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
}

.navbar .menu-items{
    padding-top: 100px;
    height: 100vh;
    width: 80%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -12px;
    padding-left: 0px;
    transition: transform 0.5s ease-in-out;
    overflow: auto;
    background: transparent linear-gradient(180deg, #235FD6 0%, #1C1D50 100%) 0% 0% no-repeat padding-box;
}
.navbar .menu-items .logo{
    background-color: #27334E;
    padding-bottom: 12px;
    padding-top: 4px;
}
.navbar .menu-items ul{
    padding: 0px;
}
.navbar .menu-items li{
    font-size: 16px;
    font-weight: 500;
    position: relative;
    margin-bottom: 5px;
}
.navbar .menu-items li a{
    color: #fff;
    padding: 5px 40px;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
    text-transform: uppercase;
    display: flex;
    width: 100%;
    justify-content: space-between;

}
.navbar .menu-items li.active > a,
.navbar .menu-items li:hover > a{
    padding-left: 32px;
    border-left: 8px solid #FF631E;
    color: #FF631E;
}
.navbar .menu-items li.active svg path,
.navbar .menu-items li:hover svg path{
    fill: #FF631E;
}

.navbar .menu-items li .dropdownMenu{
    padding: 15px 18px 15px 40px;
    background-color: #27334E;
}
.navbar .menu-items li .dropdownMenu a{
    color: #BCBDC4;
    font-size: 14px;
    padding: 5px 0px;
}
.navbar .menu-items li .dropdownMenu a:hover{
    color: #1E87FF;
}

.logo{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
}

.navbar-container input[type="checkbox"]:checked ~ .menu-items{
    transform: translateX(0);
}

.hero-section{
    min-height: 150px;
    background-image: url('../imgs/hero.webp');
    background-size: 100% 100%;
    opacity:0.4;
}

.whatapps-section{
    margin-top: -110px;
}
.whatapps-section .img {
    position: relative;
}
.whatapps-section .img .vector-btn{
    position: absolute;
    bottom: 18px;    
    width: 100%;
    text-align: center;

}
.whatapps-section .img .vector-btn a{
   animation: pulse-black 20s infinite;
}
@keyframes pulse-black {
                0% {
                    transform: scale(1,1);
                }

                1% {
                    transform: scale(0.9,0.9);
                }

                2% {
                    transform: scale(1,1);
                }

                3% {
                    transform: scale(0.9,0.9);
                }

                4% {
                    transform: scale(1,1);
                }

                7% {
                    transform: scale(1,1);
                }

                100% {
                    transform: scale(1,1);
                }
            }


.whatapps-section .btn-whatapps {
    background: transparent linear-gradient(180deg, #00EC5F 0%, #0FDFDF 100%) 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 1px 1px #FDFFFAD1, 0px 2px 2px #0B2038D9;
    padding: 6px 26px;
    text-align: center;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse-black 20s infinite;
}

.content-section{
    margin-top: 0px;
}
.section-heading{
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: #FF631E;
    text-transform: uppercase;
    max-width: 375px;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    text-decoration: none;
}
.content-section .detail{
    background-color: #27334E;
    padding: 14px 15px;
    border-radius: 10px;
    margin-bottom: 50px;
}
.content-section .detail .content-li{
    display: flex;
    gap: 18px;
    color: #BFC3D9;
    font-size: 16px;
    padding-bottom: 10px;
}
.content-section .detail .content-li span:first-child{
    width: 20px;
    text-align: left;
}
.section-text{
    font-size: 14px;
    letter-spacing: 0px;
    color: #BCBDC4;
    width: 90%;
    margin: 0 auto;
}

.text-1E87FF,
.section-text strong{
    color: #F0BD1B;
}
b{
    color: #F0BD1B;
}


.footer-section{
    background: transparent linear-gradient(180deg, #235FD6 0%, #1C1D50 100%) 0% 0% no-repeat padding-box;
    padding: 40px 0px;
    margin-top: 70px;
}
.footer-section .heading{
    font-size: 15px;
    font-weight: 700;
    color: #FF631E;
}
.footer-section ul{
    padding: 14px 0px;
    margin: 0px;
}
.footer-section li{
    list-style: none;
    font-size: 13px;
    position: relative;
    padding-bottom: 5px;
}
.footer-section li a{
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
    text-transform: uppercase;
    display: flex;
    width: 100%;
    gap: 12px;
    line-height: 20px;
}
.footer-section li a .underline{
    height: 35px;
}
.footer-section li.active:hover a,
.footer-section li:hover a{
    color: #FF631E;
}
.footer-section li.active:hover a .underline,
.footer-section li:hover a .underline{
    padding-bottom: 2px;
    border-bottom: 2px solid #FF631E;
}
.footer-section li.active:hover svg path,
.footer-section li:hover svg path{
    fill: #FF631E;
}

.footer-section hr{
    background: #fff;
    margin-bottom: 30px;
}
.footer-section .copyright-text{
    color: #BCBDC4;
    font-size: 12px;
}


.main-title-section{
    background-image: url('../imgs/main-title-image.png');
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    justify-content: center;
}

.profile-section{
    margin-top: 24px;
    margin-bottom: 45px;
}
.profile-section .detail{
    max-width: 450px;
    margin: auto;
    background: #27334E;
    padding: 12px 20px;
    border-radius: 20px;
    color: #fff;
    min-height:400px;
}
.profile-section .detail strong{
    color: #1E87FF;
}

.text-FF631E{
    color: #FF631E;
    font-weight: 700;
}

.flex-dataa{
    padding: 20px 0px;
}
.flex-dataa .flex-color{
    display: flex;
    width: 100%;

}
.flex-dataa .flex-color div.text-FF631E{
    width: 20px;
    text-align: left;
}

h1{
   font-size: calc(1.0rem + 0.5vw);
}


/* Resolutions */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    
    .whatapps-section .img .vector-btn {
    position: absolute;
    bottom: 2px;
    width: 100%;
    text-align: center;
    animation: pulse-black 20s infinite;
}

.whatapps-section .btn-whatapps {
    background: transparent linear-gradient(180deg, #00EC5F 0%, #0FDFDF 100%) 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 1px 1px #FDFFFAD1, 0px 2px 2px #0B2038D9;
    padding: 6px 10px;
    text-align: center;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    animation: pulse-black 20s infinite;
    
}
    
}  

.detail-left{
    float:left;
}

.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #333;
	border-radius: 0.5rem;
	padding: 0.5rem;
	text-decoration: none;
	transition: 0.2s ease-out;
	width:50px;
	height:50px;
	margin-bottom:50px;
}

.back-to-top span {
	color: #fff;
	font-size: 2rem;
	transition: 0.2s ease-out;
}


.back-to-top:hover {
	background-color: #be1a3b;
}
.back-to-top:hover span {
	transform: translateY(-4px);
}
         .delay-four {
                animation-delay: 0s!important;
            }

            .delay-five {
                animation-delay: 1s!important!important;
            }

            .delay-six {
                animation-delay: 2s!important;
            }

            .delay-eight {
                animation-delay: 3s!important;
            }

            .delay-three {
                animation-delay: 4s!important;
            }

            .delay-seven {
                animation-delay: 5s!important;
            }

            .delay-nine {
                animation-delay: 6s!important;
            }
            


}
