/*
 * Author: Pavel Vorona
 * Version:    1.
 * Description: Individual theme for Dimon.
 */
/*reset css*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.1;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    color: #000;
}

.wrapper {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.header-wrap {
    min-height: 100px;
    width: 100%;
}

.admin-bar .mobile-header {
    top: 50px;
}

body.freeze {
    overflow: hidden;
}

ul,
ol {
    list-style: none;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

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

img.alignright {
    margin-left: auto;
}

img.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

img.alignleft {
    margin-right: auto;
}

article > * + * {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

/*styles*/
:root {
    --main-color: #ADD8E6;
    --second-color: #7d9fab;
    --third-color: #FFA41D;
}

.container {
    max-width: 1280px;
    padding: 0 15px;
    margin: auto;
    width: 100%;
}

.myheader {
    position: fixed;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid var(--main-color);
}

.mymenu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.myheader.fix {
    position: fixed;
    width: 100%;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
    top: 0;
    background: var(--main-color);
    z-index: 100000000;
}

.mymenu nav {
    width: 480px;
}

.main-navigation ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.myheader.fix .main-navigation ul a {
    color: var(--main-color);
}

.myheader.fix .main-navigation ul a:hover {
    color: var(--second-color);
}

.logo {
    width: 300px;
    margin-right: 15px;
}

.logo img {
    width: 100%;
    height: auto;
}

main {
    padding-top: 90px;
}

.mymenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-left: 10px;
    font-size: 16px;
}

.main-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    list-style: none;
}

.main-navigation ul li {
    margin: 0 7px;

}

.main-navigation ul a {
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.home .main-navigation ul a {
    color: #000;
    font-size: 16px;
}

.main-navigation ul a:hover {
    color: var(--main-color);
}

.lang-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-wrap {
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    flex-direction: column;
    background: #fff;
    padding: 0px;
    width: 100%;
    text-align: center;
}

.lang-wrap > li {
    padding: 11px 0;
    display: block;
}

.current-lang span,
.lang-wrap > li a {
    display: block;
    color: var(--main-color);
    text-decoration: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    font-weight: 600;
    text-transform: uppercase;

}

.current-lang span {
    color: #000;
    margin-right: 15px;
}

.lang-wrap > li a:hover {
    color: #000;
}


.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a:after {
    font-family: "fontello";
    content: '\e804';
    display: inline-block;
    font-size: 20px;
    line-height: 14px;
    color: #000;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    vertical-align: -1px;
    margin-left: 5px;
}

.sub-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    padding-top: 5px;
    left: -14px;
    width: 230px;
    display: none !important;
}

.menu-item-has-children > a {
    pointer-events: none;
}

@media(min-width:700px) {
    .menu-item-has-children:hover .sub-menu {
        display: block !important;
    }

    .menu-item-has-children:hover > a {
        color: #000 !important;
    }

    .menu-item-has-children:hover: > a:after {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        color: #000;

    }
}


.sub-menu > li {
    margin: 0 !important;
}

.sub-menu > li > a {
    background: #fff;
    display: block;
    padding: 15px;
    font-size: 14px !important;
}

.sub-menu > li > a:hover {
    background: var(--main-color);
    color: #000;
}

.mobile-header,
.mobile-footer {
    display: none;
}

.mobile-menu-block-wrap {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-bottom: 60px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    right: -100%;
    z-index: 1000;

}

.mobile-menu-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 10;

}

.mobile-menu-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 90%;
    height: calc(100% - 30px);
    overflow: scroll;
    background: #fff;
    padding: 30px 30px 60px;
    z-index: 100;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.mobile-menu-block-wrap.animer {
    right: 0;
}

.mobile-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 30px;
}

.mobile-menu-block .mobile-menu-inner {
    padding: 15px 0;
}

.mobile-menu-block .mobile-menu-inner:not(:last-child) {
    border-bottom: 1px solid #DCDCDC;
}

.mobile-menu-inner > div {
    font-size: 18px;
    margin-bottom: 20px;
}

.mobile-menu-inner > div i {
    width: 35px;
    display: inline-block;
}

.regist-but {
    color: #000;
    padding: 10px 0;
    width: 190px;
    text-align: center;
    border: 1px solid #000;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer;
    margin: 0 30px;
    font-size: 18px;
    letter-spacing: 1px;
}

.regist-but:hover {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: #fff;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.banner {
    padding: 30px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.75);
}

.banner-title {
    font-size: 34px;
    font-weight: bold;
}

.banner-list li {
    margin: 15px 0;
    font-size: 22px;
}

.banner-list li:before {
    content: '\e811';
    font-family: "fontello";
    color: var(--main-color);
    margin-right: 15px;
}





.footer-form {
    text-align: center;
}

.footer-form .container {
    position: relative;
}

.footer-form .form-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-form .form-text {
    font-size: 20px;
    margin-bottom: 30px;
}

.form-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-form input {
    padding: 10px 15px;
    border: 1px solid var(--main-color);
    background: transparent;
}

