/** 
    Joomla Site CSS Template 8.0 (for Joomla 6)
    by ak@virtech.kz
**/

@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Prosto+One&display=swap');

/* body and html main things */
:root{
    --black: #3D3D3D;
    --blue: #2F6FAF;
    --blue-light: #2F6FAF25;
    --red: #E5322C;
    --green: #1BB25A;
    --green-light: #97EFBB;
    --gray: #D7D7D7;
    --gray-dark: #9D9E9E;
    --gray-deep: #5D5D5D;
    --common-radius: 10px;
    --line-140: 140%;
    --line-100: 110%;
}
html{
    transition: none;
}
body{
    font-family: "Commissioner", sans-serif;
    font-weight: 300;
    font-optical-sizing: auto;
    transition: none;
	font-size: 16px;
	position: relative;
    overflow-x: hidden;
    color: var(--black);
}
.body{
    overflow-x: hidden; 
}
a{
    color: var(--blue);
    transition: .35s ease all;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: var(--blue-light);
}
strong{
    font-weight: 600;
}
.wrapper{
    width: 1400px;
    margin: 0 auto;
    position: relative;
}
.swiper-horizontal{
    position: relative;
}
.swiper-button-next, .swiper-button-prev svg{
    color: #000;
    fill: #000;
    width: 20px;
    height: 20px;
}
.swiper-button-next{
    
}
.swiper-pagination-bullet{
    background: var(--gray-deep);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 4px 4px var(--gray);
}
.swiper-pagination-bullet-active{

}



/** animations **/



/** to top **/
#top{
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    color: #fff;
    background: rgba(0,0,0,0.1);
    z-index: 9;
    padding: 12px 20px 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: .35s ease all;
}
#top:hover{
    background: rgba(0,0,0,0.3);
    transition: .35s ease all;
}


/** buttons **/
.btn{
    display: flex;
    background: #fff;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border-radius: var(--common-radius);
    padding: 15px 20px;
    color: var(--blue);
    font-weight: 600;
    font-size: 18px;
    max-height: 60px;
    transition: .35s ease all;
}
.btn:hover{
    filter: brightness(1.2);
    transition: .35s ease all;
}
.btn:active,
.btn:focus{
    filter: brightness(0.8);
}
.btn-main{
    border: 1px solid var(--gray);
    color: var(--blue);
}
.btn-main:hover{
    background: #fff !important;
    border: 1px solid var(--blue); 
    color: var(--blue);
}
.btn-main:active,
.btn-main:focus{
    border: 1px solid var(--blue) !important; 
    color: var(--blue) !important;
}
.btn-green{
    border: 1px solid var(--green);
    background: var(--green);
    color: #fff;
}
.btn-green:hover{
    border: 1px solid var(--green);
    background: var(--green);
    color: #fff;
}
.btn-green:active,
.btn-green:focus{
    border: 1px solid var(--green) !important;
    background: var(--green) !important;
    color: #fff !important;
}
.btn-blue{
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
}
.btn-blue:hover{
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
}
.btn-blue:active,
.btn-blue:focus{
    border: 1px solid var(--blue) !important;
    background: var(--blue) !important;
    color: #fff !important;
}
.btn-red{
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
}
.btn-red:hover{
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
}
.btn-red:active,
.btn-red:focus{
    border: 1px solid var(--red) !important;
    background: var(--red) !important;
    color: #fff !important;
}
.btn-red-outline{
    border: 1px solid var(--red);
    background: #fff;
    color: var(--red);
}
.btn-red-outline:hover{
    border: 1px solid var(--red);
    background: #fff;
    color: var(--red);
}
.btn-red-outline:active,
.btn-red-outline:focus{
    border: 1px solid var(--red) !important;
    background: #fff !important;
    color: var(--red) !important;
}
.btn-gray{
    border: none;
    font-weight: 300;
    background: none;
    color: var(--black);
    display: flex;
    transition: .35s ease all;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: #dfdfdf50;
}


