/*
Theme Name: DoCode BASE
Version: 1.0
Author URI: https://docode.pro
*/


:root {
	--bl: #000;
	--wh: #fff;
	--red: #ff684a;
	--gray: #eee;
	--d-gray: #b5b5b5;
}

:focus {
	outline: none;
}

::placeholder{
	color: var(--bl);
}

html{
	scroll-behavior: smooth; 
}

[type=button]:not(:disabled), 
[type=reset]:not(:disabled), 
[type=submit]:not(:disabled), 
button:not(:disabled) {
    transition: 0.3s;
    cursor: pointer;
}

p, ul {
    margin-bottom: 20px;
}

.color-red {
    color: var(--red);
}

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

iframe {
    max-width: 100%;
}

img.to_svg{
	display: none;
}

/* Base */
body {
    line-height: 1.7;
    color: #4d4d4d;
    font-weight: 400;
    font-size: 1rem;
    font-family: "Roboto Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

::-moz-selection {
    background: #000;
    color: #fff;
}

::selection {
    background: #000;
    color: #fff;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
a:hover {
    text-decoration: none;
}

.text-black {
    color: #000 !important;
}

.bg-black {
    background: #000 !important;
}

.line-height-sm {
    line-height: 1.3;
}

.line-height-xs {
    line-height: 1;
}

.site-wrap:before {
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    background: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.digits_desc {
    margin: 20px 0 0px;
    text-align: justify;
}

ul.boxes {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

ul.boxes li {
    background: var(--wh);
    padding: 120px 20px 10px;
    flex: 30%;
    margin: 0 15px 30px;
    text-align: center;
    position: relative;
    border: 1px solid var(--d-gray);
    display: flex;
    flex-direction: column;
}

.boxes_text {
    margin: auto;
}

ul.boxes li img {
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
}

section#about h2 {
    font-size: 30px;
    margin: 40px 0 40px;
    text-align: center;
}

.digits_gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}

.gallery_item {
    position: relative;
    width: calc(25% - 30px);
    margin: 0 15px 30px;
    border: 1px solid var(--gray);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.gallery_item img {
    max-height: 200px;
    margin-bottom: 20px;
    width: auto;
    object-fit: contain;
}

.gallery_txt {
    margin: auto;
    line-height: 130%;
}

.offcanvas-menu .site-wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    overflow: hidden;
}
.offcanvas-menu .site-wrap:before {
    opacity: 1;
    visibility: visible;
}

.btn {
    position: relative;
    top: 0;
}
.btn:hover, .btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.btn.btn-secondary {
    background-color: #e6e7e9;
    border-color: #e6e7e9;
    color: #000;
}
.btn.btn-sm {
    font-size: 0.9rem;
}
.btn:hover {
    -webkit-box-shadow: 0 5px 20px -7px rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 5px 20px -7px rgba(0, 0, 0, 0.9) !important;
}
.btn.btn-white.btn-outline-white {
    border-color: #fff;
    background: transparent;
    color: #fff;
}
.btn.btn-white.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

.bg-black {
    background: #000;
}

.form-control {
    height: 47px;
}
.form-control:active, .form-control:focus {
    border-color: var(--red);
}
.form-control:hover, .form-control:active, .form-control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.site-section {
    padding: 4em 0 3em;
}
@media (min-width: 768px) {
    .site-section {
        padding: 4em 0 3em;
    }
}

.service_list:nth-child(3) .service_txt, .service_list:nth-child(4) .service_txt {
    order: 0;
}

.service_list:nth-child(3) .service_img, .service_list:nth-child(4) .service_img {
    order: 1;
}

.site-section.site-section-sm {
    padding: 4em 0;
}

.site-section-heading {
    font-size: 30px;
    color: #25262a;
    position: relative;
}
.site-section-heading:before {
    content: "";
    left: 0%;
    top: 0;
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--red);
}
.site-section-heading.text-center:before {
    content: "";
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--red);
}

section.main_content {
    padding-top: 70px;
}

.preim_card {
    display: flex;
    flex-direction: column;
    background: var(--wh);
    padding: 40px 20px 20px;
    width: 100%;
    margin-bottom: 30px;
    align-items: center;
}

section#preim {
    background: var(--gray);
}

.preim_text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.preim_text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.preim_text {
    width: 100%;
}

.preim_text ul li:before {
    content: '';
    display: block;
    position: absolute;
    background: url(/wp-content/themes/docode_theme/icons/checkico.svg);
    width: 20px;
    height: 20px;
    left: 0;
    top: 1px;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
}

.preim_title {
    margin: 20px 0;
    font-size: 24px;
    color: var(--bl);
    text-align: center;
}

.client_card {
    margin: 0 15px 30px;
    width: calc(25% - 30px);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    border: 1px solid;
    filter: grayscale(1);
    transition: 0.3s;
}

