
@font-face {
    font-family: "SourceSansPro-Bold";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "SourceSansPro-SemiBold";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "SourceSansPro-Regular";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-Regular.ttf) format("truetype");
}

:root {
    --custom-green: #316c3d;
    --custom-green2: #b5cab9;
}

.container-fluid .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.bold {
    font-family: "SourceSansPro-Bold";
}

.semibold {
    font-family: "SourceSansPro-SemiBold";
}

/* custom checkbox */
.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.custom-checkbox p {
    margin-bottom: 0;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 25px;
    height: 25px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--custom-blue);
    background-color: #fff;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: var(--custom-blue);
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}
/* end of custom checkbox */

/* navbar */
button.nav-link {
    background-color: transparent;
    border: none;
    outline: none;
}

button.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    left: unset;
    right: 30px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
}

.navbar .dropdown-menu a {
    color: var(--custom-blue);
    margin: 0 !important;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--custom-lightblue);
}
/* end of navbar */

/* static content */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: "SourceSansPro-Bold";
    text-transform: uppercase;
}

.static-content h1 {
    font-size: 35px;
}
.static-content h2 {
    font-size: 32px;
}
.static-content h3 {
    font-size: 30px;
}
.static-content h4 {
    font-size: 25px;
}
.static-content h5 {
    font-size: 22px;
}
.static-content h6 {
    font-size: 19px;
}

.static-content img {
    max-width: 100%;
}

.static-content ul {
    columns: 1;
    padding: 0;
}

.static-content li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    display: flex;
    align-items: center;
    width: 100%;
}

.static-content li::before {
    content: "";
    background-color: var(--custom-green2);
    border-radius: 5px;
    width: 10px;
    height: 10px;
    margin-right: 15px;
    margin-left: 10px;
}
/* end of static content */

/* base stuff */
form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

.navbar-nav .dropdown-toggle::after,
.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.navbar-toggler {
    border-color: #8d9aab;
}

form small {
    text-align: left !important;
    color: #f00;
}

a:focus,
a:hover,
a:focus *,
a:hover *{
    text-decoration: none !important;
    color: currentColor;
}
/* end of base stuff*/

/* popup */
.popup-modal {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    /*height: 400px;*/
    height: fit-content;
    max-width: 95%;
    max-height: 95%;
    z-index: 1010;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.35);
    padding: 1.2em 1em;
    overflow: scroll;
}

/*.popup-modal .popup-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    padding: 1.2em 1em;*/
/*}*/

.popup-modal #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1em 0.3em;
    cursor: pointer;
    font-size: 25px;
    z-index: 100;
}
/* end of popup */

.navbar-nav .active-link {
    color: #000;
    border-bottom: 4px solid var(--custom-green);
}

a,
body {
    font-family: "SourceSansPro-Regular";
    color: #2b2b2b;
}

a:hover {
    text-decoration: none;
    color: #2b2b2b;
}

header {
    background-color: #fff;
    color: #000000;
    -webkit-box-shadow: 0px 15px 38px -21px rgba(0,0,0,0.58);
    -moz-box-shadow: 0px 15px 38px -21px rgba(0,0,0,0.58);
    box-shadow: 0px 15px 38px -21px rgba(0,0,0,0.58);
    position: relative;
    z-index: 10;
    padding-top: .2em;
    padding-bottom: .2em;
}

header,
header a {
    font-family: "OpenSans Semibold";
    font-size: 16px;
}

.language-menu a,
.nav-link {
    color: #000;
    font-size: 18px;
}

.language-menu a:hover{
    color: var(--custom-green)
}

.nav-link:focus,
.nav-link.active,
.nav-link:hover {
    color: #000;
    border-bottom: 4px solid var(--custom-green);
}

.nav-link {
    padding-right: .3em !important;
    padding-left: .3em !important;
    margin-right: .3em !important;
    margin-left: .3em !important;
    border-bottom: 4px solid transparent;
}

.language-menu a.current {
    color: var(--custom-green);
}

.language-menu {
    display: flex;
    align-items: center;
}

.language-menu span {
    margin-left: 4px;
    margin-right: 4px;
}

.navbar-toggler {
    border-color: #8d9aab;
}

.standard-btn {
    border-radius: 20px;
    background-color: var(--custom-green);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    width: max-content;
    padding: 8px 28px;
    border: 1px solid transparent;
}

.standard-btn:hover,
.standard-btn:focus {
    background-color: white;
    color: var(--custom-green);
    border: 1px solid var(--custom-green)
}

.email-btn {
    margin-left: 15px;
    margin-right: 15px;
}

.home-fluid {
    position: relative;
    background-image: url('../images/home-bg.jpg');
    background-position: center right;
    background-size: 42% 100%;
    min-height: 500px;
    background-repeat: no-repeat;
}

