*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: var(--font);
}
:root{
    --font: Inter , sans-serif;
    --primaryColor : #243A50;
    --secondColor :  #64748B ;
    --zaher8ame2 : #9E005D ;
    --shadow :  0 4px 6px rgba(0, 0, 0, 0.1)
}

html, body {
    overflow-x: hidden !important;
}

/* Start Section Home */
main {
    background:linear-gradient(252.44deg, #002C51 53.46%, #0E3759 100%);
    z-index: 20;
    overflow: hidden;
}
main::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("../images/image-2.png");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;        
    z-index: 1; 
}

main .content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
main .content nav{
    max-width: 1240px;
    width: 100%;
    height: 70px;
    background-color: white;
    margin: 50px auto 10px;
    gap: 8px;
    border-radius: 80px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 999999999;
    top: 0;
    justify-content: space-between;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

main .content nav .links .logo img{
    object-fit:contain;
}
    
main .content nav .links{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
main .content nav .links .content-links{
    display: flex ;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 100;
}
main .content nav .links .content-links .contact-us-2{
    display: none;
}
main .content nav .links .icon{
    border-radius: 50%;
    padding: 8px 10px;
    display: none;
    color: var(--primaryColor);
    background-color: white;
    transition-property: background-color;
    transition-duration: 0.3s;
}
main .content nav .links .icon:hover{
    background-color: gray;
    cursor: pointer;
}    
main .content nav .links .content-links .logo{
    color: var(--secondColor);
}
main .content nav .links .content-links a{
    text-decoration: none;
    font-family: var(--font);
    font-weight: 400;
    color: var(--primaryColor) ;
    font-size: 20px;
}
main .content-links a.active,
main .contact a.active {
   
    font-weight: 600 !important;
}
main .content nav .links .contact a{
    text-decoration: none;
    font-family: var(--font);
    color: white;
    font-weight: 600;
    padding: 13px 30px;
    font-size: 20px;
    background-color:#002C51;
    border-radius: 500px;
    transition-property: color background-color;
    transition-duration: 0.5s;
}   
main .content nav .links .contact a:hover{
    background-color : #002542;
}
main .content header{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 160px;
    color: white;
} 
main .content header .head-1{
    font-family: var(--font);
    font-weight: 600;
    font-size: 60px;
    line-height: 140%;
    margin:  0 auto ;
    text-align: center;
    max-width: 1200px;
    margin-top: 50px;

}
main .content header .head-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font);
    font-weight: 200;
    font-size: 21px;
    line-height: 160%;
    text-align: center;
    color: #ffffffe4;
    margin-top: 10px;
}
main .content .image{
   width: 80%;
   margin: auto;
   border: 15px solid #050505;
   border-top-left-radius: 20px;
   border-top-right-radius: 20px;
   margin-top: 30px;
}
main .content .image img{
    width: 100%;
}

@media screen and (min-width: 1600px) {
    main .content nav {
        max-width: 1440px;
    }
}
@media screen and (max-width:992px) {
    main .content nav{
        width: 90%;
    }
    main .content nav .links .content-links{
        position: absolute;
        flex-direction: column;
        top: 106px;
        left: 50%;
        width: 80%;
        align-items: start;
        border-radius: 10px;
        background-color: var(--primaryColor);
        padding: 27px;
        transform:translateX(-50%);
    }
    main .content nav .links .content-links a{
        color: white;
    }
    
    main .content nav .links .logo img{
        width: 100px !important;
    }
    
    main .content nav .links .content-links .contact-us-2{
        display: inline;
    }
    main .content nav .links .icon{
        display: block;
    }
    main .content header .head-1{
        font-size: 36px;
    }
    main .content header .head-2{
        font-size: 20px;
    }
    main .content .image{
        width: 100%;
    }
    main .content nav .links .contact{
        display: none;
    }

}
/* End Section Home */

