html, body {
    min-height: 100%;
    position: relative;
    color: #363636;
    font-family: "Poppins", sans-serif
}

:root {
    --primary: #f8a20c;
}

div.site {
    min-height: 100vh;
}

a {
    color: var(--primary);
    transition: all .3s;
}
a:hover {
    text-underline-offset: 3px;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* HEADER */

#header {
    position: sticky;
    top: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #FFF;
    transition: all .3s;
    z-index: 1039;
}
#header.sticky {
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, .1);
}

#header .logo img {
	position: relative;
    max-height: 100px;
    transition: all .3s;
}
#header.sticky .logo img {
    max-height: 80px;
}

#header .phone {
    margin-left: 70px;
}
#header .phone a {
    display: inline-block;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.18px;
    padding: 0;
    margin: 4px 0 0 0;
}
#header .phone a:hover {
    color: var(--primary);
    text-decoration: none;
}
#header .phone i {
    position: relative;
    color: var(--primary);
    font-size: 14px;
    padding-right: 5px;
    top: -1px;
}

#header .contact {
    margin-left: 30px;
    margin-top: -1px;
}
#header .contact a {
    display: inline-block;
    height: 52px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0.18px;
    padding: 0 35px;
    margin: 0;
    border: 2px solid var(--primary);
    border-radius: 30px;
}
#header .contact a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: var(--primary);
}

/* NAV */

.navbar {
    padding: 0;
    margin: 0;
}
.navbar .nav {
	list-style: none;
	padding: 0;
    margin: 0;
}
.navbar .nav > li {
	position: relative;
    margin: 0 16px;
}
.navbar .nav > li > a,
.navbar .nav > li > span {
	display: block;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.5px;
    padding: 0;
    margin: 0;
	cursor: pointer;
    transition: all .3s;
}
.navbar .nav > li.active > a,
.navbar .nav > li.active > span,
.navbar .nav > li > a:hover,
.navbar .nav > li > span:hover {
    color: var(--primary);
}

.navbar .nav > li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 4px;
    z-index: 0;
    opacity: 0;
    width: 260px;
    background-color: #FFF;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    padding: 0;
    transition: all 0.3s ease-in;
}
.navbar .nav > li:hover > ul,
.navbar .nav > li:hover > ul > li:hover > ul {
    display: block;
    z-index: 10;
    opacity: 1;
}
.navbar .nav > li ul > li {
    position: relative;
}
.navbar .nav > li ul > li > a,
.navbar .nav > li ul > li > span {
    display: block;
    color: #666;
    letter-spacing: 0px;
    font-size: 16px;
	font-weight: 600;
    line-height: 100%;
    text-transform: none;
    padding: 8px 10px 8px 10px;
    border: 1px solid #f6f6f6;
    transition: all 0.3s ease-in-out;
	cursor: pointer;
}
.navbar .nav > li ul > li:hover > a, 
.navbar .nav > li ul > li:hover > span, 
.navbar .nav > li ul > li.active > a, 
.navbar .nav > li ul > li .active > span {
	color: #FFF;
	background-color : #969696;
}

.navbar .nav > li ul > li > ul {
    top: 5px;
    left: 90%;
}
.navbar .nav > li ul > li > ul > li > a {
    font-size: 14.5px;
    font-weight: 500;
}

/* SLIDER */

.slider .slide {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 650px;
    padding-bottom: 150px;
    background-color: #f5f5f5;
	background-size: cover;
	background-position: center;
}
.slider .slide p {
	color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 4.7px;
    text-transform: uppercase;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .5);
    padding: 0 0 23px 0;
    margin: 0;
}
.slider .slide h2 {
    color: #FFF;
    font-size: 52px;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: -2.6px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .5);
    padding: 0;
    margin: 0;
}

.subpage .slider .slide {
    height: 420px;
}
.subpage .slider .slide .content {
    display: none;
}

/* CTA */

#cta {
    padding: 65px 0;
    background-color: #1a1a1a;
}
#cta p {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#cta p span {
    font-weight: 600;
}
#cta a {
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.35px;
    padding: 16px 32px 14px 32px;
    border: 2px solid #FFF;
    border-radius: 30px;
}
#cta a:not(:first-of-type) {
    color: var(--primary);
    margin-left: 10px;
    border-color: var(--primary);
}
#cta a:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, .2);
}

/* ABOUT */

#about .photos img:first-of-type {
    margin-left: -100px;
}
#about .photos img:last-of-type {
    position: relative;
    float: right;
    margin-top: -300px;
    margin-right: -83px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    z-index: 2;
}
#about .content {
    padding-left: 140px;
}
#about .content h3 {
    color: #1a1a1a;
    font-size: 19px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 10px 0;
    margin: 0;
}
#about .content h2 {
    position: relative;
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.85px;
    padding: 0;
    margin: 0;
}
#about .content h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 22px 0;
    border-radius: 2px;
    background-color: var(--primary);
}
#about .content p {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -0.18px;
    padding: 0;
    margin: 0;
}
#about .content a {
    display: inline-block;
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.35px;
    padding: 16px 32px 14px 32px;
    margin: 30px 0 0 0;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
}
#about .content a:hover {
    color: #f8a20c;
    text-decoration: none;
    background-color: transparent;
}

/* SERVICES */