.home-fluid.bemutatkozas.blog-fluid {background-size: 42% 100%;}

.big-lightningImg {
    position: absolute;
    left: -25%;
    top: 190px;
}

.standard-title {
    color: var(--custom-green);
    font-size: 48px;
    padding-bottom: .5em;
}

.standard-subtitle {
    color: #000000;
    font-size: 30px;
    padding-bottom: .5em;
    text-align: center;
}

.home-extra-pt {
    padding-top: 3em;
    padding-right: 5em;
    padding-bottom: 3em;
}

.home-extra-pt-right {
    padding-top: 3em;
    padding-left: 5em;
}

.static-content {
    font-size: 19px;
    color: #000;
}

.one-budget {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    height: 177px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 177px;
    -webkit-box-shadow: 0px 0px 31px -1px rgba(0,0,0,0.19);
    -moz-box-shadow: 0px 0px 31px -1px rgba(0,0,0,0.19);
    box-shadow: 0px 0px 31px -1px rgba(0,0,0,0.19);
}

.boxshadow {
    -webkit-box-shadow: 0px 0px 31px -1px rgba(0,0,0,0.19);
    -moz-box-shadow: 0px 0px 31px -1px rgba(0,0,0,0.19);
    box-shadow: 0px 0px 31px -1px rgba(0,0,0,0.19);
}

.budget-title {
    color: #000000;
    text-align: center;
    font-size: 20px;
    margin-top: 8px;
}

footer {
    background-color: #000;
    padding-top: 3em;
    padding-bottom: 1em;
}

.footer-link {
    font-size: 18px;
    color: var(--custom-green2);
    margin-left: 15px;
}

.footer-link:hover,
.footer-link:focus {
    color: #fff;
}

.allrights {
    font-size: 16px;
    text-align: right;
    color: var(--custom-green2);
}

.footer-row {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
}

.one-home-budget-row.bigger .one-budget {
    height: 300px;
    width: 100%;
    margin-top: 4em;
}

.one-home-budget-row.bigger .budget-title {
    line-height: 1.2;
    margin-top: 27px;
}

.home-fluid.bemutatkozas {
    background-position: top right;
    margin-bottom: 5em;
    background-size: auto;
}

.inner-bemutatkozas {
    padding-bottom: 7em;
}

.bottom-bemutatkozas {
    padding-top: 3em;
    padding-bottom: 3em;
    background-color: #e2edef;
}

.contact-block {
    font-size: 19px;
    color: #000;
}

.contact-block:hover,
.contact-block:focus {
    color: var(--custom-green);
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.contact-fluid {
    padding-top: 6em;
    padding-bottom: 6em;
}

.blog-fluid {
    padding-top: 6em;
}

.one-blog-row {
    display: flex;
    justify-content: start;
    flex-direction: row;
    border-radius: 10px;
    background-color: #fff;
}

.blog-img-link {
    display: flex;
    width: 30%;
}

.blog-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.blog-list-content {
    width: 70%;
    padding-left: 4em;
    padding-right: 3em;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-top: 2em;
    padding-bottom: .5em;
}

.blog-list-title {
    font-size: 22px;
    color: var(--custom-green);
    text-align: left;
}

.blog-list-btnrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.blog-list-btnrow .blog-list-date {
    font-size: 14px;
}

.blog-list-btnrow .btn {
    background-color: transparent;
    color: var(--custom-green);
}

.blog-list-row-conti {
    padding-top: 5em;
}

.page-link.standard-btn {
    background-color: var(--custom-green) !important;
    border-radius: 50% !important;
    padding: 0px;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.page-link.standard-btn img {
    max-width: 55%;
}

.page-link {
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: transparent !important;
    color: #000 !important;
    border: 0px !important;
    font-size: 22px;
}

.blog-viewImg {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.blog-view-content {
    background-color: #fff;
    padding: 25px 55px;
}

.no-bg {
    box-shadow: none;
    background-color: transparent;
    padding: 0px 25px;
}

.service-view-img {
    position: relative;
    overflow: hidden;
}

.service-view-design {
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 410px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 5em;
    padding-top: 2em;
    z-index: 100;
    border-top-right-radius: 10px;
}

.service-view-img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.service-view-img:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0px;
    right: 0px;
    width: 0px;
    height: 0px;
    border-left: 438px solid transparent;
    border-bottom: 541px solid white;
    z-index: 99;
}

.serviceIconImg {
    position: absolute;
    left: 0px;
    width: 200px;
}

.service-block {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
}

.service-block .img-block {
    width: 200px;
    text-align: center;
}

.service-block .text-part {
    width: calc(100% - 200px);
    padding-left: 6em;
    padding-right: 3em;
}

.service-text-partTitle {
    color: #000000;
    font-size: 30px;
    padding-bottom: .5em;
}

.bg-white {
    background-color: white;
    border-radius: 15px;
}