/**
 * ----------------------------------------
 * animation slide-in-bck-center
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bck-center {
  0% {
    -webkit-transform: translateZ(600px);
            transform: translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-bck-center {
  0% {
    -webkit-transform: translateZ(600px);
            transform: translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-bck-center
 * ----------------------------------------
 */

.slide-in-bck-center {
	-webkit-animation: slide-in-bck-center 1.5s ease-out both;
	animation: slide-in-bck-center 1.5s ease-out both;
}

.tomorrowFont{
    font-family: "Tomorrow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.dotoFont {
    font-family: "Doto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "ROND" 0;
}

html{
    overflow-x: hidden;
}

body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    font-size: 100%;
    background-image: linear-gradient(135deg,#4C001E,#410529,#0F102D,#183D76,#032B56);
}

section{
    width: 100%;
}

/* .panelContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
} */


.landingSection{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 2em;
    text-transform: uppercase;
    width: 100%;
    height: 99.9vh;

    /* background-image: url(Img/bgGRADIENT-UPSCALED.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: hard-light; */
}

.mainText{
    font-size: 2.1em;
}

.scrollButtonDiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 80px;
    font-size: 0.5em;
}

.scrollButtonDiv svg{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(175deg) brightness(105%) contrast(102%);
    max-width: 50%;
}

.landingSection button{
    width: 7vh;
    outline: none !important;
    background: none !important;
    border: none !important;
}

/* .header{
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.5);
    color: aliceblue;
    border-bottom: 1px white solid;
    opacity: 1;
    width: 100%;
    height: 3vh;
}

.header div{
    color: white;
} */

.panelInfoContainer{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.panelInfo p{
    color: #ffffff;
    text-align: center;
}

.panelInfoDiv{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.panelInfoTitle{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3em;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 5vh;
    border: 3px solid white;
    transform: translateX(-110%);
}

.panelSubInfo{
    position: relative;
    left: 1.0vw;
    font-size: 1.5em;
    justify-content: left;
    text-align: left;
    text-transform: uppercase;
    text-wrap: wrap;
    width: 100%;
    color: white;
}

.panel{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    height: fit-content;
    border: 3px solid rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    align-self: center;
    width: 100%;
    transform: translateX(200%);
}

.panelText{
    color: white;
    font-size: larger;
    opacity: 0;
}

.finalInfoDiv{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.contactInfoContainer{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 1.4em;
    text-align: center;
    opacity: 0;
}

.contactInfo{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
    flex-direction: column;
}

.singleContact{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.singleContact button{
    width: 20vw;
    outline: none !important;
    background: none !important;
    border: none !important;
}

.singleContact svg{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(175deg) brightness(105%) contrast(102%);;
    max-width: 100%;
}

footer{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    color: white;
    background-color: black;
    font-size: 1.2em;
    border-top: black 2px solid;
}