/**
 * ----------------------------------------
 * 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;
}


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;
}

.mainText{
    font-size: 2.1em;
}

.landingSection button{
    /* position: relative;
    top: -100px; */
    width: 7vh;
    margin: 10px;
    outline: none !important;
    background: none !important;
    border: none !important;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(175deg) brightness(105%) contrast(102%);
}

.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%;
}

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

.header div{
    color: white;
} */

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

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

.panelInfoDiv{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: row;
}

.panelInfoTitle{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: white;
    color: black;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5em;
    margin: 0;
    padding: 0;
    width: 40%;
    height: 40vh;
    border: 3px solid rgb(255, 255, 255);
    transform: translateX(-100%);
}

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

.panel{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    border: 3px solid rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    align-self: center;
    width: 60%;
    height: 40vh;
    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: row;
}

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

.singleContact button{
    width: 10vw;
    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.3em;
    border-top: black 2px solid;
}