@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap');
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

body{
    background: #fefefe;
}

header{
    width: 100%;
    height: 80px;
    background: #002644;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.logo{
    font-size: 50px;
    font-weight: bold;
    color: #FFC300;
    font-family: 'Tangerine', cursive;
}

.hamburger{
    display: none;
}

.nav-bar ul{
    display: flex;
}

.nav-bar ul li a{
    display: block;
    color: #fefefe;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;
}

.nav-bar ul li a:hover{
    color: #11101b;
    background: #fefefe;
}

.nav-bar ul li a.active{
    color: #11101b;
    background: #fefefe;
}

@media only screen and (max-width: 1320px) {
    header{
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px) {
    header{
        padding: 0 30px;
    }
}

@media only screen and (max-width: 900px) {
    .hamburger{
        display: block;
        cursor: pointer;
    }

    .hamburger .line{
        width: 30px;
        height: 3px;
        background: #fefefe;
        margin: 6px 0;
    }

    .nav-bar{
        height: 0px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #11101b;
        transition: 0.5s;
        overflow: hidden;
        z-index: 2;
    }

    .nav-bar.active{
        height: 450px;
    }

    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar.active ul{
        opacity: 1;
    }

    .nav-bar ul li a{
        margin-bottom: 12px;
    }
}

.main{
    position: relative;
    text-align: center;
    color: white;
}

.main img{
    width: 100%;
    height: auto;
}

.main .smallimg{
    display: none;
    visibility: hidden;
}

.main .title{
    position: absolute;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
}

.main .text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.main .btn{
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    width: 200px;
    padding: 10px 10px;
    text-align: center;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid #fff;
    background: transparent;
    color: skyblue;
    cursor: pointer;
    overflow: hidden;
}

span{
    background: #fff;
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

button:hover span{
    width: 100%;
}

@media only screen and (max-width: 1600px) {
    .main .title{
        font-size: 70px;
    }

    .main .text{
        font-size: 18px;
    }

    .main .btn{
        width: 180px;
        font-size: 21px;
        padding: 8px 0;
    }
}

@media only screen and (max-width: 1275px){
    .main .title{
        font-size: 60px;
    }
    .main .text{
        font-size: 18px;
    }
    .main .btn{
        width: 160px;
        font-size: 20px;
        padding: 6px 0;
    }
}

@media only screen and (max-width: 1050px){
    .main .title{
        top: 27%;
        font-size: 50px;
    }
    .main .text{
        font-size: 18px;
        width: 600px;
    }
    .main .btn{
        top: 44%;
        width: 140px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 850px){
    .main .title{
        font-size: 35px;
        top: 26%;
    }
    .main .text{
        width: 500px;
    }
    .main .btn{
        top: 45%;
    }
}

@media only screen and (max-width: 675px){
    .main .title{
        font-size: 30px;
        top: 25%;
    }
    .main .btn{
        top: 46%;
        font-size: 16px;
        width: 130px;
    }
}

@media only screen and (max-width: 520px){
    .main .bigimg{
        display: none;
        visibility: hidden;
    }
    .main .smallimg{
        display: block;
        visibility: visible;
    }
    .main .text{
        width: 430px;
    }
}

@media only screen and (max-width: 450px){
    .main .text{
        width: 420px;
    }
    .main .title{
        font-size: 30px;
        top: 23%;
    }
    .main .btn{
        top: 47%;
    }
}

@media only screen and (max-width: 380px){
    .main .text{
        width: 300px;
    }
    .main .title{
        font-size: 30px;
        top: 22%;
    }
    .main .btn{
        top: 49%;
    }
}
.mySwiper {
    padding: 30px;
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper2{
    display: none;
    visibility: hidden;
}

.mySwiper3{
    display: none;
    visibility: hidden;
}

@media only screen and (max-width: 630px){
    .mySwiper{
        display: none;
        visibility: hidden;
    }
    .mySwiper2{
        display: block;
        visibility: visible;
    }
    .mySwiper3{
        display: block;
        visibility: visible;
    }
}

footer{
    background: #111;
    height: auto;
    width: 100vw;
    padding-top: 30px;
    color: #fff;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li{
    margin: 0 10px;
}

.socials a{
    text-decoration: none;
    color: #fff;
}

.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;
}

.socials a:hover i{
    color: aqua;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}