@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');

:root {
    --font-family: "PT Sans", sans-serif;
    --font-weight: 700;
    --font-style: normal;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.font-family,
select.font-family option
{
    font-family: var(--font-family);
    font-style: var(--font-style);
    font-weight: var(--font-weight);
}

.preloader {
    position: fixed;
    top:0;
    left:0;
    background-color: rgb(255, 255, 255);
    height: 100vh;
    width:100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader h1 {
    position: relative;
    font-size: 5vw;
    color: rgb(255, 255, 255);
    -webkit-text-stroke: #0274BD 0.1vw;
}

.preloader h1::before {
    content:attr(data-text);
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    overflow: hidden;
    color: #0274BD;
    /* border-right:2px solid #0274BD; */
    -webkit-text-stroke: 0;
    clip-path: polygon(0 41%, 16% 42%, 29% 45%, 41% 50%, 50% 55%, 60% 51%, 72% 46%, 87% 45%, 100% 46%, 100% 100%, 0% 100%);
    /* animation: animateWidth 9s linear; */
}

@keyframes animateWidth {

    0% {
        width:0%;
    }

    100% {
        width:100%;
    }

}


.lds-ripple {
    position: relative;
}

.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}



/* preloader */

.blank_form {
    position: fixed;
    z-index:1000;
    width:100%;
    height: 100%;
    backdrop-filter:blur(16px);
    display:none;
    justify-content: center;
    align-items:center;
}

.info__blank {
    width:500px;
    background-image: linear-gradient(120deg, rgb(255, 255, 255, 80%), rgb(255, 255, 255, 80%));
    box-shadow: #b4b3b3 0px 0px 10px;
    border-radius:10px;
    position:relative;
}

.info__blank form {
    width: 90%;
    margin-inline: auto;
}

.info__blank label:not(:last-child) {
    color:inherit;
    width:100%;
    transform: scale(1,1);
    margin-block: 20px;
    display: flex;
}

.info__blank label span, label.margin-none {
    background-color: inherit;
    font-size:1em;
    height:auto !important;
    width:100% !important;
    margin: 0 !important;
}

.info__blank input {
    border:0;
    font-size:1.1em;
    background-color: inherit;
    border-bottom:0px solid #c9c2c2;
    margin-top:0px;
    width:100%;
    outline:0
}

.input__underline {
    border-bottom: 2px solid #ccc;
    outline:0;
    position: relative;
}

select {
    background-color: inherit;
    border: 0;
    appearance: auto;
    width: 100%;
    outline: none;
    font-size:1.1em;
}

select::-webkit-scrollbar {
    width:0px;
}

option {
    font-size:0.8em;
    background-color: inherit;
    padding-left:10px;
    margin-top: 10px;
}

button[type=submit]:focus-within {
    outline: none;
    color:#328f5a;
}

.input__underline::after {
    content:"";
    width:100%;
    height:2px;
    position: absolute;
    bottom:0%;
    left:0;
    border-radius:20px;
    transform: scale(0,1);
    transition: all 500ms ease;
    background-color: #3AB396;
}

.input__underline:focus-within::after{
   transform: scale(1,1);
}

.srch_prdct:not(:last-child) {
    width:100%;
    margin-block: 20px;
}

.input__underline > label {
    margin:5px 0;
    width:100%;
}

:is(.input__underline) :focus ~ .select, .select:has(label):active {
    height:200px
}

.select {
    width:100%;
    height:0px;
    background-color: #f9faf9;
    border-radius: 1px;
    position: absolute;
    top:130%;
    z-index:2;
    transition: all 500ms ease;
    overflow:hidden scroll;
    padding: 0 10px;
}

.select span {
    margin: 10px 0;
}

.select label {
    margin:5px 15px;
    padding:8px 7px;
    border-radius: 3px;
    width:auto;
    transition: all 300ms ease;
}

.select label:hover {
    background-color: #d4d1cb;
}

.select input[type=radio] {
    display:none;
}

:is(.select#slct_prdct, .select#slct_country) input[type=radio]:checked + label {
    background-color: #a09f9f;
}

.select::-webkit-scrollbar {
    width: 2px;
}

.select::-webkit-scrollbar-thumb {
    width: 2px;
    background-color: #d9dbdd;
}


.submit__arrow {
    margin:20px 0;
    position: relative;
    text-align: center;
    width:80%;
    margin: 20px auto;
    border-radius: 10px;
    border:2px solid #9CAF88;
    transition: all 300ms ease;
}

.submit__arrow button {
    border: 0;
    color:#9CAF88;
    position: relative;
    font-size: 1.5em;
    margin: 0px;
    background-color: inherit;
    transition:all 500ms ease;
}

.wrong::before {
    content: '';
    width:100%;
    display: block;
    border-bottom:2px solid #ff0000;
    position: absolute;
    bottom:0;
}

.submit__arrow:hover {
    box-shadow: #9CAF88 0 0 20px;
}

.submit__arrow:hover button {
    cursor: pointer;
}

.submit__arrow:hover button::after {
    width:100%;
}

.submit__arrow button::after {
    content:attr(data-value);
    display:block;
    position:absolute;
    top:0;
    color:#328f5a;
    width:0%;
    height:100%;
    overflow:hidden;
    transition: all 300ms ease;
}

/* Poppup blank  */

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' -25,
  'opsz' 20
}
.material-symbols-sharp {
    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' -25,
    'opsz' 20
  }

  .container {
    width:1400px;
    margin: 0 auto;
    padding:0;
}
.blr_blck {
    float:left;
    width:100%;
    position:absolute;
    display: none;
    z-index: -1;
    overflow: hidden;
    opacity:0;
    padding:10px 20px;
    transition:all 500ms ease;
}
.show-block {
    display: block;
    z-index: 1;
    height: auto;
    opacity: 1;
}
.blr_blck a {
    display: block;
    color: #FFFFFF;
    background-color: #000000;
    text-decoration: none;
    padding:18px 15px;
    margin:0 0px;
    transition: 0.5s;
}