.footer-form .wpcf7-submit {
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-left: 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.footer-form .wpcf7-submit:hover {
    color: #fff;
    background: var(--main-color);
}

.wpcf7-not-valid-tip {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
}

.wpcf7-response-output {
    position: absolute;
    width: 100%;
    padding: 10px !important;
}

footer {
    margin-top: 30px;
    padding: 30px;
    border-top: 1px solid var(--main-color);
}

.footer-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-menu ul li {

    font-size: 18px;
    font-weight: 700;
    margin: 0 30px;
}

.footer-menu ul li a {
    color: var(--main-color);
    text-decoration: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.footer-menu ul li a:hover {
    color: #000;
}

footer .soc-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 30px;
    margin-top: 45px;
}

footer .soc-block .soc {
    margin: 0 15px;
}

footer .soc-block .soc i {
    color: var(--main-color);
    margin: 0 30px;
}

footer .soc-block .soc i:hover {
    color: #000;
}

.copyright {
    margin-top: 45px;
    text-align: center;
}

.buttons {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.but {
    display: block;
    border: 1px solid var(--main-color);
    padding: 10px 15px;
    width: 150px;
    margin: 0 15px;
    cursor: pointer;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.but:hover {
    background: var(--main-color);
    color: #fff;
}

.pop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}

.pop-back {
    position: absolute;
    width: 100%;
    height: calc(100% + 60px);
    background: rgba(0, 0, 0, .6);
    top: -50px;
    left: 0;
    z-index: 1000;
}

.pop-wrap {
    background: #fff;
    position: absolute;
    width: 500px;
    height: 400px;
    top: calc(50% - 260px);
    left: calc(50% - 250px);
    border: 1px solid var(--main-color);
    border-radius: 10px;
    z-index: 10000;
}

.myform form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 90px;
    height: 250px;
}

.myform input {
    padding: 10px 15px;
    border: 1px solid var(--main-color);
}

.submit-button {
    background: var(--main-color);
    padding: 10px 30px;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border: 1px solid transparent;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    letter-spacing: 1px;
    min-width: 180px;
}

.submit-button:hover {
    background: transparent;
    color: #000;
    border: 1px solid var(--main-color);
}

.pop-close {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 30px;
    color: var(--main-color);
    cursor: pointer;
}

.submit-container {
    display: none;
}

section {
    margin: 45px 0;
}

.form-sec {
    background: rgb(173, 216, 230);
    background: linear-gradient(90deg, rgba(173, 216, 230, 1) 0%, rgba(173, 216, 230, 0.7) 40%, rgba(173, 216, 230, 0.6) 60%, rgba(173, 216, 230, 0.9) 85%, rgba(173, 216, 230, 1) 100%);
}

.form-sec .container {
    padding: 90px 15px 135px;
    position: relative;
}

.title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.sub-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;

}

.form-sec .title,
.form-sec .sub-title {
    margin-bottom: 30px;
}

.form-image {
    position: absolute;
    left: 15px;
    top: 0;
    width: calc(100% - 30px);
    height: 100%;
    z-index: -1;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 80%;
}

