@charset "utf-8";
/* CSS Document */

:root {
    --color_green: #8cbf3f;
    --color_blue: #004a9a;
    --color_gray: #4c4e4d;
}

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

@font-face {
    font-family: rubik;
    src: url("../fonts/Rubik-Bold.ttf");
    font-weight: bold;
    font-display: swap;
}

html {
    height: 100%;
}

body {
    height: 100%;
    padding: 0px;
    position: relative;
    margin: 0px;
    font-size: 16px;
    font-family: rubik, Serif;
    overflow-x: hidden;
    scroll-behavior: none;
}

a, p, pre {
    text-decoration: none;
    font-family: rubik;
    font-size: 1em;
    color: var(--color_gray);
}

pre {
    white-space: pre-wrap;
}

.contact_box {
    z-index: 3;
}

h3 {
    line-height: 20px;
    font-family: rubik, Serif;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    margin: 30px auto;
    width: 100%;
    max-width: 1170px;
    padding: 0 10px;
    box-sizing: border-box;
    color: var(--color_gray);
    z-index: 4;
    position: relative;
}

iframe {
    border-radius: 0 !important;
}

.dis_b {
    display: block !important;
}

.dis_n {
    display: none !important;
}

.strip_line {
    height: 1px;
    width: 100%;
    background-color: #ccc;
    margin: 100px auto;

}

.bold {
    font-weight: bold;
}

/*ACCESSIBILITY*/

.accessibility_btn {
    height: 50px;
    width: 50px;
    position: fixed;
    background-color: var(--color_gray);
    left: 0;
    bottom: 0;
    border-top: 1px solid white;
    border-right: 1px solid white;
    cursor: pointer;
    z-index: 50;
}

.accessibility_btn img, .accessibility_open div img {
    width: 30px;
    height: 30px;
    margin: 10px;
}

.accessibility_btn:hover {
    background-color: #444;
    transition: 0.2s;
}

.accessibility_open {
    width: 50px;
    height: 255px;
    position: fixed;
    border-top: 1px solid white;
    border-right: 1px solid white;
    left: 0;
    bottom: 50px;
    background-color: #222;
    z-index: 49;
    display: none;
}

.accessibility_open div {
    height: 50px;
    width: 50px;
    border-top: 1px solid white;
    cursor: pointer;
}

.accessibility_open > div:nth-child(1) {
    background-color: #363232;
    border-top: none;
}

.accessibility_open div:hover {
    background-color: #444;
    transition: 0.2s;
}

.show_accessibility {
    display: block;
    text-transform: none;
    transition: .4s ease-in-out;
}

.accessibility_cotainer {
    width: 100%;
}

.accessibility_cotainer p {
    max-width: 1170px;
    width: 90%;
    box-sizing: border-box;
    line-height: 24px;
    margin: auto;
    text-align: center;
    padding: 20px 20px 0;
}

.accessibility_cotainer p.title {
    font-family: rubik, Serif;
    font-weight: bold;
    font-size: 2em;
}

/*END ACCESSIBILITY*/

/*CONTENT*/

.content {
    min-height: 100%;
    background-color: white;
}

.content-inside {
    padding-bottom: 50px;
}

/*CONTENT*/

/*FOOTER*/

footer {
    height: 50px;
    margin-top: -50px;
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.powered a {
    width: 100%;
    height: 50px;
    color: black;
    line-height: 48px;
    text-align: center;
    font-size: 0.7em;
    margin: auto;
    display: block;
}

/*FOOTER*/

/*COVER*/

.mobile_img_play {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 101;
    background-image: url("/images/cover.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#play_video {
    position: absolute;
    height: 56px;
    width: 56px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 4px;
    z-index: 102;
    border-radius: 50%;
}

#myVideo {
    display: none;
}

#play_video img {
    width: 56px !important;
    height: 56px !important;
}

