/*
Theme Name: click5 Interactive Theme
Theme URI: https://www.click5interactive.com/
Author: click5 Interactive
Author URI: https://www.click5interactive.com/
Description: click5 Interactive WordPress Theme
Version: 3.0.8.011
*/

:root {
    --main: #123a83;
    --red: #d5001f;
    --font2: "elido";
    --font: "elido";
}
body{
	font-family: var(--font);
}
/* HEADER */

#header {
    width: 100%;
    position: fixed;
    top: 0;
    padding-top: 55px;
    padding-bottom: 55px;
    padding-left: 60px;
    padding-right: 60px;
    transition: all .3s;
}
#header.sticky {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #FFF;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .15);
}

#header .logo img {
    max-height: 135px;
    filter: brightness(0) invert(1);
    transition: all .3s;
}
#header.sticky .logo img {
    max-height: 120px;
    filter: unset;
}

.navbar {
    padding: 0;
    margin: 0;
}
.navbar .navbar-nav > li {
    margin: 0 13px;
    transition: all .5s;
}
.navbar .navbar-nav .nav-link {
    height: 22px;
    color: #FFF;
    font-size: 17px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    border-bottom: 3px solid transparent;
}
#header.sticky .navbar .navbar-nav .nav-link {
    color: #000;
}
.navbar .navbar-nav .current-menu-parent .nav-link,
.navbar .navbar-nav .current-menu-item .nav-link,
.navbar .navbar-nav .current-page-parent .nav-link,
.navbar .navbar-nav .current-page-ancestor .nav-link,
.navbar .navbar-nav .menu-item:hover .nav-link {
    border-color: var(--red);
}
.navbar .navbar-nav .dropdown .nav-link::after,
.navbar .navbar-nav .dropdown .dropdown > .dropdown-item::after {
    display: inline;
    content: "\f107";
    color: #FFF;
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 700;
    border: 0;
    margin-left: 7px;
    vertical-align: unset;
}
#header.sticky .navbar .navbar-nav .dropdown .nav-link::after {
    color: #000;
}
.navbar .navbar-nav .dropdown .dropdown > .dropdown-item::after {
    content: "\f105";
    color: #000;
    font-size: 10px;
}
.navbar .navbar-nav .dropdown-menu {
    display: block;
    width: 240px;
    top: 35px;
    left: -20px;
    padding: 10px 0;
    margin: 0;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    z-index: -1111;
}
.navbar .navbar-nav .dropdown-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    top: -10px;
    left: 0;
}
.navbar .navbar-nav .dropdown-menu > li > a {
    width: 100%;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: none;
    padding: 10px 20px;
    margin: 0;
    white-space: unset;
}
.navbar .navbar-nav .dropdown-menu a:hover,
.navbar .navbar-nav .dropdown-menu .current-menu-ancestor > a,
.navbar .navbar-nav .dropdown-menu .current-menu-parent > a,
.navbar .navbar-nav .dropdown-menu .current-menu-item > a {
    color: var(--main);
    background-color: transparent;
}
.navbar .navbar-nav .dropdown-menu .dropdown-menu {
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 3px 15px rgb(0 0 0 / 5%);
    top: 0%;
    left: 85%;
}
.navbar .navbar-nav .dropdown-menu .dropdown-menu > li > a {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 20px;
    margin: 0;
    white-space: normal;
}

#header .info {
    padding: 5px 0 18px 35px;
    margin-left: 67px;
    border-left: 1px solid rgba(255, 255, 255, .3);
}
#header.sticky .info {
    border-color: rgba(0, 0, 0, .3);
}

#header .phone {
    color: #FFF;
    font-size: 23px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.58px;
    padding: 0;
    margin: 0 15px 0 0;
}
#header.sticky .phone {
    color: #000;
}
#header .phone:hover {
    color: var(--red);
    text-decoration: none;
}

#header .schedule {
    display: inline-block;
    height: 50px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0;
    padding: 0 35px;
    margin: 0;
    background-color: var(--red);
    border: 2px solid var(--red);
    border-radius: 100px;
}
#header .schedule:hover {
    text-decoration: none;
    background-color: transparent;
}
#header.sticky .schedule:hover {
    color: var(--red);
}

