.ba-form input[type="number"], .ba-form input[type="email"], .ba-form input[type="text"], .ba-form input[type="tel"], .ba-form textarea {
	height: 70px;
	font-size: 16px; color: rgba(63, 63, 63, 1);
	background-color: #ffffff; border: 1px solid rgba(201, 201, 201, 1);
	border-radius: 5px;
	width: 100%;
}

#baform-10 .ba-form input[type="number"],
#baform-10 .ba-form input[type="email"],
#baform-10 .ba-form input[type="text"],
#baform-10 .ba-form input[type="tel"],
#baform-10 .ba-form textarea {
	height: 50px;
	font-size: 16px;
	color: rgba(215, 215, 215, 1);
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid rgba(215, 215, 215, 1);
	border-radius: 5px;
	width: 100%;
}
#baform-13 .ba-form input[type="number"],
#baform-13 .ba-form input[type="email"],
#baform-13 .ba-form input[type="text"],
#baform-13 .ba-form input[type="tel"],
#baform-13 .ba-form textarea,
#baform-11 .ba-form input[type="number"],
#baform-11 .ba-form input[type="email"],
#baform-11 .ba-form input[type="text"],
#baform-11 .ba-form input[type="tel"],
#baform-11 .ba-form textarea,
#baform-9 .ba-form input[type="number"],
#baform-9 .ba-form input[type="email"],
#baform-9 .ba-form input[type="text"],
#baform-9 .ba-form input[type="tel"],
#baform-9 .ba-form textarea {
    height: 50px;
    font-size: 16px;
    color: #999999;
    background-color: #ffffff;
    border: 1px solid rgba(189, 189, 189, 1);
    border-radius: 0px;
	width: 100%;
}

.ba-form input[type="tel"] {
    box-shadow: none;
    box-sizing: border-box;
    font-family: inherit;
    line-height: normal !important;
    padding-left: 20px;
    width: 100%;
    margin-bottom: 0px;
}

.ba-btn-submit {
    width: 100%;
    height: 80px;
    background-color: rgba(12, 162, 209, 1);
    color: rgba(250, 250, 250, 1);
    font-size: 30px;
    font-weight: normal;
    border-radius: 5px;
    border: none;
}

#baform-10  .ba-btn-submit {
	width: 100%;
	height: 60px;
	background-color: rgba(12, 162, 209, 1);
	color: rgba(250, 250, 250, 1);
	font-size: 28px;
	font-weight: normal;
	border-radius: 5px;
	border: none;
}

#baform-13  .ba-btn-submit,
#baform-11  .ba-btn-submit,
#baform-9  .ba-btn-submit {
	height: 50px;
	background-color: rgba(2, 173, 234, 1);
    color: rgba(250, 250, 250, 1);
    font-size: 18px;
    font-weight: normal;
    border-radius: 3px;
    border: none;
}

.wpcf7-not-valid-tip {
	font-size: 12px!important;
}
.ba-forms-modal .wpcf7-response-output {
	color: #fff!important;
}





.project_cont-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
	.project_cont-grid {
		grid-template-columns: 1fr;
	}
}

.project_cont-grid--item {
	position: relative;
	display: block;
	width: 100%;
	cursor: pointer;
}

.project_cont-grid--item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	transition: 0.2s ease;
}
.project_cont-grid--item:hover:before {
	opacity: 0.4;
}
.project_cont-grid--item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.pop-up-object {
    display: block;
    position: fixed;
    top: 0%;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 1000;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center
}

.pop-up-object.pop-up-object__active {
    left: 0
}

.pop-up-object__close__btn {
    position: absolute;
    z-index: 1;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75)
}

.pop-up-object__wrapper {
    position: relative;
    background-color: #fff;
    width: 80%;
    height: 75%;
    z-index: 2;
    padding: 30px
}

@media screen and (max-width: 650px) {
    .pop-up-object__wrapper {
        height:70%;
        padding: 20px
    }
}

.pop-up-object__footer {
    position: absolute;
    background-color: #fff;
    width: calc(100% - 1px);
    height: 100px;
    bottom: 0;
    left: 1px
}

@media screen and (max-width: 650px) {
    .pop-up-object__footer {
        height:150px
    }
}

.pop-up-object .pop-up-object__prev__pop,.pop-up-object .pop-up-object__next__pop {
    position: absolute;
    cursor: pointer;
    top: 25%;
    display: flex;
    flex-direction: row;
    align-items: center
}

@media screen and (max-width: 650px) {
    .pop-up-object .pop-up-object__next__pop {
        top:57%
    }
}

.pop-up-object .pop-up-object__prev__pop>*+*,.pop-up-object .pop-up-object__next__pop>*+* {
    margin-left: 10px!important
}

.pop-up-object .pop-up-object__prev__pop span,.pop-up-object .pop-up-object__next__pop span {
    display: inline;
    width: 40px;
    height: 40px;
    background-color: #363636;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background-image: url(./images/design/arrow-more-white.png);
    background-repeat: no-repeat;
    background-position: center;
    margin: unset;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0)
}

.pop-up-object .pop-up-object__prev__pop {
    left: 54px
}