/** icons **/
i.phone{
    display: flex;
    width: 20px;
    height: 20px;
    background: url(/images/template/phone_blue.svg) no-repeat center center /20px;
}
i.email{
    display: flex;
    width: 20px;
    height: 20px;
    background: url(/images/template/email_blue.svg) no-repeat center center /20px;
}
i.whatsapp{
    display: flex;
    width: 20px;
    height: 20px;
    background: url(/images/template/whatsapp_white.svg) no-repeat center center /20px;
}
i.cart{
    display: flex;
    width: 20px;
    height: 20px;
    background: url(/images/template/cart_red.svg) no-repeat center center /20px;
}
i.download{
    display: flex;
    width: 20px;
    height: 20px;
    background: url(/images/template/download_white.svg) no-repeat center center /20px;
}
i.share{
    display: flex;
    width: 24px;
    height: 24px;
    background: url(/images/template/share_gray.svg) no-repeat center center /24px;
    margin-right: 10px;
}
i.more{
    display: flex;
    width: 24px;
    height: 24px;
    background: url(/images/template/link_gray.svg) no-repeat center center /24px;
    margin-right: 10px;
}


/** swiper **/
.swiper-wrapper{
    
}
.swiper-button-prev,
.swiper-button-next{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #EDEDED;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    bottom: 50% !important;
}
.swiper-button-prev svg,
.swiper-button-next svg{
    display: none;
}
.swiper-button-prev{
    background: #fff url(/images/template/left_blue.svg) no-repeat center center /6px;
}
.swiper-button-next{
    background: #fff url(/images/template/right_blue.svg) no-repeat center center /6px;
}


/** block **/
.block__title{
    font-family: "Prosto One";
    color: var(--blue);
    font-size: 52px;
    line-height: 100%;
}
.fs72{
    font-size: 72px;
}
.block__h1{
    font-family: "Prosto One";
    font-size: 50px;
    color: var(--red);
    line-height: 100%;
}
.block__h2{
    font-family: "Prosto One";
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
}
.block__h3{
    font-size: 14px;
    line-height: 100%;
}
.whiteblocks{

}
.whiteblocks__item{
    padding: 15px;
}
.whiteblocks__item__inner{
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 20px 20px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--common-radius);
}
.whiteblocks__item__inner__image{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}
.whiteblocks__item__inner__image img{
    width: 64px;
}
.whiteblocks__item__inner__content{
    font-family: "Prosto One";
    font-size: 24px;
}


/** header **/
.header__top__logo{
    background: url(/images/template/logo_red.png) no-repeat left top /78px;
    padding-left: 100px;
    height: 77px;
    justify-content: center;
    text-decoration: none;
}
.header__top__logo__title{
    font-size: 24px;
    color: var(--red);
}
.header__top__logo__slogan{
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}
.header__menu ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header__menu li{
    
}
.header__menu a{
    font-size: 24px;
    padding: 15px 0px;
    color: var(--blue);
    transition: .35s ease all;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: var(--blue-light);
}
.header__menu a:hover{
    filter: brightness(1.2);
    transition: .35s ease all;
}


/** welcome **/
.welcome{
    background: url(/images/template/intro_bg.png) no-repeat top center /cover;
    background-attachment: fixed;
}
.welcome__inner{
    background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, #FFFFFF 100%);
}


/** applicability **/
.swiper-slide__inner__content__title a{
    font-size: 20px;
}
.swiper-slide__inner__content__feature{
    font-size: 14px;
}
.swiper-slide__inner__image img{
    width: 120px;
    height: auto;
    object-fit: cover;
    
}


/** features **/
.features__item__content__title{
    font-family: "Prosto One";
    font-size: 20px;
    text-transform: uppercase;
    color: var(--blue);
    line-height: var(--line-100);
    padding-right: 45px;
}
.features__item__content__text{
    font-size: 14px;
    line-height: var(--line-100);
}


/** video **/
.video{
    background: url(/images/template/video_bg.png) no-repeat top center /cover;
    background-attachment: fixed;
}
.video__inner{
    background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, #FFFFFF 100%);
}
.video__item__image{
    border-radius: var(--common-radius);
    overflow: hidden;
}
.video__item__image img{
    width: 100%;
    transition: .35s ease all;
}
.video__item__image:hover img{
    transform: scale(1.1);
    filter: brightness(1.1);
    transition: .35s ease all;
}
.video__item__content__title a{
    font-family: "Prosto One";
    font-size: 24px;
    text-decoration: none;
}


