@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto+Condensed:wght@700&family=Roboto:wght@300;400;500;700&family=Rubik:wght@400;500;700&family=Ubuntu:wght@700&display=swap&display=swap&subset=cyrillic-ext");

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #ffffff;
}

html::-webkit-scrollbar-thumb {
    background: #FFA548;
}

*::selection {
    background: #FFA548;
    color: #ffffff;
}

.container {
    max-width: 1216px;
    padding: 0px 15px;
    margin: 0 auto;
}

.dee-breadcrumbs{
    margin-top: 130px;
    margin-bottom: 50px;
}

.breadcrumb{
    display: flex;
    align-items: center;
}
.breadcrumb a{
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    color: rgba(58, 58, 58, 0.5);
    border-bottom: 1px solid rgba(58, 58, 58, 0.5);
    
    font-weight: 300;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "⟶";

    color: #3A3A3A;
    font-size: 1.6rem;
    padding: 0px 10px;
    
    font-weight: 400;
}

.breadcrumb li{
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    color: #3A3A3A;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
	.dee-breadcrumbs{
    	margin-top: 100px;
    	margin-bottom: 50px;
	}
	.breadcrumb a {
    	font-size: 1.8rem;
	}
	.breadcrumb li::after{
		font-size: 1.8rem;
	}
	.breadcrumb li {
		font-size: 1.8rem;
	}
}

.scroll-up {
  position: fixed;
  left: 50px;
  bottom: 50px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #dcdcdc;
  cursor: pointer;
  visibility: hidden;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 4px #dcdcdc;
          box-shadow: inset 0 0 0 4px #dcdcdc;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateY(25px);
      -ms-transform: translateY(25px);
          transform: translateY(25px);
}

.scroll-up::before {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 25px;
  content: "↑";
  color: #FFA548;
}

.scroll-up :hover {
  color: #FFA548;
}

.scroll-up__svg-path {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  fill: none;
  stroke: orange;
  stroke-width: 4px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.scroll-up--active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.fix-btn {
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    background-color: #FFA548;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
    z-index: 1000;
}

.fix-btn:before,
.fix-btn:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #FFA548;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

.fix-btn::before {
    animation: pulse 2s ease-out infinite;
}

.fix-btn::after {
    animation: pulse 2s 1s ease-out infinite;
}

@keyframes pulse {
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* HEADER START */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 25px;
    z-index: 50;
    transition: 0.5s;
}

.header-white{
    background-color: #fff;
    box-shadow: 0 4px 2px -2px rgba(0,0,0, 0.2);
}

.header-white .header-logo{
    color: #444444;
}

.header-white .header-logo:hover{
    color: #444444;
}


.header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

.header-logo {
    z-index: 3;
    font-family: 'Roboto Condensed', sans-serif;
    color: #444444;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
}

.header-logo span{
    color: #FFA548;
}

.header-logo:hover {
     color: #444444;
}

@media screen and (max-width: 768px) {
    .header-logo {
        color: #ffffff;
    }
    .header-logo:hover {
        color: #ffffff;
    }
}

.header-logo-img {
}

.header-menu {
}

.header-list {
    display: flex;
    align-items: center;
    z-index: 2;
}

.header-item {
    margin-right: 30px;
}

.header-item:last-child {
    margin-right: 0px;
}

.header-link {
    font-weight: 400;
    font-size: 1.7rem;
    color: #333333;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    position: relative;
    transition: 0.5s;
}

.header-link::before{
    content: "";
    position: absolute;
    background-color: #FFA548;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -7px;
    transition: 0.5s;
}

.header-link:hover {
    transition: 0.5s;
    color: #FFA548;
}

.header-link:hover::before {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: #444444;
    font-family: 'Roboto', sans-serif;
    transition: 0.5s;
}

.header-phone:hover{
    transition: 0.5s;
    color: #FFA548;
}

.header-phone svg {
    margin-right: 10px;
}

.header-burger{
    display: none;
}

.header-lock{
    overflow: hidden;
}

.header-sticky{
    padding-top: 0px;
    background-color: #ffffff;
    transition: 0.5s;
    box-shadow: 0 4px 2px -2px rgba(0,0,0, 0.2);
}

.header-sticky .header-logo{
    color: #444444;
    transition: 0.5s;
}

.header-sticky .header-logo:hover{
    color: #444444;
}

@media screen and (max-width: 992px) {
    .header {
        padding-top: 0px;
    }
    
    .lock {
        overflow: hidden;
    }
    
    .header-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background-color: #ffffff;
        overflow: auto;
        padding-top: 100px;
        transition: 0.5s;
    }
    
    .header-phone {
        display: none;
    }
    
    .header-list {
        display: block;
        text-align: center;
    }
    
    .header-item {
        margin-right: 0px;
        margin-bottom: 30px;
    }
    
    .header-link {
        font-size: 2.5rem;
        opacity: 1;
        transform: translateX(0);
        transition: 0.5s;
    }
    
    .header-burger {
        display: block;
        cursor: pointer;
        height: 50px;
        width: 50px;
        overflow: hidden;
        position: relative;
        z-index: 3;
        background-color: #ffffff;
        border-radius: 10px;
        display: grid;
        place-items: center;
        border: 2px solid #FFA548;
    }
    
    .header-menu.header-active {
        left: 0;
        transition: 0.5s;
    }
    
    .header-logo-active{
        color: #444444;
    }
    
    .header-logo-active:hover{
        color: #444444;
    }
    
    .header-burger svg {
      height: 60px;
      position: absolute;
      width: 60px;
    }
    
    .plate {
      height: 70px;
      width: 70px;
    }
    .header-burger {
      filter: url(theme.css);
    }
    .x {
      transform: scale(0);
      transition: transform 400ms;
    }
    .line {
      fill: none;
      stroke: #FFA548;
      stroke-width: 6px;
      stroke-linecap: round;
      stroke-linejoin: round;
      transform-origin: 50%;
      transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
    }
    .x .line {
      stroke-width: 5.5px;
    }
    .plate1 .line2 {
      stroke-dasharray: 40 200;
      stroke-dashoffset: 0px;
    }
    .plate1 .line3 {
      stroke-dasharray: 40 179;
      stroke-dashoffset: 0px;
    }
    .header-burger-active .line {
      transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, transform 500ms;
    }
    .header-burger-active.plate1 .line1 {
      transform: scale(0, 1);
      transition: transform 500ms 100ms;
    }
    .header-burger-active.plate1 .line2 {
      stroke-dasharray: 5px 200;
      stroke-dashoffset: -164px;
    }
    .header-burger-active.plate1 .line3 {
      stroke-dasharray: 5px 179;
      stroke-dashoffset: -142px;
    }
    .header-burger-active .x {
      transform: scale(1);
      transition: transform 400ms 350ms;
    }
}

