/*!
Theme Name: Wedding
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 102.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wedding
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Wedding is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@charset "UTF-8";

h1 {
    font-size: 3.9vw;
    line-height: 1.5vw;
}

h2 {
    font-size: 3.2vw;
    line-height: 6.4vw;
    font-weight: 600;
    color: #444444;
}

h3 {
    font-size: 1.8vw;
    line-height: 3.4vw;
}

h4 {
    font-size: 1.55vw;
    color: #444444;
    line-height: 3.1vw;
}

h5 {
    font-size: 1.3vw;
    line-height: 2.6vw;
    color: #B76E79;
}

h6 {
    font-size: 1vw;
    line-height: 2vw;
    color: #444444;
}

p {
    font-size: 1.4vw;
    line-height: 2.6vw;
    color: #444444;
}

input {
    font-size: 1.3vw;
}

textarea {
    font-size: 1.3vw;
}

.lang-item img {
    width: 1.3vw;
    height: auto;
}

.rev-image {
    width: 50%;
    height: auto;
    margin: 0 auto;
}

.rev-container button {
    color: #000000;
    background: #DDD9D4;
    border: 1px solid #DDD9D4;
    padding: 1.5% 4%;
    font-family: "Montserrat";
    font-size: 1.5vw;
}

.min {
    width: 80%;
    margin: 0 auto;
    margin-top: 2%;
    font-size: 0.8vw;
}

.min span {
    color: #B76E79;
    margin-right: 0.2%;
}

.branch {
    margin-bottom: 3%;
}

.tle {
    font-style: italic;
}

.mob-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #444141;
    z-index: 999999;
}

.mob-block .container {
    width: 100%;
    margin: 0 auto;
    margin-top: 25%;
    padding-bottom: 4%;
    height: 100%;
}

.mob-block .container ul {
    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;
    height: 80%;
}

.dropdown {
    position: relative;
}

.dropdown a {
    display: block;
    color: white;
    background: #444141;
    padding: 3%;
    font-size: 5vw;
}

.dropdown [data-toggle="dropdown"]:before {
    position: absolute;
    display: block;
    content: '\25BC';
    font-size: 0.7em;
    color: #fff;
    top: 13px;
    right: 10px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.dropdown .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%, 0%;
    -ms-transform-origin: 50%, 0%;
    transform-origin: 50%, 0%;
    -webkit-animation: hideAnimation .1s ease-out;
    animation: hideAnimation .1s ease-out;
}

.dropdown .dropdown-menu li {
    padding: 0;
}

.dropdown .dropdown-menu li a {
    display: block;
    color: #6f6f6f;
    background: #EEE;
    padding: 10px 10px;
}

.dropdown input[type="checkbox"] {
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.dropdown input[type="checkbox"]:checked~.dropdown-menu {
    max-height: 9999px;
    display: block;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-animation: showAnimation .5s ease-in-out;
    animation: showAnimation .5s ease-in-out;
}

.dropdown>input[type="checkbox"]:checked+a[data-toggle="dropdown"]:before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.mobile {
    display: none;
}

body {
    font-family: 'Playfair Display', serif;
}

header {
    width: 100%;
    height: 20%;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo {
    margin-top: 1%;
    margin-bottom: 2%;
}

.logo img {
    width: 20vw;
    height: auto;
}

nav {
    z-index: 99999;
    margin: 0 auto;
    width: 63%;
    margin-bottom: 2.5%;
}

nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

nav ul li {
    position: relative;
    display: inline-block;
    margin-right: -4px;
    text-align: center;
}

nav ul li:nth-child(6) ul {
    width: 14vw;
}

nav ul li a {
    font-size: 1.05vw;
    font-style: italic;
    text-transform: uppercase;
    display: block;
    color: #CF9D79;
    padding-bottom: 0.5vw;
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

nav ul li a:hover {
    color: #B76E79;
}

nav ul li ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 8vw;
    height: auto;
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
}

nav ul li ul li {
    display: block;
    width: 100%;
    text-align: left;
}

nav ul li ul li a {
    display: block;
    background: #fff;
    padding: 10px 15px;
    color: #B76E79;
}

nav ul li ul li a:first-child {
    width: auto;
    border-left: 4px solid transparent;
}

nav ul li ul li a:hover {
    border-left: 4px solid #B76E79;
}

.sub-menu ul {
    display: none;
}

.sub-menu:hover ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile_button {
    display: none;
    z-index: 9999999;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    -o-transition: transform 400ms;
    transition: transform 400ms;
    transition: transform 400ms, -webkit-transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.line {
    fill: none;
    -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    -o-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
}

.ham3 .top {
    stroke-dasharray: 40 130;
}

.ham3 .middle {
    stroke-dasharray: 40 140;
}

.ham3 .bottom {
    stroke-dasharray: 40 205;
}

.ham3.active .top {
    stroke-dasharray: 75 130;
    stroke-dashoffset: -63px;
}

.ham3.active .middle {
    stroke-dashoffset: -102px;
}

.ham3.active .bottom {
    stroke-dasharray: 110 205;
    stroke-dashoffset: -86px;
}

.lvl:after {
    position: absolute;
    content: '›';
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: -1vw;
    font-weight: 700;
    top: -10%;
    font-family: sans-serif;
    font-size: 1.5vw;
    font-style: normal;
}

#home {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: auto;
    background: #DDD9D4;
}

#home .block h1 {
    color: #fff;
    font-style: italic;
    text-shadow: rgba(0, 0, 0, 0.25) 1px 1px 0, rgba(0, 0, 0, 0.25) -1px -1px 0, rgba(0, 0, 0, 0.25) -1px 1px 0, rgba(0, 0, 0, 0.25) 1px -1px 0;
}

#home .block h3 {
    margin-left: 5%;
    width: 70%;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.16) 1px 1px 0, rgba(0, 0, 0, 0.16) -1px -1px 0, rgba(0, 0, 0, 0.16) -1px 1px 0, rgba(0, 0, 0, 0.16) 1px -1px 0;
}

.image-container {
    margin-bottom: -0.5%;
    width: 100%;
    height: auto;
}

.image-container img {
    width: 100%;
    height: auto;
}

.slide-content {
    width: 76%;
    position: absolute;
    top: 38%;
    left: 8%;
    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;
}

.block-slide-button a {
    width: 6.1vw;
    height: 6.1vw;
    margin-top: 20%;
}

.block-slide-button a {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 5.8vw;
    height: 5.8vw;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 2;
}

.block-slide-button a span {
    font-size: 1.8vw;
    opacity: 0.5;
}

.block-slide-button a:hover span {
    opacity: 1;
}

.block-slide-button a:before {
    position: absolute;
    content: '';
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}

.block-slide-button a:after {
    position: absolute;
    content: '';
    top: -25px;
    left: -25px;
    bottom: -25px;
    right: -25px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 0;
}

.block-slide-button a:hover {
    background: #d6ac8d;
    border-color: #d6ac8d;
}

.block-video-button a:hover:after {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
}

.block-slide-button a:hover:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
}

.block-slide-button a:hover:after {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
}

.more {
    margin-top: 10%;
    background: #EBAD35;
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5vw;
    padding: 2% 5%;
    font-family: "Montserrat";
}

#pluses {
    width: 100%;
    height: auto;
    padding: 5% 0;
}

#pluses .plus-block {
    margin-left: 6%;
    margin-right: 6%;
    width: 88%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#pluses .plus-block .plus {
    text-align: center;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30%;
}

#pluses .plus-block .plus img {
    width: 20%;
    height: auto;
}

#pluses .plus-block .plus h3 {
    font-weight: 700;
}

#pluses .plus-block .plus:nth-child(2) img {
    width: 18.7%;
}

#pluses .plus-block .plus:nth-child(3) img {
    width: 18.5%;
}

#services {
    text-align: center;
    background: #F7F7F7;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 5% 0;
}

#services .branch {
    width: 15%;
    height: auto;
}

#services h3 {
    color: #000;
}

#services h4 {
    margin-bottom: 5%;
}

#services .serv-container {
    width: 86%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#services .serv-container .service {
    background: #ffffff;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.3%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#services .serv-container .service .serv-img-container {
    overflow: hidden;
    height: 20vw;
}

#services .serv-container .service .serv-img-container img {
    height: 100%;
    width: auto;
}

#services .serv-container .service .serv-img-container img:hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
}

#services .serv-container .service h5 {
    margin-bottom: 2%;
}

#consultation {
    width: 100%;
    padding: 4% 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#consultation .cons-content {
    width: 45%;
}

#consultation .cons-content p {
    width: 72%;
    opacity: 0.54;
}

#consultation .cons-content h2 {
    line-height: 4.4vw;
    margin-bottom: 2%;
}

#consultation .cons-form {
    margin-top: 5%;
}

#consultation .cons-form 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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#consultation .cons-form form input[type="text"],
#consultation .cons-form form input[type="email"],
#consultation .cons-form form input[type="tel"] {
    width: 86%;
    color: #000;
    border: 1px solid rgba(112, 112, 112, 0.66);
    margin-bottom: 5%;
    padding: 2% 4%;
}

#consultation .cons-form form p {
    width: 100%;
    opacity: 1;
}

#consultation .cons-form form input[type="text"]::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="email"]::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="tel"]::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="text"]:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="email"]:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="tel"]:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="tel"]::placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form textarea {
    color: #000;
    border: 1px solid rgba(112, 112, 112, 0.66);
    min-width: 90%;
    max-width: 90%;
    min-height: 8.5vw;
    max-height: 8.5vw;
    margin-bottom: 5%;
    padding-left: 4%;
    padding-top: 2%;
}

#consultation .cons-form form textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form textarea:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form textarea::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form textarea::placeholder {
    color: rgba(0, 0, 0, 0.43);
}

#consultation .cons-form form input[type="submit"] {
    color: #ffffff;
    border: 1px solid #B76E79;
    background: #B76E79;
    font-weight: 600;
    padding: 2% 12%;
    font-family: "Montserrat";
}

#consultation .cons-photo {
    width: 45%;
    padding-left: 5%;
}

#consultation .cons-photo-mobile{
	display: none;
}

#consultation .cons-photo-mobile img{
	max-width: 95%;
    margin-top: 100px;
    margin-bottom: 15px;
}

#consultation .cons-photo img {
    width: 100%;
    height: auto;
}

#portfolio {
    text-align: center;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 5% 0;
}

#portfolio .branch {
    width: 15%;
    height: auto;
}

#portfolio h3 {
    color: #000;
}

#portfolio h4 {
    margin-bottom: 5%;
}

#portfolio .port-container {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#portfolio .port-container .work {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    position: relative;
    width: 31%;
    margin-bottom: 3%;
    min-height: 25vw;
    max-height: 25vw;
}

#portfolio .port-container .work img {
    width: auto;
    height: 100%;
    position: absolute;
}

#portfolio .port-container .work:after {
    width: 88%;
    height: 88%;
    position: absolute;
    left: 4.5%;
    top: 4.5%;
    content: '';
    border: 6px solid #ffffff;
    z-index: 2;
}

#portfolio .port-container .work .work-text {
    position: absolute;
    width: 100%;
    bottom: 5%;
    z-index: 2;
}

#portfolio .port-container .work .work-text h6 {
    color: #ffffff;
    line-height: 2vw;
}

#portfolio .port-container .work .work-text h3 {
    color: #ffffff;
    font-weight: 300;
    line-height: 2vw;
}

#portfolio .port-container .work .work-text h4 {
    color: #ffffff;
    line-height: 1.4vw;
}

#portfolio .port-container .work .work-blackout {
    position: absolute;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.port-button {
    color: #000000;
    margin-top: 4%;
    background: #DDD9D4;
    border: 1px solid #DDD9D4;
    font-size: 1.8vw;
    font-weight: 300;
    padding: 1.5% 4%;
    font-family: "Montserrat";
}

#plan {
    background: #f6f6f6;
    text-align: center;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 5% 0;
}

#plan .branch {
    width: 15%;
    height: auto;
}

#plan h3 {
    color: #000;
}

#plan .plan-4 {
    margin-bottom: 5%;
}

#plan .plan-container {
    width: 100%;
}

#plan .plan-container .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#plan .plan-container .tabs .tab-number {
    width: 5vw;
    height: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #F7F7F7;
    border-radius: 50%;
    font-size: 3.2vw;
    font-weight: 500;
    padding-bottom: 2%;
    color: #000;
}

#plan .plan-container .tabs .tab-content {
    padding-top: 2%;
    padding-left: 4%;
    text-align: left;
    width: 70%;
}

#plan .plan-container .tabs .tab-content h5 {
    color: #000;
}

#plan .plan-container .tabs .tab-content h4 {
    color: #000000;
}

#plan .plan-container .tabs .tab-content h6 span {
    color: #CF9D79;
}

#reviews {
    text-align: center;
    background: #f6f6f6;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 5% 0;
}

#reviews .branch {
    width: 15%;
    height: auto;
}

#reviews .rev-4 {
    margin-bottom: 5%;
}

#reviews .rev-container {
    width: 100%;
}

#news {
    text-align: center;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 3% 0;
}

#news .branch {
    width: 15%;
    height: auto;
}

#news .rev-4 {
    margin-bottom: 5%;
}

#news .news-container {
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#news .news-container .article {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 31%;
    height: auto;
    background: #F7F7F7;
    text-align: left;
    position: relative;
}

#news .news-container .article .art-container {
    width: 100%;
    overflow: hidden;
    min-height: 18vw;
    max-height: 18vw;
}

#news .news-container .article .art-container img {
    width: 100%;
    height: auto;
}

#news .news-container .article h4 {
    line-height: 2vw;
    margin-left: 7%;
    margin-right: 3%;
    margin-bottom: 2%;
}

#news .news-container .article h5 {
    margin-left: 7%;
    margin-top: 2%;
    margin-right: 3%;
}

#news .news-container .article p {
    margin-left: 7%;
    font-size: 1.05vw;
    line-height: 1.9vw;
    margin-right: 3%;
}

#news .news-container .article .cat {
    background: #B76E79;
    padding: 2% 4%;
    color: #ffffff;
    font-size: 1.1vw;
    display: block;
    font-family: "Montserrat";
}

#news .news-container .article .categoryone {
    position: absolute;
    top: 59%;
    left: 5%;
}

#news .news-container .article .categorytwo {
    position: absolute;
    bottom: 5%;
    left: 5%;
}

#news .news-container .article .categorythree {
    margin-left: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
}

footer {
    width: 100%;
    background: #444444;
}

footer h5 {
    color: #ffffff;
}

footer .foot-container {
    padding-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 5%;
}

footer .foot-container .foot-info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 35%;
    margin-right: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

footer .foot-container .foot-info img {
    width: 55%;
    margin-bottom: 2%;
}

footer .foot-container .foot-info p {
    color: #9E9E9E;
    font-size: 1.1vw;
    line-height: 1.6vw;
}

footer .foot-container .foot-info .ftext {
    width: 85%;
}

footer .foot-container .foot-info hr {
    margin-top: 5%;
    margin-bottom: 5%;
    margin-left: 0;
    width: 40%;
}

footer .foot-container .foot-func {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 55%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

footer .foot-container .foot-func h5 {
    margin-bottom: 3%;
}

footer .foot-container .foot-func input[type='text'] {
    border: 1px solid #707070;
    background: #535252;
    padding: 2% 0;
    padding-left: 5%;
    width: 77%;
    color: #fff;
    border-radius: 5px;
}

footer .foot-container .foot-func input[type='text']::-webkit-input-placeholder {
    color: #D8D5D5;
}

footer .foot-container .foot-func input[type='text']:-ms-input-placeholder {
    color: #D8D5D5;
}

footer .foot-container .foot-func input[type='text']::-ms-input-placeholder {
    color: #D8D5D5;
}

footer .foot-container .foot-func input[type='text']::placeholder {
    color: #D8D5D5;
}

footer .foot-container .foot-func input[type='submit'] {
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 10px;
    font-size: 1vw;
    margin-left: 2%;
    color: #fff;
    width: 23%;
}

footer .foot-container .foot-func .subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5%;
}

footer .foot-container .foot-func .foot-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

footer .foot-container .foot-func .cont-container {
    width: 100%;
    margin-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

footer .foot-container .foot-func .cont-container .contact {
    width: 50%;
    color: #fff;
    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;
}

footer .foot-container .foot-func .cont-container .contact .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .foot-container .foot-func .cont-container .contact .phone img {
    margin-right: 4%;
}

footer .foot-container .foot-func .cont-container .contact .phone p {
    color: #fff;
}

footer .foot-container .foot-func .cont-container .contact .em {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .foot-container .foot-func .cont-container .contact .em img {
    margin-right: 4%;
}

footer .foot-container .foot-func .cont-container .contact .em p {
    color: #fff;
}

footer .foot-container .foot-func .cont-container .soc-network {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

footer .foot-container .foot-func .cont-container .soc-network .net {
    margin-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 50%;
}

footer .foot-container .foot-func .cont-container .soc-network p {
    font-size: 1.1vw;
    color: #9E9E9E;
    line-height: 1.6vw;
}

footer .foot-container .foot-func .cont-container .soc-network a {
    width: 25%;
    margin-right: 10px;
}

footer .copyright {
    width: 100%;
    text-align: center;
}

footer .copyright h4 {
    color: #9E9E9E;
}

footer .copyright h4 a {
    color: #9E9E9E;
    font-weight: 900;
}

@-webkit-keyframes showAnimation {
    0% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
    }

    40% {
        -webkit-transform: scaleY(1.04);
        transform: scaleY(1.04);
    }

    60% {
        -webkit-transform: scaleY(0.98);
        transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.04);
        transform: scaleY(1.04);
    }

    100% {
        -webkit-transform: scaleY(0.98);
        transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes showAnimation {
    0% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
    }

    40% {
        -webkit-transform: scaleY(1.04);
        transform: scaleY(1.04);
    }

    60% {
        -webkit-transform: scaleY(0.98);
        transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.04);
        transform: scaleY(1.04);
    }

    100% {
        -webkit-transform: scaleY(0.98);
        transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes hideAnimation {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    60% {
        -webkit-transform: scaleY(0.98);
        transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02);
    }

    100% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes hideAnimation {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    60% {
        -webkit-transform: scaleY(0.98);
        transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02);
    }

    100% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@media screen and (max-width: 2560px) and (min-width: 1930px) {
    #services .serv-container .service .serv-img-container {
        overflow: hidden;
        width: 100%;
        height: 23vw;
    }
}

@media screen and (max-width: 900px) {
    .min {
        width: 80%;
        margin: 0 auto;
        margin-top: 8%;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    h1 {
        font-size: 7vw;
        line-height: 3.5vw;
    }

    h2 {
        font-size: 4.2vw;
        line-height: 8.4vw;
    }

    h3 {
        font-size: 3vw;
        line-height: 5vw;
    }

    h4 {
        font-size: 2.55vw;
        color: #444444;
        line-height: 4.1vw;
    }

    h5 {
        font-size: 2.3vw;
        line-height: 4.6vw;
        color: #B76E79;
    }

    h6 {
        font-size: 2vw;
        line-height: 3vw;
    }

    p {
        font-size: 1.9vw;
        line-height: 3.2vw;
    }

    input {
        font-size: 1.8vw;
    }

    textarea {
        font-size: 1.8vw;
    }

    .rev-image {
        width: 100%;
    }

    .rev-container button {
        margin-top: 1%;
    }

    .rev-container button {
        font-size: 2.8vw;
    }

    .min {
        font-size: 1.6vw;
    }

    #home .slide-content {
        width: 100%;
        top: 36%;
        left: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #home .slide-content .block {
        width: 60%;
        margin-left: 0;
        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: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    #home .slide-content .block h3 {
        left: 10%;
        margin-left: 0;
        width: 80%;
    }

    .mobile_button {
        display: block;
    }

    #home .next {
        display: none !important;
    }

    header {
        background: #444141;
    }

    header .logo img {
        width: 24vw;
        height: auto;
    }

    nav {
        display: none;
    }

    #pluses {
        padding: 6% 0 0 0;
    }

    #pluses .plus-block {
        margin-left: 6%;
        margin-right: 6%;
        width: 88%;
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #pluses .plus-block .plus {
        width: 50%;
        margin-bottom: 6%;
    }

    #services .branch {
        width: 20%;
    }

    #services .serv-container {
        width: 80%;
    }

    #services .serv-container .service {
        width: 50%;
    }

    #services .serv-container .service .serv-img-container {
        overflow: hidden;
        height: 28vw;
    }

    #consultation {
        text-align: center;
    }

    #consultation .cons-content h2 {
        line-height: 5.4vw;
    }

    #consultation .cons-content .cons-form form textarea {
        min-height: 10.5vw;
        max-height: 10.5vw;
    }

    #consultation .cons-content {
        width: 60%;
    }

    #consultation .cons-content p {
        width: 100%;
    }

    #consultation .cons-form form {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #consultation .cons-photo {
        display: none;
    }

    #consultation .cons-photo-mobile{
    	display: block;
    }

    #portfolio .branch {
        width: 20%;
    }

    #portfolio .port-container {
        width: 80%;
    }

    #portfolio .port-container .work {
        width: 48%;
        min-height: 40vw;
        max-height: 40vw;
    }

    #portfolio .port-container .work .work-text h4 {
        line-height: 1.4vw;
    }

    #portfolio .port-container .work .work-text h6 {
        line-height: 1.4vw;
    }

    #portfolio .port-container .work .work-text h3 {
        line-height: 8.4vw;
    }

    .port-button {
        font-size: 3vw;
    }

    #plan .branch {
        width: 20%;
    }

    #plan .plan-container {
        width: 100%;
    }

    #plan .plan-container .tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #plan .plan-container .tabs .tab-number {
        width: 7vw;
        height: 6vw;
        font-size: 4.2vw;
    }

    #plan .plan-container .tabs .tab-content {
        width: 80%;
    }

    #reviews .branch {
        width: 20%;
    }

    #news .branch {
        width: 20%;
    }

    #news .news-container {
        width: 90%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #news .news-container .article {
        width: 48%;
        margin-bottom: 10%;
    }

    #news .news-container .article:last-child {
        margin: 0 auto;
    }

    #news .news-container .article .art-container {
        width: 100%;
        overflow: hidden;
        min-height: 30vw;
        max-height: 30vw;
    }

    #news .news-container .article h4 {
        line-height: 4vw;
    }

    #news .news-container .article p {
        font-size: 1.8vw;
        line-height: 3.2vw;
    }

    #news .news-container .article .cat {
        font-size: 2vw;
    }

    footer .foot-container {
        padding-top: 5%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        width: 70%;
        margin: 0 auto;
        padding-bottom: 5%;
    }

    footer .foot-container .foot-info {
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 90%;
        margin-right: 10%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .foot-container .foot-info img {
        width: 45%;
        margin-bottom: 2%;
    }

    footer .foot-container .foot-info p {
        color: #9E9E9E;
        font-size: 2.2vw;
        line-height: 3.2vw;
    }

    footer .foot-container .foot-info .ftext {
        width: 85%;
    }

    footer .foot-container .foot-info hr {
        margin: 5% auto;
        width: 60%;
    }

    footer .foot-container .foot-func {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 15%;
    }

    footer .foot-container .foot-func input[type='text'] {
        width: 65%;
    }

    footer .foot-container .foot-func input[type='submit'] {
        font-size: 1.8vw;
        width: 23%;
    }

    footer .foot-container .foot-func .cont-container .soc-network p {
        font-size: 1.6vw;
        line-height: 3.2vw;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 8vw;
        line-height: 5vw;
    }

    h2 {
        font-size: 5.2vw;
        line-height: 10.4vw;
    }

    h3 {
        font-size: 6vw;
        line-height: 8vw;
    }

    h4 {
        font-size: 3.2vw;
        color: #444444;
        line-height: 6.4vw;
    }

    h5 {
        font-size: 3.3vw;
        line-height: 6.6vw;
        color: #B76E79;
    }

    h6 {
        font-size: 2.5vw;
        line-height: 3.5vw;
    }

    p {
        font-size: 3.8vw;
        line-height: 6.4vw;
    }

    input {
        font-size: 2.5vw;
    }

    textarea {
        font-size: 2.5vw;
    }

    .min {
        width: 80%;
        margin: 0 auto;
        margin-top: 2%;
        font-size: 2.1vw;
    }

    .rev-container button {
        font-size: 3.6vw;
    }

    .lang-item img {
        width: 30px;
        height: auto;
    }

    header .logo img {
        width: 41vw;
    }

    #home .slide-content .block {
        width: 80%;
    }

    .more {
        font-size: 4vw;
    }

    #pluses .plus-block {
        margin-left: 2%;
        margin-right: 2%;
        width: 96%;
    }

    #pluses .plus-block .plus {
        width: 80%;
        margin-bottom: 6%;
    }

    #services .branch {
        width: 25%;
    }

    #services .serv-container {
        width: 90%;
    }

    #services .serv-container .service {
        width: 100%;
    }

    #services .serv-container .service .serv-img-container {
        overflow: hidden;
        height: 63vw;
    }

    #consultation .cons-content h2 {
        line-height: 7.4vw;
    }

    #consultation .cons-content {
        width: 80%;
    }

    #consultation .cons-content .cons-form form textarea {
        min-height: 15vw;
        max-height: 15vw;
    }

    #portfolio .branch {
        width: 25%;
    }

    #portfolio .port-container {
        width: 90%;
    }

    #portfolio .port-container .work {
        width: 100%;
        min-height: 90vw;
        max-height: 90vw;
    }

    #portfolio .port-container .work .work-text h4 {
        line-height: 3.4vw;
        font-size: 5.2vw;
    }

    #portfolio .port-container .work .work-text h6 {
        line-height: 10.4vw;
        font-size: 5.2vw;
    }

    #portfolio .port-container .work .work-text h3 {
        font-size: 9.2vw;
        line-height: 9.4vw;
    }

    .port-button {
        font-size: 5vw;
    }

    #plan .branch {
        width: 25%;
    }

    #plan .plan-container {
        width: 100%;
    }

    #plan .plan-container .tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #plan .plan-container .tabs .tab-number {
        width: 8vw;
        height: 7vw;
        font-size: 5.2vw;
    }

    #plan .plan-container .tabs .tab-content {
        width: 80%;
    }

    #reviews .branch {
        width: 25%;
    }

    #news .branch {
        width: 25%;
    }

    footer h5 {
        font-size: 3vw;
        line-height: 6vw;
    }

    footer .foot-container {
        padding-top: 5%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        width: 90%;
        margin: 0 auto;
        padding-bottom: 5%;
    }

    footer .foot-container .foot-info {
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        margin-right: 10%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .foot-container .foot-info img {
        width: 45%;
        margin-bottom: 2%;
    }

    footer .foot-container .foot-info p {
        color: #9E9E9E;
        font-size: 3vw;
        line-height: 6vw;
    }

    footer .foot-container .foot-info .ftext {
        width: 85%;
    }

    footer .foot-container .foot-info hr {
        margin: 5% auto;
        width: 60%;
    }

    footer .foot-container .foot-func {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 15%;
    }

    footer .foot-container .foot-func input[type='text'] {
        width: 65%;
    }

    footer .foot-container .foot-func input[type='submit'] {
        font-size: 2.5vw;
        width: 28%;
    }

    footer .foot-container .foot-func .cont-container {
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    footer .foot-container .foot-func .cont-container .contact {
        margin-bottom: 5%;
        width: 60%;
    }

    footer .foot-container .foot-func .cont-container .contact .phone {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
    }

    footer .foot-container .foot-func .cont-container .contact .em {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
    }

    footer .foot-container .foot-func .cont-container .soc-network {
        width: 80%;
    }

    footer .foot-container .foot-func .cont-container .soc-network a {
        width: 45%;
    }

    footer .foot-container .foot-func .cont-container .soc-network .net {
        margin: 5% auto;
    }

    footer .foot-container .foot-func .cont-container .soc-network p {
        font-size: 3vw;
        line-height: 5vw;
    }
}

@media screen and (max-width: 576px) {
    #home {
        max-height: 72vh;
    }
}

@media screen and (max-width: 425px) {
    .min {
        width: 80%;
        margin: 0 auto;
        margin-top: 12%;
    }

    h1 {
        font-size: 10vw;
        line-height: 7vw;
    }

    h2 {
        font-size: 8.2vw;
        line-height: 11.5vw;
    }

    h3 {
        font-size: 7vw;
        line-height: 12vw;
    }

    h4 {
        font-size: 4.6vw;
        color: #444444;
        line-height: 9.2vw;
    }

    h5 {
        font-size: 4.3vw;
        line-height: 8.6vw;
        color: #B76E79;
    }

    h6 {
        font-size: 4vw;
        line-height: 8vw;
    }

    p {
        font-size: 4.5vw;
        line-height: 9vw;
    }

    input {
        font-size: 4.5vw;
    }

    textarea {
        font-size: 4.5vw;
    }

    .min {
        font-size: 3.6vw;
    }

    .rev-container iframe {
        width: 100%;
        height: 85vh;
    }

    .rev-container button {
        font-size: 5.5vw;
    }

    .lang-item img {
        width: 30px;
        height: auto;
    }

    header .logo img {
        width: 60vw;
        height: auto;
    }

    #home {
        max-height: 80vh;
    }

    #home .slide-content {
        width: 100%;
        top: 20%;
    }

    #home .slide-content .block {
        width: 95%;
        position: relative;
    }

    .more {
        font-size: 6vw;
        padding: 4% 9%;
    }

    #pluses .plus-block .plus {
        width: 90%;
        margin-bottom: 6%;
    }

    #services .branch {
        width: 65%;
    }

    #consultation {
        text-align: left;
    }

    #consultation .cons-content {
        width: 86%;
    }

    #consultation .cons-content h2 {
        line-height: 8.4vw;
    }

    #consultation .cons-content .cons-form {
        margin-top: 20%;
    }

    #consultation .cons-content .cons-form form {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    #consultation .cons-content .cons-form form input[type='text'] {
        margin-bottom: 10%;
    }

    #consultation .cons-content .cons-form form textarea {
        min-height: 30vw;
        max-height: 30vw;
        margin-bottom: 10%;
    }

    #consultation .cons-content .cons-form form input[type='submit'] {
        padding: 4% 12%;
        border-radius: 5px;
    }

    #portfolio {
        padding: 20% 0;
    }

    #portfolio .branch {
        width: 65%;
    }

    #portfolio .port-container .work .work-text h4 {
        line-height: 4.4vw;
        font-size: 6.2vw;
    }

    #portfolio .port-container .work .work-text h6 {
        line-height: 9.4vw;
        font-size: 4.2vw;
    }

    #portfolio .port-container .work .work-text h3 {
        font-size: 8.2vw;
        line-height: 10.4vw;
    }

    .port-button {
        margin-top: 15%;
        font-size: 6vw;
        padding: 5% 8%;
        border-radius: 5px;
    }

    #plan {
        padding: 5% 0;
        padding-bottom: 15%;
    }

    #plan .branch {
        width: 65%;
    }

    #plan .plan-container {
        width: 100%;
    }

    #plan .plan-container .tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #plan .plan-container .tabs .tab-number {
        width: 22vw;
        height: 20vw;
        font-size: 10vw;
        padding-bottom: 2%;
        margin-left: 4%;
    }

    #plan .plan-container .tabs .tab-content {
        width: 95%;
    }

    #plan .plan-container .tabs .tab-content h5 {
        font-size: 5vw;
        line-height: 10vw;
    }

    #plan .plan-container .tabs .tab-content h4 {
        font-weight: 900;
        font-size: 6.6vw;
        line-height: 13.2vw;
    }

    #plan .plan-container .tabs .tab-content h6 {
        margin-bottom: 6%;
    }

    #plan .plan-container .tabs .tab-content h6 span {
        font-weight: 900;
    }

    #reviews .branch {
        width: 65%;
    }

    #news .branch {
        width: 65%;
    }

    #news .news-container {
        width: 90%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #news .news-container .article {
        width: 100%;
        margin-bottom: 10%;
    }

    #news .news-container .article:last-child {
        margin: 0 auto;
    }

    #news .news-container .article .art-container {
        width: 100%;
        overflow: hidden;
        min-height: 60vw;
        max-height: 60vw;
    }

    #news .news-container .article h4 {
        line-height: 8vw;
        margin-bottom: 5%;
    }

    #news .news-container .article p {
        font-size: 4vw;
        line-height: 7vw;
    }

    #news .news-container .article .cat {
        font-size: 4vw;
        border-radius: 5px;
    }

    footer h5 {
        font-size: 4.3vw;
        line-height: 8.6vw;
    }

    footer .foot-container {
        padding-top: 5%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        width: 90%;
        margin: 0 auto;
        padding-bottom: 5%;
    }

    footer .foot-container .foot-info {
        text-align: left;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%;
        margin-right: 10%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .foot-container .foot-info img {
        width: 55%;
        margin-bottom: 2%;
    }

    footer .foot-container .foot-info p {
        color: #9E9E9E;
        font-size: 4vw;
        line-height: 7vw;
    }

    footer .foot-container .foot-info .ftext {
        width: 100%;
    }

    footer .foot-container .foot-info hr {
        margin-top: 5%;
        margin-bottom: 5%;
        margin-left: 0;
        width: 40%;
    }

    footer .foot-container .foot-func {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 15%;
    }

    footer .foot-container .foot-func input[type='text'] {
        width: 100%;
        margin-bottom: 5%;
        padding: 5% 0;
        padding-left: 5%;
        margin-left: -2.5%;
    }

    footer .foot-container .foot-func input[type='submit'] {
        font-size: 4vw;
        width: 105%;
        padding: 5% 0;
        padding-left: 5%;
        margin-left: -2.5%;
    }

    footer .foot-container .foot-func .subscribe {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .foot-container .foot-func .foot-search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .foot-container .foot-func .cont-container {
        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-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }

    footer .foot-container .foot-func .cont-container .contact {
        margin-bottom: 5%;
        width: 60%;
    }

    footer .foot-container .foot-func .cont-container .contact .phone {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 0;
        width: 100%;
    }

    footer .foot-container .foot-func .cont-container .contact .em {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 0;
        width: 100%;
    }

    footer .foot-container .foot-func .cont-container .soc-network {
        width: 80%;
    }

    footer .foot-container .foot-func .cont-container .soc-network a {
        width: 30%;
    }

    footer .foot-container .foot-func .cont-container .soc-network .net {
        width: 60%;
        margin: 0;
        margin-top: 5%;
    }

    footer .foot-container .foot-func .cont-container .soc-network p {
        font-size: 4vw;
        line-height: 7vw;
    }
}

@media screen and (max-width: 768px) {
    #services .serv-container .service .serv-img-container {
        max-width: 100%;
    }
}