/* Section Services */
.section-1{
    padding: 70px;
    margin-top: -300px;
    position: relative;
    z-index: 111;
    background-color: white;
}
.section-1 .head-1{
    font-size: 50px ;
    font-weight: 600;
    margin-bottom:10px ;
    color: var(--primaryColor);
}
.section-1 .head-1 span{
    color: var(--zaher8ame2);
}
.section-1 .parag{
    color: var(--secondColor);
    margin-top: 20px;
    font-size: 22px;
    padding-right: 100px;
    letter-spacing: 0.9px;
}
.section-1 .boxes{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3%;
    margin-top: 50px;
}
.section-1 .boxes .box{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 22%;
    background-color: #F6F6F6;
    border-radius: 15px;
    padding: 20px;
}
.section-1 .boxes .box img{
    width: 56px;
}
.section-1 .boxes .box h5{
    color: var(--primaryColor);
    font-weight: 600;
}
.section-1 .boxes .box p{
    color: var(--secondColor);
    margin-top: -15px;
}
@media screen and (max-width:1200px) {
    .section-1 .boxes{
        gap: 50px;
    }
    .section-1 .boxes .box{
        flex-basis: 44%;
    }
}
@media screen and (max-width:768px) {
    .section-1{
        padding: 70px 0;
        margin-top: -200px;
    }
    .section-1 .head-1{
        font-size: 30px;
        text-align: center;
    }
    .section-1 .parag{
        font-size: 16px;
        text-align: center;
        padding: 0;
        margin-top: 30px;
    }
    .section-1 .vector{
        width: 300px;
        margin: 0 auto;
    }
    .section-1 .vector img{
        width: 100%;
    }
}
@media screen and (max-width:568px) {
    .section-1{
        margin-top: -130px;
    }
    .section-1 .boxes{
        justify-content: center;
    }
    .section-1 .boxes .box{
        flex-basis: 95%;
    }
}
/* End Section Services */