.client_card img {
    position: absolute;
    width: 60%;
    height: 70%;
    object-fit: contain;
}

.client_card:hover {
    filter: grayscale(0);
}

section#otz {
    background: var(--d-gray);
    color: var(--wh);
}

.otz_desc {
    width: 70%;
    margin: auto;
}

.otz_card {
    background: var(--wh);
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px 30px;
}

.otz_card img {
    position: absolute;
    width: 90%;
    height: 90%;
    object-fit: contain;
}

body .owl-theme .owl-dots {
    position: absolute;
    bottom: -20px;
    width: 100%;
}

.site-footer {
    padding: 1em 0;
    background: #eee;
    line-height: 1;
    margin-top: 2rem;
}
.site-footer .footer-heading {
    font-size: 20px;
}
.site-footer a {
    color: #000;
    display: block;
}

.site-footer a:hover {
    color: var(--red);
}

.site-footer ul li {
    margin-bottom: 10px;
}

.bg-text-line {
    display: inline;
    background: #000;
    -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
    box-shadow: 20px 0 0 #000, -20px 0 0 #000;
}

.bg-image {
    background-size: cover;
    background-repeat: no-rpeeat;
    overflow: hidden;
    background-position: center center;
}
.bg-image.center {
    background-position: top center;
}
.bg-image.fixed {
    background-position: fixed !important;
}
.bg-image.overlay, .bg-image.overlay-primary, .bg-image.overlay-info, .bg-image.overlay-success, .bg-image.overlay-warning {
    position: relative;
}
.bg-image.overlay:before, .bg-image.overlay-primary:before, .bg-image.overlay-info:before, .bg-image.overlay-success:before, .bg-image.overlay-warning:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.bg-image.overlay:before {
    background: rgba(0, 0, 0, 0.4);
}
.bg-image.overlay-primary:before {
    background: rgba(242, 58, 46, 0.9);
}
.bg-image.overlay-info:before {
    background: rgba(23, 162, 184, 0.9);
}
.bg-image.overlay-success:before {
    background: rgba(40, 167, 69, 0.9);
}
.bg-image.overlay-success:before {
    background: rgba(238, 198, 10, 0.9);
}

/* Navbar */
.site-navbar-wrap {
    position: sticky;
    z-index: 99;
    width: 100%;
    top: 0;
    border-bottom: 1px solid var(--bl);
}
.site-navbar-wrap a {
    color: #000;
}

.header_cont svg {
    width: 12px;
    height: 12px;
    margin-right: 0.3rem;
}

.header_cont svg path {
    fill: #000;
    transition: 0.3s;
}

.header_cont:hover svg path {
    fill: var(--red);
}

a.header_cont:hover {
    color: var(--red);
}

.site-navbar-wrap .site-navbar-top {
    font-size: 0.8rem;
}

.social_icon svg {
    width: 12px;
    height: 12px;
}

.social_icon svg path {
    fill: rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.social_icon:hover svg path {
    fill: var(--red);
}

.site-navbar-top, .site-navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-navbar {
    margin-bottom: 0px;
    width: 100%;
    border-bottom: none;
    background: var(--gray);
}
.site-navbar .site-logo {
    font-weight: 200;
}

.site-navbar .site-logo img {
    width: 50px;
}

.site-navbar .site-logo a {
    font-weight: 200;
    color: #000;
}
.site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
}
.site-navbar .site-navigation .site-menu .active>a {
    color: #000;
}
.site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    font-size: 15px;
    display: inline-block;
}
.site-navbar .site-navigation .site-menu>li {
    display: inline-block;
    padding: 10px 5px;
}
.site-navbar .site-navigation .site-menu>li>a {
    padding: 10px 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    text-decoration: none !important;
}
.site-navbar .site-navigation .site-menu>li>a:hover {
    color: var(--d-gray);
}
.site-navbar .site-navigation .site-menu>li:last-child {
    padding-right: 0;
}
.site-navbar .site-navigation .site-menu>li:last-child>a {
    padding-right: 0;
}

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

.site-navbar .site-navigation .site-menu .menu-item-has-children>a:before {
    position: absolute;
    content: "";
    font-size: 16px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    height: 10px;
    background: var(--bl);
    clip-path: polygon(0 0, 100% 0, 50% 80%);
}

.site-navbar .site-navigation .site-menu .menu-item-has-children .sub-menu {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.25);
    border-left: 1px solid #edf0f5;
    border-right: 1px solid #edf0f5;
    border-bottom: 1px solid #edf0f5;
    padding: 10px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
	transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu > .menu-item-has-children > .sub-menu {
    position: absolute;
}
 