/** calc **/
.calc{
    background: url(/images/template/intro_bg.png) no-repeat top center /cover;
    background-attachment: fixed;
}
.calc__inner{
    background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, #FFFFFF 100%);
}
.calculator-section {
    background: #F2F2F2;
}
.calculator-wrapper {
    position: relative;
}
.calc-side {
    padding: 20px;
}
.calc-title {
    font-family: 'Prosto One', sans-serif;
    color: var(--blue);
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.2;
}
.calc-input {
    color: var(--blue);
    height: 56px;
    border-radius: 10px;
    border: 1px solid var(--blue);
    font-size: 18px;
}
#compositeDiameter,
#metalDiameter{
    padding-left: 55px;
    background-color: #fff !important;
    background: url(/images/template/diameter_gray.svg) no-repeat left 15px center /24px, url(/images/template/down_blue.svg) no-repeat right 15px center /12px;
    backdrop-filter: blur(10px);
}
.result-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
}
.result-card:before{
    content: '';
    display: block;
    background: #fff;
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
    position: absolute;
    top: 50px;
    left: -8px;
    z-index: 0;
}
.result-card:after{
    content: '';
    display: block;
    background: #fff;
    width: 24px;
    height: 24px;
    transform: rotate(-45deg);
    position: absolute;
    top: 50px;
    right: -8px;
    z-index: 0;
}
.result-label {
    font-size: 20px;
}
.result-meters {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin: 15px 0;
    color: #000;
}
.price-badge {
    display: inline-block;
    background: var(--green-light);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
}
.result-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.result-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
}
.calc-note {
    font-size: 13px;
    color: #666;
}


/** geography **/
.geography__map{
    /*background: url(/images/template/geo_bg.png) no-repeat left top 0px /cover;
    height: 600px;*/
}
.geography__logos{
    background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, #FFFFFF 100%);
    height: 600px;
    overflow: hidden;
    position: relative;
}
.geography__logos::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    z-index: 3;
}
.geography__logos::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    z-index: 3;
}
.geography__slider .swiper-slide{
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 20px 20px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--common-radius);
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-vertical .swiper-button-prev{
    transform: rotate(90deg);
    top: 10px !important;
}
.swiper-vertical .swiper-button-next{
    transform: rotate(90deg);
    bottom: 10px !important;
}


/** form **/
.popup{
    background: #fff url(/images/template/form_bg.png) no-repeat center center /cover;
}
input[name="form[Contact]"],
input[name="form[Contact_callform]"],
input[name="form[Name_moreform]"],
input[name="form[Phone_moreform]"]{
    background: #fff url(/images/template/profile_gray.svg) no-repeat left 20px center /20px;
    backdrop-filter: blur(10px);
    padding-left: 60px;
    height: 60px;
    border: 1px solid var(--gray);
    border-radius: var(--common-radius);
}
.rsform input[type="text"],
.rsform input[type="number"]{
    backdrop-filter: blur(10px);
    height: 60px;
    border: 1px solid var(--gray);
    border-radius: var(--common-radius);
}
.form-check-label{
    font-size: 12px;
}
.callform,
.moreform,
.invoiceform{
    max-width: 500px;
}


/** footer **/
footer{
    color: #fff;
    background: var(--black) url(/images/template/footer_bg.png) no-repeat top center /cover;
    /*height: 390px;*/
    font-weight: 200;
}
.footer__title{
    font-family: "Prosto One";
    font-size: 20px;
    margin-bottom: 10px;
}
.footer__content{
    font-size: 16px;
}
.footer__menu ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer__menu li{

}
footer a{
    color: #fff;
    text-decoration-color: #ffffff25;
}
.footer__first{
    
}
.footer__second{
    border-top: 1px solid #ffffff25;
}


/** heading **/
.heading{
    font-family: "Prosto One";
    color: var(--blue);
    font-size: 52px;
    line-height: 100%;
}
.heading-h3{
	margin-bottom: 15px;
	font-size: 30px;
}