/* HEADER END */

/* FOOTER START */

.footer {
    position: relative;
}

.footer-obg::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%);
}

.footer-obg{
    position: relative;
}

.footer-top {
    padding: 50px 0px;
    position: relative;
    overflow: hidden;
}

.footer-wave-11{
    position: absolute;
    margin-bottom: 60px;
    top: 0;
    right: 47%;
    z-index: 2;
}

.footer-top-logo {
}

.footer-top-item:first-child {
    margin-bottom: 35px;
}

.footer-top-item {
    margin-bottom: 25px;
}

.footer-top-item:last-child{
    margin-bottom: 0px;
}

.footer-top-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    margin-top: 40px;
}
.footer-top-link {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.footer-top-link:hover{
    color: #ffffff;
}

.footer-top-link svg{
    margin-right: 20px;
}

.footer-bot {
    background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%), #343434;
    padding: 25px 0px;
    text-align: center;
    position: relative;
    z-index:4;
}

.footer-bot::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}

.footer-bot-link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
}

.footer-bot-link:hover{
    color: #ffffff;
}

.footer-top2-body {
    padding-bottom: 100px;
    max-width: 380px;
}

.container-relative{
    position: relative;
}

.footer-wave22{
    position: absolute;
    top:0;
    right: 46%;
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .footer-wave-11{
        display: none;
    }
    .footer-obg::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%);
    }
}

.footer-top2-title {
    font-family: 'Rubik', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
}
.footer-top2-item {
    margin-bottom: 30px;
}


.footer{
    position: relative;
}

.footer-map2{
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index:1;
}

.footer-top2-item ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}

.footer-top2-item li:not(:last-of-type)::after {
    content: "/";
    color: #555555;
    font-size: 1.6rem;
    padding: 0px 10px;
    
    font-weight: 400;
}

