/* size begin */
#windowSize * {
    font-family: "Arial", sans-serif !important;
}

#windowSize {
    position: fixed;
    left: 0px;
    bottom: 120px;
    z-index: 10000;
    background: rgba(0, 0, 0, 1);
    padding: 3px;
    text-align: right;
    font-weight: normal;
}

@media (min-width: 768px) {
    #windowSize {
        bottom: 250px;
    }
}

#windowSize tr {
    border-top: 1px solid #aaa;
}

#windowSize tr:first-of-type {
    border-top: none;
}

#windowSize td {
    font-size: 11px;
    color: #eee;
    margin: 0;
    padding: 0;
    text-align: center;
}

#windowSize td span.hideMe {
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
    padding: 0;
}

#windowSize:hover td span {
    height: auto;
    line-height: 1;
    padding: 2px 0;
}

#windowSize b {
    color: red;
    font-weight: bold;
}

#windowSize p span {
    display: inline-block;
    padding: 0 3px;
    font-weight: bold;
}

#windowSize .ipAddress {
    max-width: 60px;
    word-wrap: break-word;
}

/* size end */

/* menu button begin */
.toggleMenu {
    display: inline-block;
    width: 36px;
    height: 36px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    vertical-align: middle;
    display: none;
}

.toggleMenu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #66b145;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.toggleMenu span:nth-child(1) {
    top: 6px;
}

.toggleMenu span:nth-child(2),
.toggleMenu span:nth-child(3) {
    top: 50%;
    margin-top: -1px;
}

.toggleMenu span:nth-child(4) {
    bottom: 6px;
}

.openMenu .toggleMenu {
    /*border-color: #fff;*/
}

.openMenu .toggleMenu span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.openMenu .toggleMenu span:nth-child(2) {
    transform: rotate(45deg);
}

.openMenu .toggleMenu span:nth-child(3) {
    transform: rotate(-45deg);
}

.openMenu .toggleMenu span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* menu button end */

html,
body {
    font-family: "Montserrat", sans-serif;
    color: #022f50;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1330px;
}

.btn {
    border: none;
    transition: all 300ms ease;
}

.btn-primary {
    background: #66b145;
    color: #fff;
    font-weight: bold;
    border-radius: 40px;
    padding: 10px 20px;
    box-shadow: 0px 6px 21px 0px rgba(81, 159, 64, 0.5);
    outline: none !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #66b145;
    box-shadow: 0px 6px 21px 0px rgba(81, 159, 64, 0.75) !important;
}

.btn-primary:hover {
    background: #66b145;
    box-shadow: 0px 6px 21px 0px rgba(81, 159, 64, 0.75);
}

.h1 {
    color: #0070c0;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 30px;
}

@media (min-width: 1200px) {
    .h1 {
        font-size: 60px;
    }
}

.h1:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #66b145;
    width: 65px;
}

@media (min-width: 1340px) {
    .h1:after {
        width: 95px;
        bottom: 8px;
    }
}

.h1.text-left:after {
    right: 10px;
}

.h1.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

header {
    background: #fff;
    border-bottom: 1px solid #fff;
    padding: 20px 0;
    transition: all 300ms ease;
    position: sticky;
    top: 0;
    box-shadow: 0px 0 0 0px rgba(0, 0, 0, 0);
    z-index: 10;
}

.scrolled header {
    /* background: #0070c0; */
    padding: 10px 0;
    border-color: #66b145;
    box-shadow: 0 0 35px 0 rgba(81, 159, 64, 0.25);
}

.headerWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.headerWrapper .logo {
    display: block;
    width: 184px;
    min-width: 15%;
    transition: all 300ms ease;
}

.headerWrapper .logo .logo-text {
    transition: all 200ms ease;
    height: 22px;
}

.scrolled .headerWrapper .logo {
    width: 120px;
    min-width: 10%;
}

.scrolled .headerWrapper .logo .logo-text {
    height: 0;
}

.headerWrapper .logo img {
    display: block;
    width: 100%;
}