.site-navbar .site-navigation .site-menu > .menu-item-has-children > .sub-menu:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.site-navbar .site-navigation .site-menu > .menu-item-has-children > .sub-menu:before {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .menu-item-has-children .sub-menu>li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}

.site-navbar .site-navigation .site-menu .menu-item-has-children .sub-menu>li>a {
    padding: 5px 20px;
    display: block;
}

.site-navbar .site-navigation .site-menu .menu-item-has-children .sub-menu>li>a:hover {
    color: var(--red);
}

.site-navbar .site-navigation .site-menu .menu-item-has-children .sub-menu>li.menu-item-has-children>a:before {
    right: 20px;
    transform: translateY(-50%) rotate(-90deg);
}

.site-navbar .site-navigation .site-menu .menu-item-has-children .sub-menu>li.menu-item-has-children>.sub-menu,
.site-navbar .site-navigation .site-menu .menu-item-has-children .sub-menu>li.menu-item-has-children>ul {
    left: 100%;
    top: 0;
}

.site-navbar .site-navigation .site-menu .menu-item-has-children:hover {
    cursor: pointer;
}

.site-navbar .site-navigation .site-menu .menu-item-has-children:hover>.sub-menu{
	transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

.site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: calc(100vh);
	transform: translateX(110%);
	box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
	transition: .3s all ease-in-out;
}
.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 30px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
    color: #25262a;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
}
.site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    position: relative;
    padding: 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
}
.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
.site-mobile-menu .site-nav-wrap a {
    padding: 10px 20px;
    display: block;
    position: relative;
    color: #212529;
}
.site-mobile-menu .site-nav-wrap a:hover {
    color: var(--red);
}
.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}
.site-mobile-menu .site-nav-wrap li.active>a {
    color: var(--red);
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
    background: #f8f9fa;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 12px;
    z-index: 20;
    font-family: "icomoon";
    content: "\f078";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-180deg);
    transition: .3s all ease;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before{
    transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap>li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}
.site-mobile-menu .site-nav-wrap>li>a {
    padding-left: 20px;
    font-size: 20px;
}
.site-mobile-menu .site-nav-wrap>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-mobile-menu .site-nav-wrap>li>ul>li {
    display: block;
}
.site-mobile-menu .site-nav-wrap>li>ul>li>a {
    padding-left: 40px;
    font-size: 16px;
}
.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
    padding: 0;
    margin: 0;
}
.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
    display: block;
}
.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
    font-size: 16px;
    padding-left: 60px;
}

.digits_icon {
    width: 100px;
}

/* Blocks */
.site-blocks-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.site-blocks-cover.overlay {
    position: relative;
    background-position-x: 75%;
}
.site-blocks-cover.overlay:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
}
.site-blocks-cover, .site-blocks-cover .row {
    min-height: 540px;
    height: calc(100vh);
    position: relative;
}
.site-blocks-cover.inner-page, .site-blocks-cover.inner-page .row {
    min-height: 600px;
    height: calc(80vh);
}
.site-blocks-cover .sub-text {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: .2em;
}
.site-blocks-cover .h1 {
    font-weight: 900;
    color: #fff;
    /* text-transform: uppercase; */
    font-size: 3rem;
}
.site-blocks-cover .h1 p {
    font-weight: 900;
}

.btn-logo {
    display: inline-flex;
    position: relative;
    width: 240px;
    height: 80px;
    background: #fefefe;
    border-radius: 10px;
    padding: 0;
    margin: 0 10px;
    align-items: center;
    justify-content: center;
}

.btn-logo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 200px;
    max-height: 80px;
}

a.btn-logo:hover {
    opacity: 0.7;
}

.site-blocks-cover .intro-text {
    font-size: 16px;
    line-height: 1.5;
}

.site-heading {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2rem;
}

.site-heading strong {
    font-weight: 900;
}

.slide-one-item.home-slider .owl-nav {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    width: 100%;
}

.slide-one-item.home-slider .owl-prev {
    left: 10px !important;
}

.slide-one-item.home-slider .owl-next {
    right: 10px !important;
}

.slide-one-item.home-slider .owl-prev, .slide-one-item.home-slider .owl-next {
    color: #fff;
    position: absolute !important;
    top: 50%;
    padding: 0px;
    height: 50px;
    width: 50px;
    border-radius: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    line-height: 0;
    text-align: center;
    font-size: 25px;
}

.slide-one-item.home-slider .owl-prev>span, .slide-one-item.home-slider .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slide-one-item.home-slider .owl-prev:hover, .slide-one-item.home-slider .owl-prev:focus, .slide-one-item.home-slider .owl-next:hover, .slide-one-item.home-slider .owl-next:focus {
    background: black;
}

.slide-one-item.home-slider:hover .owl-nav, .slide-one-item.home-slider:focus .owl-nav, .slide-one-item.home-slider:active .owl-nav {
    opacity: 10;
    visibility: visible;
}