.footer-top2-item:last-child{
    margin-bottom: 0px;
}
.footer-top2-item-title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}
.footer-top2-item-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #555555;
    line-height: 150%;
}
.footer-top2-item-link {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 40;
    color: #555555;
    cursor: pointer;
    
    line-height: 150%;
}
@media screen and (max-width: 768px) {
    .footer-wave22{
        display: none;
        position: absolute;
        top:0;
        right: 46%;
        z-index: 3;
    }
    
    .footer-flex{
        display: flex;
        flex-direction: column;
    }
    
    .footer-top2-body{
        padding-bottom: 50px;
        margin-top: 20px;
    }
    
    .footer-map2{
        position: static;
        width: 100%;
        height: 100%;
        z-index:1;
    }
    .footer-map2 iframe {
    height: 350px;
    }
}

/* FOOTER END */

/* BANNER START */

.banner-dee {
    background: url("../../../../storage/app/media/global/banner.jpg") no-repeat;
    background-position: right;
    background-size: cover;
    overflow: hidden;
    position: relative;
}



.banner-body-dee {
    height: 100vh;
    position: relative;
}

.banner-offer {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    max-width: 485px;
}

.banner-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
}

.banner-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #555555;
    margin-bottom: 40px;
    line-height: 150%;
}

.btn-dee {
    padding: 15px 30px;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.6rem;
    color: #FFFFFF;
    transition: 0.5s;
    user-select: none;
}

.btn-dee:hover{
    background: none;
    transition: 0.5s;
    background-color: #ffffff;
    outline-radius: 5px;
    color: #FFA548;
}

@media screen and (max-width: 576px) {
    .banner-body-dee{
        height: 80vh;
    }
}


@media screen and (max-width: 768px) {
    .banner-dee::before{
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        opacity: 0.4;
        background-color: #000000;
    }
    
    .banner-desc{
        color: #fff;
    }
    
    .banner-title{
        color: #fff;
    }
}

/* BANNER END */

/* ADVANTAGES START */

.dee-mrb {
    margin-bottom: 70px;
}


.advantage-body {
}

.dee-section-title {
    margin-bottom: 70px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4.8rem;
    font-weight: 700;
    color: #333333;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

.dee-section-title::before{
    position: absolute;
    content: "";
    bottom: -18px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 60px;
    height: 4px;
    background-color: #FFA548;
}

.advantage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

.advantage-item {
    padding: 0px 25px;
    padding-top: 40px;
    padding-bottom: 35px;background: linear-gradient(87.64deg, #FFF3E1 0.3%, #FFE9DD 99.57%), #F5F5F5;
    border-radius: 10px;
}


.advantage-item svg {
    margin-bottom: 35px;
}

.advantage-item-mode {
    background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%), #F5F5F5;
}

.advantage-item-mode svg path{
    fill: #FFFFFF;
}

.advantage-item-mode2{
    grid-column-start: 1;
    grid-column-end: 3;
}

.advantage-item-big-title {
    font-family: 'Roboto Condensed', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 12rem;
    margin-bottom: 15px;
}

.advantage-item-title {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.advantage-item-title-mode{
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.advantage-item-text{
    font-family: 'Roboto', sans-serif;
    color: #837668;
    font-weight: 400;
    font-size: 1.8em;
    line-height: 150%;
}

.advantage-item-text-mode{
    font-family: 'Roboto', sans-serif;
    color: #FFF3E5;
    font-weight: 400;
    font-size: 1.8em;
    line-height: 150%;
}

@media screen and (max-width: 768px) {
    .advantage-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .advantage-inner {
        grid-template-columns: 1fr;
    }
    
    .advantage-item-mode2{
    grid-column-start: 1;
    grid-column-end: 1;
    }
    
    .dee-mrb{
        margin-bottom: 40px;
    }
}

/* ADVANTAGES END */

/* ABOUT START */

.dee-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px; 
}
.dee-inner-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-top {
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.about-img-bot{
    display: flex;
    align-items: center;
    justify-content: center;
}

.dee-inner-center img{
    border-radius: 10px;
}

.about-info {
}
.dee-btn2 {
    padding: 14px 29px;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.6rem;
    color: #FF9C48;
    transition: 0.5s;
    user-select: none;
    border: 1px solid #FF9C48;
    margin-top: 20px ;
}

.dee-btn2:hover{
    background-color: #FF9C48;
    color: #ffffff;
}

.dee-p p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #555555;
    line-height: 150%;
    margin-bottom: 10px;
}

.dee-p2 p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #555555;
    line-height: 150%;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.about-img-top{
		display: block;
	}
    .dee-inner-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 25px; 
    }
    
    .dee-inner-center img{
        width: 100%;
    }
    
    .dee-btn2{
        margin-left: 50%;
        transform: translate(-50%, 0%);
    }
    .about-img-bot{
    	display: none;
    }
}