/** catalog **/
.category__leftaside .mod-articlescategories{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.category__leftaside .mod-articlescategories li{
    width: 100%;
    display: flex;
}
.category__leftaside .mod-articlescategories li a{
    display: flex;
    width: 100%;
    position: relative;
    padding: 18px 15px;
    padding-left: 40px;
    border-radius: var(--common-radius);
    transition: .35s ease all;
}
.category__leftaside .mod-articlescategories li a:hover{
    background: var(--blue-light);
    transition: .35s ease all;
}
.category__leftaside .mod-articlescategories li a:before{
    display: flex;
    width: 24px;
    height: 100%;
    content: '—';
    color: var(--gray);
    font-weight: 100;
    position: absolute;
    left: 10px;
    top: 0;
    padding: 0px 7px;
    align-items: center;
}
.category__leftaside .mod-articlescategories li.active a{
    background: var(--blue);
    color: #fff;
    text-decoration: none;
}
.category__leftaside .mod-articlescategories li.active a:hover{
    filter: brightness(1.2);
}
.category__items__item__inner__image{
    width: 100%;
    height: -web-fit-content;
    height: fit-content;
    border: 1px solid var(--gray);
    border-radius: var(--common-radius);
}
.category__items__item__inner__image img{
    width: 100%;
    height: fit-content;
    border-radius: var(--common-radius);
}
.category__items__item__inner__content{

}
.category__items__item__inner__content__title{

}
.category__items__item__inner__content__title a{

}
.category__items__item__inner__content__button{

}


/** getoffer-vertical **/
.getoffer-vertical{
    background: #dfdfdf50;
    border-radius: var(--common-radius);
    padding: 20px;
    margin: 30px 0;
}
.getoffer-vertical .block__title{
    font-size: 20px;
}


/** product **/
.carousel-thumbs .swiper-slide{
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.carousel-thumbs .swiper-slide img{
    border: 1px solid var(--gray);
    border-radius: var(--common-radius);
    cursor: pointer;
    transition: .35s ease all;
    /*width: 100%;
    height: 100%;
    object-fit: cover;*/
}
.carousel-thumbs .swiper-slide img:hover{
    border: 1px solid var(--blue-light);
    filter: brightness(1.05);
    transition: .35s ease all;
}
.carousel-thumbs .swiper-slide-thumb-active img{
    border: 1px solid var(--blue);
}
.delivery-item__title,
.delivery-item h4,
.mod-payment-item__title{
	margin-bottom: 10px;
	font-family: "Prosto One";
    color: var(--blue);
    font-size: 20px;
	text-transform: uppercase;
	line-height: 1;
}
.delivery-item h4{
	color: var(--black);
}
.mod-delivery-item{
	display: flex;
	align-items: center;
	min-height: 150px;
	padding: 0 30px 0 45px;
	font-family: "Prosto One";
	font-size: 24px;
	line-height: 1.25;
	background: #fff;
	border-radius: var(--common-radius);
	box-shadow: 0 20px 20px 10px rgba(0,0,0,0.1);
}
.fs-7{
	font-size: 14px;
}
.usefull-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.usefull-item__img{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 195px;
	margin-right: 30px;
	border: 1px solid #EDEDED;
	border-radius: var(--common-radius);
	overflow: hidden;
}
.usefull-item__title{
	font-size: 22px;
	color: var(--blue);
	text-decoration: underline;
}
.fos-product-name{
	color: var(--blue);
}
.fos-product-img{
	max-width: 200px;
	border-radius: var(--common-radius);
}
.btn-option,
.btn.btn-option:hover{
	display: inline-flex;
	color: var(--black);
	border: 1px solid var(--gray);
	filter: none;
}
.btn-option-active{
	color: var(--blue);
	border-color: var(--blue);
}
.gallery__item img{
	transition: all .3s ease;
}
.gallery__item img:hover{
	box-shadow: 0 7px 20px 2px rgba(0,0,0,0.5);
}
.share-msg{
    position: fixed;
	z-index: 99999;
    bottom: 20px;
    right: 20px;
	width: auto;
    background: #2F6FAF;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(100px);
}
.share-msg.show {
    opacity: 1;
    transform: translateY(-10px);
}
.carousel-thumbs .swiper-slide img{
	max-width: 100%;
}
.carousel-wrap .swiper-button-prev{
	left: 0;
}
.carousel-wrap .swiper-button-next{
	right: 0;
}