#header .address {
    margin-top: 15px;
}
#header .address i {
    color: rgba(255, 255, 255, .54);
    font-size: 10px;
    padding-right: 8px;
}
#header.sticky .address i {
    color: rgba(0, 0, 0, .54)
}
#header .address address {
    color: rgba(255, 255, 255, .54);
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}
#header.sticky .address address {
    color: rgba(0, 0, 0, .54)
}

/* HERO */

#hero {
    height: 835px;
    padding-bottom: 160px;
    background-color: var(--main);
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
}
#hero .container-home{
	margin: auto; 
	margin-top: auto;
	margin-bottom: 0;
}
#hero .container-home .row{
	position: relative;
	z-index: 100;
}
.home #hero{
}
#hero .photo{
	display: block;
	width: 700px;
	height: 550px;
	background-image: url("img/attorney.webp");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 70px;
	left: 47%;
}

#hero .content h3 {
    color: #FFF;
    font-size: 34px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.7px;
    padding: 0 0 25px 0;
    margin: 0;
}
#hero .content h1 {
    color: #FFF;
    font-family: var(--font2);
    font-size: 73px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -2.19px;
    padding: 0;
    margin: 0;
}

/* BANNERS */

#banners {
    position: relative;
    margin-top: -75px;
}
#banners.widget{
	border-radius: 15px;
	overflow: hidden;
}
#banners .no-gutters{ 
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	position: relative;
	z-index: 10;
}
#banners::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

#banners .box {
    position: relative;
    z-index: 9;
}
#banners .box a {
    position: relative;
    padding: 40px 65px;
    background-color: #FFF;
    box-shadow: 0 10px 50px rgba(0, 0, 0, .05);
}
#banners .box.box-1 a {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
#banners .box.box-2 a {
    background-color: var(--main);
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
#banners .box a:hover {
    text-decoration: none;
}
#banners .box a::after {
    content: "→";
    color: #000;
    font-family: "Arial";
    font-size: 24px;
    position: absolute;
    right: 50px;
    transition: all .3s;
}
#banners .box.box-2 a::after {
    color: #FFF;
}
#banners .box a:hover::after {
    right: 35px;
}

#banners .box .icon {
    padding-right: 40px;
}
#banners .box .icon img {
    transition: all .3s;
}
#banners .box a:hover .icon img {
    transform: rotate(-10deg);
}

#banners .box .content h3 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0 0 6px 0;
    margin: 0;
}
#banners .box.box-2 .content h3 {
    color: rgba(255, 255, 255, .8);
}
#banners .box .content p {
    color: var(--red);
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.6px;
    padding: 0;
    margin: 0;
}
#banners .box.box-2 .content p span {
    color: #FFF;
    font-weight: 500;
}

/* ABOUT */

#about {
    padding-top: 100px;
    background-color: #f8f9fa;
    overflow: hidden;
}
/* #about::before {
    content: "";
    display: block;
    width: 824px;
    height: 764px;
    background-image: url('img/icons/icon-logo.webp');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    position: absolute;
    bottom: -510px;
    left: -190px;
}*/

#about .headline {
    padding-left: 15px;
    text-align: center;
}
#about .headline h3 {
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 10px 0 0 0;
    margin: 0;
}
#about .headline h3::after {
    content: "";
    display: block;
    width: 180px;
    height: 6px;
    margin: 28px 0 21px 0;
    background-color: var(--red);
    border-radius: 3px;
}
#about .headline h1 {
    color: var(--main);
    font-family: var(--font2);
    font-size: 63px;
    font-weight: 600;
    line-height: 67px;
    letter-spacing: -1.89px;
    padding: 0;
    margin: 0;
}
#about .content {
	padding-top: 30px;
}
#about .content p {
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: -0.2px;
    padding: 0;
    text-align: center;
}
#about .content p strong {
    font-size: 21px;
    font-weight: 600;
}
#about .content a, #attorney .content .text a {
    position: relative;
    display: inline-block;
    color: #1f1f1f;
    font-size: 19px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 1px 0;
    margin: 47px 0 0 80px;
    border-bottom: 1px solid #1f1f1f;
}
#about .content a:hover, #attorney .content .text a:hover {
    color: var(--red);
    text-decoration: none;
    border-color: var(--red);
}
#about .content a::before, #attorney .content .text a::before {
    content: "→";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 69px;
    height: 69px;
    color: #FFF;
    font-family: "Arial";
    font-size: 21px;
    background-color: var(--red);
    border-radius: 50%;
    position: absolute;
    top: -22px;
    left: -80px;
}