.wrapper1 {
    width:100%;
    /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
    transition: all 500ms ease;
    background: #fff;
    position: fixed;
    top:0;
    z-index: 1;
}

.wrapper {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
    background-color: inherit;
    position: relative;
    overflow: hidden;
}
.cntnr {
    max-width: 1200px;
}
.about_block {
    margin: 90px auto;
    display: flex;
}
.mason_stry {
    width:50%;
    margin: 0 20px;
    position: relative;
    margin-bottom: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.mason_stry h2 {
    padding-bottom: 0px;
    position: relative;
}
.mason_stry h2::after {
    content: "";
    display: block;
    width:50px;
    border-radius: 20px;
    height:2px;
    margin-top: 20px;
    background-color: red;
}
.mason_stry p {
    font-size: 15px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
}
.mason_stry span {
    float: left;
    width:100%;
    position: relative;
    margin-left: 0px;
    font-size: 17px;
    font-weight: 200;
}
.mason_stry span mark {
    background: inherit;
    color:rgb(231, 33, 33);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
}
.mason_stry .lost_cls {
    float: left;
    width:100%;
    margin-left: 0px;
    font-size: 17px;
    font-weight: 200;
}
.mason_animation_block {
    position: relative;
    overflow: hidden;
    left:-100%;
    transition: all 900ms ease;
}
.mason_animation_block1 {
    position: relative;
    overflow: hidden;
    right:-100%;
    transition: all 900ms ease;
}
.mason_stry .lost_cls:nth-of-type(2) {
    margin-top: 20px;
}
.mason_mchne {
    width:100%; 
    height:310px;
    padding:0px 0px;
    margin: 30px auto;
    display: flex;
}
.mason_mchne a {
    position: relative;
    padding:0px;
    width: 100%;
}
.mason_mchne img {
    width:100%;
    height: 100%;
}
.mason_mchne2 {
    float: left;
    width:100%;
    height:310px;
    display: flex;
    justify-content: center;
    justify-content: space-between;
    margin-bottom: 20px;
    overflow: hidden;
}
.mason_mchne2 a {
    padding:10px 0px;
    width:49%;
    position: relative;
    transition:all 900ms ease;
}

.mason_mchne2 img {
    width:100%;
    height: 100%;
}
.hero {
    float: left;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero h2 {
   margin-bottom: 10px;
   font-size:40px;
   font-weight: 600;
}
.scnd_hero {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.scnd_hero .ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 20px;
    width:100%;
}
.scnd_hero .ul h2 {
    padding:5px 0;
    font-size: 20px;
    margin-bottom: 0;
}
.scnd_hero .ul li {
    padding-left: 15px;
    margin:5px 0;
    font-size:0.8em;
}
.scnd_hero .ctgrs_prdcts {
    display: flex;
    width: 45%;
    margin:20px 10px;
    padding:20px;
    align-items: center;
    justify-content: center;
    border:2px solid rgba(128, 128, 128, 0.377);
}
.ctgrs_prdcts .prdct {
    width:100%;
    padding:0px 0px;
    position: relative;
    overflow: hidden;
}
.prdct img {
    width:100%;
    height: 100%;
}
.hde_bar a:last-child {
    border-bottom: 0;
}

/* Navbar menu */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .lft_blck a {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    font-size: 2em;
    padding: 20px 0;
    position: relative;
}

.navbar .lft_blck img {
    transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: scale(1);
}

.navbar .lft_blck img:hover {
    transform: scale(1.2);
}

.flex {
    
    position: fixed;
}

label {
    display:none;
    flex-direction:column;
    width:70px;
    cursor:pointer;
    transform: scale(0.4, 0.4);
}

label span {
    background: #000000;
    border-radius:10px;
    height:7px;
    margin: 7px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

label span:nth-of-type(1) {
    width:50%;     
}

label span:nth-of-type(2) {
    width:100%;
}

label span:nth-of-type(3) {
    width:75%;
}
   
label input[type="checkbox"] {
    display:none;
}
   
label input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    transform-origin:bottom;
    transform:rotatez(45deg) translate(8px,0px)
}
   
label input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    transform-origin:top;
    transform:rotatez(-45deg)
}
   
label input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
}