/* Start Section My Choose */
.choose{
    display: flex;
    align-items: center;
    padding: 50px 0;
}
/* End Section My Choose */
.choose{
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}
.choose .image{
    flex-basis: 45%;
    position: relative;
}
.choose .image img{
    width: 746px ;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
}
.choose .image .top{
    position: absolute;
    top: -40px;
    left: 79px;
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: white;
    height: 75px;
    box-shadow: 0px 10px 50px 0px #D7D7D759;
    gap: 4px;
    width: 330px;
    border-radius: 16px;
}
.choose .image .top img{
    width: 37px;
    height: 39px;
}
.choose .image .top p,.choose .image .bottom p{
    color: var(--primaryColor);
    font-weight: 600;
    padding-top: 18px;
    padding-right: 50px;
}
.choose .image .top p span,.choose .image .bottom p span{
    color: var(--zaher8ame2);
}
.choose .image .bottom{
    position: absolute;
    bottom: -25px;
    right: -45px;
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: white;
    height: 75px;
    box-shadow: 0px 10px 50px 0px #D7D7D759;
    gap: 4px;
    width: 330px;
    border-radius: 16px;
}
.choose .image .bottom img{
    width: 51px;
    height: 43px;
}
.choose .description{
    flex-basis: 30%;
}
.choose .description .heading{
    display: flex;
    flex-direction: column;
}
.choose .description .heading .head-1{
    color: var(--primaryColor);
    font-size: 50px;
    font-weight: 600;
}
.choose .description .heading .head-2{
    color: var(--zaher8ame2);
     font-size: 50px;
    font-weight: 600;
}
.choose .description .image img{
    width: 65%;
}
.choose .description .parag{
    color: var(--secondColor);
    font-size: 22px;
    margin-top: 20px;
}
.choose .description button{
 text-decoration: none;
    font-family: var(--font);
    background-color: var(--primaryColor);
    font-weight: 600;
    padding: 17px 30px;
    color: white;
    border: none;
    font-size: 20px;
    margin-top: 30px;
    border-radius: 10px;
    transition-property: color background-color;
    transition-duration: 0.5s;
    margin-bottom: 30px;
}
footer button:hover{
    background-color:gainsboro;
    color: var(--primaryColor);
}
@media screen and (max-width:1200px) {
    .choose{
        gap: 20px;
        justify-content: space-around;
    }
    .choose .image{
        flex-basis: 500px;
    }
    .choose .image img{
        width: 100%;
    }
    .choose .description{
        flex-basis: 40%;
    }
}
@media screen and (max-width:992px) {
    .choose .image{
        flex-basis: 800px;
    }
    .choose .description{
        flex-basis: 70%;
    }
}
@media screen and (max-width:768px) {
    .choose .description .heading .head-1 , .choose .description .heading .head-2{
        font-size: 30px;
    }
    .choose .description .parag{
        font-size: 18px;
    }
    .choose .description{
        flex-basis: 90%;
    }
}
@media screen and (max-width:568px) {
    .choose .image .top,.choose .image .bottom{
        width: 300px;
        height: 65px;
    }
    .choose .image .top p,.choose .image .bottom p{
        font-size: 14px;
    }
    .choose .description{
        margin-top: 20px
    }
}
/* Start Section Feature */
.feature{
    padding: 60px 0;
    margin-top: 30px;
    font-family: var(--font);
    color: white;
    background: linear-gradient(278.18deg, #002C51 6.29%, #032643 61.77%);
}
.feature .head-1{
    font-size: 50px;
    font-weight: 600;
}
.feature .vector img{
    width: 364px;
}
.feature .parag{
    font-size: 22px;
    letter-spacing: 1px;
    color: #fffffff0;
    padding-right: 200px;
    margin-top: 20px;
    line-height: 34px;
}
.feature .description{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.feature .description .image{
    width: 450px;
}
.feature .description .image img{
    width: 100%;
    border-radius: 14px;
}
.feature .description .boxes{
    width: calc((100% - 450px) - 100px);
}
.feature .description .boxes .box{
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}
.feature .description .boxes .box .number{
    background-color: #EDEBFE;
    width: 50px;
    height: 50px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 22px;
    box-sizing:border-box;
    flex-shrink:0;
}
.feature .description .boxes .box div{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.feature .description .boxes .box p{
    color:#ffffffa8 ;
    font-size: 16px;
    max-width: 550px;
}
@media screen and (max-width:1200px) {
    .feature .description .image{
        width: 350px;
    }
    .feature .description .boxes{
        width: calc((100% - 350px) - 30px);
    }
    .feature .description .boxes .box p{
        max-width: 100%;
    }
}
@media screen and (max-width:992px) {
    .feature .parag{
        padding-right:  0;
    }
    .feature .description{
        justify-content: center;
        gap: 40px;
        margin-top: 20px;
    }
    .feature .description .image{
        width: 600px;
    }
    .feature .description .boxes{
        width: 70%;
    }
}
@media screen and (max-width:768px){
    .feature .description .boxes .box{
        gap:20px;
    }
    .feature .head-1{
        font-size: 30px;
    }
    .feature .parag{
        font-size: 18px;
    }
    .feature .description .boxes{
        width: 90%;
    }
    .feature .vector img{
        width: 320px;
    }
}
@media screen and (max-width:568px) {
    .feature .vector img{
        width: 250px;
    }
}
/* End Section Feature */
.contact-us{
    padding: 60px 0;
}
.contact-us .section-2{
    display: flex; 
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contact-us .section-2 .image{
    width: 650px;
}
.contact-us .section-2 .image img{
    width: 100%;
}
.contact-us .section-2 .description{
    width: calc((100% - 650px) - 100px );
}
.contact-us .section-2 .description .head-1{
    color:var(--primaryColor) ;
    font-size: 50px;
    font-weight: 600;
}
.contact-us .section-2 .description .head-2{
    color: var(--zaher8ame2);
    font-size: 50px;
    font-weight: 600;
}
.contact-us .section-2 .description .vector{
    width: 300px;
    margin-bottom: 30px;
}
.contact-us .section-2 .description .vector img{
    width: 100%;
}
.contact-us .section-2 .description .parag{
    font-size: 22px;
    color: var(--secondColor);
    max-width: 500px;
    line-height: 34px;
    letter-spacing: 1px;
}
.contact-us .section-2 .description button{
    text-decoration: none;
    font-family: var(--font);
    background-color: var(--primaryColor);
    font-weight: 600;
    padding: 17px 30px;
    font-size: 20px;
    color: white;
    border: none;
    margin-top: 30px;
    border-radius: 10px;
    transition-property: color background-color;
    transition-duration: 0.5s;
}
.contact-us .section-2 .description button:hover{
    background-color:gainsboro;
    color: var(--primaryColor);
}
@media screen and (max-width:1200px) {
    .contact-us .section-2 .image{
        width: 550px;
    }
    .contact-us .section-2 .description{
        width: calc((100% - 550px) - 100px );
    }
}
@media screen and (max-width:992px) {
    .contact-us .section-2{
        justify-content: center;
        gap: 50px;
    }
    .contact-us .section-2 .image{
        width: 600px;
    }
    .contact-us .section-2 .description{
        width: 60%;
    }
}
@media screen and (max-width:768px) {
    .contact-us .section-2 .description .head-1 , .contact-us .section-2 .description .head-2 {
        font-size: 30px;
    }
    .contact-us .section-2 .description .parag{
        font-size: 18px;
    }
    .contact-us .section-2 .description{
        width: 80%;
    }
}
@media screen and (max-width:568px) {
    .contact-us .section-2 .description .parag{
        max-width: 100%;
    }
    .contact-us .section-2 .description{
        width: 90%;
    }
}

/* Start Section help */
.help{
    position: relative;
    z-index: 1;
    min-height: 580px;
    background: #002c51;
}
.help:before{
    content : "" ;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background: url("../images/cart.jpg");
    background-size: cover;
    z-index: -1;
    opacity: 0.2;
}
.help .section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 580px;
    gap: 17px;
    color: white;
}
.help .section h2{
    font-weight: 600;
    color: #FFCD00;
}
.help .section h1{
    font-size: 47px;
    text-align: center;
}
.help .section .line{
    width: 265px;
    height: 4px;
    border-radius: 500px;
    background: #E7E7E766;
}
.help .section p{
    font-size: 24px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 300;
    max-width: 1000px;
    margin-top: 10px;
}
.help .section button{
    border: 2px solid white;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 6px;
    width: 200px;
    height: 60px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    font-weight: 600;
    transition-property: all;
    transition-duration: 0.5s;
}
.help .section a{
    text-decoration: none;
}
.help .section button:hover{
    background-color: #FFCD00;
    border: none;
}
@media screen and (max-width:786px) {
    .help .section h1{
        font-size: 30px;
    }
    .help .section p{
        font-size: 18px;
    }
}
/* End Section help */
/* Start Footer */
footer{
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
}
footer small{
    font-weight: 400;
    font-size: 16px;
    color:#7e7e7e;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--primaryColor);
}
footer .head-1{
    font-weight: 700;
    font-size: 50px;
    color: #0A142F;
}
footer .parag-1{
    font-weight: 400;
    font-size: 20px;
    margin: 10px 0;
}
footer button{
    text-decoration: none;
    font-family: var(--font);
    background-color: var(--primaryColor);
    font-weight: 600;
    padding: 17px 30px;
    font-size: 20px;
    color: white;
    border: none;
    margin-top: 30px;
    border-radius: 10px;
    transition-property: color background-color;
    transition-duration: 0.5s;
    margin-bottom: 30px;
}
footer button:hover{
    background-color:gainsboro;
    color: var(--primaryColor);
}
footer .parag-2{
    font-weight: 400;
    margin-top: 15px;
    font-size: 14px;
    color: #0A142F;
}
footer .nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 10px 20px;
    border-top :1px solid #8b8b8b64
}
footer .nav .icon{
    color: var(--secondColor);
}
footer .nav .links{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
footer .nav .links a{
    text-decoration: none;
    color: #0A142F;
    font-weight: 500;
    font-size: 16px;
}
footer .nav .icons{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
footer .nav .icons a{
    border-radius: 100%;
    border: 1px solid rgba(128, 128, 128, 0.356);
    color: var(--secondColor);
    padding: 10px 15px;
}
@media screen and (max-width:992px) {
    footer .head-1{
        text-align: center;
        margin-top: 10px;
    }
    footer .nav .links{
        gap: 20px;
    }  
}
@media screen and (max-width:768px) {
    footer .head-1{
        font-size: 30px;
        text-align: center;
        line-height: 40px;
    }
    footer .nav{
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }    
}
/* End Footer */