/* ABOUT END */

/* DISCOUNT START */
.discount {
    position: relative;
    overflow: hidden;
}

.discount::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 100%;
    height: 100%;
    z-index: -3;
}

.discount-body {
    position: relative;
}

.discount-body::before{
    content: "%";
    position: absolute;
    bottom: -80px;
    left: -60px;
    font-size: 50rem;
    color: #FFFFFF;
    opacity: 0.2;
    font-weight: 700;
    z-index: -1;
}

.discount-offer {
    padding: 80px 0px;
    max-width: 591px;
    z-index: 20;
}

.discount-title {
    font-family: 'Roboto Condensed', sans-serif;
    color: #FFFFFF;
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.discount-sub {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 25px;
}
.discount-desc {
    font-family: 'Roboto', sans-serif;
    color: #FFF8EF;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.discount-body-imgs{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.discount-body-img-disc{
    position: absolute;
    bottom: 0;
    right: -130px;
    z-index: -2;
}

.discount-body-img-man{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}


@media screen and (max-width: 670px) {
    .discount-body-imgs{
        display: none;
    }
}

.dee-btn3 {
    padding: 14px 29px;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.6rem;
    color: #FF9C48;
    transition: 0.5s;
    user-select: none;
    margin-top: 20px ;
    border: 1px solid #ffffff;
}

.dee-btn3:hover{
    background-color: #FF9C48;
    color: #ffffff;
}

/* DISCOUNT END */

/* SCHEME START */

.scheme-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.scheme-item svg {
    margin-bottom: 20px;
}
.scheme-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #444444;
    margin-bottom: 15px;
}
.scheme-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #555555;
    line-height: 150%;
}

@media screen and (max-width: 768px) {
    .scheme-inner {
        grid-gap: 15px;
    }
}

/* SCHEME END */

.services-inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

@media screen and (max-width: 992px) {
    .services-inner{
        grid-template-columns: 1fr 1fr;
        grid-gap: 25px;
    }
}

@media screen and (max-width: 576px) {
    .services-inner{
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
}

.feedback-inner-grid .record-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}


.feedback-item {
    position: relative;
}
.feedback-item-top {
    padding: 30px 20px;
    border: 1px solid #C4C4C4;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.feedback-item-top-inner{
	height: 185px;
	overflow: auto;
	padding-right: 20px;
}

.feedback-item-top-svg{
	position: absolute;
	bottom: -20px;
	left: 15px;
}

.feedback-item-top p{
    color: #555555;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
}
.feedback-item-bot {
    display: flex;
    align-items: center;
    padding-left: 7.5px;
}
.feedback-item-img {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 181, 71, 1);
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.feedback-item-img img{
	width: 100%;
}
.feedback-item-title {
    color: #555555;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-left: 20px;
}

.feedback-item-h{
	padding: 0px 10px;
}

@media screen and (max-width: 768px) {
	.feedback-inner-grid .record-list {
	    grid-template-columns: 1fr 1fr;
	}
	.feedback-item-top p{
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 576px) {
	.feedback-inner-grid .record-list {
	    grid-template-columns: 1fr;
	}
}

#galleryId{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-bottom: 30px;
}

.dee-fix-gal > div > div:nth-child(1){
    display: block !important;
}

.dee-fix-gal > div > div:nth-child(2){
    display: block !important;
}

.dee-fix-gal > div > div:nth-child(3){
    display: block !important;
}

.dee-fix-gal > div > div:nth-child(4){
    display: block !important;
}

.dee-fix-gal > div > div:nth-child(5){
    display: block !important;
}

.dee-fix-gal > div > div:nth-child(6){
    display: block !important;
}

.dee-fix-gal > div > div {
    display: none !important;
}

#galleryId div{
    width: 100%;
    height: 100%;
    margin: 0px !important;
    float: none !important;
}

#galleryId  div a{
    width: 100%;
    height: 100%;
}

#galleryId  div a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
@media screen and (max-width: 768px) {
    #galleryId{
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
}

.feedback-slider-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
}

.feedback-slider {
	width: 100%;
	position: relative;
}

.dee-btn-center{
	margin-left: 50%;
	transform: translate(-50%, 0%);
}

.feedback-slider .feedback-item{
    width: 380px;
}

.services-prev {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 20px;
}
.services-title {
	text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif;
	color: #333333;
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: 10px;
}
.services-desc {
	font-family: 'Roboto', sans-serif;
	color: #555555;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 150%;
}