.headerWrapper .menu {
    margin-top: auto;
    margin-bottom: auto;
}

.headerWrapper .menu>ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
}

.headerWrapper .menu>ul li {
    margin-left: 5px;
}

.headerWrapper .menu>ul li a {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 7px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0);
    color: #222222;
    transition: all 300ms ease;
    text-decoration: none;
    font-weight: 600;
}

.headerWrapper .menu>ul li a:hover {
    color: #022f50;
}

.headerWrapper .menu>ul li a.current {
    color: #fff;
    background: #66b145;
}

section {
    padding: 5vh 0;
    min-height: 51vh;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1300px) {
    section {
        padding: 10vh 0;
    }
}

section img {
    display: block;
    max-width: 100%;
}

section .container {
    position: relative;
    z-index: 2;
}

.subsection {
    padding: 3vh 0;
    min-height: 20vh;
    position: relative;
    overflow: hidden;
}

.section-t h2 {
    color: #f5f5f5;
    -webkit-text-stroke: 2px #f3f5ff;
    -webkit-text-fill-color: #fff0;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    z-index: -1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    top: -5px;
    line-height: 1;
}

@media (min-width: 768px) {
    .section-t h2 {
        font-size: 50px;
    }
}

@media (min-width: 992px) {
    .section-t h2 {
        font-size: 120px;
    }
}

@media (min-width: 1300px) {
    .section-t h2 {
        font-size: 150px;
    }
}

@media (min-width: 1600px) {
    .section-t h2 {
        font-size: 200px;
        top: -35px;
    }
}

section.intro {
    padding-top: 30px;
}

.intro .organized h3 {
    font-weight: 600;
    font-size: 18px;

    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap; */
}

.intro .organized h3 span {
    display: inline-block;
    vertical-align: middle;
}

.intro .organized h3 .img {
    display: inline-block;
    width: 90px;
}

.intro .organized h3 .img img {
    display: inline-block;
    margin: 0;
    width: 100%;
    min-width: auto;
}

.intro .details {
    margin-top: 30px;
}

.intro .details .detail {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
}

@media (min-width: 576px) {
    .intro .details .detail {
        justify-content: left;
    }
}

@media (min-width: 620px) {
    .intro .details .detail {
        margin: 10px 0;
    }
}

.intro .details .detail span {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
}