.half-sm .text, .half-sm .text h2, .half-sm .text small {
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.half-sm .text a small {
    border-bottom: 2px solid transparent;
}

.half-sm:hover .text, .half-sm:focus .text {
    background: var(--red) !important;
    color: #fff;
}
.half-sm:hover .text h2, .half-sm:focus .text h2 {
    color: #fff !important;
}
.half-sm:hover .text a small, .half-sm:focus .text a small {
    color: #fff !important;
    border-bottom: 2px solid #fff;
}

.form_wrap form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.f_wrap {
    position: relative;
    flex: 45%;
    margin: 0 15px;
}

.f_wrap label {
    position: absolute;
    left: 10px;
    top: 13px;
    margin: 0;
    transition: 0.3s;
    pointer-events: none;
}

.f_wrap input:not([type="checkbox"]) {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid var(--bl);
    padding: 0 10px;
}

.wpcf7-not-valid-tip {
    position: absolute;
    color: var(--red);
    width: max-content;
}

.f_wrap p {
    margin-bottom: 30px;
}

.f_wrap.focused label {
    font-size: 0.6rem;
    top: 0;
}

.wpcf7-spinner {
    position: absolute;
    right: 10px;
    top: 14px;
}

.agree {
    width: 100%;
    text-align: center;
    padding: 0 15px;
}

.preim_card > img {
    filter: grayscale(1);
}

.agree a {
    color: var(--bl);
    text-decoration: underline;
}

.agree a:hover {
    color: var(--d-gray);
}

span.wpcf7-list-item-label {
    display: none;
}

.agree p {
    display: flex;
    text-align: left;
    align-items: center;
}

span.agree_txt {
    margin-left: 10px;
    line-height: 100%;
    /* margin-bottom: 8px; */
}

.form_wrap {
    margin-top: 3rem;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    color: var(--wh);
    background: var(--bl);
    border-color: var(--bl);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2rem;
    padding-top: 5px;
    transition: 0.3s;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    color: var(--bl);
    background: var(--wh);
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    width: 100%;
    margin: 0 15px;
    text-align: center;
    border-color: var(--red);
    margin-top: 20px;
}

.wpcf7 form.sent .wpcf7-response-output {
    width: 100%;
    margin: 0 15px;
    text-align: center;
}

.card {
    margin: 3rem 15px;
    flex: 1;
    padding: 20px;
    display: flex;
    border-color: var(--d-gray);
}

.card_image {
    margin-bottom: 2rem;
}

.card_image img {
    display: block;
    width: 70px;
    margin: auto;
}

.card_content {
    margin: auto;
    display: flex;
    flex-direction: column;
}

a.card_link {
    color: var(--bl);
    filter: grayscale(1);
    display: flex;
    align-items: center;
}

a.card_link:hover {
    color: var(--d-gray);
    filter: grayscale(0);
}

a.card_link img {
    width: 15px;
    height: auto;
    margin-right: 10px;
}

.mar_wrapper iframe {
    width: 100%;
    height: 400px;
}

.serv_logos_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.serv_logo {
    width: 200px;
    height: 100px;
    margin: 0 15px 30px;
    border: 1px solid var(--d-gray);
    position: relative;
}

.serv_logo img {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

@media (min-width: 768px) {
    .site-heading {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .site-blocks-cover .h1 {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.2;
        padding-right: 40%;
        padding-top: 60px;
    }

	img.banner_img {
	    width: 40% !important;
	    !i;!;position: absolute;
	    right: 0;
	    bottom: 0;
	}

}


@media (max-width: 767.98px) {
    .display-3, .display-2, .display-4 {
        font-size: 2rem !important;
    }

	img.banner_img {
	    position: absolute;!i;!;
	    bottom: 0;
	    opacity: 0.5;
	}
	
	.digits_desc {
	    text-align: start;
	}
	
	ul.boxes li {
	    width: 100%;
	    flex: 100%;
	    margin: 0 0 30px;
	}

	.client_card {
	    width: calc(50% - 30px);
	}
	
	.otz_desc {
	    width: 100%;
	}
}

@media (max-width: 991.98px) {
    .bg-md-height {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .bg-sm-height {
        height: 300px;
    }
}

@media(max-width: 600px){
	.site-blocks-cover .h1 {
		font-size: 1.3rem;
		padding: 20px;
		position: relative;
		z-index: 1;
	}

	.service_list:nth-child(3) .service_txt, .service_list:nth-child(4) .service_txt {
		order: 2;
	}

	.service_list {
		margin-bottom: 1rem;
	}

	.card {
		flex: 100%;
		margin-bottom: 0;
	}

	.mar_wrapper {
		margin-top: 3rem;
	}
	
	.gallery_item {
		width: 100%;
	}
}

