@font-face {
    font-family: "DM Sans SemiBold";
    font-display: swap;
    src: url(../fonts/DM_Sans/static/DMSans-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Exo Bold";
    font-display: swap;
    src: url(../fonts/Exo/static/Exo-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Exo SemiBold";
    font-display: swap;
    src: url(../fonts/Exo/static/Exo-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "DM Sans Regular";
    font-display: swap;
    src: url(../fonts/DM_Sans/static/DMSans-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "DM Sans Bold";
    font-display: swap;
    src: url(../fonts/DM_Sans/static/DMSans-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "DM Sans ExtraBold";
    font-display: swap;
    src: url(../fonts/DM_Sans/static/DMSans-ExtraBold.ttf) format("truetype");
}

@font-face {
    font-family: "Roboto Bold";
    font-display: swap;
    src: url(../fonts/Roboto/Roboto-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Roboto Regular";
    font-display: swap;
    src: url(../fonts/Roboto/Roboto-Regular.ttf) format("truetype");
}

:root {
    --custom-blue: #1b3556;
    --custom-lightblue: #3a71ba;
    --custom-cream: #cfb193;
}

/* 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;
}
/* 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: "DM Sans SemiBold";
    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: 2;
    padding: 0;
}

.static-content li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    padding-left: 45px;
    display: inline-block;
}

.static-content li::before {
    content: "";
    background-color: #000;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}
/* 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 */
a,
body {
    font-family: "DM Sans Regular";
    color: #2b2b2b;
}

a:hover {
    text-decoration: none;
    color: #2b2b2b;
}

.general-padding {
    padding-top: 5em;
    padding-bottom: 5em;
}

/*Peti*/

html {
    scroll-behavior: smooth;
}

.header-fluid {
    background-color: transparent;
    z-index: 1000;
    margin-top: 14px;
}

.black-nav {
    background: #171717;
    box-shadow: 0px 4px 4px 0px #00000026;
    margin-top: 0px;
    padding-top: 14px;
    padding-bottom:14px;
}

.header-fluid img {
    width: 159px;
    height: 108px;
    object-fit: cover;
}

.header-container ul {
    list-style: none;
    column-gap: 30px;
    padding-left: 0px;
}

.header-phone, .contact-card button {
    width: 68px;
    height: 68px;
    gap: 10px;
    border-radius: 34px;
    padding: 19px;
    background-color: #0E0E0E;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card button {
    cursor: auto !important;
}

.header-fluid button i, .contact-card i {
    width: 23px;
    height: 23px;
    color: #DEFD2C;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container button:nth-of-type(2), .hero-buttons button:first-of-type, .promo-container button {
    width: 216px;
    height: 64px;
    border-radius: 29px;
    padding-top: 13px;
    padding-right: 35px;
    padding-bottom: 13px;
    padding-left: 35px;
    background: #DEFD2C;
    border: none;
}

.header-container button:nth-of-type(3), .hero-buttons button:last-of-type {
    width: 64px;
    height: 64px;
    border-radius: 34px;
    padding: 16px;
    background: #DEFD2C;
    border: none;
}

.header-container button:nth-of-type(3) img, .hero-buttons button:last-of-type img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.hero-fluid {
    margin-top: -122px;
    background-image: url("../images/hero_big.jpg");
    height: 1000px;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-fluid {
    height: 100%;
    background: #0B100CDB;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    height: 129%;
    padding-top: 212px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container .row:last-of-type {
    position: relative;
    top: 174px;
}

.hero-container .col-12 {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.hero-buttons button:last-of-type {
    margin-left: -4px;
}

.hero-container .row:nth-of-type(2) img{
    height: 320px;
    border-radius: 16px;
    object-fit: cover;
}

.szolg-fluid {
    margin-top: 230px;
    margin-bottom: 100px;
}

.szolg-img-row img {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    object-fit: cover;
}

.szolg-fluid a:hover {
    color: #4B2CFD;
}

.card {
    background-color: #F5FBD3;
    border-radius: 20px;
    height: 351px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: none;
}

.card-imageholder {
    width: 125px;
    height: 125px;
    border-radius: 62.5px;
    gap: 10px;
    padding: 33px;
    background-color: #FFFFFF;
    margin-bottom: 68px;
}

.card-imageholder img {
    height: 58px;
}

.bemutatkozas-container img {
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    object-position: right;
}

.bemutatkozas-container button {
    width: 225px;
    height: 64px;
    border-radius: 29px;
    padding-top: 13px;
    padding-right: 35px;
    padding-bottom: 13px;
    padding-left: 35px;
    color: #FFFFFF;
    border: none;
}

.bemutatkozas-container button a:hover {
    color: #FFFFFF;
}


.egyutt-fluid {
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #F5FBD3;
}

.egyutt-container {
    padding-top: 55px;
    padding-bottom: 55px;
}

.egyutt-container .col-3 {
    padding-right: 0px;
}

.egyutt-container .card {
    height: unset;
    border-radius: 20px;
    padding: 18px 10px;
    background-color: #FFFFFF;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 15px;
    overflow: hidden;
}

.egyutt-container .card-imageholder  {
    width: auto;
    height: auto;
    padding: 0px;
    border-radius: 0px;
    margin-bottom: 0px;
}

.egyutt-container .card-imageholder img {
    width: 265px;
    height: 160px;
    object-fit: cover;
}

.elegedettseg-fluid {
    margin-bottom: 100px;
}

.elegedettseg-container img {
    height: 620px;
    border-radius: 16px;
    object-fit: cover;
}

.promo-fluid {
    margin-bottom: 100px;
}

.promo-container {
    background-image: url("../images/hero_big.jpg");
    height: 414px;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
    width: 100%;
}

.inner-container {
    background-color: #0B100C8C;
    height: 100%;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 38px;
    padding-right: 38px;
}

.kapcsolat-fluid {
    margin-bottom: 100px;
}

.kapcsolat-fluid img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

#kapcsolat label {
    margin-bottom: 0;
}

.text-input{
    /*margin-bottom: 20px;*/
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    padding-right: 15px;
    padding-left: 15px;
    border-width: 1px;
    background-color: #FFFFFF;
    border: 1px solid #777777;
}

.kapcsolat-fluid textarea {
    width: 100%;
    height: 132px;
    border-radius: 6px;
    padding-top: 16px;
    padding-right: 15px;
    padding-bottom: 16px;
    padding-left: 15px;
    border-width: 1px;
    background-color: #FFFFFF;
    border: 1px solid #777777;
}

.checkbox {
    width: 20px;
    height: 20px;
    border-width: 0.7px;
}

.kapcsolat-fluid button {
    margin-top: 20px;
    width: 100%;
    height: 52px;
    border-radius: 29px;
    padding-top: 13px;
    padding-right: 18px;
    padding-bottom: 13px;
    padding-left: 18px;
    background-color: #DEFD2C;
    border: none;
}

.footer-fluid {
    padding-top: 51px;
    padding-bottom: 43px;
    background-color: #171717;
}

.footer-container {
    padding-top: 31px;
    padding-bottom: 31px;
    border-bottom: 1px solid #E8E9EA;
}

.footer-fluid ul {
    list-style: none;
    column-gap: 22px;
    margin-bottom: 0px;
}

.footer-fluid img {
    width: 64px;    
    height: 43px;
    object-fit: cover;
}

.copy-container {
    padding-top: 16px;
    padding-bottom: 16px;
}

/*.form-group {*/
/*    margin-bottom: 0px;*/
/*}*/

.rolunk-fluid {
    margin-top: 80px;
    margin-bottom: 80px;
}

.kivitel-container {
    /*margin-bottom: 231px;*/
    padding: 35px 35px 190px;
    border-radius: 30px;
    background-color: #F5FBD3;
    height: unset;
}

.steps img {
    height: 56px;
    margin-top: 1.2em;
    margin-bottom: 1em;
}

.steps .subtitle {
    font-size: 21px;
}

.kivitel-card {
    /*height: 301px;*/
    border-radius: 20px;
    padding: 31px 17px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px #0000001A;
    position: relative;
    /*top: 44px;*/
}

.kivitel-card img  {
    width: 204px;
    height: 239px;
    border-radius: 10px;
    object-fit: cover;
}

.kivitel-textbox ul {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding-left: 0px;
    list-style-type: none;
}

.kivitel-textbox li {
    display: flex;
}

.kivitel-textbox i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 6px;
    color: #4B2CFD;
}

.kivitel-container .subtitle {
    /*margin-top: 64px;*/
}


.ref-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
    height: 390px;
}

.ref-img::before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-image: url("../images/26308a536377ddb9bb770baa3928579cf883e582.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.ref-img:hover::before {
    filter: blur(4px)
}

.ref-img:hover::after {
    opacity: 1;
}

.ref-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000073;
    opacity: 0;
    z-index: 2;                
}

.ref-img-desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.ref-img:hover .ref-img-desc {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.05);
    color: white;
}

.contact-card {
    height: 134px;
    border-radius: 20px;
    padding-top: 33px;
    padding-right: 34px;
    padding-bottom: 33px;
    padding-left: 34px;
    background-color: #F5FBD3;
}

.szolg-container .card:hover,
.rolunk-container .card:hover {
    background-color: #F3FFAD;
    box-shadow: 0px 4px 4px 0px #0000001A;
}

/*.szolg-img-row ul {*/
/*    row-gap: 5px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.szolg-img-row li {*/
/*    display: flex;*/
/*    column-gap: 6px;*/
/*}*/

/*.szolg-img-row i {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    width: 28px;*/
/*    height: 28px;*/
/*    color: #4B2CFD;*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*}*/


.card-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.check-desc {
    margin-left: 35px;
}

/*titles*/

.header-container li a, .header-container button:nth-of-type(2), .hero-buttons button:first-of-type {
    font-family: "DM Sans SemiBold";
    font-size: 20px;
    line-height: 130%;
    color:#FFFFFF;
}

.header-container button:nth-of-type(2), .hero-buttons button:first-of-type {
    color: #171717 !important;
}

.subtitle {
    font-family: "DM Sans SemiBold";
    font-size: 24px;
    line-height: 160%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.title {
    font-family: "Exo SemiBold";
    font-size: 64px;
    line-height: 130%;
    color: #FFFFFF;
}

.exo-title {
    font-family: "Exo SemiBold";
    line-height: 130%;
}

.smaller-title {
    font-size: 48px;
}

.desc {
    font-family: "DM Sans SemiBold";
    font-size: 20px;
    line-height: 160%;
    color: #FFFFFF;
}

.nonupper {
    text-transform: none;
}

.neon-text, .hero-container a:hover {
    color: #DEFD2C !important;
}

.white-text {
    color: #FFFFFF;
}

.blue-text, .szolg-container a:hover {
    color: #4B2CFD;
}

.gray-text {
    color: #E1E1E1;
}

.blue-back {
    background-color: #4B2CFD;
}

.card-title {
    font-family: "Exo SemiBold";
    font-size: 21px;
    line-height: 130%;
    text-align: center;
    color: #171717 !important;
    margin-bottom: 0px;
    min-height: 55px;
}

.card-title:hover,
.card-title:focus {
    color: #171717;
}

.card-num {
    font-family: "Exo Bold";
    font-size: 24px;
    line-height: 130%;
}

.regular-desc {
    font-family: "DM Sans Regular";
    font-size: 18px;
    line-height: 160%;
    color: #171717;
}

.small-text {
    font-size: 16px;
}

.promo-text {
    font-size: 37px;
}

.promo-container .subtitle {
    text-transform: none;
    text-align: center;
}

.footer-container li a, .copy-text, .copy-text a, .kivitel-desc {
    font-family: "DM Sans Regular";
    font-size: 14px;
    line-height: 23.2px;
    vertical-align: middle;
    color: #FFFFFFCC;
}

.footer-container i {
    height: 20px;
    color: #FFFFFF;
}

.kapcsolat-title {
    font-size: 46px;
}

.kivitel-title {
    font-size: 39px;
    color: #171717;
}

.black-text {
    color: #171717;
}

.exo-bold {
    font-family: "Exo Bold";
}

.DMsans-bold {
    font-family: "DM Sans Bold";
}

.DMsans-semibold {
    font-family: "DM Sans SemiBold";
}

.DMsans-regu {
    font-family: "DM Sans Regular";
}

.exo-semibold {
    font-family: "Exo SemiBold";
}

.kivitel-desc ul li,
.pro-step {
    font-family: "DM Sans SemiBold";
    font-size: 14px;
    line-height: 140%;
    color: #171717;
}

.szolg-view-sub {
    font-family: "Exo SemiBold";
    font-size: 36px;
    line-height: 130%;
    color: #171717;
}

.szolg-desc {
    font-size: 20px;
}

.ref-number {
    font-family: "Exo SemiBold";
    font-size: 96px;
    line-height: 130%;
    text-align: center;
    color: #F3FFAD !important;
}

.ref-img-title {
    font-family: "DM Sans ExtraBold";
    font-size: 24px;
    line-height: 130%;
    vertical-align: middle;
    color: #FFFFFF;
}

.roboto-bold {
    font-family: "Roboto Bold";
}

.roboto-regular {
    font-family: "Roboto Regular";
}

.kivitel-desc ul,
.szolg-desc ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

.kivitel-desc ul li,
.szolg-desc ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    padding-left: 25px;
    display: inline-block;
}

.kivitel-desc ul li::before,
.szolg-desc ul li::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg fill='%234B2CFD' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M434.8 70.1c14.3 10.4 17.5 30.4 7.1 44.7l-256 352c-5.5 7.6-14 12.3-23.4 13.1s-18.5-2.7-25.1-9.3l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l101.5 101.5 234-321.7c10.4-14.3 30.4-17.5 44.7-7.1z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}

.szolg-desc {
    font-family: "DM Sans Regular";
}

.szolg-desc h1,
.szolg-desc h2,
.szolg-desc h3,
.szolg-desc h4,
.szolg-desc h5,
.szolg-desc h6 {
    font-family: "Exo SemiBold";
}

.hero-buttons button,
.hero-buttons button:hover,
.hero-buttons a:hover {
    color: #171717 !important;
}

.kivitel-slides {
    top: -150px;
    position: relative;
    margin-bottom: -60px;
}

.kivitel-desc ul {
    row-gap: 0.5em;
}

.kivitel-desc ul li {
    margin-bottom: 0.3em;
    padding-left: 19px;
}

.kivitel-desc ul li::before {
    width: 13px;
    height: 16px;
}
/*titles*/