@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
 font-family: "Vetrino.woff";
 src: url("/webfonts/Vetrino.woff") format("woff");
 font-weight: 300;
}

:root {
  --main-container: 1200px; 
  --small-container: 1000px;
  --radzel-margin: 170px;
  --radzel-dop: 130px;
  --offset-container: 50px;  
  --offset-content: 60px;    
}

::selection {
    color:#fff;
    background:#F2CA75; 
}

* {
	margin: 0;
	padding: 0;
    box-sizing:border-box;
}

html,
body {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-weight: 300;
    font-optical-sizing: auto;
    line-height: 1.3; 
}


.container {
    width: var(--main-container);
    margin: 0 auto; 
    padding: 5px 40px;
}

.content {
    display: flex;
}

.content__center {
    display: flex;
    justify-content: center;
}

h1, h2 {
    font-family: "Vetrino", serif;
}

h1 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 0px;
    line-height: 1;
}

h2 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1;  
}

h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;  
}

h4 {
    font-size: 24px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
}

h5 {
    font-size: 24px;
    font-weight: 800;
}

p {
   font-size: 14px;
   line-height: 130%;
   margin-bottom: 10px;
}

b, strong {
    font-weight: 700;
}

img {
	max-width: 100%;
	display:block; 
}

input, textarea {
    font-size: 18px;
} 

a {
	color: blue;
    transition: 0.7s;
}

a:hover {
	color: #FF0000; 
	text-decoration: none;
    transition: 0.3s;
}

.aLinkBlack {
    color: #1D1D1D;
    text-decoration: none;
}
.aLinkBlack:hover {
    color: #1D1D1D;
    text-decoration: none;
}

.aLinkMotion {
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.aLinkMotion:after {
    display: block;
    position: absolute;
    left: 0; /*изменить на right:0;, чтобы изменить направление подчёркивания */
    width: 0; /*задаём длинну линии до наведения курсора*/
    height: 2px; /*задаём ширину линии*/
    background-color: #F2CA75; /*задаём цвет линии*/
    content: "";
    transition: width 0.3s ease-out; /*задаём время анимации*/
}

.aLinkMotion:hover:after,
.aLinkMotion:focus:after {
	width: 100%; /*устанавливаем значение 100% чтобы ссылка подчёркивалась полностью*/
}


.menu-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.menu-icon-svg path {
  fill: #fff;;
}

.menu-desktop {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.menu-desktop2 {
    display: flex;
    justify-content: space-between;    
}

.menu-left, .menu-right  {
    font-size: 18px;
    display: flex;
    align-self: center;
}

.menu-left, .menu-right  {
    justify-content: flex-start;
}

.menu-left {
    margin-right: 25px;
}

.menu-right {
    justify-content: flex-end;    
}

.menu-left-item {
    margin-right: 45px;
}

.menu-right-item {
    margin-left: 45px;
}

.menu-desktop3-footer {
    padding-top: 50px;  
}

.razdel {
    margin-top: var(--radzel-margin);
}

.razdel-dop {
    margin-top: 100px;
}


.div-shadows {
    margin-bottom: 100px;    
    border-radius: 7px;
    background-color: #fdf7e5;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);    
}

footer {
    background-color: #7B7B7B;
    padding-top: 50px;
    padding-bottom: 70px;
}


.div-footer, .div-footer a {
    color: #fff;
}

.div-hidden-smart {
    display: block;
}

.div-hidden-desktop {
   display: none;
}

.divHidden {
    display: none;
}

.div-icon {
    
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    margin-bottom: 10px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-select-small {
    border: 3px solid #12b77e;
    border-radius: 5px;
}

.img-select-big {
    border: 3px solid #12b77e;
    border-radius: 16px;
}

.img-select-big {
    border: 3px solid #12b77e;
    border-radius: 16px;
}

.button-normal {
    font-size: 16px;
    font-weight: 400; 
    height: 50px;
    width: 100%;
    border-radius: 5px;
    background: #f2ca75;
}

.button-cursor:hover {
    cursor: pointer;
}

.button-brand {
   color: #fff ;
   font-weight: 400; 
   background-color: #f2ca75;
   cursor: pointer;
   border: 0px solid #f2ca75;
}

.button-brand:hover {
    background-color: #50C878;
    transition: 0.5s;
}

.grid {
    display: grid;
    grid-column-gap: 20px;
    margin-bottom: 20px;
    grid-template-columns: repeat(8, 1fr);
    margin-bottom: 100px;
    margin-top: 20px;
}

.grid div {
    margin-bottom: 20px;
    padding: 5px;
}

.grid div:hover {
    border: 3px solid #12b77e;
    padding: 0px;
    border-radius: 5px;
    cursor: pointer;
}

.grid div a {
    color: #000;
    text-decoration: none;
}


.grid p {
   font-size: 10px;
   line-height: 130%;
   margin-bottom: 3px;
}

.grid-model-one {
    display: grid;
    grid-column-gap: 20px;
    margin-bottom: 20px;
    grid-template-columns: 5fr 3fr;
}

.form-row {
    display: grid;
    grid-column-gap: 20px;
    margin-bottom: 20px;
    grid-template-columns: 1fr 3fr;
}

.form-row-name {
    align-self: center;
}

.form-row-name-result {
    font-size: 18px;
}

.form-row-name-order {
    margin-top: 10px;
}


.form-row-small {
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.form-row-mini {
    display: grid;
    grid-column-gap: 20px;
    margin-bottom: 0px;
    grid-template-columns: 1fr 3fr;
}

.form-row-long {
    display: grid;
    grid-column-gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.form-row-margin {
    margin-top: 10px;
    margin-bottom: 10px;
}

.input-normal {
  font-size: 14px;
  padding: 10px 15px 10px 15px;
  display: block;
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
}

.input-select {
  position: relative;
  display: inline-block;    
}

.input-select:after {
  content: "▼";
  padding: 0 8px;
  font-size: 24px;
  position: absolute;
  right: 10px;
  top: 2px;
  z-index: 1;
  text-align: center;
  width: 10%;
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
  color: #D9D9D9;
}

select {
  padding-right: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.span-gray {
    color: #7B7B7B;
}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#placeOrderButton {
    display: none;
    opacity: 0;
}


.input-error {
    border: 2px solid red;
    background-color: #ffe6e6;
}


.error {
    border: 1px solid red;
}