.rght_blck {
    position:relative;
    z-index:1;
    display: flex;
    align-items: center;
}

.rght_blck .responsive-block {
    display: flex;
    justify-content: space-between;
    z-index:1;
}

.rght_blck a, .rght_blck button {
    margin:0 15px;
    padding:10px;
    outline: 0;
    border:0;
    background: inherit;
    text-decoration: none;
    font-size: 20px;
    text-align: left;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.rght_blck button:has(> img) {
    margin: 0;
    transition: all 300ms ease;
    border-radius: 10px;
}

.rght_blck button:has(> img):hover {
    background-color: #f5f0f0;
}

.rght_blck img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    vertical-align: middle;
}

.rght_blck a {
    color: #000000;
}

.rght_blck .active {
    color:#ED1A23;
}

.rght_blck .hde_bar a {
    text-align: left;
    font-size: 0.8em;
    font-weight: 400;
    vertical-align: sub;
    border: 0;
}

.rght_blck a:hover, .rght_blck button:hover {
    color:#ED1A23;
    cursor: pointer;
}

.popover {
    position: relative;
    text-align: center;
}

.popover > button:hover {
    color:#000
}

.popovertarget {
    display: none;
    width:75px;
    overflow: hidden;
    position: absolute;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 5px;
}

.popovertarget > button {
    padding: 0;
    margin:2px 0;
    text-align: center;
}

.popover:hover > .popovertarget {
    display: flex;
    z-index: 2;
}