.form-fields {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-fields input {
    padding: 12px;
    height: 46px;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #000;
    align-items: center;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
}

.send-button input {
    padding: 12px 30px;
    cursor: pointer;
    background: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: .4s;
}

.send-button input:hover {
    color: #fff;
    background: #000;
}

.wpcf7-not-valid-tip {
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #fff;
    color: #fff;
    width: calc(100% - 30px);
    margin: 45px 0;
}

.wpcf7-spinner {
    display: none;
}

.price-table {
    text-align: left;
    width: 100%;
}

.price-table tbody tr:not(:first-child) {
    background: var(--second-color);
    color: #fff;
}

.price-table tbody th {
    font-size: 18px;
    margin-bottom: 15px;
}

.price-table tbody tr:nth-child(even) {
    background: var(--main-color);
    color: #000;
}

.price-table td {
    padding: 8px;
}

.why-block {
    width: 30%;
    padding: 30px 15px 45px;
    margin: 25px 15px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
}

.why-icon {
    font-size: 80px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.why-text {
    font-size: 20px;
    font-weight: bold;
}

.why-sec .row {
    justify-content: space-between;
}

.edit-sec .title {
    font-size: 32px;
    text-align: left;
}

.edit-sec p {
    font-size: 18px;
    margin-bottom: 30px;
}

.edit-sec img {
    margin-bottom: -60px;
}

.col-6 {
    width: 50%;
    padding: 15px;
}

.phones {
    list-style: none;
}

.phones li {
    margin: 10px;
}

.phones a {
    color: #000;
    text-decoration: none;
    transition: .4s;
}

.phones a:hover {
    color: var(--main-color);
}

.phones i {
    color: var(--main-color);

}

.gal-wrap {
    padding: 30px;
    position: relative;
}

.gal img {
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.custom-nav button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 40px;
    position: absolute;
    top: calc(50% - 20px);
    transition: .4s;
}

.custom-nav button:hover {
    color: var(--main-color);
}

.custom-nav .owl-prev {
    left: -25px;
}

.custom-nav .owl-next {
    right: -25px;
}

.cont-sec .phones {
    margin-bottom: 30px;
}

.cont-sec .phones a {
    text-decoration: underline;
}

.cont-sec i {
    font-size: 22px;
    color: var(--main-color);
}

.cont-sec .phones li {
    margin: 15px 0;
    font-size: 20px;
}

.email {
    margin-left: 3px;
}

.email a {
    font-size: 20px;
    color: #000;
    transition: .4s;
}

.email a:hover {
    color: var(--main-color);
}

.copy {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}
.wpcf7-not-valid-tip,
.wpcf7-response-output
{
    color: red !important;
}
@media(max-width:900px) {
    .col-6
    {
        width: 100%;
    }
    .gal img
    {
        height: 300px;
    }
    .cont-sec iframe
    {
        width: 100%;
        height: 300px;
    }
    .why-block
    {
        width: calc(50% - 10px);
        padding: 15px;
        margin: 5px;
    }
    .why-icon
    {
        font-size: 60px;
    }
    .why-text
    {
        font-size: 14px;
    }
    body
    {
        padding-top: 40px;
    }
    .banner
    {
        padding: 15px;
        flex-wrap: wrap;
    }
    .banner-cont,
    .banner-img
    {
        width: 100%;
    }
    .title
    {
        font-size: 32px;
    }
    .sub-title
    {
        font-size: 20px;
    }
    .price-table tbody th
    {
        font-size: 12px;
    }
    .price-table td
    {
        font-size: 14px;
        padding: 4px;
    }
    .form-fields
    {
        flex-wrap: wrap;
    }
    .form-fields input
    {
        width: 100%;
        margin-bottom: 30px;
    }
    .send-button
    {
        margin: auto;
    }
    header .phones li
    {
        margin: 10px 0 10px 62px;
    }
    .form-image
    {
        display: none;
    }
    .form-sec .container
    {
        padding: 15px;
    }
    .copyright {
        font-size: 12px;
        margin-top: 30px;
    }

    .footer-form .form-title {
        font-size: 32px;
    }

    .footer-menu ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-menu ul li {
        margin: 10px 0;
        text-align: center;
        width: 50%;
    }

    .main-navigation ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-form input {
        max-width: 300px;
        margin: 15px auto;
    }

    .footer-form .wpcf7-submit {
        margin: auto;
    }

    .wpcf7-spinner {
        position: absolute;
        bottom: 20px;
        right: 30px
    }

    .sub-menu {
        position: static;
    }

    .sub-menu.act {
        display: block !important;
    }

    .pop-wrap {
        width: 300px;
        height: 400px;
        top: calc(50% - 170px);
        left: calc(50% - 150px);
        border: 1px solid var(--main-color);
        border-radius: 10px;
        z-index: 10000;
    }

    .about-title {
        position: static;
        font-size: 30px;
        text-align: center;
    }

    .about-text {
        margin-top: 15px;
    }

    .product-name {
        font-size: 36px;
    }

    .collection-query .col-4:last-child,
    .col-4 {
        width: 100%;
    }

    .banner-text {
        font-size: 32px;
        line-height: 42px
    }

    .admin-bar .mobile-header {
        top: 0px;
        border-radius: 0;
        width: 100%;
        position: fixed;
        background: #fff;
        border-bottom: 1px solid var(--main-color);
    }

    .mobile-header {
        top: 0;
    }

    .regist-but {
        color: #000;
        border: 1px solid #000;
        font-size: 14px;
        margin: 0;
        width: 150px;
    }

    .header-wrap {
        min-height: 0px;
    }


    .mobile-header.fix {
        padding: 0px 15px;
        position: fixed;
        width: 100%;
        -webkit-transition: all .5s linear;
        -o-transition: all .5s linear;
        transition: all .5s linear;
        top: 0;
        background: var(--main-color);
        z-index: 100000000;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .myheader {
        display: none;
    }


    .mobile-level-list li {
        margin: 15px 0 0 30px;
    }

    .main-navigation ul li {
        margin: 10px 0 10px 70px;
    }

    .mobile-menu {
        font-size: 24px;
        color: #000;
        padding: 10px 5px;
    }

    .langs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        list-style: none;
    }

    .langs a,
    .langs span {
        display: inline;
        text-decoration: none;
        font-size: 20px;
        margin: 0 10px;
        color: var(--main-color);
    }

    .langs span {
        color: var(--second-color);
        font-weight: bold;
    }

    .mob-logo img {
        width: 100px;
    }

    .mobile-footer {
        display: block;
    }

    .mobile-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: #fff;
        max-width: 100%;
        width: 100%;
        position: fixed;
        z-index: 100;
        border-bottom: 1px solid var(--main-color);
    }
}