/* SERVICES */

#services .headline h3 {
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#services .headline h3::after {
    content: "";
    display: block;
    width: 105px;
    height: 6px;
    margin: 18px auto 15px;
    background-color: var(--red);
    border-radius: 3px;
}
#services .headline h1 {
    color: var(--main);
    font-family: var(--font2);
    font-size: 70px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -2.1px;
    padding: 0 0 84px 0;
    margin: 0;
}

#services .row.no-gutters {
    padding: 10px;
    border: 1px solid #f3f3f3;
    border-radius: 15px;
}

#services .box a {
    position: relative;
    display: block;
    height: 100%;
    padding: 45px 50px;
    background-size: cover;
    background-position: center;
    border-right: 1px solid #e6e6e6;
    overflow: hidden;
}
#services .box:nth-child(n+5) a {
    border-top: 1px solid #e6e6e6;
}
#services .box:nth-child(4n) a {
    border-right-width: 0;
}
#services .box a:hover {
    text-decoration: none;
    padding: 45px 65px;
    transform: scaleX(1.12) scaleY(1.05);
    z-index: 9;
    border-radius: 15px;
}
#services .box a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transition: all .3s;
}
#services .box a:hover::before {
    visibility: hidden;
    opacity: 0;
}
#services .box a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 60, 126, .37);
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
#services .box a:hover::after {
    visibility: visible;
    opacity: 1;
}
#services .box a > * {
    position: relative;
    z-index: 4;
}

#services .box a:hover .icon img {
    opacity: 0;
}

#services .box .content h2 {
    display: block;
    color: var(--main);
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.24px;
    padding: 35px 0 0 0;
    margin: 0;
    transition: all .3s;
}
#services .box a:hover .content h2 {
    color: #FFF;
    transform: scale(1.2);
    /* font-size: 34px;
    line-height: 30px; */
}
#services .box .content span {
    display: inline-block;
    color: rgba(0, 0, 0, .76);
    font-size: 13px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    padding: 0 0 2px 0;
    margin: 15px 0 0 0;
    border-bottom: 1px solid transparent;
    transition: all .3s;
}
#services .box a:hover .content span {
    color: #FFF;
    /* font-size: 14px; */
    margin-left: -20px;
    border-color: #FFF;
    transform: scale(1.05);
}

/* FAST CONTACT */

#fast-contact {
	overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}
.home #fast-contact, .single #fast-contact {
    background-color: transparent;
}
#fast-contact::before {
    content: "";
    display: block;
    width: 824px;
    height: 764px;
    /* background-image: url("img/icons/icon-logo.webp"); */
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    position: absolute;
    bottom: -25px;
    right: -400px;
}
.home #fast-contact::before, .blog #fast-contact::before, .single #fast-contact::before {
    display: none;
}
/*
#fast-contact .content h3 {
    display: none;
    color: rgba(232, 235, 241, .4);
    font-size: 53px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1.06px;
    padding: 0;
    margin: 0;
}*/
.home #fast-contact .content h3 {
    display: block;
}
#fast-contact .content h1 {
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.5px;
    padding: 0 0 28px 0;
    margin: 0;
}
.home #fast-contact .content h1 {
    margin-top: -10px;
}

#fast-contact .content a {
    display: block;
    width: 340px;
    height: 60px;
    color: #FFF;
    font-size: 19px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0;
    padding: 0;
    margin: 5px 5px 0 5px;
    background-color: var(--main);
    border: 1px solid var(--main);
    border-radius: 100px;
}
#fast-contact .content a span {
    font-weight: 300;
}
#fast-contact .content a:hover {
    color: var(--main);
    text-decoration: none;
    background-color: transparent;
}
#fast-contact .content a.phone {
    background-color: var(--red);
    border: 1px solid var(--red);
}
#fast-contact .content a.phone:hover {
    color: var(--red);
    background-color: transparent;
}

/* ATTORNEY */

