@font-face {
    // название шрифта(чтобы не запутаться лучше указать название папки со шрифтом) 
    font-family: "Ostrovsky"; 
    // адрес шрифта и тип 
    src: url("fonts/Ostrovsky-Bold_0.otf");
}
@font-face {
    // название шрифта(чтобы не запутаться лучше указать название папки со шрифтом) 
    font-family: "Microsoft Sans Serif"; 
    // адрес шрифта и тип 
    src: url("fonts/microsoftsansserif.ttf");
}
@font-face { 
    font-family: "HalvarBreit-Md"; 
    src: url("fonts/HalvarBreit/HalvarBreit-Md.ttf");
}
@font-face { 
    font-family: "HalvarBreit-Lt"; 
    src: url("fonts/HalvarBreit/HalvarBreit-Lt.ttf");
}
@font-face { 
    font-family: "HalvarBreit-Bd"; 
    src: url("fonts/HalvarBreit/HalvarBreit-Bd.ttf");
}
body.builders {
    margin: 0;
    padding: 0;
    color: #000;
    box-sizing: border-box;
    font-family: "HalvarBreit-Md, sans-serif !important";
}
a {
    text-decoration: none;
}
.modal {
	color: #000;
	z-index: 200;
}
.close {
	background: transparent;
	border: none;
	font-size: 1.5rem;
	font-weight: 600;
}

@media (min-width: 992px) {
	.modal-dialog {
		max-width: 800px;
	}
}
.header-banner2 {
	display: none;
}
/*----------------- HEADER ----------------- */
.bx-header.no-designers, .workarea {
    display: none;
}
.mobile-header {
    display: none;
}
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
	background-color: #fff;
    box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
}
.header-inner {
	width: 100%;
    max-width: 1200px;
	margin: 0 auto;
}
.header-list {
    display: flex;
    justify-content: space-between;
}
.header-left, .header-right {
    display: flex;
	align-items: center;
}
.header-left {
	justify-content: start;
}
.header-left-logo {

}
.header-list-item {
    font-weight: 600;
    margin: 1rem;
    padding: 0.5rem;
    background-color: #000;
    border: 2px solid #e8e8e8;
    color: #0f0f0f;
    border-radius: 1rem;
    transition: .35s;
}
.header-left .header-list-item:first-child, .header-right .header-list-item:last-child {
    background-color: #FFEC4C;
    border: 2px solid #FFEC4C;
}
.header-list-item:hover {
    background: transparent;
    color: #e8e8e8;
}
.header-left .header-list-item:first-child:hover, .header-right .header-list-item:last-child:hover {
    background: transparent;
    color: #FFEC4C;
}
.header-mid {
    display: flex;
    align-items: center;
	justify-content: center;
}
.header-mid-item {
    position: relative;
    margin: 1rem;
    padding: 0.5rem;
    color: #000;
    transition: .35s;
}
.header-mid-item:hover {
    color: #FFEC4C;
}
.header-mid-item:hover:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 40%;
    height: 3px;
    width: 15px;
    border-radius: 2px;
    background-color: #FFEC4C;
}
.header-right {
	justify-content: end;
}
.header-right-item {
	margin: 0 auto;
    display: block;
    border: solid 2px #000;
    padding: 10px 15px;
    color: #000;
}
.header-right-item:hover {
    color: #FFEC4C;
	border: solid 2px #FFEC4C;
}
.header-right-item-name {

}
/*----------------- END HEADER ----------------- */

/*----------------- SECTION1 ----------------- */
.section-inner {
	width: 100%;
	max-width: 1200px;
    margin: 20px auto 40px;
}
.builders-banner-title {
    color: #000;
	text-align: center;
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
	display: flex;
    justify-content: center;
    font-family: HalvarBreit-Bd, sans-serif !important;
}
.builders-banner-img {
	position: relative;
}
.builders-banner-img img {
	width: 100%;
}
.grayscale {
	filter: grayscale(1);
	transition: 1s;
}
.grayscale:hover {
	filter: grayscale(0);
}
.builders-banner-img-title {
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translate(0, -50%);
	font-size: 30px;
    font-weight: 600;
    color: #000;
    background-color: #fff6;
}

.builders-banner-img-whatsup {
	display: block;
    position: absolute;
    top: 1%;
    right: 3%;
    width: max-content;
    padding: 10px;
    background-color: #3f97528c;
    color: #fff;
    border-radius: 5px;
}
.builders-banner-img-whatsup:hover {
    background-color: #3f9752;
    color: #fff;
}



@media (max-width: 992px) {
	.builders-banner-title {
		font-size: 50px;
		line-height: 50px;
	}
}
@media (max-width: 575px) {
	.builders-banner-img-title {
		top: 70%;
		left: 0;
		font-size: 20px;
	}
	.builders-banner-title {
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 10px;
	}
	.section-right-title {
		font-size: 20px;
	}
}


/*----------------- END SECTION1 ----------------- */

/*----------------- SECTION2 ----------------- */

.section-title {
	text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
	color: #999;
	line-height: 50px;
	font-family: HalvarBreit-Lt, sans-serif !important;
}
.section-right-title {
	font-size: 24px;
    margin-bottom: 10px;
	font-family: HalvarBreit-Md, sans-serif !important;
}
.invitation {

}
.invitation-top {

}
.invitation-top-left {

}

.invitation-top-left-title {

}
.invitation-top-right {

}
.invitation-top-right-title {
}
.invitation-top-right-description {

}
.invitation-bottom {

}
.invitation-bottom-item {

}
.invitation-bottom-item-img {
	width: 100%;
}
.invitation-bottom-item-img img {
	width: 100%;
}
.invitation-bottom-item-description {
	margin: 10px 0;
	font-family: HalvarBreit-Lt, sans-serif !important;
}

