@import url(https://fonts.googleapis.com/css?family=Merriweather);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

#open_sans {
    font-family: 'Open Sans';
    /* font-weight: 700; */
}

#merriweather {
    font-family: 'Merriweather', serif;
}



body {
    padding: 0;
    margin: 0;
    font-family: "acta-display";
    font-weight: 300;
    background: #bcbcbc;
}

html, body {
    font-size: 62.5%;
}

h1, h2, h3, h4, h4, h5, h6 {
    font-family: "acta-display";
    font-weight: 300;
}

.logo {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13rem;
    font-family: 'Special Elite', cursive;
}

.flex, header, .section {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.pab {
    font-family: 'Montserrat', sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.12em;
}

header {
   
    min-height: 400px;
    height: 100vh;
    background: #29B4E3;
    color: white;
    font-weight: bold;
    text-align: left;
}

header article {
    padding-left: 8.33333%;
    padding-right: 50%;
    width: 41.66667%;
    float: left;
    text-align: left;
}

header article h1 {
    font-size: 9rem;
    margin: 0 0 2.5rem;
    line-height: 1em;
}

header article p {
    font-size: 2rem;
}


.section {
  
    min-height: 400px;
    height: 100vh;
    color: white;
    padding-left: 16.66667%;
    padding-right: 16.66667%;
    box-sizing: border-box;
    position: relative;
}

.section:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    font-size: 25.5rem;
    color: rgba(255, 255, 255, 0.05);
}

.section:nth-child(1) {
    background: #4CACDC;
}

.section:nth-child(1):before {
    content: "WHO WE ARE";
}

.section:nth-child(2) {
    background: #6FA3D5;
}

.section:nth-child(2):before {
    content: "WHAT WE DO";
}

.section:nth-child(3) {
    background: #929BCD;
}

.section:nth-child(3):before {
    content: "MISSION";
}

.section:nth-child(4) {
    background: #B592C6;
}

.section:nth-child(4):before {
    content: "VISION";
}

.section:nth-child(5) {
    background: #D88ABF;
}

.section:nth-child(5)::before {
    content: "CONNECT WITH US";
}

.section__left {
    width: 50%;
    float: left;
}

.section__right {
    width: 50%;
    float: left;
}

.section article {
    text-align: left;
}

.section article h3 {
    font-size: 4.1rem;
}

.section article p {
    font-size: 2rem;
    margin-bottom: 2rem;
}

#home-animation-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    float: left;
    cursor: pointer;
}

#home-animation-wrapper svg {
    width: 100%;
    max-height: 90%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.typing-1 {
    width: 16ch;
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    display: flex;
}

@keyframes typing {
    from {
        width: 0
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

.button {
    flex: 1 1 auto;
    margin: 10px;
    padding: 20px;
    border: 2px solid #f7f7f7;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: 0.3s;

}

.button:after {
    width: 0%;

}

.button:hover {
    cursor: pointer;
    transform: scale(1.2);  
}

.button:hover:after {
    width: 100%;
    left: 0;
}

.button-1 {
    flex: 1 1 auto;
    margin: 10px;
    padding: 20px;
    border: 2px solid #f7f7f7;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.button-1:hover {
    cursor: pointer;
    border-radius: 30px;
}

.btntext {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.55rem;
}