@import "common.css";


body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6rem;

}

.headshot {
    -webkit-box-shadow: 0px 10px 36px -8px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 36px -8px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 36px -8px rgba(0, 0, 0, 0.24);
    border-radius: 8px;
}

.link {
    color: var(--primary-color);
    text-decoration: none;

}

.link:hover {
    color: var(--primary-color);
    text-decoration: underline;

}

.link:visited {
    color: var(--primary-color);
}

#hero {
    height: calc(100vh - 4rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

#hero .left h1 {
    font-family: "Poppins";
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
}

#hero .left h1::before {
    display: block;
    content: "";
    width: 3rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

#hero .left p {
    width: 27rem;
    font-size: 1.1rem;
}

#hero .right img {
    height: 20rem;
}

#hero .group {
    display: flex;
    justify-content: space-between;
}

#hero .right {
    transform: scale(1.4);
}
.button {
    margin-top: 2rem;
    /*width: 8rem;*/
    text-align: center;
    /*background-color: var(--primary-color);*/
    border: 1px solid var(--primary-color);
    padding: .8rem 2.6rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.button a {
    color: var(--primary-color);
    text-decoration: none;
}


.button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#questionaries h1 {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    padding: 1.8rem 0px;
}

#questionaries .grid-view {
    padding: 1rem;
    max-width: 1300px;
    margin: auto;
    margin-top: 4rem;
    display: -ms-grid;
    display: grid;
    justify-items: center;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 2rem;
}

#questionaries .post {
    width: 21rem;
    border: 1px solid var(--primary-color);
    border-radius: 18px;
    padding: 2rem 1.4rem 0.6rem;
    background-color: #F9F9F4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#questionaries .post h3 {
    margin-bottom: 0.8rem;
}

#questionaries .post p {
    flex-grow: 2;
}

#questionaries .post hr {
    margin: 1.3rem 2rem;
    border: none;

    border-top: 1px solid #DDDDD9;

}

#questionaries .post h4 {
    margin-top: .6rem;
    padding: .4rem;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#questionaries .post h4 span {
    color: var(--primary-color);
}

.btn {
    margin: auto;
    display: block;
    width: 6rem;
    background-color: var(--primary-color);
    padding: 0.5rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    color: white;
}

.post-inline {
    margin-top: 2rem;
    width: 40rem;
}

.post-inline p {
    margin: 0.5rem 0px;
}

.post-inline .btn {
    margin: 1.1rem 0;
}

.post-inline h4 span {

    color: var(--primary-color);
}

.container {
    padding: 1rem 0px;
    width: 1160px;
    max-width: 1300px;
    margin: auto;
}

#point-down {
    position: absolute;
    bottom: 1.4rem;
    height: 1.5rem;
    opacity: 0;
    -webkit-animation: blink 1s 2s 6 alternate;
    animation: blink 1s 2s 6 alternate;
}

@-webkit-keyframes blink {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes blink {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#privacy p:first-child {
    margin-top: 6rem;
    font-size: 0.7rem;
    color: #9b9b9b;
    text-align: center;
    position: relative;
    right: 4rem;
}

#privacy p:first-child::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 4px;
    left: calc(50% - 6rem);
    width: 3rem;
    border-bottom: 2px solid var(--primary-color);
}

#privacy .container{
    width: 52rem;
}

#privacy h1 {
    font-size: 2rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
}

#privacy p:last-child {
    line-height: 2rem;
}

#know-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    margin-top: 4rem;
    width: 34rem;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
#know-more p {
    font-size: 13px;
    line-height: 1.2rem;

}
#know-more a {
    color: var(--primary-color);
    text-decoration: none;
}

#know-more a:visited {
    color: var(--primary-color);
}

#know-more div {
    border-left: 2px solid #eee;
    padding-left: 2.5rem;
    width: 16rem;
}

footer {
    border-top: thin solid #e2e2e2;
    padding: 1rem;
    margin-top: 3rem;
    text-align: center;
}

/*# sourceMappingURL=main.css.map */