/*
font-family: 'Poppins', sans-serif;
font-family: 'Ubuntu', sans-serif;
*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-image: url("../img/pexels-pixabay-314726.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    font-family: 'Ubuntu', sans-serif;
}

h2 {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
    color: rgb(43, 43, 43);
    font-weight: 400;
    font-size: medium;
    text-align: left;
}

.introSection {
    background-image: url("../img/pexels-snapwire-37728.jpg");
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.introContainer {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.introHead {
    font-size: 15vh;
    color: white;
    /*rgb(29, 126, 126);*/
    text-shadow: 0px 2px 3rem rgba(67, 141, 156, 0.486);
    animation: introAnimateHead 2s;
}

.airSvg {
    max-width: 80%;
    max-height: 45vh;
    animation: introAnimateSvgRepeat 4s ease-in-out infinite;
}

.introSub {
    font-size: 10vh;
    color: white;
    text-shadow: 0px 2px 3rem rgba(67, 141, 156, 0.486);
    animation: introAnimateSub 2s;
}

.pressToStart {
    color: white;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    font-size: x-large;
    width: 0px;
    white-space: nowrap;
    padding: 0px;
    overflow: hidden;
    animation: introRevealStartButton 1s ease-in 2s;
    animation-fill-mode: forwards;
}

@keyframes introAnimateHead {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes introAnimateSvgRepeat {
    0% {
        transform: scale(1) translateX(-5px) translateY(-10px);
    }
    50% {
        transform: scale(0.95) translateX(10px) translateY(10px);
    }
    100% {
        transform: scale(1) translateX(-5px) translateY(-10px);
    }
}

@keyframes introAnimateLeftWing {
    0% {
        transform: rotateZ(0deg);
    }
    25% {
        transform: rotateZ(3deg);
    }
    50% {
        transform: rotateZ(0deg);
    }
    75% {
        transform: rotateZ(-3deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

@keyframes introAnimateSub {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes introRevealStartButton {
    0% {
        width: 0px;
    }
    100% {
        padding: 0 10px;
        width: 100%;
    }
}

.aboutSection {
    background-position: bottom;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.aboutContainer {
    background: linear-gradient(128deg, rgba(67, 141, 156, 0.486) 60%, white 100%);
    backdrop-filter: blur(0.5rem);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.aboutContainer h1,
.aboutContainer h2 {
    color: white;
    font-weight: 600;
}

.aboutStats {
    padding: 20px;
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow-y: auto;
    overflow-x: visible;
}

.cardWrap,
.introCardWrap,
.photoCardWrap {
    padding: 10px;
}

.aboutStats .cardWrap:hover .card {
    transform: scale(1.01);
}

.aboutStats .cardWrap:hover .iconWrap {
    transform: translateY(-3px);
}

.card {
    background: linear-gradient(135deg, rgba(203, 246, 255, 0.438) 30%, rgba(110, 178, 192, 0.897) 100%);
    border-radius: 1rem;
    box-shadow: 2px 2px 0.7rem rgba(128, 128, 128, 0.575);
    width: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
    padding: 10px;
    transition: all 0.8s;
}

.iconWrap {
    width: 20%;
    padding-bottom: 20%;
    position: relative;
    overflow: hidden;
    background-color: white;
    box-shadow: 0px 5px 0.5rem gray;
    border-radius: 1rem;
    transition: all 1s;
}

.iconWrap img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
}

.cardTitle {
    max-width: 75%;
    color: white;
    font-size: medium;
    font-weight: 500!important;
    padding-left: 10px;
    text-align: left;
}

.card p {
    text-align: left;
}

.aboutText {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    width: 68%;
    height: 100%;
}

.introCard {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(0.5rem);
    padding: 20px 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 0.6rem rgba(128, 128, 128, 0.562);
}

.fotke {
    display: flex;
    overflow: hidden;
}

.photoCardWrap {
    flex: 1;
}

.photoCard {
    background: rgb(232, 241, 245);
    box-shadow: 0px 2px 0.5rem rgba(128, 128, 128, 0.4);
    border-radius: 10px;
    padding: 10px;
    max-height: 100%;
    display: block;
}

.photoCard .iconWrap {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    background-color: white;
    box-shadow: 0px 5px 0.5rem gray;
    border-radius: 1rem;
    transition: all 1s ease-out;
}

.photoCard .iconWrap img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photoCard .cardTitle {
    color: white;
    font-size: large;
    font-weight: 500!important;
    text-align: left;
}

.photoCardWrap:hover .iconWrap {
    transform: translateY(-3px);
}

.moreInfoSection {
    min-height: 100vh;
}

.moreInfoContainer {
    min-height: 100vh;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.socMedia {
    flex: 1;
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
}

.socMediaCardWrap {
    flex: 1;
    padding: 10px;
    padding-top: 100px;
    width: 100%;
}

.socMediaCard {
    background: rgb(248, 248, 248);
    box-shadow: 0px 2px 0.5rem rgba(128, 128, 128, 0.4);
    border-radius: 5px;
    padding: 10px;
    max-height: 100%;
    display: block;
}

.socMediaCard .iconWrap {
    width: 100%;
    margin-top: -100px;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    background-color: white;
    box-shadow: 0px 5px 0.5rem gray;
    border-radius: 1rem;
    transition: all 0.3s ease-out;
}

.socMediaCard .iconWrap img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socMediaCardTitle {
    text-align: center;
    margin: auto;
    padding: 10px;
    color: black;
    font-size: large;
}

.socMediaCardWrap:hover .iconWrap {
    transform: translateY(-10px);
}

@media screen and (min-width: 840px) and (max-width: 1200px) {
    .aboutContainer,
    .moreInfoContainer {
        padding: 0px;
    }
    .aboutStats {
        justify-content: start;
    }
    .aboutStats,
    .aboutText {
        padding: 5px;
    }
    .photoCard {
        border-radius: 5px;
    }
    .moreInfoContainer {
        padding: 0px;
    }
    .socMedia {
        display: grid;
        padding: 0 15%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 840px) {
    .introHead {
        font-size: xx-large;
    }
    .introSub {
        font-size: xx-large;
    }
    .aboutContainer {
        flex-direction: column;
        padding: 0px;
    }
    .aboutStats {
        display: grid;
        width: 100%;
        padding: 20px 0px;
        grid-template-columns: 1fr 1fr;
    }
    .aboutStats .cardWrap {
        align-self: stretch;
    }
    .statsHeading {
        grid-column: 1/3;
    }
    .aboutText {
        width: 100%;
        padding: 0px;
    }
    .photoCard {
        border-radius: 5px;
    }
    .moreInfoContainer {
        padding: 0 20%;
    }
    .socMedia {
        flex-wrap: wrap;
        flex-direction: column;
    }
}