*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.banner{
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}
.slider{
    width: 100%;
    position: absolute;
    min-height: 100vh;
    top: 0;
}
#slideImg{
    width: auto;
    min-height: 100vh;
}
.overlay{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7));
    position: absolute;
    top: 0;
}
.overlay h1{
    font-size: 20px;
    margin-top: 0px;
    padding-left: 25px;
    font-weight: 600;
    color:#fff;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #05b3cd;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color:#fff;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h2{
    font-size: 50px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    font-weight: 500;
    color:#fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    font-weight: bold;;
    background: transparent;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #007e91;
    background-color: #007e91;
    transition: 1s;
}

.white-btn{
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    background: #e4eaeb;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    margin-bottom: 20px;
}
.white-btn:hover{
    background-color: #434343;
    color: #fff;
    transition: 1s;
}

nav .fa-solid{
    display:none
}

@media(max-width: 700px){
    *{overflow-x:hidden;}
    .text-box h1{
        font-size: 32px;
    }
    .text-box h2{
        font-size: 32px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #007e91;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa-solid{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    nav img{
        padding-top: 20px;
    }
    .overlay h1{
        font-size: 12px;
        
    }
}

/*------- summary -----*/
.summary{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 70px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.serv-col{
    flex-basis: 31%;
    background: #e4eaeb;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.serv-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*--------- Accolades --------*/

.accolades{
    
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/melbourne.jpg);
    min-height: 60%;
}

.container{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.container h1{
    color:#fff;
}
.container p{
    padding-top: 30px;
    color:#e4eaeb;
    font-weight: 200;
}
.acc-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.acc-col img{
    width: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: 0.5s;
}
.layer:hover{
    background: rgba(0, 126, 145, 0.754);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer p{
    width: 100%;
    font-weight: 200;
    color: #fff;
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}    
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.layer:hover p{
    bottom: 30%;
    opacity: 1;
}

/*--------- testimonials -------*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: rgba(186, 224, 230,0.3);
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa-solid{
    color:#007e91;
}
@media(max-width: 700px){
    .testimonial-col img{
        width: 100%;
        margin-left: 0px;
        margin-right: 15px;
    }
}

/*----- call to action ----*/
.cta{
    margin: 50px auto 25px;
    width: 80%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/footer.png);
    background-position: center;
    background-size: cover;
    border-radius: 15px 50px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 700px){
    .cta h1{
        font-size: 17px;
    }
}

/*-------- services page -------*/

.sub-header{
    height: 30vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.9),rgba(4,9,30,0.7)),url(images/melbourne.jpg);
    background-position: center;
    background-size: cover;
    text-align: left;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.sub-header h1{
    font-size: 20px;
    margin-top: 0px;
    padding-left: 25px;
    font-weight: 600;
}
.row2{
    display: flex;
    justify-content: space-between;
}
@media(max-width: 700px){
    .row2{
        flex-direction: column;
    }
    .sub-header{
        height: fit-content;
    }
    .sub-header h1{
        font-size: 12px;
        color: #fff;
        margin: auto;
        text-align: center;
    }
    nav img{
        width: 60px;

    }
    nav{
        position:sticky;
        top: 0;
        z-index: 11;
    }
}

/* ------footer---------- */
.footer{
    text-align: center;
    width: 100%;
    color: #33475B;
}
.footer h4{
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 13px;
}
@media(max-width: 700px){
    .footer h4{
        font-size: 8px;
    }
}

/*------------- contact us page -----------*/

.contact-us{
    width: 80%;
    margin: auto;
    padding-bottom: 10px;
    color: #33475B;
}
.contact-us h1{
    padding-top: 50px;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}
.left-col{
    flex-basis: auto;
    background: rgba(239, 239, 239, 0.3);
    width: 100%;
    padding: 30px 15px;
}
.left-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.left-col .fa-solid{
    font-size: 28px;
    color:#007e91;
    margin: 10px;
    margin-right: 30px;
}
.left-col div p{
    padding: 0;
}
.left-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.blue-btn{
    border: 1px solid #007e91;
    background: transparent;
    color: #007e91;
}
.blue-btn:hover{
    color: #fff;
}
.right-col{
    background: rgb(237, 236, 236);
    flex-basis: auto;
    min-height: 200px;
}
.apply-form h2{
    padding-bottom: 25px;
    font-size: 40px;
    color: #33475B;
}
@media(max-width: 700px){
    .left-col div h5{
        font-size: 14px;
    }
    .left-col div p{
        font-size: 10px;
    }
}

/*--------- apply --------*/
.apply-job{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 70px;
}
.apply-job h1{
    font-size: 36px;
    font-weight: 600;
    color: #33475B;
    padding-bottom: 20px;
}
.apply-job p{
    padding: 10px;
    width: 80%;
    margin:auto;
    text-align: justify;
    text-justify: inter-word;
}
.row3{
    display: flex;
    justify-content: space-between;
}
.icon-col{
    margin-top: 3%;
    flex-basis: 31%;
    padding: 12px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.icon-col .fa-solid{
    font-size: 50px;
    color:#33475B;
}
.icon-col p{
    text-align:center;
    padding: 15px;
}
.apply-form{
    width: 80%;
    margin: auto;
    padding-top: 2%;
    text-align: center;
}
.apply-form h4{
    font-size: 14px;
    color:#33475B;
    padding-bottom: 2%;
}
.form-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.form-row .form-group{
    flex-basis: 45%;
}
.form-group input, .form-group select{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5px;
    background: transparent;
    color: #757575;
}
.contact-box textarea{
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
    background: transparent;
}
.contact-box{
    text-align: left;
    flex-basis: 60%;
    padding: 40px 60px;
    background: rgba(226, 226, 226, 0.3);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.contact-box button{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.contact-box label{
    margin-bottom: 6px;
    display: block;
    color: #33475B;
}
.apply-btn{
    border: 1px solid #007e91;
    background: #007e91;
    color: #fff;
}
.apply-btn:hover{
    color: #007e91;
    background-color: #fff;
}
.applyButton{
    margin: auto;
    text-align: center;
}
@media(max-width: 700px){
    .row3{
        flex-direction: column;
    }
    .form-row{
        flex-direction: column;
    }
    .form-group{
        padding-block: 6px;
    }
}

/* -------job gallery -----*/

.gallery-cont{
    width: 90%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 30px;
    justify-content: space-around;
}
.gallery-cont h1{
    margin-bottom: 40px;
    text-align: center;
}
.gallery-box{
    display: flex;
    flex-basis: auto;
    padding-bottom: 3%;
    justify-content: space-evenly;
}
.gallery {
    display: flex;
    height: 40%;
    width: 45%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 15px ;
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.2);
    border-radius: 15px 50px;
    background: #eeeeee;
}
.gallery h4{
    padding: 3%;
    color: #434343;
    font-weight: 600;
}
.selected-image {
    width: 400px;
    height: 400px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}
.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.thumbnail {
    width: 100px;
    height: 100px;
    margin: 10px;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}
@media(max-width: 700px){
    .gallery-box {
        flex-direction: column;
    }
    .thumbnail{
        width: 70px;
        height: 70px;
    }
    .gallery-text {
        width: 100%;
    }
    .gallery{
        width: auto;
        height: auto;
        margin-bottom: 15px;
        text-align: center;
    }
}