.uslugi-head {
	position: relative;
	height: 55vh;
}
.uslugi-head-wave{
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
}
.uslugi-head::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.4;
	z-index: -1;
}
.uslugi-head-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.blog_post_breadcrumbs a {
	font-family: 'Roboto', sans-serif;
	color: #FFFFFF;
	font-weight: 300;
	font-size: 1.4rem;
	opacity: 0.5;
}

.breadcrumb_separator {
	font-size: 0;
}

.blog_post_breadcrumbs a::after {
    content: "⟶";
    color: #FFFFFF;
    font-size: 1.6rem;
    padding: 0px 10px;
    font-weight: 400;
	opacity: 0.5;
	text-decoration: none;
}

.breadcrumb_currentcategory{
	font-family: 'Roboto', sans-serif;
	color: #FFFFFF;
	font-weight: 400;
	font-size: 1.4rem;
}

.uslugi-head-cont{
	position: relative;
	height: 100%;
}
.uslugi-head-bread {
	padding-top: 10%;
}
.uslugi-head-title-wrap{
	height: 100%;
	position: relative;
	z-index: 1;
}
.uslugi-head-title {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%,-50%);
	font-family: 'Roboto Condensed', sans-serif;
	color: #FFFFFF;
	font-size: 3.8rem;
	font-weight: 700;
	max-width: 470px;
	text-transform: uppercase;
	line-height: 150%;
}

.uslugi-head-title::before{
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 60px;
	height: 4px;
	background-color: #FF9C48;
}

.uslugi-content {
	margin-top: 100px;
}
.uslugi-content-item {
	margin-bottom: 100px;
}

.banner-dee{
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.uslugi-content-item {
		margin-bottom: 50px;
	}
	.uslugi-content {
		margin-top: 50px;
	}.uslugi-head {
		position: relative;
		height: 55vh;
	}
	.uslugi-head-bread {
		padding-top: 80px;
	}
	.uslugi-head-title {
		top: 55%;
	}
	.uslugi-head-wave{
		bottom: -5px;
	}
	.uslugi-head-title::before {
		bottom: -10px;
	}
}

.uslugi-content-wrap {
}
.uslugi-content-img {
}
.uslugi-content-info {
}

.uslugi-content-item:nth-child(even) {
	grid-template-areas: 'first second';
}

.uslugi-content-item:nth-child(even) .dee-inner-center:first-child {
    grid-area: second;
}

.uslugi-content-item:nth-child(even) .dee-inner-center:last-child {
    grid-area: first;
}

@media screen and (max-width: 768px) {
	.uslugi-content-item:nth-child(even) {
		grid-template-areas: none;
	}
	.uslugi-content-item:nth-child(even) .dee-inner-center:first-child {
    	grid-area: auto;
	}
	.uslugi-content-item:nth-child(even) .dee-inner-center:last-child {
    	grid-area: auto;
	}
}

 
.btn-dee-mb{
	margin-top: 20px;
}

.feedback-slider .slick-arrow{
	width: 14px;
	height: 24px;
}

@media screen and (max-width: 768px) {
	.feedback-slider {
		width: 100%;
	}
	
	.tabInner p {
		font-size: 2rem;
	}
	
	.tabInner {
		padding: 10px;
	}
	
	button.slick-prev.slick-arrow {
		display: none !important;
	}
	
	button.slick-next.slick-arrow {
		display: none !important;
	}
	
	.feedback-slider .slick-arrow{
		width: 0px;
		height: 0px;
	}
	.slick-prev {
    	left: 0px !important;
	}
	.slick-next {
    	right: 0px !important;
	}
}

.feedback-slider .slick-arrow.slick-prev{

	background: url('../../../../storage/app/media/svg/left.svg') 0 0/100% no-repeat;
}

.feedback-slider .slick-arrow.slick-next{

	background: url('../../../../storage/app/media/svg/right.svg') 0 0/100% no-repeat;
}

/* ACCORDION */

.faq-accordion {
	max-width: 100%;
}

.faq-accordion-item {
    position: relative;
    margin-bottom: 20px;
}

.faq-accordion-item-title {
	cursor: pointer;
	position: relative;
	padding: 20px;
	background: linear-gradient(87.64deg, #FFF3E1 0.3%, #FFE9DD 99.57%), #F3F3F3;
	border-radius: 10px;
	transition: 0.5s;
}

.faq-accordion-item-title::before{
	content: "+";
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0%, -50%);
	background-color: #FF9B48;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: 0.5s;
	padding-bottom: 5px;
}

