@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

@font-face {
	font-family: "Poppins";
	src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
    background-color: #F6F6F7;
}

/* navigation */

/* .content{
    max-width: 1600px;
    margin: auto;
    padding: 0px 30px;
} */

.newnav{
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 5;
    width: 100%;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.newnav.sticky{
    padding: 10px 0;
    background: #fff;
}

.newnav .content{
    max-width: 1600px;
    margin: auto;
    padding: 0px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newnav .menu-list{
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.newnav .logo a{
    color: #000000;
    font-size: 30px;
    font-weight: 600px;
    text-decoration: none;
}

.newnav .logo .imageLogo{
    height: 50px;
    /* margin-top: 10px; */
}

.menu-list li{
    list-style: none;
}

.menu-list li a{
    color: #000000;
    font-size: 0.9375vw;
    font-weight: 500px;
    margin-left: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.menu-list li a:hover{
    color:#58B4F3;
}

.menu-list li a p{
    color: #000000;
    font-size: 18px;
    font-weight: 500px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.menu-list li .btnSmall {
    background-color: #1176BC;
    border-radius: 15px;
    display: inline-block;
    width: 8.8vw;
    padding: 0.8em;
    text-align: center;
    -webkit-box-shadow: 0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    -moz-box-shadow:    0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    box-shadow:         0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    color: white;
}

.menu-list li .btnSmall:hover {
    color: white;
    background-color: #58B4F3;
}

.icon{
    color: #58B4F3;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.icon.cancel-btn{
    position: absolute;
    right: 30px;
    top: 20px;
}

@media (max-width: 868px){
    body.disabledScroll{
        overflow: hidden;
    }
    
    .icon{
        display: block;
    }
    .icon.hide{
        display: none;
    }
    .newnav .menu-list{
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        background: #fff;
        display: block;
        padding: 40px 0;
        text-align: center;
        transition: all 0.3s ease;
    }
    .newnav .menu-list.active{
        left: 0%;
    }
    .newnav .menu-list li{
        margin-top: 45px;
    }

    .newnav .menu-list li a{
        font-size: 23px;
    }
}


/* landing page */

.welcome {
    /* margin-left: 100px; */
    width: 100%;
    height: 80vh;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.welcome-message{
    /* margin-left: 100px; */
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.welcome-message h1{
    font-weight: bold;
    font-size: 4vw;
    /* line-height: 72px; */
}

.welcome-message h5{
    font-weight: 500;
    font-size: 1vw;
    color: #807E80;
    /* line-height: 72px; */
}

.welcome-message a.main-button-slider {
    display: inline-block;
    width: 10vw;
    padding: 0.8em;

    margin-top: 1vh;
    font-size: 13px;
    border-radius: 15px;
    /* padding: 12px 75px; */

    text-align: center;
    font-size: 1vw;
    font-weight: 500px;
    text-decoration: none;

    background-color: #C4c4c4;
    color: #000000;

    -webkit-box-shadow: 0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    -moz-box-shadow:    0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    box-shadow:         0px 4px 11px 0px rgba(50, 50, 50, 0.18);

    transition: all 0.3s ease 0s;
}

.welcome-message a.main-button-slider:hover {
    background-color: #1176BC;
    color: #fff
}

.welcome-image {
    margin-top: 100px;
    margin-left: 100px;
    
}

.welcome-image img {
    width: 50vw;
}

/* abous us  */

.about-us {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.au-image img{
    max-width: 30vw;
}

.question{
    width: 600px;
}

.question h2{
    font-weight: bold;
    font-size: 3vw;
    /* line-height: 90px; */
}

.question p{
    font-size: 1vw;
    /* line-height: 30px; */
    text-align: justify;
}

/* services */

.services {
    padding-top: 50px;
    padding-bottom: 50px;
}

.service-container {
    padding-top: 50px;
    display: flex;
    flex-flow: row wrap;
    flex-direction: row;

    align-items: center;
    justify-content: center;
    
}

a.service-box {
    width: 22vw;
    height: 60vh;
    
    background: #FFFFFF;
    border-radius: 15px;
    margin: 0px 10px;

    text-decoration: none;

    -webkit-box-shadow: 0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    -moz-box-shadow:    0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    box-shadow:         0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    transition: all 0.3s ease 0s;
    
    text-align: left;
    
    opacity: 0.5;
}

a.service-box:hover {
    transform: translate(0, -20px);
    opacity: 1;
}

a.service-box h3{
    padding-top: 3vh;
    padding-left: 1.5vw;

    font-weight: 500;
    font-size: 1.3vw;
    text-decoration: none;
    color: #000000;
}

a.service-box p{
    padding-top: 1vh;
    padding-left: 1.5vw;

    font-weight: 400;
    font-size: 0.9vw;
    text-decoration: none;
    color: #807E80;
}

a.service-box img{
    width: 20vw;
    padding-top: 3vh;
    padding-left: 1.5vw;
}

/* footer  */

.base {
    display: flex;
    flex-flow: row wrap;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 3vh;
    color: #000000;
    background-color: #EBEBEB;
}

.base-top {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row;
}

.base-left {
    display: flex;
    flex-direction: column;

    margin-right: 1.25em;
    /* margin-bottom: 1em; */
}

.base-left img{
    width: 200px;
}

.base-left h2{
    font-size: 1.5vw;
    padding-right: 20%;
}

.base-left a.contact-button-slider {
    display: inline-block;
    width: 20vw;
    padding: 0.8em;

    margin-top: 10px;
    font-size: 0.8vw;
    border-radius: 15px;
    /* padding: 12px 75px; */

    text-align: center;
    font-weight: 500px;
    text-decoration: none;

    background-color: #fff;
    color: #000000;

    -webkit-box-shadow: 0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    -moz-box-shadow:    0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    box-shadow:         0px 4px 11px 0px rgba(50, 50, 50, 0.18);

    transition: all 0.3s ease 0s;
}

.base-left a.contact-button-slider:hover {
    background-color: #D0ECFF;
}

.base ul{
    list-style: none;
    padding-left: 0;
}

.base li {
    line-height: 2em;
}

.base a{
    text-decoration: none;
}

.base-right {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.base-right .box {
    margin-left: 5vw;
}

.base-right .box a {
    font-weight: 400;
    font-size: 0.8vw;
    line-height: 5vh;
    color: #949494;
}

.base-right .box a:hover {
    color: #000000;
}

.base-bottom {
    text-align: center;
    color: #000000;
    padding-top: 0px;
}

.base-bottom a{
    font-weight: 600;
    font-size: 0.8vw;
    line-height: 50px;
    color: #000000;
    margin: 0px 10px;
}

.base-bottom a:hover {
    color: #58B4F3;
}

.base-bottom p{
    font-weight: normal;
    font-size: 0.8vw;
    line-height: 30px;
    color: #949494;
    margin-top: 0.5vh;
}

.socials{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socials a{
    color: #000000;
    text-align: center;
    background-color: #fff;
    width: 2vw;
    height: 3.8vh;
    line-height: 36px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 10px;
}

.socials a:hover{
    background-color: #58B4F3;
    color: white;
}


/* login  */

.login {
    display: flex;
    flex-flow: row wrap;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding-top: 20vh;
    padding-bottom: 10vw;
    color: #000000;
    background-color: #F6F6F7;
}

.form-top {
    display: flex;
    flex-direction: column;
}

.form-top h2{
    font-weight: 600;
    font-size: 1.25vw;
    margin-bottom: 4vh;
}

.form-top input {
    font-size: 0.9375vw;
    padding: 10px 20px 10px 20px;
    border:none;
    outline: none;
    background: none;
}

.email, .password{
    margin-bottom: 3vh;
    width: 20vw;
    height: 5vh;
    display: inline-block;
    border-radius: 15px;
    background:white;

    -webkit-box-shadow: 0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    -moz-box-shadow:    0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    box-shadow:         0px 4px 11px 0px rgba(50, 50, 50, 0.18);
}

.form-top .warning{
    color:red;
    font-size: 0.625vw;
    padding-left: 1vw;
}

.form-mid {
    width: 20vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.form-mid a {
    text-decoration: none;
    font-size: 0.8vw;
}

.login-button button{
    display: inline-block;
    width: 7.8vw;
    padding: 0.8em;

    font-size: 0.8vw;
    border-radius: 15px;
    /* padding: 12px 75px; */

    text-align: center;
    font-weight: 500px;
    text-decoration: none;

    background-color: #1176BC;
    color: #fff;

    -webkit-box-shadow: 0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    -moz-box-shadow:    0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    box-shadow:         0px 4px 11px 0px rgba(50, 50, 50, 0.18);

    transition: all 0.3s ease 0s;
    border: none;
}

.login-button button:hover{
    background-color: #58B4F3;
}


.login-button a{
    display: inline-block;
    width: 7.8vw;
    padding: 0.8em;

    font-size: 0.8vw;
    border-radius: 15px;
    /* padding: 12px 75px; */

    text-align: center;
    font-weight: 500px;
    text-decoration: none;

    background-color: #1176BC;
    color: #fff;

    -webkit-box-shadow: 0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    -moz-box-shadow:    0px 4px 11px 0px rgba(50, 50, 50, 0.18);
    box-shadow:         0px 4px 11px 0px rgba(50, 50, 50, 0.18);

    transition: all 0.3s ease 0s;
}

.login-button a:hover{
    background-color: #58B4F3;
}

.form-bottom {
    margin-top: 4vh;
    width: 20vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.form-bottom a{
    font-size: 0.8vw;
    margin-bottom: 1vh;
}