html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Lato", serif;
}


.background {
    width: 100%;
    height: 100vh;
    /* background-image: url('../images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat; */
}

.container {
    width: 1400px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo-holder img {
    width: 200px;
    height: auto;
    cursor: pointer;
}

nav .navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 600px;
    justify-content: space-between;
}

nav .navigation ul li.active {
    color: #000;
    font-weight: 700;
}

nav .navigation ul li {
    transition: .3s;
    color: #000;
}

nav .navigation ul li:hover {
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.cont {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    align-items: flex-end;
}

.cont .socal {
    width: 180px;
    height: 80px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.cont .socal img {
    width: 25px;
    height: auto;
    cursor: pointer;
    transition: transform .3s;
}

.cont .socal img:hover {
    transform: scale(1.3);
}

.cont .socal span {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -30px;
    right: -30px;
    background: #fff;
}

.cont .slide {
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cont .slide .owl-carousel h4 {
    margin: 0;
    font-size: 20px;
    line-height: 20px;
    color: #000;
    margin-bottom: 10px;
    /* text-decoration: underline; */
    font-family: "Sanchez", serif;
}

.cont .slide .owl-carousel p {
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    margin-bottom: 5px;
}

.cont .slide .owl-carousel .item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cont .slide .owl-carousel {
    background-color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px 0px 0px 15px;
}

.owl-dots {
    display: none;
}

.owl-nav {
    position: absolute;
    right: 20px;
    bottom: -50px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    font-size: 40px !important;
    margin: 0 20px !important;
}

.cont .slide .text span {
    position: absolute;
    left: -40px;
    bottom: -40px;
    background-color: #fff;
    width: 40px;
    height: 40px;
}

.cont .slide .text button {
    letter-spacing: 5px;
    padding: 6px;
    background: none;
    border: 1px solid #000;
    margin-top: 20px;
    cursor: pointer;
    transition: .3s;
    font-size: 12px;
}

.cont .slide .text button:hover {
    font-weight: 600;
}

.cont .slide .btn {
    background-color: #fff;
    width: 150px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont .slide .btn img {
    width: 20px;
    height: 20px;
    margin: 20px;
    cursor: pointer;
}

.box-animation {
    position: absolute;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
}

.box-animation .text-ani {
    position: relative;
    width: 100%;
    height: calc(100vh - 260px);
}

.box-animation .text-ani p {
    position: absolute;
    font-size: 110px;
    left: 50%;
    margin: 0;
    top: 35%;
    font-weight: 700;
    font-family: Montserrat;
    /* color: #002c37; */
    text-transform: uppercase;
    text-shadow: 6px 4px 4px #00000045;
}

.box-animation .box {
    width: 200px;
    height: 200px;
    background-color: #efce9e;
    background: #fff;
    position: relative;
    top: 80px;
    opacity: .6;
    display: none;
}

.box-animation .box span.top {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #f5786b;
    background: #fff;
    width: 30px;
    height: 30px;
    opacity: .6;
}

.box-animation .box span.buttom {
    position: absolute;
    bottom: -70px;
    right: -70px;
    background: #ebeba6;
    background: #fff;
    width: 70px;
    height: 70px;
    opacity: .6;
}

.box-animation .box span.last {
    position: absolute;
    bottom: -100px;
    right: 0px;
    background: #85bac6;
    background: #fff;
    width: 30px;
    height: 30px;
    opacity: .6;
}


.box-animation .box span.last {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulseeee 4s infinite;
}

@keyframes pulseeee {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}


.box-animation .box {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulseee 4s infinite;
}

@keyframes pulseee {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


.box-animation .box span.buttom {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulsee 4s infinite;
}

@keyframes pulsee {
    0% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3)
    }
}


.box-animation .box span.top {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.50);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.50);
    }
}



.main {
    position: relative;
}

.first {
    color: #002c37;
}

