@font-face {
    font-family: 'Avenir';
    src: url('/assets/fonts/AvenirLTStd-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Ghayaty';
    src: url('/assets/fonts/Ghayaty.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
main {
    width: 100%;
    height: 100vh;
    max-height: -webkit-fill-available;
    font-family: 'Ghayaty', sans-serif;
    overflow: hidden;
}

body {
    background: #F8E8C3;
}

header {
    height: 10%;
    
}

main {
    position: relative;
    height: 90vh;
    
}

.top {
    background: url("./images/top.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0 50%;
    height: 100%;
    width: 30%;
}

.left,
.right {
    position: absolute;
    display: flex;
    justify-content: end;
    align-items: end;
    bottom: 0;
}

.left {
    left: 0;
    background: url("./images/woman_fruit.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    width: 45%;
    height: 100%;
}

.middle {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 40%;
    height: 90vh;
    margin: 0 auto;
    padding: 0.5rem 3rem;
    
}

.right {
    right: 0;
    background: url("./images/shot_hand.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 30%;
    height: 80%;
}

.responsive-img {
    max-width: 100%;
    height: 90%;
}

.logo-container {
    margin-top: 20px;
    padding: 0 4rem;
    z-index:10;
}

.logo-img {
    width: 700px;
    min-width: 180px;
}

.coming-soon {
    margin: 3rem 0px;
    font-size: 3vw;
    text-align: center;
    color: #EEB948;
    font-weight: normal;
    text-wrap: nowrap;
    width: 100vw;
    letter-spacing: 2.5px;
    font-style: italic;
    z-index:10;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    flex-wrap: nowrap;
}

.loading-div {
    display: inline-block;
}

.loading-img {
    width: 100px;
    min-width: 30px;
}

.info-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
    margin-top: 50px;
    z-index:10;
    
}

.email1::after {
    content: "info@sipslb.com";
    font-size: 1.2rem;
    font-family: 'Avenir', sans-serif;
    color:#F5F5DC;
    
}

.email2::after {
    content: "sales@sipslb.com";
    font-size: 1.2rem;
    font-family: 'Avenir', sans-serif;
    color:#F5F5DC;
}
button {
  color: #090909;
  padding: 0.4em 1.3em;
  width: 180px;
  overflow: hidden;
  font-size: 12px;
  border-radius: 2em;
  background: #F2734A;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  box-shadow: 0.5px 0.5px 1.5px #c5c5c5, -0.5px -0.5px 1.5px #ffffff;
}

button:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}



/* .info-section p {

} */


.social-container-mobile {
    display: none;
    z-index:10;
   
    margin-bottom: 2rem;
    text-align: center;
    
}

.social-container {
    margin-right: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    z-index:10;
}

.get-social {
    color: #F8E8C3;
    font-weight: normal;
    font-style: italic;
    /* font-weight: bold; */
    font-size: 3rem;
    letter-spacing: 2.5px;
}

.social-link {
    display: inline-block;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 1rem;
    /* border-radius: 50%; */
    /* background-color: white; */
    /* padding: 1rem; */
}

/* .social-img {
    width: 30px;
} */


.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@media only screen and (max-width: 2450px) {
    .info-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-content: space-between;
        text-align: center;
    }

    .info-section p:nth-child(2) {
        margin-top: 1rem;
        
    }

    
}

@media only screen and (max-width: 1920px) {
    .loading-container {
        gap: 25px;
    }

    .right-hand-img {
        bottom: 23%;
    }
   .info-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-content: space-between;
        
    }

    /* .social-container {
        margin-right: 4rem;
        margin-bottom: 5rem;
    } */

    .get-social {
        font-size: 2rem;
    }


    .social-link {
        display: inline-block;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-top: 0.5rem;
        /* border-radius: 50%; */
        /* background-color: white; */
        /* padding: 1rem; */
    }

    /* .social-img {
        width: 20px;
    } */
}

@media only screen and (max-width: 1440px) {
    .loading-container {
        gap: 15px;
    }

    .email1::after {
        font-size: 0.875rem;
    }
    
    .email2::after {
        font-size: 0.875rem;
    }

    .info-section p {
        font-size: 0.875rem;
    }

    .right-hand-img {
        bottom: 12%;
    }

    .social-container {
        margin-right: 1rem;
        margin-bottom: 2.5rem;
    }
    button{
        width: 145px;
    }

    .get-social {
        font-size: 1.5rem;
    }

    .social-link {
        display: inline-block;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-top: 0.5rem;
        /* border-radius: 50%; */
        /* background-color: white; */
        /* padding: 0.75rem; */
    }

    /* .social-img {
        width: 15px;
    } */
}

@media only screen and (max-width: 1065px) {
    .top {
        background: url("./images/top.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;
        margin: 0 10%;
        height: 100%;
        width: 100%;
    }
    .middle {
        padding: 0rem 0 0 0;
    }
    .logo-container {
        padding: 0;
        margin-top: 65px;
        z-index:15;
    }

    .logo-img {
        transform: scale(1.0);
    }

    .coming-soon {
        font-size: 8vw;
        margin-top: 3.5rem;
        text-wrap: nowrap;
        letter-spacing: 2px;
    }

    .info-section {
        flex-direction: column;
        align-items: center;
        margin-top: 2.5rem;
        
    }
    .email1::after {
        font-size: 0.875rem;
    }
    
    .email2::after {
        font-size: 0.875rem;
    }
    .info-section p {
        /* font-size: 0.875rem; */
        margin-top: 10px;
    }

    .social-container-mobile {
        display: block;
        margin: 1.5rem auto 0 auto;
        
    }

    .social-container {
        display: none;
    }

    .social-link {
        display: inline-block;
        margin: 0 0.5rem ;
        /* border-radius: 50%; */
        /* background-color: white; */
        /* padding: 0.5rem; */
    }

    .social-img {
        width: 30px;
    }
    button{
        width: 145px;
    }
}
@media only screen and (max-width: 500px) {
    .middle {
        height: 83vh;
    }
}