#attorney {
    position: relative;
}
#attorney:before {
    content: "";
    display: block;
    width: 70%;
    background-color: #f8f9fa;
    position: absolute;
    bottom: 0; left: 0;
}

#attorney .content {
    padding-left: 50px;
    padding-right: 40px;
}
#attorney .content h3 {
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 20px 0 0 0;
    margin: 0;
}
#attorney .content h3::after {
    content: "";
    display: block;
    width: 180px;
    height: 6px;
    margin: 23px 0 16px 0;
    background-color: var(--red);
    border-radius: 3px;
}
#attorney .content h1 {
    color: var(--main);
    font-family: var(--font2);
    font-size: 63px;
    font-weight: 600;
    line-height: 67px;
    letter-spacing: -1.89px;
    padding: 0;
    margin: 0;
}

#attorney .content .text {
    padding: 49px 0 83px 0;
    margin-top: 43px;
    background-color: #f8f9fa;
}
#attorney .content .text p {
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    padding: 0;
    margin: 0;
}
#attorney .content .text p strong {
    font-weight: 600;
}
#attorney .content .text a {
    margin-top: 64px;
}

#attorney .photo > div {
    width: 495px;
    height: 495px;
    border-radius: 20px;
    margin-left: auto;
    background-color: var(--main);
    background-size: cover;
    background-position: top center;
    box-shadow: 0 14px 30px rgba(90, 90, 90, .25);
}

/* REVIEWS */
#reviews{
	overflow: hidden;
}
#reviews .container-fluid {
    height: 745px;
    background-color: var(--main);
    background-size: cover;
    background-position: top center;
}

#reviews .headline h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    padding: 350px 0 12px 0;
    margin: 0;
}
#reviews .headline h1 {
    color: #FFF;
    font-family: var(--font2);
    font-size: 78px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -2.34px;
    padding: 0;
    margin: 0;
}

#reviews .container {
    position: relative;
    margin-top: -215px;
    z-index: 9;
}

#reviews .slick-track {
    display: flex !important;
}

#reviews .review {
    height: inherit !important;
    padding-bottom: 20px;
}

#reviews .review .photo {
    position: relative;
    width: 156px;
    height: 156px;
    margin: 0 auto;
    background-color: #EEE;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 20px 34px rgb(66 66 66 / 22%);
    z-index: 5;
}

#reviews .review .content {
    position: relative;
    height: calc(100% - 85px);
    max-width: 880px;
    padding: 91px 90px 45px 90px;
    margin: -71px auto 0;
    background-color: #FFF;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(9, 30, 48, .05);
    overflow: hidden;
}
#reviews .review .content::before {
    content: '';
    display: block;
    width: 381px;
    height: 286px;
    margin: 0 auto;
    background-image: url('img/icons/icon-quote.webp');
    background-repeat: no-repeat;
    position: absolute;
    bottom: -65px;
    left: 0;
    right: 0;
}
#reviews .review .content::after {
    content: "";
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 18px 12.5px 0 12.5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    bottom: -18px; left: 0; right: 0;
    filter: drop-shadow(0 0 25px rgba(9, 30, 48, .05));
}
#reviews .review .content img {
    margin: 0 auto;
}
#reviews .review .content p {
    position: relative;
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: -0.2px;
    padding: 0;
    margin: 0;
    z-index: 4;
}
#reviews .review .content p span {
    color: var(--red);
    font-size: 28px;
    font-weight: 600;
}

#reviews .review .overview {
    position: relative;
    text-align: center;
    z-index: 4;
}
#reviews .review .overview h4 {
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.2px;
    padding: 0;
    margin: 0;
}
#reviews .review .overview h4::before {
    content: "";
    display: block;
    width: 105px;
    height: 6px;
    margin: 36px auto 25px;
    background-color: var(--red);
    border-radius: 3px;
}
#reviews .review .overview span {
    display: inline-block;
    color: #b6b6b6;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}
#reviews .review .overview span strong {
    font-weight: 500;
}

/* TEXTBOX */

#textbox {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}
#textbox::before {
    content: "";
    display: block;
    width: 824px;
    height: 764px;
    /*background-image: url("img/icons/icon-logo.webp");*/
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    position: absolute;
    top: 65px;
    right: -100px;
}