.second {
    color: #67929d;
    /* -webkit-text-stroke: 2px #05a8f3; */
    animation: waves 4s ease-in-out infinite;
}

@keyframes waves {

    0%,
    100% {
        clip-path: polygon(0% 45%,
                16% 44%,
                33% 50%,
                54% 60%,
                70% 61%,
                84% 59%,
                100% 52%,
                100% 100%,
                0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%,
                15% 65%,
                34% 66%,
                51% 62%,
                67% 50%,
                84% 45%,
                100% 46%,
                100% 100%,
                0% 100%);
    }
}


.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    background-color: #000;
}

.slider>div {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    animation: slider 25s infinite;
    opacity: 0;
}

.slider>div:nth-child(2) {
    animation-delay: 5s;
}

.slider>div:nth-child(3) {
    animation-delay: 10s;
}

.slider>div:nth-child(4) {
    animation-delay: 15s;
}

.slider>div:nth-child(5) {
    animation-delay: 20s;
}

@keyframes slider {
    10% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    40% {
        transform: scale(1.1);
    }
}

.slider-img {
    background-size: cover;
    background-repeat: no-repeat;
}




.word {
    position: absolute;
    opacity: 0;
    display: flex;
    /* text-align: center; */
    width: 100%;
    height: auto;
    justify-content: center;
}

.letter {
    display: inline-block;
    position: relative;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
    transform: rotateX(-90deg);
}

.letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wisteria {
    color: #fff;
}

.belize {
    color: #fff;
}

.pomegranate {
    color: #fff;
}

.green {
    color: #fff;
}

.midnight {
    color: #fff;
}

@media(max-width:1200px) {
    .container {
        width: 900px;
    }

    .box-animation .text-ani p {
        top: 30%;
        font-size: 100px;
    }

    .cont .slide .owl-carousel h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .cont .slide .owl-carousel p {
        font-size: 14px;
        line-height: 18px;
    }

    nav .logo-holder img {
        width: 155px;
    }

    .cont .socal img {
        width: 20px;
    }

    .cont .socal {
        width: 150px;
        height: 50px;
    }

    .cont .slide .btn {
        width: 140px;
        height: 60px;
    }
}

@media(max-width:992px) {
    .container {
        width: auto;
        padding: 0px 30px;
    }
    nav .logo-holder img {
        width: 140px;
    }
    .box-animation .text-ani p {
        top: 40%;
        font-size: 70px;
    }
    .cont .slide .owl-carousel h4 {
        font-size: 16px;
        line-height: 18px;
    }
    .cont .slide .owl-carousel {
        padding: 20px;
    }
    .cont .slide .owl-carousel p {
        font-size: 13px;
        line-height: 17px;
    }
    .owl-nav .owl-prev, .owl-nav .owl-next {
        font-size: 35px !important;
        margin: 0 15px !important;
    }
    .cont .slide .btn {
        width: 115px;
        height: 50px;
    }
    .owl-nav {
        bottom: -40px;
    }
    .slider>div {
        background-position: center;
    }
}

@media(max-width:768px) {
    .box-animation .text-ani p {
        top: 45%;
        font-size: 60px;
    }
    .cont .slide {
        width: 320px;
    }
    .cont .socal {
        width: 150px;
        height: 50px;
        padding: 10px;
    }
}

@media(max-width:576px) {
    .cont {
        flex-direction: column-reverse;
        align-items: unset;
    }
    .cont .slide {
        align-items: unset;
        width: 100%;
        overflow: hidden;
    }
    .cont .slide .owl-carousel {
        border-radius:unset;
    }
    .cont .slide .btn, .owl-nav {
        display: none;
    }
    .cont .socal {
        width: 100%;
        height: 30px;
        border-top: 1px solid #000;
    }
    .cont {
        overflow: hidden;
    }
    
    
}

@media(max-width:480px) {
    .box-animation .text-ani p {
        top: 35%;
        font-size: 35px;
    }
    .cont .slide .owl-carousel {
        padding: 10px;
    }
}