.intro .details .detail .img {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.intro .details .detail .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.intro h1 {
    color: #0070c0;
    font-weight: 900;
    font-size: 25px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro .col-text {
    text-align: center;
}

.intro .col-text .actions {
    margin-top: 40px;
}

@media (min-width: 576px) {
    .intro h1 {
        text-align: left;
        font-size: 30px;
    }

    .intro .col-text {
        text-align: left;
    }
}

@media (min-width: 620px) {
    .intro h1 {
        font-size: 35px;
    }
}

@media (min-width: 768px) {
    .intro h1 {
        font-size: 45px;
    }
}

@media (min-width: 992px) {
    .intro h1 {
        font-size: 55px;
    }
}

@media (min-width: 1140px) {
    .intro h1 {
        font-size: 65px;
    }
}

@media (min-width: 1340px) {
    .intro h1 {
        font-size: 75px;
    }
}

@media (min-width: 576px) {
    .intro img {
        margin-left: -10%;
        width: 110%;
        min-width: 110%;
    }
}

@media (min-width: 1200px) {
    .intro .btn-primary {
        margin-top: 40px;
        padding: 15px 35px;
        font-size: 24px;
    }
}

.about {
    background: #f6fbff;
    padding-bottom: 0;
}

.about .container {
    background: url("../img/2023/bg-about.png") no-repeat left bottom;
    background-size: 30%;
    padding-bottom: 5vh;
}

@media (min-width: 1200px) {
    .about .text {
        padding-right: 60px;
    }
}

.about h3 {
    color: #0070c0;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .about h3 {
        font-size: 20px;
    }
}

.about h3.hasSeparator {
    position: relative;
}

.about h3.hasSeparator:before {
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    border-radius: 0 0 35px 0;
    background-color: #66b145;
    margin-bottom: 20px;
}

.about .details .detail {
    display: flex;
    flex-direction: row;
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
    justify-content: center;
}

@media (min-width: 576px) {
    .about .details .detail {
        justify-content: left;
    }
}

.about .details .detail span {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
}

.about .details .detail .img {
    min-width: 50px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.about .details .detail .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about .details .detail .text {
    font-weight: 600;
    color: #00a2ff;
    font-size: 20px;
    padding: 0;
    line-height: 1.3;
}

.schedule {
    background: url("../img/2023/bg-schedule-right.png") no-repeat left center,
        url("../img/2023/bg-schedule-left.png") no-repeat right center;
    background-size: auto 90%;
    background-attachment: fixed, fixed;
}

.schedule .boxes {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .schedule .boxes {
        margin-top: 100px;
    }
}

.schedule .box {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.schedule .box>div {
    border-radius: 50px;
    padding: 15px;
}

.schedule .box>div.img {
    background: #0070c0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    min-width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.schedule .box>div.img .icon {
    display: block;
    max-width: 40%;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.schedule .box>div.img p {
    margin: 0;
    font-weight: bold;
}

.schedule .box>div.img p.small {
    font-weight: 300;
    font-size: 13px;
    margin-bottom: 5px;
}

.schedule .box>div.img .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.schedule .box>div.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #ecefff;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    padding: 20px 30px 30px;
    background: rgba(255, 255, 255, 0.75);
}

@media (min-width: 576px) {
    .schedule .box {
        flex-direction: row;
    }

    .schedule .box>div.img {
        min-width: 25%;
        border-radius: 50px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .schedule .box>div.text {
        border: 2px solid #ecefff;
        border-left: 0;
        border-radius: 50px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        padding: 15px;
    }
}

.schedule .box>div.text h3 {
    color: #0070c0;
    font-weight: 600;
    font-size: 18px;
}

.schedule .box>div.text h3:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .schedule .box>div.text h3 {
        font-size: 24px;
    }
}

.schedule .box>div.text p,
.schedule .box>div.text li {
    color: #2e4c66;
    font-size: 13px;
    line-height: 1.6;
}

.schedule .box>div.text p:last-of-type,
.schedule .box>div.text ul li:last-of-type {
    margin-bottom: 0;
}

.schedule .box>div.text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.schedule .box>div.text ul li {
    position: relative;
    padding-left: 24px;
    margin: 5px 0;
}

.schedule .box>div.text ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 4px;
    width: 7px;
    height: 15px;
    border: 2px solid #0070c0;
    border-left: none;
    border-top: none;
    transform: rotate(40deg);
}

.schedule .timetable .box {
    border: 2px solid #ecefff;
    background: #fff;
    border-radius: 15px;
    padding: 10px 0;
}

.schedule .timetable .box>div {
    border: none;
    border-radius: 0;
    margin: auto 0;
    padding: 5px 10px;
}

.schedule .timetable .box>div.time {
    font-weight: 600;
    text-align: left;
    background: #fff;
}

.schedule .timetable .box>div.text {
    border-top: 2px solid #ecefff;
}

.schedule .timetable .box>div.text h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.schedule .timetable .box>div.text h3 span {
    font-weight: 400;
}

.schedule .timetable .box>div.text ul {
    margin-top: 10px;
    padding-left: 10px;
}

.schedule .timetable .box>div.text ul li {
    font-size: 14px;
    font-weight: 300;
    color: #0070c0;
    line-height: 1.3;
}

@media (min-width: 576px) {
    .schedule .timetable .box>div.time {
        font-weight: 600;
        width: fit-content;
        min-width: 140px;
        text-align: center;
    }

    .schedule .timetable .box>div.text {
        border-top: none;
        border-left: 2px solid #ecefff;
    }

    .schedule .timetable .box>div.text h3 {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }

    .schedule .timetable .box>div.text h3 b {
        font-weight: 600;
    }

    .schedule .timetable .box>div.text h4 {
        color: #444;
        font-size: 18px;
        /* font-weight: 600; */
        line-height: 1.4;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .schedule .timetable .box>div.text ul {
        margin-top: 10px;
        padding-left: 10px;
    }

    .schedule .timetable .box>div.text ul li {
        font-size: 18px;
        font-weight: 300;
        color: #0070c0;
        line-height: 1.3;
    }
}

.guests {
    background: #f6fbff;
}

.guests .subsection .boxes {
    padding-top: 5vh;
}

@media (min-width: 1140px) {
    .guests .subsection .boxes {
        padding-top: 11vh;
    }
}

.guests .subsection .boxes .row {
    justify-content: center;
}

.guests .subsection .boxes .col-box {
    margin-bottom: 24px;
}

.guests .section-t h2 {
    opacity: 0.36;
}

.guests .public .section-t h2 {
    -webkit-text-stroke: 2px #00f6ff;
}

.guests .private .section-t h2 {
    -webkit-text-stroke: 2px #58b658;
}

.guests .box {
    background: #fff;
    padding: 15px 7px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .guests .box {
        padding: 15px;
    }
}

.guests .box .img {
    width: 70%;
    max-width: 120px;
    margin: 0 auto 20px;
}

.guests .box .img .thumb {
    border-radius: 100%;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); */
}

.guests .box .img .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.guests .box .top h4 {
    color: #0070c0;
    font-weight: 600;
    font-size: 16px;
}

@media (min-width: 768px) {
    .guests .box .top h4 {
        font-size: 18px;
    }
}

.guests .box .top p {
    color: #2e4c66;
    font-size: 13px;
    font-style: italic;
}

.guests .box .bottom h3 {
    color: #0070c0;
    font-weight: 600;
    font-size: 13px;
}

@media (min-width: 768px) {
    .guests .box .bottom h3 {
        font-size: 15px;
    }
}

.guests .box .actions {
    font-size: 0;
    display: none;
}

.guests .box .actions a {
    display: inline-block;
    width: 40px;
    padding: 3px;
    margin: 3px 5px;
}

.guests .box .actions a img {
    display: block;
    width: 100%;
}

.guests .box .bottom {
    border-top: 1px solid #e2edff;
    margin-top: 20px;
    padding-top: 20px;
}

.partners h4 {
    text-align: center;
    font-weight: 600;
    color: #0070c0;
    font-size: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .partners h4 {
        font-size: 20px;
    }
}

.partners .logo {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 50%;
    /* background: #eee; */
}

.partners .logo a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 300ms ease;
}

.partners .logo a:hover {
    background: #eee;
}

.partners .principal .logo {
    padding-top: 60%;
}

.partners .logo img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    transition: all 300ms ease;
}