#textbox .headline h1 {
    color: var(--main);
    font-family: var(--font2);
    font-size: 50px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.5px;
    padding: 0;
    margin: 0;
}
#textbox .headline h1::after {
    content: "";
    display: block;
    width: 180px;
    height: 6px;
    margin: 40px auto 61px;
    background-color: var(--red);
    border-radius: 3px;
}

#textbox .content:nth-child(even) {
    padding-right: 40px;
}
#textbox .content:nth-child(odd) {
    padding-left: 40px;
}
#textbox .content p {
    color: #2a2a2a;
    font-size: 19px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: -0.19px;
    padding: 0;
}
#textbox .content p:last-of-type {
    margin-bottom: 0;
}

/* FAQ */
#faq-wrapper{
	overflow: hidden;
}
#faq-wrapper .headline h1 {
    color: var(--main);
    font-family: var(--font2);
    font-size: 50px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.5px;
    padding: 0;
    margin: 0;
}
#faq-wrapper .headline h1::after {
    content: "";
    display: block;
    width: 180px;
    height: 6px;
    margin: 30px auto 60px;
    background-color: var(--red);
    border-radius: 3px;
}

#faq-wrapper.box .questions {
    padding: 0 60px;
}
#faq-wrapper.box .card {
    padding: 0 100px 0 170px;
}
#faq-wrapper.box .card.active {
    position: relative;
    background-color: #FFF;
    box-shadow: 0 0 30px rgba(134, 153, 153, .1);
    overflow: hidden;
    border-radius: 20px;
}
#faq-wrapper.box .card::after {
    width: calc(100% - 235px);
    right: 30px;
}
#faq-wrapper.box .card:last-of-type::after {
    display: block;
}
#faq-wrapper.box .card.active::after {
    background-color: transparent;
}
#faq-wrapper.box .card.active::before {
    content: "";
    display: block;
    width: 172px;
    height: 172px;
    background-color: var(--red);
    border-radius: 50%;
    position: absolute;
    top: -55px; left: -45px;
}
#faq-wrapper.box .card-header h3[aria-expanded="true"]::before {
    color: #FFF;
    font-size: 28px;
    top: 38px;
    left: -155px;
}

#faq-wrapper .more a {
    display: inline-block;
    color: #1f1f1f;
    font-size: 19px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 55px 0 0 0;
    border-bottom: 1px solid #1f1f1f;
}
#faq-wrapper .more a:hover {
    color: var(--red);
    text-decoration: none;
    border-color: var(--red);
}

/* CONTACT */

.contact-box {
    background-color: #142e62;
}
.contact-box.page {
    background-color: #f8f9fa;
}

.contact-box.page .info {
    position: relative;
    padding-left: 50px;
}
.contact-box.page .info::before {
    content: "";
    display: block;
    width: 100vw;
    height: calc(100% + 146px);
    background-color: #FFF;
    position: absolute;
    top: -146px;
    right: -40px;
    z-index: 1;
}

