html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100vh;
  background: #E7E8EB;
  line-height: 1.5;
  color: #000;
  font-size: clamp(16px, 3vw, 18px);
  padding-top: clamp(68px, 6vw, 110px);
}

body img {
  max-width: 100%;
  height: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h1,
.h1 {
  font-size: clamp(25px, 5vw, 64px);
}

h2,
.h2 {
  font-size: clamp(22px, 4.5vw, 56px);
}

h3,
.h3 {
  font-size: clamp(19px, 4vw, 48px);
}

h4,
.h4 {
  font-size: clamp(16px, 3.5vw, 40px);
}

h5,
.h5 {
  font-size: clamp(13px, 3vw, 32px);
}

h6,
.h6 {
  font-size: clamp(10px, 2.5vw, 24px);
}

/* does not support IE 6/7 */

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* WordPress Presentational Classes*/

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.wp-caption {
  border: 1px solid #666;
  text-align: center;
  background: #ccc;
  padding: 10px;
  margin: 10px;
}

a {
  transition: all 300ms;
  text-decoration: underline; 
  color: inherit;
}

a:hover {
  text-decoration: none; 
  color: inherit;
}

.container,
.container-fluid {
  padding-left: 11px;
  padding-right: 11px;
}

.row {
  margin-left: -11px;
  margin-right: -11px;
}
.row>* {
  padding-left: 11px; 
  padding-right: 11px;
}

.b-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100vh;
}


.b-content {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}


@media screen and (min-width: 1400px) {
  .container {
    max-width: 1377px;
  }
}


p:last-child {
  margin: 0;
}

.b-footer {
  flex: none;
  background: #382F32;
  padding: clamp(60px, 6vw, 90px) 0 70px;
  color: rgba(255,255,255,.7);
  font-size: clamp(12.5px, 2.3vw, 14px);
}

.b-footer a {
  color: inherit;
}



.b-404 {
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(20px, 2vw, 30px) 0;
}

.b-404__text {
  font-size: clamp(100px, 10vw, 192px);
  line-height: 1;
  font-weight: bold;
}



.b-header {
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.251);
}

.b-header .container {
  padding-top: clamp(16px, 2vw, 25px);
  padding-bottom: clamp(16px, 2vw, 25px);
  height: clamp(68px, 6vw, 110px);
}

.b-header__logo {
  width: clamp(147px, 13vw, 253px);
}

.b-header__logo img {
  width: 100%;
}

.b-header__btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  gap: 6px;
  margin-bottom: -6px;
  margin-right: -12px;
  color: #d2232a;
}

.b-header__btn:hover {
  color: #d2232a;
  text-decoration: underline;
}

.b-header__btn-icon {
  width: 18px;
  height: 18px;
}

.b-header__btn-icon img {
  width: 100%;
}


.btn-danger {
  border: none;
  padding: 15px 30px;
  border-radius: 38px;
  background: linear-gradient(0deg, #ff000a 0%, #5d0004 100%);
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 22px;
}

.btn-danger:before {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #ff000a 0%, #5d0004 100%);
  transition: 0.4s ease all;
}

.btn-danger:hover:before {
  opacity: 0;
}