/*----------------- END SECTION2 ----------------- */

/*----------------- SECTION3 ----------------- */
.advantages {

}
.advantages-left {

}
.advantages-left-title {

}
.advantages-right {

}
.advantages-right-title {

}
.advantages-bottom {

}
.advantages-bottom-column {

}
.advantages-bottom-column-item {
	display: flex;
	margin: 15px 0;
}
.advantages-bottom-column-item-img {
	width: 60px;
}
.advantages-bottom-column-item-img img {
	width: 100%;
}
.advantages-bottom-column-item-descr {
	width: calc(100% - 70px);
    margin-left: 10px;
}
}
/*----------------- END SECTION3 ----------------- */

/*----------------- NEWS ----------------- */

.news {

}
.news-top {

}
.news-top-left {

}

.news-top-left-title {

}
.news-top-right {

}
.news-top-right-title {

}
.news-bottom {

}
.news-bottom-item {

}
.news-bottom-item-img {
	width: 100%;
}
.news-bottom-item-img img {
	width: 100%;
}
.news-bottom-item-description {
	margin: 10px 0;
	font-family: HalvarBreit-Lt, sans-serif !important;
}
/*----------------- END NEWS ----------------- */

/*----------------- BRANDS ----------------- */
.brands {

}
.brands-top {

}
.brands-top-left {

}

.brands-top-left-title {

}
.brands-top-right {

}
.brands-top-right-title {

}
.brands-top-right-description {

}
.brands-bottom {

}
.brands-bottom-item {
    margin-bottom: 20px;
    padding: 10px;
	box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
	background-color: #fff;
}
.brands-bottom-item-img {
	width: 150px;
    margin: 20px auto;
}
.brands-bottom-item-img img {
	width: 100%;
}
/*----------------- END BRANDS ----------------- */

/*----------------- CONTACTS ----------------- */
#contacts {
	background-color: #efefef;
}
.contacts-inner {
	padding: 20px 0 60px;
	margin-bottom: 0;
}
/*----------------- END CONTACTS ----------------- */
/*----------------- FOOTER ----------------- */
.footer-builders {
	background-color: #000;
	color: #fff;
}
.footer-builders-inner {
	width: 100%;
    max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0 0;
}
.footer-builders-mobile-logo {
	width: 150px;
}
.footer-builders-mobile-logo img {
	width: 100%;
}
.footer-builders-top {
	margin-bottom: 40px;
}
.footer-builders-top-column-title {
	font-weight: 600;
}
.footer-builders-top-column {

}
.footer-builders-top-column-list {

}
.footer-builders-top-column-list-item {
	padding: 10px 0;
    color: #ccc;
}
.footer-builders-top-column-list-item a {
	color: #ccc;
}
.footer-builders-top-column-list-item a:hover {
    color: #FFEC4C;
}
.footer-builders-mid-line {
	height: 1px;
	background-color: #fff;
}
.footer-builders-bottom { 
}
.footer-builders-bottom-list {
	display: flex;
    flex-wrap: wrap;
}
.footer-builders-bottom-list-item {
    color: #ccc;
	display: block;
    width: max-content;
    padding: 10px 0;
    margin-right: 20px;
}
.footer-builders-bottom-list-item:hover {
    color: #FFEC4C;
}
/*----------------- END FOOTER ----------------- */

/*----------------- IPAD ----------------- */
@media (max-width: 768px) {
    /*----------------- IPAD HEADER ----------------- */
    .header {
        display: none;
    }
    .mobile-header {
        display: block;
		height: auto;
        padding: 10px;
        position: sticky;
        top: 0;
        z-index: 100;
        background: #000;
    }
    .mobile-header-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
		height: auto;
    }
	.mobile-logo {
		width: 110px;
	}
	.mobile-logo img {
		width: 100%;
	}
    .mobile-header-menu-opener .bi-list {
        font-size: 2rem;
        color: #FFEC4C;
        background-color: #1f1f1f;
        border-radius: 5px;
    }
    .mobile-header-menu-opener .bi-x {
        font-size: 2rem;
        color: #1f1f1f;
        background-color: #FFEC4C;
        border-radius: 5px;
    }
    #mobile-menu {
        transition: .35s;
    }
    #mobile-menu-opener {
        transition: .35s;
    }
    .mobile-menu {
        position: relative;
        height: 100vh;
        width: 100%;
        background-color: #000;
        z-index: 100;
    }
    .mobile-menu-links {
        text-align: right;
    }
    .mobile-menu-link {
        display: block;
        padding: 1rem;
        border-top: 1px solid #ccc;
        /*color: #FFEC4C;*/
		color: #fff;
        font-size: 1.5rem;
    }
    .mobile-menu-bottom {
        padding: 1rem;
    }
    .mobile-menu-bottom-inner {
        display: flex;
        justify-content: end;
    }
    .mobile-menu-bottom-item-link {
        padding: .5rem;
        margin-left: 1rem;
        background-color: #fff;
        color: #000;
        border-radius: 1rem;
    }
    /*----------------- END IPAD HEADER ----------------- */
    .section-inner {
		padding-left: 10px;
    	padding-right: 10px;
    }
	.footer-builders-inner {
		padding-left: 10px;
    	padding-right: 10px;
	}
	.builders-banner-title {
		font-size: 40px;
		line-height: 40px;
	}
}
/*----------------- END IPAD ----------------- */

/*----------------- MOBILE MENU ----------------- */
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#fff;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham1 .top {
  stroke-dasharray: 40 139;
}
.ham1 .bottom {
  stroke-dasharray: 40 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
/*----------------- END MOBILE MENU ----------------- */