.contact-box .info > * {
    position: relative;
    z-index: 4;
}
.contact-box .info h3 {
    color: #FFF;
    font-size: 25px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
.contact-box.page .info h3 {
    color: #2a2a2a;
}
.contact-box .info h3::after {
    content: "";
    display: block;
    width: 180px;
    height: 6px;
    margin: 23px 0 18px 0;
    background-color: var(--red);
    border-radius: 3px;
}
.contact-box .info h1 {
    color: #FFF;
    font-family: var(--font2);
    font-size: 63px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.89px;
    padding: 0;
    margin: 0;
}
.contact-box.page .info h1 {
    color: var(--main);
}
.contact-box .info p {
    color: #FFF;
    font-size: 40px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0;
    padding: 4px 0 91px 0;
    margin: 0;
}
.contact-box.page .info p {
    color: var(--main);
}
.contact-box .info p strong {
    font-weight: 400;
    border-bottom: 2px solid #FFF;
}
.contact-box.page .info p strong {
    border-color: var(--main);
}
.contact-box .info h2 {
    color: #FFF;
    font-size: 23px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
.contact-box.page .info h2{ 
    color: #2a2a2a;
}

.contact-box .info .box {
    margin-top: 24px;
}
.contact-box.page .info .box {
    position: relative;
}

.contact-box .info .box .icon {
    width: 47px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 20px;
    margin-right: 27px;
    background-color: var(--red);
    border-radius: 50%;
}
.contact-box .info .box address {
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
.contact-box.page .info .box address {
    color: #2a2a2a;
}
.contact-box .info .box h4 {
    color: rgba(232, 235, 241, .45);
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0 0 4px 0;
    margin: 0;
}
.contact-box.page .info .box h4 {
    color: rgba(42, 42, 42, .45);
}
.contact-box .info .box a {
    display: inline-block;
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid transparent;
}
.contact-box.page .info .box a {
    color: #2a2a2a;
}
.contact-box .info .box a:hover {
    text-decoration: none;
    border-color: #FFF;
}
.contact-box.page .info .box a:hover {
    border-color: #2a2a2a;
}

.contact-box.page .form {
    padding-left: 105px;
}

/* FOOTER */

#footer .c-1 .row > div {
    padding-left: 15px;
    padding-right: 15px;
}

#footer .logo {
    padding: 5px 0 33px 0;
    padding-right: 100px;
    border-right: 1px solid #e9e9e9;
}
#footer .logo img{
	width: 200px;
}

#footer .links .box {
    margin-left: 60px;
}

#footer .links .box.box-2 {
	margin-left: 100px;
}

#footer .links .box h3 {
    color: #010101;
    font-size: 19px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 24px 0 17px 0;
    margin: 0;
}
#footer .links .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .links .box ul li {
    color: #2a2a2a;
    font-size: 17px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.17px;
    padding: 0;
    margin: 0;
}
#footer .links .box ul li a:hover {
    color: var(--red);
}

#footer .contact {
    margin-top: 13px;
}
#footer .contact .phone .icon {
    padding-right: 25px;
}
#footer .contact .phone h3 {
    color: var(--main);
    font-size: 19px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.38px;
    padding: 0;
    margin: 0;
}
#footer .contact .phone p {
    color: var(--red);
    font-size: 37px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.74px;
    padding: 1px 0 0 0;
    margin: 0;
}

#footer .contact .schedule a {
    display: inline-block;
    height: 54px;
    color: #FFF;
    font-size: 17px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0;
    padding: 0 70px;
    margin: 25px 0 0 0;
    background-color: var(--red);
    border: 2px solid var(--red);
    border-radius: 100px;
    text-align: center;
}
#footer .contact .schedule a:hover {
    color: var(--red);
    text-decoration: none;
    background-color: transparent;
}

#footer .c-2 .row {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
#footer .c-2 .row::before {
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background-color: #e9e9e9;
    position: absolute;
    top: 0; left: 15px;
}

/* SUBPAGES */

#hero-sub {
    position: relative;
    height: 620px;
    background-size: cover;
    background-position: top center;
}
.page-template-contact #hero-sub {
    padding-bottom: 155px;
}

#hero-sub .headline {
    padding-left: 50px;
}
#hero-sub .headline h3 {
    color: #FFF;
    font-size: 31px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.62px;
    padding: 0 0 22px 0;
    margin: 0;
}
#hero-sub .headline h1 {
    color: #FFF;
    font-family: var(--font2);
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -2.4px;
    padding: 0;
    margin: 0;
}

#page-wrapper {
    position: relative;
}
#page-wrapper::before {
    content: "";
    display: block;
    width: 30vw;
    height: 100%;
    background-color: #f8f9fa;
    position: absolute;
    top: 0; right: 0;
}
.page-template-full #page-wrapper::before {
    display: none;
}

#page-wrapper #main {
    padding-left: 50px;
    padding-right: 50px;
    background-color: #FFF;
    z-index: 4;
}

.entry-content h1, .entry-content h2, h2.post-title {
    color: #2a2a2a;
    font-size: 33px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.33px;
}
.entry-content h3, .sitemap_by_click5 h2 {
    position: relative;
    color: #2a2a2a;
    font-size: 23px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.23px;
    padding-left: 30px;
}
.entry-content h4 {
    position: relative;
    color: #2a2a2a;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.21px;
    padding-left: 30px;
}
.entry-content h3::before, .sitemap_by_click5 h2::before, .entry-content h4::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: calc(100% - 40px);
    margin-right: 10px;
    background-color: var(--red);
    position: absolute;
    top: 21px;
    border-radius: 29px;
    left: 0;
}
.entry-content h5, .entry-content h6 {
    color: var(--main);
}

