/**
Theme Name: Screed
Author: Anton Hap
Author URI: https://antonhap.site
Text Domain: hap
/* Note: The CSS files are loaded from assets/css/ folder. */

:root {
    --main: #e35503;
    --dark: #060607;
    --light: white;
}

html, body {
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    font-family: Montserrat, serif;

    background: var(--light);
}

h1, h2, h3, h4, h5, p {
    padding: 0;
    margin: 0;
}












header {
    width: 100%;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background: var(--light);
}

header .logo {
    height: 100%;
    width: 200px;

    display: flex;
    flex-flow: column;
    gap: 0;
    justify-content: center;
    align-items: center;
}

header .menu {
    height: 100%;
    margin-left: 50px;

    display: flex;
    flex-flow: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

header .menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
}

header .menu a:hover {
    color: var(--main);
}

header .info {
    width: 200px;
    height: 100%;
    margin-left: 150px;

    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
}

header .info .img {
    width: 100%;

    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: right;
    gap: 5px;
}

header .info .img img {
    width: 25px;
    height: 25px;
}

header .info .img a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
}

header .info h5 {
    font-weight: 400;
}

header .button {
    height: 40px;
    width: 130px;
    margin-left: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: var(--light);
    font-size: 15px;

    background: var(--main);
    border-radius: 20px;

    cursor: pointer;
}

header .button:hover {
    background: var(--dark);
}













.first {
    width: 100%;
    height: 100vh;

    position: relative;
}

.first img {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    object-fit: cover;
}

.first .background {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    background: rgba(0, 0, 0, 0.85);
}

.first .info {
    width: 100%;
    height: 100%;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.first .info h1 {
    width: calc(100% - 100px);
    padding: 0 50px;
    z-index: 3;

    font-size: 60px;
    font-weight: 600;
    text-align: center;
    color: var(--light);
}

.first .info h5, .first .info a {
    width: calc(100% - 100px);
    padding: 0 50px;
    z-index: 3;

    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: var(--light);
    text-decoration: none;
}

.first .button {
    padding: 15px 30px;
    z-index: 3;
}

.first .button a {
    padding: 15px 30px;

    font-size: 18px;
    color: var(--light);
    font-weight: 500;
    text-decoration: none;

    background: var(--main);
    border-radius: 5px;
}

.first .button a:hover {
    background: var(--light);
    color: var(--main);
}

.button a:hover {
    background: var(--dark);
}
















.second {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.second h2 {
    width: 100%;

    text-align: center;
    font-weight: 700;
    font-size: 50px;
}

.second .box {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;

    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.second .box .one {
    width: 300px;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.second .box .one img {
    width: 100px;
}

.second .box .one h4 {
    font-size: 22px;
}

.second .box .one h5 {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}











.third {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.third h2 {
    width: 100%;

    text-align: center;
    font-weight: 700;
    font-size: 50px;
}

.third .box {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;

    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.third .box .one {
    width: 350px;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.third .box .one img {
    width: 100%;
}

.third .box .one h4 {
    font-size: 22px;
}

.third .box .one h5 {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

.third .button {
    padding: 10px 10px;
    z-index: 3;
}

.third .button a {
    padding: 12px 15px;

    font-size: 15px;
    color: var(--light);
    font-weight: 500;
    text-decoration: none;

    background: var(--main);
    border-radius: 5px;
}

.third .button a:hover {
    background: var(--dark);
}













.fourth {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.fourth h2 {
    width: 57%;
    margin-left: auto;
    margin-right: auto;

    text-align: left;
    font-weight: 700;
    font-size: 30px;
}

.fourth .box {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;

    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.fourth .box text {
    width: 55%;

    font-size: 16px;
    font-weight: 300;
}

.fourth .box img {
    width: 350px;
    height: 210px;
}












.fifth {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.fifth h2 {
    width: 100%;

    text-align: center;
    font-weight: 700;
    font-size: 50px;
}

.fifth .box {
    width: 98%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;

    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.fifth .box img {
    width: 100%;
    height: 400px;

    cursor: pointer;

}

.fifth .left, .fifth .right {
    width: 50px;
    height: 50px;

    position: absolute;
    top: 340px;
    left: 30px;

    background: var(--dark);
    border-radius: 50%;
    opacity: 0.5;

    cursor: pointer;
    transition-duration: 1s;
}

.fifth .right {
    left: auto;
    right: 30px;
}

.fifth .left:hover, .fifth .right:hover {
    opacity: 0.9;
}













.sixth {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.sixth h2 {
    width: 100%;

    text-align: center;
    font-weight: 700;
    font-size: 50px;
}

.sixth .box {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 0;

    position: relative;
}

.sixth .box .one {
    width: 800px;
    height: auto;

    display: flex;
    flex-flow: column;
    justify-content: center;

    position: relative;

    border-bottom: 1px solid lightgray;
    transition-duration: 1s;
    cursor: pointer;
}

.sixth .box .one .plus {
    position: absolute;
    right: 0;
    top: 10px;

    font-weight: 300;
    font-size: 45px;
}

.sixth .box .one h5 {
    height: 75px;

    display: flex;
    align-items: center;

    font-size: 22px;
    font-weight: 400;
}

.sixth .box .one text {
    height: 0;
    overflow: hidden;

    margin-top: 10px;
    padding-left: 20px;

    font-size: 15px;

    transition-duration: 1s;
}












.big_img {
    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;

    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.big_img .img {
    max-width: 1400px;
    max-height: 800px;
}

.big_img .left_big, .big_img .right_big {
    width: 100px;
    height: 100px;

    filter: var(--main-filter);

    cursor: pointer;
}

.big_img .left_big:hover, .big_img .right_big:hover {
    opacity: 0.5;
}


















.seventh {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.seventh h2 {
    width: 57%;
    margin-left: auto;
    margin-right: auto;

    text-align: left;
    font-weight: 700;
    font-size: 30px;
}

.seventh .box {
    width: 70%;
    margin-right: auto;
    margin-left: auto;

    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.seventh .box .info {
    width: 600px;

    display: flex;
    flex-flow: column;
}

.seventh .box .info h5 {
    padding: 15px 0;

    font-size: 16px;
    font-weight: 400;

    border-bottom: 1px solid lightgray;
}

.seventh .box .info a {
    padding: 25px 0;

    font-size: 16px;
    font-weight: 400;
    color: var(--dark);

    border-bottom: 1px solid lightgray;
}

.seventh .box .form {
    width: 435px;

    display: flex;
    flex-flow: column;
    gap: 10px;
}

.seventh .box .form input[type=text] {
    height: 50px;
    width: calc(100% - 20px);
    padding-left: 20px;

    font-size: 15px;
    font-family: Montserrat, serif;

    outline: none;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.seventh .box .form input[type=submit] {
    height: 55px;
    width: calc(100% + 5px);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    font-family: Montserrat, serif;

    outline: none;
    border: 1px solid var(--main);
    border-radius: 5px;
    background: var(--main);

    cursor: pointer;
}

.seventh .box .form input[type=submit]:hover {
    background: var(--dark);
}

.seventh form p {
    width: 100%;

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.seventh form p span {
    width: 100%;
}

.wpcf7-response-output {
    margin-top: 30px !important;
    border: none !important;
    color: var(--dark) !important;
}

.wpcf7-not-valid-tip {
    margin-left: 10px;
    margin-top: 5px;
}