.faq-accordion-item-title-text {
	color: #444444;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 150%;
	transition: 0.5s;
	padding-right: 20px;
}

.faq-accordion-item-content {
	position: relative;
	background: #fff;
	max-height: 0;
	overflow: hidden;
	padding: 10px;
	transition: 1s;
}

.faq-accordion-item-content p {
	font-family: 'Roboto', sans-serif;
	color: #555555;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 150%;
	margin-bottom: 10px;
	transition: 0.5s;
}

.faq-accordion-item--active .faq-accordion-item-title {
	background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%);
	transition: 0.5s;
}

.faq-accordion-item--active .faq-accordion-item-title-text {
	color: #fff;
    transition: 0.5s;
}

.faq-accordion-item--active .faq-accordion-item-title::before{
	content: "-";
    color: #158AFE;
	background-color: #fff;
    transition: 0.5s;
}

.faq-accordion-item--active .faq-accordion-item-content {
	max-height: 1000px;
    transition: 1s;
}

/* ACCORDION */

.dee-modal-content{
	border: none;
	border-radius: 5px;
}

.dee-modal-dialog{
	max-width: 800px;
	padding: 0px 5px;
}

.dee-modal-body{
	display: grid;
	grid-template-columns: 1fr 2fr;
	overflow: hidden;
	border-radius: 5px;
}

.dee-modal-inner{
	position: relative;
	padding: 30px;
	background: linear-gradient(87.64deg, #FFB547 0.3%, #FF8947 99.57%);
}

.dee-modal-img-wrap{
	overflow: hidden;
}

.dee-modal-img{
	height: 100%;
	width: 100%;
}

.dee-modal-form{
	display: flex;
	flex-direction: column;
}

.dee-modal-title {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 4rem;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.dee-modal-subtitle {
	font-family: 'Roboto', sans-serif;
	font-size: 1.8rem;
	color: #fff;
	font-weight: 400;
	margin-bottom: 10px;
	line-height: 150%;
}
.dee-modal-input {
	max-width: 295px;
	margin-bottom: 20px;
	padding: 15px 30px;
	border-radius: 5px;
	font-family: 'Roboto', sans-serif;
	font-size: 2rem;
}

.dee-modal-input:last-child{
}
.dee-modal-btn {
	max-width: 240px;
	margin-top: 0px !important;
}

.dee-btn-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	opacity: 1;
	width: 30px;
    height: 30px;
}

.dee-btn-close::before{
	content: "+";
	color: #fff;
	display: inline-block;
	font-size: 30px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
	left: 50%;
}

@media screen and (max-width: 768px) {
	.dee-modal-body {
		grid-template-columns: 1fr 1fr;
	}
	


	.dee-modal-btn {
		width: 80%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 576px) {
	.dee-modal-body {
		grid-template-columns: 1fr;
	}
	.dee-modal-img-wrap{
		display: none;
	}
	.dee-modal-input{
		max-width: 100%;
	}
	.dee-modal-inner{
		border-radius: 5px;
	}
}


/* CONTROLL FIX */

@media screen and (max-width: 768px) {
	.footer-top2-item-title {
    	font-size: 2rem;
	}
	.footer-top2-item-text {
	    font-size: 1.8rem;
	}
	.footer-top2-item-link {
	    font-size: 1.8rem;
	}
}

.dee-p ul{
	list-style: none;
    padding: 0;
}

.dee-p ul li{
	font-size: 1.6rem;
    margin-bottom: 10px;
    padding-left: 10px;
}

.footer-top2-item-link{
	transition: 0.5s all;
}

.footer-top2-item-link:hover{
	color: #FFA548 !important;
}

.faq-accordion-item-content ul {
	list-style: none;
	padding: 0;
}

.faq-accordion-item-content ul li{
	font-family: 'Roboto', sans-serif;
    color: #555555;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
    margin-bottom: 10px;
    transition: 0.5s;
    padding-left: 15px;
}
.dee-inner-grid.al_center {
    align-items: center;
}
.dee-section-text {font-family: 'Roboto', sans-serif;font-size: 1.8rem;color: #555555;text-align: center;line-height: 1.3;}

.dee-section-text:not(:last-child) {
    margin-bottom: 40px;
}
.dee-section-title.left {
    text-align: left;
}

.dee-section-title.left:before {
    left: 0;
    transform: translateX(0);
}