.partners .logo:hover img {
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.25));
}

.partners .logo.big img {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    header {
        padding: 10px 0;
    }

    .scrolled header {
        padding: 5px 0;
    }

    .openMenu header {
        border-color: #66b145;
        box-shadow: 0 0 35px 0 rgba(81, 159, 64, 0.25);
    }

    .headerWrapper {
        /* display: block; */
    }

    .headerWrapper .mobileMenuWrapper {
        display: flex;
        flex-direction: row;
    }

    .headerWrapper .mobileMenuWrapper>* {
        margin: auto 0 auto 10px;
    }

    .headerWrapper .logo,
    .scrolled .headerWrapper .logo {
        width: 70px;
        min-width: 70px;
    }

    .headerWrapper .toggleMenu {
        display: block;
        /* display: block;
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%); */
    }

    .headerWrapper .menu {
        display: block;
        min-width: 34%;
        padding: 0 15px;
        height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        right: 12px;
        background: #fff;
        transition: all 300ms ease;
        border: 0 solid #66b145;
        box-shadow: 0 0 0 0 rgba(81, 159, 64, 0.25);
        border-radius: 15px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .headerWrapper .menu>ul {
        display: block;
    }

    .headerWrapper .menu>ul li {
        margin: 5px 0;
        text-align: right;
    }

    .headerWrapper .menu>ul li a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 0 7px;
        height: 0;
        overflow: hidden;
        transition: all 100ms ease;
    }

    .openMenu .headerWrapper .menu>ul li a {
        height: auto;
        padding: 5px 7px;
    }

    .openMenu .headerWrapper .menu {
        height: auto;
        padding: 5px 12px;
        border: 1px solid #66b145;
        box-shadow: 0 0 35px 0 rgba(81, 159, 64, 0.25);
    }
}