.entry-content p, .entry-content ul li, .entry-content ol li {
    color: #2a2a2a;
    font-size: 19px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.19px;
    padding: 0;
}
.entry-content p strong {
    font-weight: 700;
}
.entry-content p:last-of-type {
    margin-bottom: 0;
}

.entry-content img.aligncenter {
    display: block;
    height: auto;
    margin: 0 auto;
}
.entry-content img.alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.entry-content img.alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.entry-content ul {
    list-style: none;
    padding-left: 20px;
}
.entry-content ul li {
    position: relative;
    padding-left: 25px;
    margin-top: 5px;
}
.entry-content ul li::before {
    content: "\f054";
    color: var(--red);
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: 700;
    line-height: 36px;
    position: absolute;
    left: 0;
}

.entry-content ol {
    margin-left: 0;
}
.entry-content ol li {
    padding-left: 7px;
    margin-top: 5px;
}

.entry-content blockquote p {
    font-size: 23px;
    font-weight: 600;
    line-height: 34px;
    margin: 0;
}

/* SITEMAP */

.sitemap_by_click5 ul li a {
    text-decoration: none;
}
.sitemap_by_click5 ul li a:hover {
    text-decoration: underline;
}

/* WIDGETS */

#sidebar-area {
    flex: 0 0 calc(33.333333% + 55px);
    max-width: calc(33.333333% + 55px);
    margin-right: -55px;
    margin-top: -75px;
    z-index: 4;
}
.page-id-16 #sidebar-area {
    margin-top: 50px;
}
#banners.widget{
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
}
#banners.widget .box a {
    padding: 35px;
}
#banners.widget .box.box-1 a {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
}
#banners.widget .box.box-2 a {
    border-top-right-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
#banners.widget .box a::after {
    display: none;
}

#banners.widget .box .icon {
    padding-right: 25px;
}
#banners.widget .box .icon img {
    max-height: 56px;
}

#banners.widget .box .content {
    width: calc(100% - 75px);
}
#banners.widget .box .content h3 {
    font-size: 16px;
}
#banners.widget .box .content p {
    font-size: 25px;
}

#widget-contact a {
    position: relative;
    display: block;
    padding: 55px 45px 145px 45px;
    margin-top: 50px;
    background-color: #142e62;
    box-shadow: 0 21px 49px rgba(134, 153, 153, .16);
    overflow: hidden;
    border-radius: 15px;
}
#widget-contact a:hover {
    text-decoration: none;
}
#widget-contact a::before {
    content: "";
    display: block;
    width: 177px;
    height: 177px;
    background-color: var(--red);
    border-radius: 50%;
    position: absolute;
    bottom: -75px; right: -75px;
    transition: all .3s;
}
#widget-contact a:hover::before {
    bottom: -65px; right: -65px;
}
#widget-contact a::after {
    content: "→";
    display: block;
    font-size: 30px;
    color: #FFF;
    font-family: "Arial";
    position: absolute;
    bottom: 25px; right: 27px;
    z-index: 2;
}
#widget-contact h3 {
    color: #FFF;
    font-size: 25px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#widget-contact h3::after {
    content: "";
    display: block;
    width: 150px;
    height: 6px;
    margin: 15px 0 30px 0;
    background-color: var(--red);
    border-radius: 3px;
}
#widget-contact h2 {
    color: #FFF;
    font-family: var(--font2);
    font-size: 48px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.44px;
    padding: 0;
    margin: 0;
}
#widget-contact p {
    color: #FFF;
    font-size: 29px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0;
    padding: 10px 0 0 0;
    margin: 0;
}
#widget-contact p strong {
    font-weight: 400;
    border-bottom: 2px solid #FFF;
}
#widget-contact span {
    display: inline-block;
    color: #FFF;
    font-size: 19px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 1px 0;
    margin: 0;
    border-bottom: 2px solid #FFF;
    position: absolute;
    bottom: 40px; left: 45px;
}