.pop-up-object .pop-up-object__prev__pop span {
    -webkit-transform: rotate(180deg) translate(0,0);
    -moz-transform: rotate(180deg) translate(0,0);
    -ms-transform: rotate(180deg) translate(0,0);
    -o-transform: rotate(180deg) translate(0,0);
    transform: rotate(180deg) translate(0,0)
}

.pop-up-object .pop-up-object__next__pop {
    right: 56px
}

@media screen and (max-width: 990px) {
    .pop-up-object .pop-up-object__prev__pop {
        left:30px
    }

    .pop-up-object .pop-up-object__next__pop {
        right: 30px
    }
}

@media screen and (max-width: 650px) {
    .pop-up-object .pop-up-object__prev__pop {
        left:9px
    }

    .pop-up-object .pop-up-object__next__pop {
        right: 9px
    }
}

.pop-up-object__close__label {
    cursor: pointer;
    position: absolute;
    width: 40px;
    height: 40px;
    top: -20px;
    right: -20px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.pop-up-object__close__label:hover {
    background-color: #0a637f
}

.pop-up-object__close__label:hover svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.pop-up-object__close__label svg {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (max-width: 650px) {
    .pop-up-object__close__label {
        width:30px;
        height: 30px;
        top: -10px;
        right: -10px
    }
}

.pop-up-object__content {
    overflow: auto;
    width: 100%;
    height: 100%;
    padding-right: 20px
}

.pop-up-object__description {
	text-align: left;
}

.pop-up-object__title {
    font-size: 30px;
    font-family: PTsans-B;
    color: #161616;
    line-height: 1.5;
    margin-bottom: 25px;
    display: inline-block;
    position: relative
}

.pop-up-object__title:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    background: #1a1a1a;
    left: 0;
    bottom: -9px;
    z-index: -1
}

@media screen and (max-width: 1200px) {
    .pop-up-object__title {
        font-size:25px
    }
}

@media screen and (max-width: 960px) {
    .pop-up-object__title {
        margin-bottom:15px;
        font-size: 22px
    }

    .pop-up-object__title:before {
        height: 3px;
        bottom: -5px
    }
}

.pop-up-object__hover__date {
    font-family: PTsans-B;
    color: #161616;
    line-height: 1.8;
    margin: 1em 0
}

.pop-up-object__description p {
    font-family: PTsans-R;
    color: #363636;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8
}

@media screen and (max-width: 650px) {
    .pop-up-object__description p {
        font-size:15px;
        line-height: 1.7!important;
        text-align: left
    }
}

.pop-up-object__description iframe {
    max-width: 80%;
    width: 100%;
    height: 400px;
    margin: 0 auto
}

@media screen and (max-width: 770px) {
    .pop-up-object__description iframe {
        max-width:unset;
        width: 100%;
        height: 400px
    }
}

@media screen and (max-width: 600px) {
    .pop-up-object__description iframe {
        height:350px
    }
}

@media screen and (max-width: 520px) {
    .pop-up-object__description iframe {
        height:240px
    }
}

@media screen and (max-width: 370px) {
    .pop-up-object__description iframe {
        height:200px
    }
}

.pop-up-object__link__container {
}

.pop-up-object__link {
    color: #0a637f;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.pop-up-object__link:hover {
    text-decoration: underline
}

.pop-up-object__swiper {
    margin-bottom: 45px
}

.swiper-wrapper {
}

.swiper-slide {
}

.swiper-slide img {
    width: 100%;
    height: auto;
    margin: 0 auto
}

.pop-up-object__swiper .swiper-slide {
    position: relative;
    z-index: 0;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0)
}

.pop-up-object__swiper .swiper-slide .swiper-slide__container {
    padding-top: 50%
}

.pop-up-object__swiper .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.pop-up-object__btns__container .swiper-button-prev:after,.pop-up-object__btns__container .swiper-button-next:after {
    display: none
}

.pop-up-object__btns__container .swiper-button-prev,.pop-up-object__btns__container .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    background-image: url(./images/design/arrow-more-white.png);
    background-repeat: no-repeat;
    background-position: center;
    margin: unset;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    transition: all .3s ease
}

.pop-up-object__btns__container .swiper-button-prev:hover,.pop-up-object__btns__container .swiper-button-next:hover {
    background-color: #0a637f
}

@media screen and (max-width: 650px) {
    .pop-up-object__btns__container .swiper-button-prev,.pop-up-object__btns__container .swiper-button-next {
        width:30px;
        height: 30px
    }
}

.pop-up-object__btns__container .swiper-button-prev {
	-webkit-transform: rotate(180deg) translate(0, 50%);
	-moz-transform: rotate(180deg) translate(0,50%);
	-ms-transform: rotate(180deg) translate(0,50%);
	-o-transform: rotate(180deg) translate(0,50%);
	transform: rotate(180deg) translate(0, 50%);
	left: 0
}

.pop-up-object__btns__container .swiper-button-next {
    right: 0
}

.pop-up-object__btns__container .swiper-button-prev svg,
.pop-up-object__btns__container .swiper-button-next svg{
	display: none;
}
