/* @import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap"); */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

#roto {
    position: relative;
}
#roto::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(0deg, #fff, transparent);
    /* opacity: 0; */
    z-index: 4;
    transition: 0.2s all ease;
}
#roto.active::before {
    /* opacity: 1; */
    height: 50%;
}

/* body {
    font-family: "Gotham Rounded Book" !important;
    color: #fff;
} */

/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gotham Rounded Book";
} */

.slide {
    width: 100%;
    min-height: 80vh;
    /* position: relative; */
    overflow: hidden;
    background-color: #000;
    margin-top: 30px;
}
.slide .mainImage {
    position: absolute;
    width: 130vw;
    height: 130vw;
    object-fit: cover;
    object-position: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* animation-name: rotate; */
    animation-timing-function: cubic-bezier(0.02, 0.63, 0.23, 0.99);
    animation-iteration-count: 1;
    animation-duration: 1.1s;
}
/* .slide .roundOuter {
  position: absolute;
  width: 86vw;
  height: 86vw;
  overflow: hidden;
  border-radius: 50%;
  left: calc(50% - 43vw);
  top: calc(50% - 43vw);
  filter: brightness(0.9);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
} */
/* .slide .roundOuter img {
  position: absolute;
  width: 130vw;
  height: 130vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  animation-name: rotate;
  animation-timing-function: cubic-bezier(0.02, 0.63, 0.23, 0.99);
  animation-iteration-count: 1;
  animation-duration: 1.3s;
} */
/* .slide .roundInner {
  position: absolute;
  width: 50vw;
  height: 50vw;
  overflow: hidden;
  left: calc(50% - 25vw);
  top: calc(50% - 25vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
} */
/* .slide .roundInner img {
  position: absolute;
  width: 130vw;
  height: 130vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  animation-name: rotate;
  animation-timing-function: cubic-bezier(0.02, 0.63, 0.23, 0.99);
  animation-iteration-count: 1;
  animation-duration: 1.2s;
} */