.hde_bar {
    position:absolute;
    top:100%;
    left: 0;
    display:none;
    padding:5px 0px;
    border-radius:2px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.hde_bar a {
    display:block;
    float:none;
    text-align: left;
    padding:15px 0px;
    font-size:12px;
    color:#000000;
    border-bottom: 1px solid rgb(53, 37, 37);
    /* font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal; */
}

.accordion {
    display:block;
}

.hde_bar .double-navbar {
    position: relative;
}

.hde_bar .double-hide-bar {
    top:0;
    left: 100%;
    width:100%;
    margin-left: 0px;
    background-color: #fff;
    position: absolute;
    z-index: -1;
    display: none;
    opacity: 0;
    transition: all 500ms ease;
}

.hde_bar .double-navbar .accordion {
    z-index: 1;
    opacity: 1;
    display: block;
}

.scrolledBar {
    box-shadow: rgb(171 120 120 / 40%) 0px 2px 19px;
    background:#FFFFFF;
    position: fixed;
    top:0;
}

.scrolledBar .lft_blck a, .scrolledBar .rght_blck a {
    color:#000000;
}

.scrolledBar h1 {
    color:#000000;
}

.scrolledBar .cntr_blck .mnu {
    background-color:#000000;
}

.vsble {
    height:320px;
    z-index: 2;
    opacity:1;
    display: none;
    bottom:0;
}

.frst_blck {
    float:left;
    width:100%;
    position: relative;
    top:100px;
    overflow: hidden;
    z-index: 0;
}

.splide__slide img {
    vertical-align: bottom;
    width:100%;
    height:100%;
    object-fit: cover;
}

.fade {
    animation: fade 3s;
}
@keyframes fade {
    from {
        opacity: 0.8;
    }
    to {
        opacity:1
    }
}
.ad_wrd {
    position: absolute;
    z-index: 1;
    left:80px;
    top:48%;
    padding:0 0px;
    color:#fff;
}

.ad_wrd h1 {
    padding:0;
    margin:0;
    font-size:70px;
    animation: show 2s linear;
}

.ad_wrd p {
    margin:0;
    padding:0;
}
.ad_wrd a {
    display: inline-block;
    text-decoration: none;
    color:#fff;
    font-size:25px;    
    margin:15px;
    border-radius: 20px;
    border: 2px solid #B02624;
    padding:10px 20px;
    transition: all 300ms ease;
}
.ad_wrd a:hover {
    background:#B02624;
}
.ad_wrd .main {
    background-color: #B02624;
    border-radius: 20px;
    margin-left:0;
    transition:all 500ms ease;
    box-shadow: #000000 0 0 0;
}
.ad_wrd .main:hover {
    box-shadow: 0px 0px 19px -2px #d61313;
}
.prdcts {
    float:left;
    width:100%;
    margin: 80px 0 0;
    display:flex;
    justify-content: space-evenly;
    flex-direction: column;
    /* font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal; */
    
}
.prdcts_abt {
    padding:100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prdcts_abt h1 {
    font-size: 50px;
}

p {
    margin:10px 0; 
    font-weight: 200;
    font-size: 18px;
}

.prjcts {
    float:left;
    width:100%;
    margin:0px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    position:relative;
}
.prjct_blck {
    width:380px;
    margin:0px 20px 90px;
    overflow: hidden;
    position:relative;
    border-radius: 0 20px 0 20px;
    box-shadow: rgba(148, 104, 104, 0.2) 0px 2px 19px;
    transition: all 500ms ease;
    font-size: 20px;
    position:relative;
    top:20px;
    /*line-height: 1.9;*/
}
.img_blck {
    position: relative;
    height: 50%;
    overflow:hidden;
    transition: all 500ms ease;
}
.prjct_blck:hover {
    top:10px;
    box-shadow: rgba(41, 31, 31, 0.2) 0px 5px 25px;
}
.dfntn {
    float:left;
    width:100%;
    padding:25px;
    background-color:rgba(252, 252, 252, 0.3);
    display: flex;
    flex-direction: column;
}
.dfntn h1 {
    float:left;
    margin:0 0 10px 0;
    font-size: 25px;
}
.dfntn .usr {
    float:left;
    display:flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}
.dfntn .usr p {
    font-size: 13px;
    margin:0 25px 0 3px;
}
.prjct_blck img {
    object-fit: cover;
    width:100%;
    height:100%;
}
.dfntn .txt {
    margin:15px 0;
}
.dfntn .txt p {
    float:left;
    font-size: 1rem
}
.wtch_all {
    float:left;
    background-color: inherit;
    display: flex;
    justify-content: flex-end;
}
.wtch_all a {
    text-decoration: none;
    color:rgba(117, 72, 72, 0.685);
}
.wtch_all a::after {
    content:'';
    display: block;
    width:0px;
    height:1px;
    background-color: inherit;
    transition: all 500ms ease;
}
.wtch_all a {
    color:rgb(126, 74, 74); ;
}
.wtch_all a:hover::after {
    width:100%;
    background-color: rgba(117,72,72, 0.685);
}
.contacts {
    width:80%;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features {
    float:left;
    width: 12%;
    position: relative;
    margin-right: 5px;
}
.features p {
    letter-spacing: 5px;
    padding-bottom: 10px;
    font-weight: 300;
}
.features h3 {
    font-size: 30px;
    padding-bottom:20px;
}
.features h3::after {
    content: "";
    display: block;
    margin-top: 20px;
    width:30px;
    height: 3px;
    background-color: #B02624;
}
.features span {
    font-weight: 300;
    display: block;
    font-size: 15px;
    padding-bottom: 20px;
}
.features a {
    text-decoration: none;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 2px solid red;
}
.feature-cards {
    float: left;
    display: flex;
    padding:0 10px;
}
.feature-cards span {
    text-align: left;
    font-size:13px;
}
.flip-card {
    width:210px;
    height:280px;
    margin-left: 10px;
    perspective: 1000px;
}
.flip-card-inner {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back, .flip-card-front-red {
    position: absolute;
    width: 100%;
    padding: 0 20px;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .flip-card-front-red {
    background-color: #d32222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }

/* footer section */

  .footer {
    float:left;
    width:100%;
    position:relative;
    overflow:hidden;
    padding:0px;
    margin:40px  0 0 0;
    background: rgb(0, 0, 0);
    color: white;
    text-align: left;
}

.footer-info {
    /* width: 1100px; */
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
}
.footer-info a {
    text-decoration: none;
    color: #ffffff;
}
.footer-info .info-block-1, .info-block-2, .info-block-3 {
    margin:20px 15px;
}

.footer-info .info-block-1 h1 {
    font-size: 45px;
    padding: 0%;
    margin: 0;
    margin-bottom: 10px;
}

.footer-info .info-block-1 p {
    padding: 0%;
    margin: 0%;
}

.footer-info .info-block-1 a {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    border:3px solid red;
    text-align: left;
    border-radius: 30px;
    padding: 10px 30px;
}

.footer-info .info-block-2 {
    display: flex;
    flex-direction: column;
    font-size: 15px;
}
.footer-info .info-block-2 p {
    margin:0;
    padding:0;
}
.footer-info .info-block-2 h3::after {
    content: '';
    display: block;
    margin: 10px 0;
    width:40px;
    height:2px;
    background-color: red;
}

.foot_bnnr {
    float:left;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width:100%;
    background-color: #FCD428;
    /* font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal; */
    margin:0px 0 0 0 ;
}

.footer .uppr_blck{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding:20px 0;
    color: #000000;
}

.footer .uppr_blck p {
    font-weight: 300;
}

.footer .uppr_blck a {
    text-decoration: none;
    color: #000000;
}


@media screen and (max-width:1280px) {
    
    .container {
        width:1100px;
    }

    .splide {
        width: 100%;
    }

    .ad_wrd {
        padding:0 0px;
    }
    .ad_wrd h1 {
        font-size:50px;
    }
    .ad_wrd p{
        font-size: 20px;
    }
    .prdcts_abt {
        padding:60px 0;
    }
    .prdcts_abt h1 {
        font-size:43px;
        text-align: center;
    }
    .prdcts_abt p {
        width: 100%;
        text-align: center;
    }
    .prjct_blck {
        width: 289px;
        background-color: inherit;
        margin: 0px 20px 61px;
        font-size:15px;
    }
    .dfntn {
        padding: 21px 4px 0px 17px;
    }
    .dfntn h1 {
        font-size: 1.5em;
    }
    .dfntn .txt p {
        font-size:0.9rem
    }
    .foot_bnnr h1 {
        font-size: 1.5rem;
    }
    .foot_bnnr p {
        font-size:1rem ;
    }
    .contacts {
        width:100%;
    }
    .features {
        width:14%;
    }
    .wrapper {
        padding:0 50px;
    }
    .scnd_hero {
        width:100%;
    }
    .foot_bnnr{
        justify-content: space-between;
        padding: 0 95px;
    }
}
@media screen and (max-width:1024px){

    .container {
        width:1000px;
    }

    .about_block {
        flex-direction: column;
    }
    .hde_bar {
        width:190px;
    }
    .hde_bar a {
        padding:12px 4px;
        font-size: 0.6em;
    }
    .navbar {
        justify-content: space-around;
    }
    .rght_blck {
        left:0;
    }
    .ad_wrd {
        padding:0;
        top:45%;
        left:100px;
    }
    .scnd_hero .ul li {
        font-size: 11px;
    }
    .ad_wrd a {
        font-size: 15px;
        padding:7px 18px;
        margin:15px 6px;
    }
    .ad_wrd h1 {
        font-size: 36px;
    }
    .ad_wrd p {
        font-size:25px;
    }
    .mason_stry {
        width:100%;
    }
    .mason_stry span {
        font-size:16px;
    }
    .mason_stry span mark {
        font-size: 15px;
    }
    .mason_mchne2 {
        height:355px
    }
    .wtch_all {
        width: 90%;
    }
    .contacts {
        width:100%;
        flex-direction: column;
    }
    .features {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }
    .mason_stry {
        padding:0 0px;
    }
    .mason_mchne {
        top:auto;
    }
    .flip-card {
        width:230px;
    }
}
@media screen and (max-width:912px) {

    .container {
        width:800px;
    }

    .mason_stry p {
        font-size: 24px;
    }
    .mason_stry span {
        width:100%;
        font-size: 24px;
    }
    .mason_mchne {
        position: relative;
        width:100%;
    }
    .mason_mchne2 {
        width:100%;
    }
    .mason_mchne2 a {
        width:70%;
        display: block;
        margin: auto;
    }
    .mason_stry {
        margin-bottom: 0;
    }
    .scnd_hero .ctgrs_prdcts {
        width:100%;
    }
    .flip-card {
        width:210px;
    }
    .hero {
        margin-top: 40px;
    }
    .scnd_hero .ctgrs_prdcts {
        justify-content: flex-start;
    }
    .ctgrs_prdcts .prdct {
        width:49%;
    }
    .scnd_hero .ul h2 {
        font-size: 29px;
    }
    .scnd_hero .ul li {
        font-size: 25px;
    }
    .prdcts_abt p {
        font-size:24px;
    }

    .prjct_blck {
        width:100%;
        height: auto;
    }

    .dfntn h1 {
        font-size: 2.5em;
    }
    .dfntn .usr p {
        font-size: 0.9em;
    }
    .dfntn .txt p {
        font-size: 1.7em;
    }
    .wtch_all a {
        font-size: 16px;
    }
    .features p {
        font-size: 25px;
    }
    .features h3 {        
        font-size: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }
    .features span, .features a {
        font-size: 20px;
        text-align: center;
    }
    .ad_wrd {
        left:50px;
    }
    .ad_wrd h1 {
        font-size: 50px;
    }
    .ad_wrd a {
        font-size: 20px;
        padding:15px 35px;
        font-size: 25px;
    }
}
@media screen and (max-width:853px) {
    .navbar {
        justify-content: space-between;
    }
    .hde_bar {
        position: relative;
        width:100%;
    }
    .hde_bar .double-navbar:hover .double-hide-bar {
        position: relative;
        left:0;
        background: #fdf3f3;
        width:100%;
    }
    .container {
        width:90%;
    }
    label {
        display:flex;
    }
    
    .rght_blck {
        position: initial;
        flex-direction: row-reverse;
    }

    .popovertarget button {
        margin:5px !important;
        padding:5px !important;
    }

    .rght_blck .responsive-block {
        flex-direction: column;
        background: #ffffff;
        width:100%;
        position: absolute;
        top:100%;
        left:0;
        padding: 0px;
        display:none;
    }
    .rght_blck .visible-flex {
        display: flex;
    }
    .contacts {
        flex-direction: column;
    }    
    .rght_blck a , .rght_blck button {
        font-size: 15px;
        padding:10px;
        margin:10px;
    }
    .features {
        width:100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .feature-cards {
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 0px;
        flex-wrap: wrap;
    }       
    .flip-card {
        width:45%;
        margin:30px 0 0 0;
    }
    .mason_stry {
        padding:0 20px;
        margin: 0;
    }
    .mason_stry span {
        width:100%;
    }
    .mason_mchne2 {
        width:100%;
    }
    .mason_mchne2 a {
        width: 60%;
        display: block;
        margin: auto;
    }
    .mason_stry .lost_cls {
        width: 100%;
        margin-left: 0;
    }
    .hero {
        margin-top: 40px;
    }
    .scnd_hero .ctgrs_prdcts {
        width: 100%;
        margin: 10px auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-evenly;
    }
    .scnd_hero .ul li {
        font-size: 20px;
        margin: 9px 0;
    }
    .ad_wrd a {
        font-size: 20px;
        padding: 13px 35px;
        font-size: 17px;
    }
    .ctgrs_prdcts .prdct {
        width: 100%;
    }
    .prdcts_abt {
        padding: 60px 15px;
    }
    .prjct_blck {
        width:100%;
    }
    .dfntn .txt p {
        font-size:0.9rem
    }
    }
@media screen and (max-width:540px) {

    .info__blank {
        width:90%;
    }

    .nv_mnu button {
        font-size: 13px;
        padding: 13px 10px;
    }
    .rght_blck a, .rght_blck button {
        font-size: 15px;
        padding: 13px 10px;
        margin:10px;
    }
    .lft_blck h1 {
        font-size: 20px;
    }
    .navbar {
        justify-content: space-around;
    }
    
    .ad_wrd h1 {
        text-align: center;
        font-size:25px;
    }
    .ad_wrd p {
        font-size: 18px;
    }
    .ad_wrd a {
        font-size: 20px;
        padding: 7px 14px;
        font-size: 13px;
        text-align: center;
    }
    .hde_bar a {
        width:100%;
        padding:10px 10px;
        font-size: 11px;
    }
    .about_block {
        display: flex;
        flex-direction: column;
        margin: 90px auto 10px;
    }
    .mason_stry {
        margin-bottom: 0px;
        padding:0;
        width:100%;
    }
    .mason_stry span {
        width:100%;
        margin:0;
        font-size: 16px;
    }
    .mason_mchne {
        float:left;
        width:100%;
        height:234px;
        position: relative;
        top:0;
        display: flex;
        justify-content: space-between;
        margin: 25px 0 0 0;
    }
    .mason_mchne a {
        padding:0;
        width:100%;
    }
    .mason_mchne2 {
        float:left;
        width:100%;
        display: flex;
        margin:0;
        margin-bottom: 10px;
        justify-content: center;
        padding: 0 0px;
        height: auto;
    }
    .mason_mchne2 a {
        position: relative;
        overflow: hidden;
        padding:10px 5px;
        height:150px;
    }
    .cntnr {
        padding:0 20px;
    }
    .mason_stry .lost_cls {
        width:100%;
        margin:0;
        font-size:14px;
    }
    .scnd_hero {
        width:100%;
        justify-content: left;
    }
    .scnd_hero .ctgrs_prdcts {
        flex-direction: column;
        width: 90%;
        align-items: flex-start;
        padding:20px;
    }
    .ctgrs_prdcts .prdct {
        width:100%;
        padding: 0px 0 0 0 ;
        margin:auto;
    }
    .scnd_hero .ul {
        padding-left: 0;
        text-align: center;
    }
    .scnd_hero .ul h2 {
        font-size: 19px;
    }
    .scnd_hero .ul li {
        font-size: 13px;
    }
    .prdcts_abt h1 {
        font-size:24px;
    }
    .prdcts_abt p {
        font-size:17px;
    }
    .hero h2 {
        font-size:1.5rem;
        margin-bottom: 0;
    }
    .contacts {
        width:100%;
        flex-direction: column;
    }
    .wtch_all a {
        font-size: 14px;
    }
    .features {
        width:100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
        padding:0 10px;
        align-items: center
    }
    .features h3:after {
        margin-left: auto;
        margin-right: auto;
    }
    .features p {
        font-size: 15px;
    }
    .features h3 {
        font-size: 30px;
    }
    .features span, .features a {
        text-align: center;
        font-size: 17px;
    }
    .feature-cards {
        width:100%;
        flex-direction: column;
        align-items: center;
    }
    .flip-card {
        width:90%;
        margin:0;
        margin-bottom: 20px;
    }
    .prdcts_abt {
        padding:20px;
    }
    .prjct_blck {
        width:380px;
    }
    .dfntn {
        padding: 20px 10px;

    }
    .footer-info {
        width:100%;
        flex-direction: column;
        text-align: center;
    }
    .footer-info .info-block-2 h3::after {
        margin:15px auto;
    }
}

@media screen and (max-width:430px) {
    .prdcts_abt h1 {
        font-size:33px;
    }
    .prdcts_abt p {
        text-align: center;
        width:100%;
        font-size: 15px;
    }
    .prjcts {
        margin:4px 0 0 0;
    }
    .prjct_blck {
        width: 100%;
    }
    .dfntn {
        height:auto;
        align-items: center;
        text-align: center;
    }
    .dfntn .txt {
        margin:5px 0;
    }
    .wtch_all {
        width:100%;
        justify-content: center;
    }
    .navbar {
        justify-content: space-between;
        z-index: 2;
    }
    .lft_blck h1 {
        font-size: 30px;
    }
     .main_blck {
        align-items:center;
        margin:20px 0;
     }
     .footer {
     text-align:center;
     }
     .frst_blck {
        justify-content: left;
     }
     .ad_wrd {
        position: absolute;
        width: 100%;
        z-index: 1;
        padding:0;
        left:0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .ad_wrd a {
        font-size: 9px;
        width: 40%;
        padding: 5px 0px;
        margin: 15px 0;
    }
    .ad_wrd p {
        font-size: 15px;
    }
    
     .prdcts {
        margin:20px 0;
     }
     .cntr_blck {
        padding:0;
        display:block;
     }
     .vsble {
        display: block;
     }
     .footer .uppr_blck {
        align-items: center;
        padding:10px 0;
     }
     .foot_bnnr {
        flex-direction: column;
        padding:20px;
     }
     .blr_blck {
        top:100%;
        left: 0;
     }
     .features span {
        width:100%;
        text-align: center;
     }
     .wrapper {
        padding:0;
     }
     .scnd_hero .ul li {
        font-size: 17px;
        margin: 9px 0;
    }
    .dfntn h1 {
        font-size: 1.6em;
    }
    .dfntn .usr {
        margin-top: 15px ;
    }
    .dfntn .usr p {
        font-size: 0.9em;
    }
    .dfntn .txt p {
        font-size: 1.3em;
    }
    .mason_mchne2 a {
        width: 90%;
        display: block;
        margin: auto;
    }
}