.cover {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover_content {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 2em;
}

.cover_content p {
    color: white;
    text-shadow: 0 0 47px #0000007d;
}

.cover_content span {
    font-weight: bold;
}

.cover_bg {
    width: 100%;
    height: 100%;
    background-color: #004a9abd;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.cover video {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.cover button {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    height: 56px;
    width: 56px;
    background-color: rgba(34, 34, 34, 0.64);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover button img {
    width: 24px;
    height: 24px;
}

/*END COVER*/

/*INDEX*/

/*about_strip*/
.about_strip {
    width: 100%;
}

.about_strip pre, .about_strip p {
    max-width: 1170px;
    width: 90%;
    box-sizing: border-box;
    line-height: normal;
    margin: auto;
    text-align: center;
    padding: 0 20px;
    white-space: pre-wrap;
    font-size: 1.1em;
}

.about_strip a {
    font-weight: bold !important;
    color: var(--color_blue) !important;
}

.about_strip button {
    /*height: 44px;*/
    /*width: 140px;*/
    display: block;
    /*margin: 20px auto;*/
    border: none;
    color: white;
    font-family: rubik;
    font-weight: bold;
    background-color: var(--color_blue);
    border-style: double;
    border-width: 4px 4px 4px 4px;
}

.about_strip button:hover {
    opacity: 0.8;
}

/*specialization_strip*/
.specialization_strip {
    width: 90%;
    max-width: 1170px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

#tree, #one {
    flex-direction: column-reverse;
}

/*.specialization_strip{*/

/*}*/
.specialization_pic {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 620px;*/

    /*overflow: hidden;*/
    /*max-height: 650px;*/
}

.specialization_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
}

.owl-two {
    width: 80%;
    margin: auto;
    /*height: 620px;*/
}

.owl-two .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.specialization_pic img {
    width: 80%;
    /*margin: 10px auto;*/
    object-fit: cover;
    height: 100%;
    border-radius: 16px;

    /*outline-offset: 2px;*/
    /*outline: 2px solid var(--color_green);*/
}

h2 {
    color: var(--color_blue);
    font-size: 1.2em;
    font-family: rubik, Serif;
    font-weight: bold;
    margin: 10px 60px;
    border-bottom: 2px solid var(--color_blue);
    padding-bottom: 6px;
    width: fit-content;
    text-align: right;
}

.specialization_text p {
    margin: 6px auto;
    width: 80%;
}

.specialization_text button {
    height: 44px;
    width: 140px;
    display: block;
    margin: 20px 10%;
    border: none;
    color: white;
    font-family: rubik;
    font-weight: bold;
    background-color: var(--color_blue);
    border-style: double;
    border-width: 4px 4px 4px 4px;
}

.specialization_text button:hover {
    opacity: .8;
}


/*banks_strip*/
.banks_strip {
    width: 100%;
    overflow: hidden;
}

.banks_strip .owl-one .item {
    margin: 50px auto;
}

.owl-one .item {
    width: 80%;
    position: relative;
    margin: auto 10%;
    height: 150px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #ccc;
    box-sizing: border-box;
    overflow: hidden;
    background-color: white;
}

.owl-one .item img {
    width: 80% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*what_we_do_strip*/
.what_we_do {
    width: 90%;
    justify-content: space-between;
    display: flex;
    max-width: 1170px;
    margin: 50px auto 0;
    flex-wrap: wrap;
}

.what_we_do div {
    width: 100%;
}

.what_we_do img {
    width: 120px;
    margin: 30px auto;
    display: block;
}

.what_we_do p.title {
    font-size: 1.2em;
    font-family: rubik, Serif;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 8px;
}

.what_we_do p {
    text-align: center;
    line-height: 1.3em;
    width: 90%;
    margin: auto 5%;
}

.what_we_do a {
    font-size: 1.2em;
    font-family: rubik, Serif;
    font-weight: bold;
    color: var(--color_blue);
    text-align: center;
    display: block;
    margin: 20px auto;
}

.what_we_do a:hover {
    opacity: .7;
    transition: .2s;
}


/*contact_strip*/
.contact_strip {
    width: 90%;
    max-width: 1170px;
    margin: auto;
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.contact_strip form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact_strip div {
    width: 100%;
    margin: 20px auto;
    max-width: 768px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact_strip div a {
    display: flex;
    width: 100%;
}

.contact_strip div a:hover {
    opacity: .7;
    transition: .2s;
}

.contact_strip div img {
    width: 24px;
    height: 24px;
    margin-left: 20px;
}

.contact_strip div p {
    padding-bottom: 20px;
    line-height: 20px;
}

.contact_strip div p.title {
    font-family: rubik, Serif;
    font-weight: bold;
    font-size: 2em;
}

.contact_strip div p.sec_title {
    font-size: 1.6em;
    line-height: 26px;
    padding-bottom: 10px;
}

.contact_strip input, .contact_strip textarea {
    width: 100%;
    font-family: rubik, Serif;
    font-size: 1em;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 11px 10px;
    margin: 10px 0;
    text-align: right;
}

.contact_strip textarea {
    height: 120px;
}

.contact_strip button {
    height: 44px;
    width: 140px;
    display: block;
    margin: 20px auto;
    border: none;
    color: white;
    font-family: rubik, Serif;
    font-weight: bold;
    background-color: var(--color_blue);
    border-style: double;
    border-width: 4px 4px 4px 4px;
}

.contact_strip button:hover {
    opacity: 0.8;
}

.info_strip div.info_strip_center div.contact_strip div:first-child {
    display: none;
}

/*bank_authorization*/

.bank_authorization {
    width: 100%;
    background-color: var(--color_gray);
    padding: 10px 0;
}

.bank_authorization p {
    color: white;
    text-align: center;
    margin: auto;
    width: 90%;
    line-height: 1.3em;

}

.bank_authorization img {
    width: 120px;
    display: block;
    margin: 30px auto;
}

.owl-one.owl-theme.cost.owl-rtl.owl-loaded.owl-drag {
    height: 250px;
}

.owl-one.owl-theme.cost.owl-rtl.owl-loaded.owl-drag div.owl-stage-outer div.owl-stage {
    padding: 50px 0;
}

.gratitude {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gratitude button {
    height: 44px;
    width: 140px;
    display: block;
    margin: 20px auto;
    border: none;
    border-top-style: none;
    border-top-width: medium;
    border-right-style: none;
    border-right-width: medium;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-left-style: none;
    border-left-width: medium;
    color: white;
    font-family: rubik, Serif;
    font-weight: bold;
    background-color: var(--color_blue);
    border-style: double;
    border-width: 4px 4px 4px 4px;
}

.gratitude button:hover {
    opacity: .8;
}

/*INDEX*/

/*ABOUT*/

.about_box {
    width: 90%;
    max-width: 1170px;
    margin: auto;
}

.about_box p {
    padding-bottom: 20px;
    line-height: 22px;
    text-align: center;
}

.about_box p.title {
    font-size: 1.6em;
    line-height: 26px;
    padding-bottom: 10px;
}

.testimonials_box {
    width: 100%;
    background-color: var(--color_gray);
    padding: 1px 0 20px;
}

.testimonials_box_flex {
    display: flex;
    width: 100%;
    max-width: 1170px;
    margin: auto;
    flex-direction: column;
}

.testimonials_box_flex div {
    width: 100%;
    padding: 0 20px 20px;
    box-sizing: border-box;
}

.testimonials_box_flex div span {
    width: 100%;
    /*background-image: url("../images/bg.png");*/
    background-color: #f8f8f8;
    border-radius: 8px;
    display: block;
    padding: 15px;
    box-sizing: border-box;
}

.testimonials_box_flex div span p {
    text-align: right;
    padding: 0;
    margin: 0;
    font-size: .9em;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonials_box_flex div figure {
    height: 30px;
    width: 20px;
    background-image: url("../images/bg2.png");
    margin-right: 40px;
}

.customers_box {
    width: 100%;
    margin: 30px auto;
    overflow: hidden;
}

.customers_box p {
    max-width: 1170px;
    width: 90%;
    box-sizing: border-box;
    line-height: 24px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

/*END ABOUT*/

/*CONTACT*/

.message_sent {
    background-color: rgb(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.message_sent_box {
    width: 400px;
    max-width: 90%;
    background-image: url("../images/bg.png");
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.message_sent_box p {
    text-align: center;
    font-size: 1.4em;
    padding-bottom: 20px;
    display: none;
}

.message_sent_box button {
    height: 44px;
    width: 140px;
    display: block;
    margin: auto;
    border: none;
    color: white;
    font-family: rubik, Serif;
    font-weight: bold;
    background-color: var(--color_blue);
    border-style: double;
    border-width: 4px 4px 4px 4px;
}

.text_title {
    width: 100%;
    margin: 20px auto 0;
    max-width: 1170px;
    padding: 20px;
    box-sizing: border-box;
}

.text_title p {
    line-height: 20px;
    font-family: rubik, Serif;
    font-weight: bold;
    font-size: 2em;
}

.contact_map {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto 20PX;
    padding: 0 20px;
    box-sizing: border-box;
    height: 300PX;
}

.contact_box {
    width: 100%;
    max-width: 1170px;
    margin: auto;
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.contact_box div {
    width: calc(100% - 40px);
    margin: 20px;
}

.contact_box div p {
    padding-bottom: 20px;
    line-height: 20px;
}

.contact_box div p.title {
    font-family: rubik;
    font-weight: bold;
    font-size: 2em;
}

.contact_box div p.sec_title {
    font-size: 1.6em;
    line-height: 26px;
    padding-bottom: 10px;
}

input, .contact_box div textarea {
    width: 100%;
    font-family: rubik, Serif;
    font-size: 1em;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 11px 10px;
    margin: 10px 0;
    text-align: right;
}

.contact_box div button {
    height: 44px;
    width: 140px;
    display: block;
    margin: 20px auto;
    border: none;
    color: white;
    font-family: rubik;
    font-weight: bold;
    background-color: var(--color_blue);
    border-style: double;
    border-width: 4px 4px 4px 4px;
}

.contact_box div button:hover {
    opacity: 0.8;
}

.info_strip div.info_strip_center div.contact_box div:first-child {
    display: none;
}

/*END CONTACT*/

.youtube_box {
    display: flex;
    width: calc(100% - 40px);
    max-width: 1600px;
    margin: 30px auto;
    flex-wrap: wrap;
}

.youtube_box iframe {
    width: 100%;
    margin-bottom: 30px;
    height: 50vw;
}

.cat_products {
    margin: 10px 60px;
    width: calc(100% - 120px) !important;
}

.cat_products__item {
    display: flex;
    width: 100% !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    border-bottom: 2px solid var(--color_green);
    padding-top: 30px;
}

.cat_products__title {
    color: var(--color_green);
    font-weight: bold;
}

.cat_products__img, .cat_products__img img {
    height: 120px !important;
}

.cat_products__img:hover img {
    transition: .3s;
    transform: scale(2);
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border: 2px solid white
}

.cat_products__text {
    display: flex;
    flex-direction: column;
    justify-content: end !important;
    /*width: calc(100% - 140px) !important;*/
}

.cat_products__text p, .cat_products__title p, .cat_products__desc p {
    margin: 6px 0 !important;
}

.owl-two .item {
    /*height: 620px;*/
    /*width: 80%;*/
    overflow: hidden;
    /*border-radius: 16px;*/
    padding: 0;
}

.owl-nav img {
    width: 36px;
    height: 36px;
}

.owl-next {
    left: -18px;
    position: absolute;
    top: calc(50% - 18px);
    z-index: 10;
    transition: .3s;
}

.owl-prev {
    right: -18px;
    position: absolute;
    top: calc(50% - 18px);
    z-index: 10;
    transition: .3s;
}

.owl-prev:hover, .owl-next:hover {
    transform: scale(1.1);
}

.owl-one.owl-carousel.owl-theme.owl-rtl.owl-loaded.owl-drag div.owl-nav button.owl-next {
    left: 18px;
}


.owl-one.owl-carousel.owl-theme.owl-rtl.owl-loaded.owl-drag div.owl-nav button.owl-prev {
    right: 18px;
}

.urban_logo {
    width: 70px;
}

.loading {
    width: 150px !important;
    display: none;
    margin: auto;
}
.loading img{
    width: 150px !important;
    height: 100px !important;
    margin: auto !important;
}
@media (min-width: 480px) {
    .catalog_box_flex div {
        width: 46%;
        margin: 2%;
    }
}

@media (min-width: 600px) {
    .cover_content {
        font-size: 4em;
    }

    .cover {
        height: 450px;
    }

    .news_strip_flex {
        flex-direction: row;
    }

    .news_strip_flex div {
        padding-top: 20%;
        margin: 2%;
    }

    .info_strip_categories {
        width: 100%;
        max-width: 1170px;
        margin: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        background-color: var(--color_gray);
    }

    .info_strip_categories a {
        width: 30%;
        display: block;
        text-align: center;
        padding: 8px 0;
        margin: 10px 1.5%;
        color: white;
        font-family: rubik;
        font-weight: bold;
        border: 1px solid white;
    }

    .testimonials_box_flex {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonials_box_flex div {
        width: 50%;
    }

    .customers_box_flex div {
        width: 30%;
        margin: 2% 1.6%;
    }

    .product_box_flex {
        justify-content: space-between;
    }

    .product_box_flex div {
        width: 48%;
    }
}

@media (min-width: 768px) {
    .powered a {
        height: 90px;
    }

    #tree, #one {
        flex-direction: unset;
    }

    #myVideo {
        display: block;
    }

    .mobile_img_play {
        display: none;
    }

    .youtube_box {
        justify-content: space-between;
    }

    .youtube_box iframe {
        width: 48%;
        height: 25vw;
    }

    .what_we_do div {
        width: 24%;
    }

    .contact_strip div a {
        width: unset;
        margin: unset;
    }

    html body div.content div.content-inside div.info_strip div.info_strip_center div.contact_box div:first-child {
        display: block;
    }

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

    .contact_box div {
        width: calc(40% - 40px);
        margin: 20px;
    }

    .contact_box > div:nth-child(2) {
        width: calc(60% - 40px);
        margin: 20px;
    }

    .about_box {
        flex-direction: row;
    }

    .about_box div {
        width: calc(50% - 40px);
        margin: 20px;
    }

    .customers_box_flex div {
        width: 23%;
        margin: 1%;
    }

    .catalog_box_flex div {
        width: 30%;
        margin: 1.6%;
    }

    .contact_box div button {
        margin: 20px 0;
    }

    /*specialization_strip*/
    .specialization_strip {
        flex-direction: row;
    }

    .specialization_pic, .specialization_text {
        width: 50% !important;
    }

}

@media (min-width: 992px) {
    .cover_content {
        font-size: 6em;
    }

    .cover {
        height: 600px;
    }

    .contact_strip input {
        width: 32%;
    }

    .sub_menu {
        display: block !important;
    }

    iframe {
        border-radius: 0 10px 10px 0;
    }

    .contact_box div {
        width: calc(30% - 40px);
        margin: 20px;
    }

    .contact_box > div:nth-child(2) {
        width: calc(70% - 40px);
        margin: 20px;
    }

    .testimonials_box_flex div {
        width: 33%;
    }

    .main_cover, .container_main_bg, .bg_video {
        height: 400px;
    }

    .catalog_box_flex div {
        width: 23%;
        margin: 1%;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 4em;
        text-align: center;
        color: var(--color_gray);
        font-weight: bold;
        max-width: 900px;
        margin: 220px auto 0;
        text-shadow: 2px 2px white;

    }
}