.footer {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
}

.inregistrare {
    padding-bottom: 0;
}

footer {
    background: url("../img/2023/bg-footer.png") no-repeat center center;
    background-size: 100% 100%;
    width: 100%;
}

.bgContainer {
    background: url("../img/2023/bg-footer-left.png") no-repeat left center,
        url("../img/2023/bg-footer-right.png") no-repeat right center;
    background-size: auto 80%, auto 50%;
}

.footerWrapper {
    /* border-top: 2px solid rgba(255, 255, 255, 0.25); */
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    border-left: none;
    border-right: none;
    padding: 50px 0 20px;
    margin-top: 50px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

@media (min-width: 992px) {
    .footerWrapper {
        padding: 50px 0 50px;
        margin-top: 50px;
    }
}

.footerWrapper .logo {
    display: inline-block;
    max-width: 20%;
    margin-bottom: 40px;
}

.footerMenu {
    padding: 30px 0 30px;
}

.footerMenu .menu ul {
    text-align: center;
    margin: 10px 0;
    padding: 0;
}

.footerMenu .menu ul li {
    display: inline-block;
    list-style: none;
    padding: 0 10px;
    position: relative;
}

.footerMenu .menu ul li:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background: #fff;
}

.footerMenu .menu ul li:first-of-type:before {
    display: none;
}

@media (max-width: 768px) {
    .footerMenu .menu ul li:before {
        display: none;
    }
}

.footerMenu .menu ul li a {
    color: #fff;
    display: inline-block;
    padding: 10px 5px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

@media (min-width: 768px) {
    .footerMenu .menu ul li a {
        font-size: 16px;
    }
}

.footerMenu .menu ul li a:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 300ms ease;
}

.footerMenu .menu ul li a:hover:after {
    width: 100%;
}

@media (max-width: 400px) {
    .footerMenu .menu ul {
        font-size: 0;
    }

    .footerMenu .menu ul li {
        padding: 0 5px;
        min-width: 33%;
        text-align: center;
    }
}

.formWrapper {
    background: #92bf40;
    color: #fff;
    box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.formWrapper,
.formWrapper .col-form {
    border-radius: 15px;
}

.formWrapper .text-container,
.formWrapper .form-container {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1140px) {

    .formWrapper .text-container,
    .formWrapper .form-container {
        padding: 30px;
    }
}

@media (min-width: 1360px) {

    .formWrapper .text-container,
    .formWrapper .form-container {
        padding: 50px 40px 50px 30px;
    }
}

.formWrapper .text-container>*,
.formWrapper .form-container>* {
    margin: auto 0;
}

@media (min-width: 1140px) {
    .formWrapper .text-container .text-wrapper {
        padding-left: 0;
    }
}

.formWrapper .col-form {
    background: #fff;
    color: #444;
}

.formWrapper button.btn-primary {
    width: 100%;
    display: block;
}

@media (min-width: 1140px) {
    .formWrapper button.btn-primary {
        margin-top: 40px !important;
    }
}

.formWrapper input,
.formWrapper textarea {
    background: #f2f8fc;
    border: none;
    resize: none;
    font-size: 14px;
}

.formWrapper textarea {
    min-height: 140px;
    line-height: 1.3;
}

.formWrapper label {
    color: #00384f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.formContainer {
    position: relative;
}

.formContainer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    background: #fff;
}