.default-height-block {
    min-height: 60dvh;
}
.slide .slideText {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
}
.slide .slideText h1 {
    font-size: 57px;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 0px;
    text-align: center;
    padding-left: 5vw;
    /* padding-bottom: 2vw; */
    animation-delay: 1s;
    filter: drop-shadow(0 2px 10px #000);
    position: relative;
    line-height: 80px;
    color:white !important;
}
.slide .slideText h1::after {
    content: "";
    position: absolute;
    width: 40vw;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.slide .slideText p {
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 1.3rem;
    padding-left: 1.3rem;
    padding-top: 1rem;
    text-transform: uppercase;
    animation-delay: 1.8s;
    filter: drop-shadow(0 2px 10px #000);
}
.slide .slideText .buttonNav {
    display: flex;
    justify-content: center;
    gap: 12px;
    animation-delay: 1.7s;
}
.slide .slideText .buttonNav button {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 10px #000);
}
.slide .slideText .buttonNav span {
    display: grid;
    width: 1px;
    flex: 0 0 1px;
    background-color: #fff;
    filter: drop-shadow(0 2px 10px #000);
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(5);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}
#about {
    color: #999;
    padding-top: 80px;
    padding-bottom: 80px;
}
#about h2 {
    color: #000;
}
#about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width: 1199px){
    .slide .slideText h1{
        font-size: 36px;
        line-height: 46px;
    }
}
@media (max-width: 575px) {
    .slide .mainImage {
        width: 130vh;
        height: 130vh;
    }
    .slide .roundOuter {
        width: 86vh;
        height: 86vh;
        left: calc(50% - 43vh);
        top: calc(50% - 43vh);
    }
    .slide .roundOuter img {
        width: 130vh;
        height: 130vh;
    }
    .slide .roundInner {
        width: 50vh;
        height: 50vh;
        left: calc(50% - 25vh);
        top: calc(50% - 25vh);
    }
    .slide .roundInner img {
        width: 130vh;
        height: 130vh;
    }
    .slide .slideText h1 {
        font-size: 6vw;
        letter-spacing: 1vw;
        padding-left: 3vw;
        line-height: 9vw;
    }
    .slide .slideText p {
        font-size: 4vw;
        letter-spacing: 1vw;
        padding-left: 2vw;
    }
}


.color-light-blue{
    color:#0096a5;
}
.color-orange{
    color:#0096a5;
}
.color-green{
    color: #083808;
}

.button-blue-large{
    /* background-color: #0096a5 !important; */
    color:#FFFFFF !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    font-size:18px !important;
}
.button-blue-large:hover{
    /* background-color: #0096a5 !important; */
    color:#FFFFFF !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
}

.button-secondary{
    /* background-color: #0096a5 !important; */
    color:#FFFFFF !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    font-size:18px !important;
}
.button-secondary:hover{
    /* background-color: #0096a5 !important; */
    color:#FFFFFF !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
}

.button-blue-medium{
    /* background-color: #0096a5 !important; */
    color:#FFFFFF !important;
    padding: 12px 18px !important;
    border-radius: 2px !important;
    text-decoration: none !important;
    font-size: 14px !important;
}
.button-blue-medium:hover{
    color:#FFFFFF !important;
    text-decoration: none !important;
}
.button-blue-small{
    /* background-color: #0096a5 !important; */
    color:#FFFFFF !important;
    padding: 10px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-size: 12px !important;
}
.button-blue-small:hover{
    color:#FFFFFF !important;
    text-decoration: none !important;
}
.button-blue-full{
    color:#FFFFFF !important;
    padding: 10px!important;
    border-radius: 4px !important;
    text-decoration: none !important
}

.button-blue-full:hover{
    color:#FFFFFF !important;
    text-decoration: none !important;
}

body.no-scroll {
    overflow: hidden;
}

.error{
    color:red;
    font-size:12px;
}

.input-daterange-datepicker{
    height: auto;
}

@media(max-width: 991px){
    .description-welcome br{
        display: none;
    }
}
  /* Media query for 740x360 resolution */
  @media (max-width: 740px) and (max-height: 360px) {
    .navdiv.flex.flex-row.sm\:justify-end.sm\:items-center.w-full.max-w-full.ml-auto.mr-auto.box-border {
        justify-content: flex-start;
    }
    .menudiv {
        margin-top: 32%;
    }
    .close-menu-icon {
        top: -24px;
        right: -290px;
    }
}



/* Media query for 720x540 resolution */
@media (max-width: 720px) and (max-height: 540px) {
    .navdiv.flex.flex-row.sm\:justify-end.sm\:items-center.w-full.max-w-full.ml-auto.mr-auto.box-border {
        justify-content: flex-start;
    }
    .menudiv {
        margin-top: 45%;
    }
    .close-menu-icon {
        top: -55px;
        right: -205px;
    }
}
/* Media query for 667x375 resolution */
@media (max-width: 667px) and (max-height: 375px) {
    .navdiv.flex.flex-row.sm\:justify-end.sm\:items-center.w-full.max-w-full.ml-auto.mr-auto.box-border {
        justify-content: flex-start;
    }
    .menudiv {
        margin-top: 30%;
    }
    .close-menu-icon {
        top: -50px;
        right: -240px;
    }
}
@media only screen and (max-width: 540px) and (max-height: 720px) and (orientation: portrait) {
    .close-menu-icon {
        top: -45px;
        right: -28px;
        width: 8%;
    }
}

@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (-webkit-device-pixel-ratio: 2)
  and (orientation: landscape) {
    .menudiv {
        margin-top: 38%;
    }
    nav .logo {
        margin-top: 15px;
    }
  /* Your styles here */
}

@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (-webkit-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .close-menu-icon {
        top: -40px;
        right: -28px;
        width: 20%;
    }
}
  /* Your styles here */
  @media only screen
  and (min-device-width: 414px)
  and (max-device-width: 896px)
  and (-webkit-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .close-menu-icon {
        top: -40px;
        right: -28px;
        width: 16%;
    }
  /* Your styles here */
}

@media only screen
  and (min-device-width: 430px)
  and (max-device-width: 932px)
  and (-webkit-device-pixel-ratio: 3)
  and (orientation: portrait) {
    .close-menu-icon {
        top: -42px;
        right: -23px;
        width: 15%;
    }
  /* Your styles here */
}
@media only screen
  and (min-device-width: 360px)
  and (max-device-width: 740px)
  and (-webkit-device-pixel-ratio: 4)
  and (orientation: landscape) {
    nav .logo {
        margin-top: 20px;
    }
  /* Your styles here */
}
