/*    FONTS    */
@font-face {
    font-family: Roboto;
    font-weight: 400;
    src: url(fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
    font-family: Roboto;
    font-weight: 500;
    src: url(fonts/Roboto/Roboto-Medium.ttf);
}
@font-face {
    font-family: Roboto;
    font-weight: 600;
    src: url(fonts/Roboto/Roboto-SemiBold.ttf);
}
@font-face {
    font-family: Roboto;
    font-weight: 700;
    src: url(fonts/Roboto/Roboto-Bold.ttf);
}



:root {
  --font-color: #5F6774;
  --title-color: #184890;
  --btn-color: #2558A4;
  --accent-color: #E95900;
}





@keyframes content {
    from{
        opacity: 0;
    }

    to{
        opacity: 1;
    }
}

*{
    outline: none !important;
    font-family: Roboto;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    color: var(--font-color);
	scroll-margin-top: 50px;
}
a[href="#"] {
    cursor: pointer;
}
body, html{
    animation: content 1s ease;
}
html{
    scroll-behavior: smooth;
}

body{
    position: relative;
    overflow-x: hidden;
    background: #eff2fa;
}

section{
    position: relative;
    margin:50px 0px;
    z-index: 1;
}

section .container{
    position: relative;
    z-index: 2;
}

.d-grid{
    display: grid;
    align-content: center;
}



a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
input:focus ,
.button,
.button-o,
[role="button"],
textarea:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  user-select: none !important;
}

h1{
    font-family: Roboto;
    font-weight: 700;
    font-size: 64px;
    line-height: 110%;
    color: #fff;
}
h2{
    font-family: Roboto;
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
    color: var(--title-color);
    line-height: 125%;
}




header{
    z-index: 110;
    display: block;
    width: 100%;
    transition: all 0.4s ease;
    top: 0px;
}