.formWrapper .price {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 1140px) {
    .formWrapper .price {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

.formWrapper .price>span {
    display: block;
}

.formWrapper .price .price-text {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.formWrapper .price .price-value {
    display: flex;
    flex-direction: row;
}

.formWrapper .price .price-value span {
    margin: auto 0;
}

.formWrapper .price .price-value .price-value-text {
    font-size: 60px;
    font-weight: 900;
    margin-right: 10px;
    line-height: 1;
}

.formWrapper .price .price-value .price-value-vat {
    font-size: 15px;
    font-weight: 600;
}

.formWrapper .price .currency {
    font-size: 20px;
    font-weight: 600;
}

.formWrapper h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.formWrapper p {
    font-size: 14px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .formWrapper .price .price-text {
        font-size: 22px;
    }

    .formWrapper .price .price-value .price-value-text {
        font-size: 100px;
    }

    .formWrapper .price .price-value .price-value-vat {
        font-size: 15px;
    }

    .formWrapper .price .currency {
        font-size: 24px;
    }

    .formWrapper h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .formWrapper p {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .formWrapper h2 {
        margin-bottom: 60px;
    }
}

.help-block {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.success-message h3 {
    font-weight: bold;
    color: #0070c0;
}

.timer {
    margin: 15px auto;
    font-family: sans-serif;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    width: 100%;
    max-width: 340px;
}

@media (min-width: 576px) {
    .timer {
        margin: 25px 0;
        justify-content: left;
    }
}

.timer .timer-outer {
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 26px;
    font-weight: 400;
    width: 23%;
    min-width: 23%;
    position: relative;
    margin-left: 2.5%;
    font-size: 24px;
    font-weight: bold;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 100%;
    background: #0070c0;
}

@media (min-width: 768px) {
    .timer .timer-outer {
        font-size: 34px;
    }
}

.timer .timer-outer .number {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
}

.timer .timer-outer .number span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.timer .timer-outer:first-of-type {
    margin-left: 0;
}

.timer .smalltext {
    color: #fff;
    font-size: 12px;
    display: block;
    padding: 0;
    width: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}

.timer #time-up {
    margin: 8px 0 0;
    text-align: left;
    font-size: 14px;
    color: #000000;
    letter-spacing: 1px;
}

/*
 .bdr1 {
    background-image: url("../img/2023/count-bg1.png");
}
.bdr2 {
    background-image: url("../img/2023/count-bg2.png");
}
.bdr3 {
    background-image: url("../img/2023/count-bg3.png");
}
.bdr4 {
    background-image: url(../img/2023/count-bg4.png);
} 
*/

.link-phone {
    display: inline-flex;
    flex-direction: row;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all 300ms ease;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.link-phone span {
    margin: auto 0;
}

.link-phone .icon {
    width: 40px;
    height: 43px;
    margin-right: 10px;
}

.link-phone .icon svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 300ms ease;
}

.link-phone .icon svg path {
    transition: all 300ms ease;
}

.link-phone:hover {
    text-decoration: none;
    color: #66b145;
    /* filter: drop-shadow(0 5px 5px rgba(255, 255, 255, 0.5)); */
}

.link-phone:hover svg path {
    fill: #66b145 !important;
}

.footerMenu .menu .lang {
    display: inline-block !important;
    vertical-align: middle;
}

.footerMenu .menu .lang a:hover:after {
    display: none !important;
}

.mapWrapper {
    width: 100%;
    color: #fff;
    box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 50px;
}

.mapWrapper iframe {
    width: 100%;
    max-height: 50vh;
    display: block;
}

.gallery .col-box {
    overflow: hidden;
    position: relative;
}

.gallery .box {
    display: block;
    width: 100%;
    padding-top: 60%;
    border-radius: 0px;
}

@media (max-width: 576px) {
    .gallery .col-box {
        background: #000;
    }
}

@media (min-width: 576px) {
    .gallery .box {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        background: #000;
    }

    .gallery .col-box {
        margin-bottom: 24px !important;
    }
}

@media (min-width: 992px) {
    .gallery .box {
        border-radius: 20px;
    }
}

.gallery .box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 102%;
    max-width: 102%;
    opacity: 0.75;
    transition: all 300ms ease;
}

.gallery .box:hover img {
    opacity: 1;
}