#services {
    background-color: #f5f5f5;
}
#services span {
    display: block;
    color: #1a1a1a;
    font-size: 19px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding: 0 0 12px 0;
    margin: 0;
}
#services h2 {
    color: #1a1a1a;
    font-size: 35px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: center;
    padding: 0;
    margin: 0;
}
#services h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 20px auto 45px;
    border-radius: 2px;
    background-color: #f8a20c;
}

#services .item a {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #FFF;
    transition: all .5s;
}
#services .item a:hover {
    text-decoration: none;
}
#services .item img {
    max-width: 100%;
    height: 100%;
}
#services .item p {
    position: relative;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.55px;
    padding: 35px 100px 35px 0;
    margin: 0 0 0 65px;
    transition: all .5s;
}
#services .item a:hover p {
    color: var(--primary);
}
#services .item p::after {
    content: " ";
    display: block;
    width: 80px;
    height: 8px;
    position: absolute;
    bottom: 0;
    background: #f8a20c;
    transition: all .5s;
}
#services .item a:hover p::after {
    width: 150px;
}
#services .item a > span {
    width: 38px;
    height: 38px;
    position: absolute;
    bottom: 30px;
    right: 35px;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: #f8a20c;
    border-radius: 50%;
}

/* FOOTER */

#footer {
    background-color: #000;
}

#footer .logo img {
    max-height: 90px;
    filter: invert(1);
}

#footer .info h4 {
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.15px;
    padding: 0; 
    margin: 0;
}
#footer .info address,
#footer .info p {
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    padding: 18px 0 0 0;
    margin: 0;
}
#footer .info a {
    display: block;
    font-size: 15px;
    font-weight: 300;
}
#footer .info a.phone {
    margin-top: 10px;
}
#footer .info a:hover {
    color: var(--primary);
    text-decoration: none;
}
#footer .info a i {
    font-size: 11px;
    padding-right: 4px;
}

#footer .row:last-of-type {
    position: relative;
    padding-top: 40px;
    margin-top: 60px;
}
#footer .row:last-of-type::before {
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background-color: rgba(255, 255, 255, .1);
    position: absolute;
    top: 0; left: 15px;
}

#footer .copyright p {
    color: rgba(255, 255, 255, .33);
    font-size: 13px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.15px;
    padding: 0;
    margin: 0;
}
#footer .menu a {
    display: inline-block;
    color: rgba(255, 255, 255, .33);
    font-size: 13px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.15px;
    padding: 0;
    margin: 0;
}
#footer .menu a:not(:first-of-type) {
    margin-left: 24px;
}

/* SUBPAGE */

.page-header,
.box-headline {
    margin-bottom: 35px;
}
.page-header h1,
.box-headline h1 {
    color: var(--primary);
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 1px;
    padding: 0;
    margin: 0;
}

.item-page h1, 
.item-page h2,
.item-page h3,
.item-page h4,
.item-page h5 {
    padding: 20px 0;
}

.item-page h1, .item-page h2 {
    color: #1a1a1a;
    font-size: 33px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0;
}
.item-page h3 {
    color: #1a1a1a;
    font-size: 29px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0;
}
.item-page h4 {
    color: #1a1a1a;
    font-size: 23px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.23px;
}
.item-page h5, .item-page h6 {
    color: #1a1a1a;
}

.item-page .article-info {
    display: none;
}

.item-page p,
.item-page ul li,
.item-page ol li {
    color: #363636;
    font-size: 17px;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0;
    padding: 0;
}
.item-page p:last-of-type {
    margin-bottom: 0;
}
.item-page p strong {
    font-weight: 700;
}

.item-page img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.item-page ul,
.item-page ol {
    margin-top: 20px;
}
.item-page ul {
    list-style: none;
    padding-left: 20px;
}
.item-page ul li {
    position: relative;
    padding-left: 30px;
    margin-top: 3px;
}
.item-page ul li::before {
    content: "→";
    font-family: "Arial";
    position: absolute;
    left: 0;
}

.item-page .gallery a {
	margin-top: 25px;
}
.item-page .gallery img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog > .row {
    margin-top: -25px;
}
.blog .post {
    margin-top: 25px;
}
.blog .item {
	transition: all .3s;
}
.blog .item:hover {
    text-decoration: none;
	background-color: var(--primary);
}
.blog .item .item-image {
    height: 210px;
    margin: 0;
}
.blog .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog .item .content a {
    display: block;
    padding: 25px 30px;
    border: 1px solid #ddd;
    border-top: 0;
}
.blog .item:hover .content a {
    border-color: var(--primary);
} 
.blog .item .content h3 {
    color: #303030;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0;
	margin: 0;
}
.blog .item:hover .content h3 {
	color: #FFF;
}
.blog .item .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 0.18px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* CONTACT FORM */

#contact-form .fields input,
#contact-form textarea {
    width: 100%;
    padding: 10px 20px;
    margin-top: 10px;
    outline: none;
    border: 1px solid #d2d2d2;
    resize: none;
}
#contact-form .field-file {
    margin-top: -5px;
    margin-bottom: 15px;
}
#contact-form .fields input:focus,
#contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: unset;
}
#contact-form label.error {
    display: block;
    color: red;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: -5px;
}
#contact-form .reg {
    display: flex;
    align-items: flex-start;
}
#contact-form .reg input {
    margin-top: 4px;
    margin-right: 10px;
}
#contact-form .reg label {
    font-size: 15px;
    font-weight: 300px;
}
#contact-form input[type="submit"] {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 15px 25px;
    margin: 10px 0 0 0;
    background-color: var(--primary);
    border: 0;
    outline: none;
    cursor: pointer;
    float: right;
}