.cont-div{
    display: flex;
    grid-gap: 30px;
	list-style: none;
    padding: 0;
    margin: 0;
}
.cont-div a{
    color: var(--btn-color);
    font-size: 16px;
    text-transform: uppercase;
	transition: all 0.4s ease;
}
.nav-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}
.nav-soc{
    display: flex;
    grid-gap: 15px;
}
.nav-soc a{
    color: var(--btn-color);
    font-size: 16px;
	transition: all 0.4s ease;
}
.promo-wr{
    background: linear-gradient(180deg, #2558A4 0%, #1E1050 100%);
    border-radius: 16px;
    padding: 50px;
    position: relative;
}
.promo-wr::before{
    content: '';
    position: absolute;
    background: url(../img/promo-back.svg) center no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.promo-inn{
	position: relative;
	z-index: 1;
}
.promo-desc{
    color: #fff;
}
.promo-desc p{
    color: #fff;
}
.btn{
    background: #fff;
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 500;
    color: var(--title-color);
	border: none;
	transition: all 0.4s ease;
}
a:not([href]).btn{
	color: var(--title-color);
}
.promo-btns{
    display: flex;
    grid-gap: 25px;
    margin-top: 40px;
}
.btn-price{
    position: relative;
    display: flex;
    grid-gap: 10px;
}
.btn-price::before{
    content: '';
    background: url(../img/btn-price.svg) center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
	transition: all 0.4s ease;
}
.btn-price:hover::before{
    background: url(../img/btn-price-wh.svg) center no-repeat;
    background-size: contain;
}
.sec-title-wr{
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
.sec-title{
    font-size: 14px;
    color: var(--title-color);
    text-transform: uppercase;
}
.cats-list{
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    margin-top: 20px;
}
.cats-list a{
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--font-color);
    transition: all 0.4s ease;
    display: flex;
    grid-gap: 10px;
    position: relative;
}
.cats-list a::before{
    content: '';
    background: rgba(37, 88, 164, 0.34);
    width: 8px;
    height: 29px;
    border-radius: 16px;
    transition: all 0.4s ease;
}
.cats-list a.active{
    color: #232323;
}
.cats-list a:hover{
    color: #232323;
    text-decoration: unset;
}
.cats-list a.active::before{
    background: var(--btn-color);
}
.cats-list a:hover::before{
    background: var(--btn-color);
}
.cats-wr{
    display: grid;
    grid-template-columns: 0.6fr 1fr;
}
.cats-img {
    width: 100%;
    height: 617px;
    border-radius: 16px;
    grid-column: 2;
    grid-row-start: 1;
    grid-row-end: 3;
    overflow: hidden;
    padding-left: 70px;
    margin-top: 40px;
}

.cats-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Класс для анимации при смене картинки */
.cats-img img.fade-up {
    animation: faUp 0.6s ease forwards;
}

@keyframes faUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-blue{
    background-color: var(--btn-color);
    width: fit-content;
    color: #fff;
}
a:not([href]).btn-blue{
	color: var(--btn-color);
}
.btn-price.btn-blue::before{
    content: '';
    background: url(../img/btn-price-wh.svg) center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
	transition: all 0.4s ease;
}

.cats-cont .btn{
    margin-top: 40px;
}
.proiz-head{
    display: grid;
    grid-template-columns: 1fr 0.25fr;
}
.btn.btn-border{
    border: 1px solid var(--title-color);
    color: var(--title-color);
}
.proiz-sec .proiz-head .btn{
    width: 100%;
    padding: 12px 24px;
    margin-top: 25px;
}
.proiz-desc-wr{
    margin-top: 35px;
}
.proiz-wr{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: 40px;
}
.proiz-item{
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
}
.proiz-item img{
    width: 100%;
    height: 260px;
    border-radius: 8px;
    object-fit: cover;
}
.proiz-title{
    color: var(--title-color);
    font-size: 19px;
    font-weight: 500;
}
.proiz-sec .btn{
    margin: 40px auto 0;
}
.metall-wr{
    background: var(--btn-color);
    position: relative;
    padding: 50px;
    border-radius: 16px;
}
.metall-wr::before{
    content: '';
    position: absolute;
    top: 20px;
    right: -50px;
    background: url(../img/metall-back.svg) center no-repeat;
    background-size: contain;
    width: 70%;
    height: 100%;
    z-index: 0;
}
.metall-gal-inn{
    display: flex;
    grid-gap: 20px;
}
.metall-gal-item{
    width: 100%;
    max-width: 28.3%;
    height: 301px;
    overflow: hidden;
    border-radius: 16px;
}
.metall-gal-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.metall-head{
    z-index: 1;
    position: relative;
}
.metall-gal{
    z-index: 1;
    position: relative;
    margin-top: 30px;
}
.metall-wr .btn{
    width: fit-content;
    padding: 12px 24px;
    margin-top: 20px;
}
.metall-wr .sec-title{
    color: #fff;
}
.metall-wr h2{
    color: #fff;
}
.about-desc{
    column-count: 2;
    width: 75%;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: start;
}
.about-img{
    width: 100%;
    height: 533px;
    border-radius: 16px;
    overflow: hidden;
	object-fit: cover;
}
.about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partners-item{
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
	padding: 10px;
	background: #fff;
}
.partners-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.partners-slider2::after{
    content: '';
    background: #eff2fa;
    width: 160px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}
.partners-slider::after{
    content: '';
    background: #eff2fa;
    width: 160px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}
.partners-slider2{
    /* transform: rotate(180deg); */
    margin-top: 20px;
}
/* .partners-slider2 .partners-item{
    transform: rotate(180deg);
} */
.partners-wr{
    margin-top: 30px;
}
.contacts-wr{
    background: #fff;
    padding: 50px;
    border-radius: 16px;
}
.contacts-inn{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1.2fr;
}
.contacts-item{
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}
.contacts-title{
    color: #232323;
    font-weight: 500;
    font-size: 20px;
}
.contacts-cont{
    width: 100%;
    max-width: 197px;
}
.contacts-cont a{
    color: var(--font-color);
}
.contacts-cont-soc{
    display: flex;
    grid-gap: 10px;
}
.contacts-cont-soc a{
    background: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contacts-cont-soc a svg path{
    transition: all 0.4s ease;
}
.contacts-cont-soc a:hover svg path{
    fill-opacity: 0.9;
}
.contacts-item:last-child{
    grid-column: 3;
    grid-row-start: 2;
    grid-row-end: 4;
}
.contacts-item:nth-child(7n+6){
    grid-column-start: 1;
    grid-column-end: 3;
    height: 247px;
	padding: 0;
	overflow: hidden;
}
.contacts-item:last-child .contacts-cont{
    max-width: 349px; 
}
input{
    background: rgba(255,255,255,0.8);
    padding: 16px 22px;
    border-radius: 100px;
    border-color: transparent;
    width: 100%;
}
.accept-div{
    font-size: 13px;
    opacity: 0.7;
    display: flex;
    grid-gap: 5px;
	align-items: start;
}
.accept-div span{
    font-size: 13px;
    opacity: 1;
    
}
input[type="checkbox"]{
    width: 10px;
    border-radius: 0;
}
form .btn{
    width: 100%;
    max-width: 100%;
    margin-top: 35px;
}
form{
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    margin-top: 20px;
}
footer{
    background: #232323;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    padding: 35px;
}
.foot-nav-list a{
    color: #fff;
    text-transform: uppercase;
    transition: all 0.4s ease;
}
.foot-nav-list a:hover{
    color: var(--accent-color);
    text-decoration: unset;
}
.foot-soc a{
    background: rgba(0,0,0,0.5);
    width: 46px;
    height: 46px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot-soc a svg path{
    transition: all 0.4s ease;
}
.foot-soc a:hover svg path{
    fill-opacity: 0.9;
}
.foot-bottom-el{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.4s ease;
}
a.foot-bottom-el:hover{
    color: rgba(255,255,255,1);
    text-decoration: unset;
}
.foot-nav{
    display: flex;
    justify-content: space-between;
}
.foot-wr{
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    grid-gap: 50px;
}
.foot-soc{
    display: flex;
    grid-gap: 15px;
}
.foot-nav-list{
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.foot-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 35px;
    margin-top: 35px;
}
.btn.btn-border:hover{
    background: var(--title-color);
    color: #fff;
}
.btn:hover{
    background: var(--accent-color);
    color: #fff;
}
a:not([href]).btn:hover{
	color: #fff;
}
.nav-soc a svg path{
    transition: all 0.4s ease;
}
.nav-soc a:hover svg path{
    fill: var(--accent-color);
}
.cont-div a:hover{
    color: var(--accent-color);
    text-decoration: unset;
}
.nav-soc a:hover{
    color: var(--accent-color);
    text-decoration: unset;
}
.m-tog{
	display: none;
}
.m-tog-menu{
	display: none;
}
.m-tog-list{
	display: flex;
    flex-direction: column;
    grid-gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.m-tog-list a{
	color: #fff;
    text-transform: uppercase;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
	z-index: 2;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}
.callback-modal .contacts-item{
    background: #fff;
    padding-top: 0;
    border-radius: 16px;
}
.callback-modal input{
    background: #EFF3FAB2;
}
.callback-modal input[type="submit"]{
	background: var(--btn-color);
}
.callback-modal .modal-dialog{
    max-width: 413px;
}
.callback-modal .modal-content{
    border-radius: 16px;
}
.callback-modal .modal-header{
    width: 100%;
    border: unset;
    padding-bottom: 0;
}
.callback-modal .modal-body{
    padding: 0;
}
.callback-modal .contacts-title{
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
}
.thx-wr{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 40px;
}
.thx-cont{
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    text-align: center;
}
.thx-cont h1{
    font-size: 36px;
    color: #232323;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 125%;
}
.thx-wr .btn-blue{
    width: 100%;
    max-width: 440px;
}
.whatsapp-widjet {
  position: fixed;
  bottom: 15px;
  right: 15px;
  border: 1px solid var(--accent-color);
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 140;
  transition: all 0.5s ease;
  background: var(--accent-color);
  cursor: pointer;
}
.whatsapp-widjet-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.whatsapp-widjet-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.whatsapp-widjet-circle-left {
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  overflow: hidden;
  left: 0;
}
.whatsapp-widjet-circle-left {
  border: 1px solid var(--accent-color);
  position: absolute;
  top: -7px;
  bottom: 0;
  left: -7px;
  right: 0;
  background-clip: padding-box;
  width: 36px;
  height: 72px;
  border-radius: 76px 0 0 76px;
  border-right: none;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: pie-left 4s both linear infinite;
  -moz-animation: pie-left 4s both linear infinite;
  -ms-animation: pie-left 4s both linear infinite;
  -o-animation: pie-left 4s both linear infinite;
  animation: pie-left 4s both linear infinite;
}
.whatsapp-widjet-circle-right {
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  overflow: hidden;
  right: 0;
}
.whatsapp-widjet-circle-right {
  border: 1px solid transparent;
  position: absolute;
  top: -7px;
  bottom: 0;
  left: 0;
  right: -7px;
  background-clip: padding-box;
  width: 36px;
  height: 72px;
  border-radius: 76px 0 0 76px;
  border-right: none;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: pie-right 4s both linear infinite;
  -moz-animation: pie-right 4s both linear infinite;
  -ms-animation: pie-right 4s both linear infinite;
  -o-animation: pie-right 4s both linear infinite;
  animation: pie-right 4s both linear infinite;
}
@keyframes pie-left {
  0% {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  10% {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  20% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  40% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
}
.whatsapp-widjet.phone-w{
	left: 15px;
}
.pdf-page{
	width: 900px;
	margin: 100px auto;
}
.about-gallery{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 20px;
	margin-top: 20px;
}
.about-gallery-item{
	width: 100%;
	border-radius: 12px;
	height: 300px;
	overflow: hidden;
}
.about-gallery-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media all and (max-width:768px){
	.about-gallery{
		grid-template-columns: 1fr 1fr;
		grid-gap: 7px;
	}
	.about-gallery-item{
		height: 215px;
	}
}