@charset "utf-8";
/* CSS Document */

@font-face {font-family: Rob T; src: url("../fonts/Roboto-Thin.ttf");}
@font-face {font-family: Rob TI;src: url("../fonts/Roboto-ThinItalic.ttf");}
@font-face {font-family: Rob L; src: url("../fonts/Roboto-Light.ttf");}
@font-face {font-family: Rob LI;src: url("../fonts/Roboto-LightItalic.ttf");}
@font-face {font-family: Rob R; src: url("../fonts/Roboto-Regular.ttf");}
@font-face {font-family: Rob RI;src: url("../fonts/Roboto-Italic.ttf");}
@font-face {font-family: Rob M; src: url("../fonts/Roboto-Medium.ttf");}
@font-face {font-family: Rob MI;src: url("../fonts/Roboto-MediumItalic.ttf");}
@font-face {font-family: Rob B; src: url("../fonts/Roboto-Bold.ttf");}
@font-face {font-family: Rob BI;src: url("../fonts/Roboto-BoldItalic.ttf");}
@font-face {font-family: Rob G;src: url("../fonts/Roboto-Black.ttf");}
@font-face {font-family: Rob GI;src: url("../fonts/Roboto-BlackItalic.ttf");}

@font-face {font-family: MT; src: url("../fonts/Montserrat-Thin.ttf");}
@font-face {font-family: MTI;src: url("../fonts/Montserrat-ThinItalic.ttf");}
@font-face {font-family: ML; src: url("../fonts/Montserrat-Light.ttf");}
@font-face {font-family: MLI;src: url("../fonts/Montserrat-LightItalic.ttf");}
@font-face {font-family: MR; src: url("../fonts/Montserrat-Regular.ttf");}
@font-face {font-family: MRI;src: url("../fonts/Montserrat-Italic.ttf");}
@font-face {font-family: MM; src: url("../fonts/Montserrat-Medium.ttf");}
@font-face {font-family: MMI;src: url("../fonts/Montserrat-MediumItalic.ttf");}
@font-face {font-family: MB; src: url("../fonts/Montserrat-Bold.ttf");}
@font-face {font-family: MBI;src: url("../fonts/Montserrat-BoldItalic.ttf");}
@font-face {font-family: MG;src: url("../fonts/Montserrat-Black.ttf");}
@font-face {font-family: MGI;src: url("../fonts/Montserrat-BlackItalic.ttf");}

html {background: transparent!important;}
body {padding: 0;	margin: 0;	overflow-x: hidden;	width: 100%;	word-wrap: break-word;	background: url("../img/body-fon.jpg");	font-family: mr; font-size: 18px; cursor: default; background-color: #efefef;}
a {text-decoration: none;	color: #202020;}

details > summary {list-style: none;}
details > summary::-webkit-details-marker {display: none;}
input:focus, textarea:focus, select:focus {outline: none !important;}
iframe {overflow: hidden;}

.cc {display: flex; flex-wrap: wrap; justify-content: center; text-align: center;}
.cl {display: flex;	flex-wrap: wrap; justify-content: left; text-align: left;}
.cr {display: flex; flex-wrap: wrap; justify-content: right; text-align: right;}
.clm {display: flex;	flex-wrap: wrap; justify-content: left; text-align: left;}
.crm {display: flex; flex-wrap: wrap; justify-content: right; text-align: right;}
.ccr {display: flex; flex-wrap: wrap; justify-content: center; text-align: center; }
.clr {display: flex;	flex-wrap: wrap; justify-content: center; text-align: center;}
.crr {display: flex; flex-wrap: wrap; justify-content: center; text-align: center; }

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .cc {display: flex; flex-wrap: wrap; justify-content: center; text-align: center;}
  .clm {display: flex;	flex-wrap: wrap; justify-content: center; text-align: center;}
  .crm {display: flex; flex-wrap: wrap; justify-content: center; text-align: center;}

  .ccr {display: flex; flex-wrap: wrap; justify-content: center; text-align: center; flex-direction: column-reverse;}
  .clr {display: flex;	flex-wrap: wrap; justify-content: center; text-align: center; flex-direction: column-reverse;}
  .crr {display: flex; flex-wrap: wrap; justify-content: center; text-align: center; flex-direction: column-reverse;}
  }

h1 {	font-family: ml; font-size: 60px;  padding: 0px;  margin: 0px; color: white; text-transform: uppercase;}
h2 {	font-family: ml; font-size: 50px;  padding: 0px;  margin: 0px; color: #2c2c2c; text-transform: uppercase;}
h3 {	font-family: ml; font-size: 36px;  padding: 0px;  margin: 0px; color: #2c2c2c; text-transform: uppercase;}
h4 {	font-family: mm;	font-size: 24px;  padding: 0px;  margin: 0px; color: #0e2f60;}





.preloader {
  /*фиксированное позиционирование*/
  position: fixed;
  /* координаты положения */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* фоновый цвет элемента */
  background: #e2e2e2;
  /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
  z-index: 1001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: #BF3333;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}



.element-animation {
  /* Скроем элемент в начальном состоянии */
  opacity: 0;
  transform: translateY(20px);
}

.element-animation.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateY(0%);
}




.input-1 {
  width: 460px;
  padding: 20px;
  font-size: 20px;
  border: 1px solid #BF3333;
  border-radius: 50px;
  height: 25px;
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  font-family: mr;
}

.button-1 {
  width: 400px;
  border-radius: 0px;
  border: 0px solid #BF3333;
  padding: 20px;
  border-radius: 50px;
  background-color: #BF3333;
  color: white;
  font-size: 20px;
  margin-top: 10px;
  text-align: center;
  font-family: mr;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.2s;
}

.button-1:hover {
  background-color: #862525;
}

.checkbox-1 {
  font-size: 13px;
  max-width: 400px;
  margin: auto;
  margin-top: 10px;
  text-align: left;
}
.modal-h2 {
  text-align: center;
  font-size: 30px;
}
.modal-form {
  text-align: center;
  margin-top: 30px;
}









.b1 {
  background: url(../img/b1-fon.jpg) no-repeat 50% 50% / cover;
  height: 940px;
}
.b1-menu {
  height: 100px;
  background-color: rgba(44,44,44,0.7);
}
.b1-content {
  background-color: rgba(44,44,44,0.7);
  height: 940px;
}
.b1-menu-container-1 {
  background: linear-gradient(to bottom, #BF3333 60%, rgba(0,0,0,0));
  height: 150px;
}
.b1-menu-box-1 {
  padding: 10px;
  padding-top: 20px;
}
.b1-menu-box-2 {
  color: white;
  text-align: left;
  padding: 10px;
}
.b1-name {
  font-size: 30px;
  font-family: mri;
}
.b1-name-text {
  font-size: 18px;
  font-family: ml;
}
.b1-menu-container-2 {
  padding: 10px;
  padding-top: 22px;
  margin-left: 40px;
  margin-right: 40px;
}
.b1-menu-item {
  color: white;
  margin: 15px;
}
.b1-menu-item:hover {
  text-decoration: underline;
  text-decoration-color: #BF3333;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.b1-menu-container-3 {
  padding: 20px;
  text-align: right;
}
.b1-box-4 {
  color: white;
}
.b1-box-5 {
  color: white;
  padding-top: 4px;
}
.b1-menu-line {
  background-color: #BF3333;
  height: 1px;
}
.b1-link {
  color: white;
}
.b1-link:hover {
  text-decoration: underline;
  text-decoration-color: #BF3333;
  text-decoration-thickness: 2px;
}
.b1-container-1 {
  text-align: center;
  padding-top: 150px;
}
.b1-text {
  font-size: 30px;
  text-transform: uppercase;
  font-family: mr;
  padding-top: 40px;
  color: white;
}
.b1-buttons-container {
  padding-top: 30px;
}
.b1-button-1 {
  background-color: #BF3333;
  border: 2px solid #BF3333;
  width: 260px;
  padding: 20px;
  color: white;
  font-family: mm;
  border-radius: 50px;
  margin: 10px;
  transition: 0.2s;
}
.b1-button-1-text {
  padding: 10px;
}
.b1-button-2 {
  background-color: white;
  border: 2px solid #BF3333;
  width: 260px;
  padding: 20px;
  color: #2c2c2c;
  font-family: mm;
  border-radius: 50px;
  margin: 10px;
  transition: 0.2s;
}
.b1-button-2-text {
  padding: 10px;
}
.b1-button-1:hover {
  background-color: #862525;
}
.b1-button-2:hover {
  background-color: #acacac;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .b1 {
    background: url(../img/b1-fon.jpg) no-repeat 50% 50% / cover;
    height: auto;
    margin-top: -22px;
    padding-bottom: 0px;
  }
  .b1-menu-container-2 {
    display: none;
  }
  .b1-menu-container-3 {
    display: none;
  }
  .b1-container-1 {
    text-align: center;
    padding-top: 100px;
  }
  .b1-text {
    font-size: 16px;
    text-transform: uppercase;
    font-family: mr;
    padding-top: 40px;
    color: white;
  }
  .b1-button-1 {
    background-color: #BF3333;
    border: 2px solid #BF3333;
    width: 230px;
    padding: 10px;
    color: white;
    font-family: mm;
    border-radius: 50px;
    margin: 10px;
    transition: 0.2s;
  }
  .b1-button-1-text {
    padding: 5px;
    padding-top: 8px;
  }
  .b1-button-2 {
    background-color: white;
    border: 2px solid #BF3333;
    width: 230px;
    padding: 10px;
    color: #2c2c2c;
    font-family: mm;
    border-radius: 50px;
    margin: 10px;
    transition: 0.2s;
  }
  .b1-button-2-text {
    padding: 5px;
    padding-top: 8px;
  }
  .b1-button-icon {
    width: 25px;
    height: 25px;
    margin-top: 5px;
  }
  .b1-content {
    background-color: rgba(44,44,44,0.7);
    height: auto;
    padding-bottom: 50px;
  }
}

















.b2 {
  padding-top: 150px;
  text-align: center;
}
.b2-content {
  width: 1280px;
  margin: auto;
  padding-top: 80px;
}
.b2-line {
  height: 2px;
  width: 400px;
  background-color: #2c2c2c;
  margin: auto;
  margin-top: 40px;
}
.b2-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #2c2c2c;
  background-color: #efefef;
  margin: auto;
  margin-top: -12px;
}
.b2-container {
  width: 236px;
  padding: 20px;
  margin: 20px;
  border: 2px solid #BF3333;
  border-radius: 20px;
  transition: 0.2s;
  padding-top: 40px;
  background-color: #efefef;
}
.b2-container:hover {
  border: 2px dashed #BF3333;
  background-color: white;
}
.b2-text {
  font-size: 24px;
  font-family: mm;
  padding-top: 20px;
}
.b2-button {
  margin-top: 30px;
  padding: 20px;
  border-radius: 50px;
  font-family: mm;
  border: 2px solid #BF3333;
  transition: 0.2s;
}
.b2-button:hover {
  background-color: #BF3333;
  color: white;
}
.b2-fon-1 {
  position: absolute;
  left: 0px;
  margin-top: -100px;
  z-index: -1;
}
.b2-fon-2 {
  position: absolute;
  right: 0px;
  margin-top: 800px;
  z-index: -1;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .b2-line {
    height: 1px;
    width: 200px;
    background-color: #2c2c2c;
    margin: auto;
    margin-top: 20px;
  }
  .b2-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #2c2c2c;
    background-color: #efefef;
    margin: auto;
    margin-top: -7px;
  }
  .b2-fon-1 {
    position: absolute;
    left: 0px;
    margin-top: -160px;
    z-index: -1;
    width: 80%;
    max-width: 40%;
  }
  .b2-fon-2 {
    position: absolute;
    right: 0px;
    margin-top: 800px;
    z-index: -1;
    width: 80%;
    max-width: 40%;
  }
  .b2-content {
    width: 96%;
    margin: auto;
    padding-top: 20px;
    max-width: 600px;
  }
  .b2-container {
    width: 118px;
    padding: 5px;
    margin: 5px;
    border: 2px solid #BF3333;
    border-radius: 20px;
    transition: 0.2s;
    padding-top: 20px;
    background-color: #efefef;
    margin-top: 20px;
  }
  .b2-icon {
    width: 60px;
  }
  .b2-text {
    font-size: 12px;
    font-family: mm;
    padding-top: 10px;
  }
  .b2-button {
    margin-top: 10px;
    padding: 10px;
    border-radius: 50px;
    font-family: mm;
    border: 2px solid #BF3333;
    transition: 0.2s;
    font-size: 14px;
  }
  .b2 {
    padding-top: 50px;
    text-align: center;
  }
}









.b3 {
  padding-top: 150px;
}
.b3-container-1 {
  width: 620px;
}
.b3-container-2 {
  width: 620px;
}
.b3-box-1 {
  margin-top: 40px;
}
.b3-box-icon {
  width: 50px;
  margin-top: 30px;
}
.b3-text-1 {
  font-size: 24px;
  font-family: mm;
  width: 570px;
  margin-top: 30px;
}
.b3-text-2 {
  font-size: 20px;
  font-family: mm;
  margin-top: 30px;
  text-align: left;
  margin-left: 50px;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .b3 {
    padding-top: 100px;
  }
  .b3-container-1 {
    width: 96%;
    max-width: 400px;
    text-align: center;
    margin: auto;
    margin-top: 50px;
  }
  .b3-container-2 {
    width: 96%;
    max-width: 400px;
    margin: auto;
  }
  .b3-box-icon {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .b3-text-1 {
    font-size: 16px;
    font-family: mm;
    width: 96%;
    margin: auto;
    margin-top: 0px;
    text-align: center;
  }
  .b3-text-2 {
    font-size: 16px;
    font-family: mm;
    margin-top: 30px;
    text-align: center;
    margin-left: 0px;
  }
  .b3-img {
    width: 70%;
  }
  .b3-content {
    margin: auto;
  }
}









.b4 {
  background-color: #e2e2e2;
  margin-top: -5px;
  padding-top: 100px;
  text-align: center;
  padding-bottom: 100px;
}
.b4-content {
  margin-top: 80px;
}
.b4-container {
  width: 280px;
  margin: 20px;
}
.b4-text-1 {
  font-size: 24px;
  font-family: mm;
  text-transform: uppercase;
  margin-top: 20px;
}
.b4-text-2 {
  margin-top: 20px;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .b4 {
    background-color: #e2e2e2;
    margin-top: -5px;
    padding-top: 50px;
    text-align: center;
    padding-bottom: 50px;
  }
  .b4-content {
    margin-top: 40px;
  }
  .b4-text-1 {
    font-size: 20px;
    font-family: mm;
    text-transform: uppercase;
    margin-top: 20px;
  }
  .b4-img {
    width: 60px;
  }
}









.b5 {
  padding-top: 100px;
  text-align: center;
}
.b5-fon-1 {
  position: absolute;
  left: 0px;
  z-index: -1;
}
.b5-fon-2 {
  position: absolute;
  right: 0px;
  z-index: -1;
}
.b5-form {
  text-align: center;
  margin-top: 80px;
}
.b5-textarea {
  font-size: 20px;
  font-family: mr;
  color: #909090;
  padding: 20px;
  font-size: 20px;
  border: 1px solid #BF3333;
  border-radius: 50px;
  height: 200px;
  width: 460px;
  margin-top: 20px;
  text-align: center;
  resize: none;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .b5 {
    padding-top: 50px;
    text-align: center;
  }
  .b5-fon-1 {
    position: absolute;
    left: 0px;
    z-index: -1;
    width: 50%;
    max-width: 250px;
  }
  .b5-fon-2 {
    position: absolute;
    right: 0px;
    z-index: -1;
    width: 50%;
    max-width: 250px;
  }
  .b5-textarea {
    font-size: 20px;
    font-family: mr;
    color: #909090;
    padding: 20px;
    font-size: 16px;
    border: 1px solid #BF3333;
    border-radius: 20px;
    height: 200px;
    width: 240px;
    margin-top: 10px;
    text-align: center;
    resize: none;
  }
  .input-1 {
    width: 240px;
    padding: 20px;
    font-size: 16px;
    border: 1px solid #BF3333;
    border-radius: 20px;
    height: 25px;
    margin-top: 10px;
    text-align: center;
    font-family: mr;
  }
  .button-1 {
    width: 200px;
    border-radius: 0px;
    border: 0px solid #BF3333;
    padding: 20px;
    border-radius: 20px;
    background-color: #BF3333;
    color: white;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    font-family: mr;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.2s;
  }
  .button-1:hover {
    background-color: #862525;
  }
  .checkbox-1 {
    font-size: 12px;
    max-width: 280px;
    margin: auto;
    margin-top: 10px;
    text-align: left;
  }
}








.b6 {
  margin-top: 150px;
}
.tb6 {
  margin-top: 0px;
}
.b6-container {
  border: 2px solid #BF3333;
  background-color: white;
  padding: 40px;
  border-radius: 40px;
  width: 500px;
  position: absolute;
  left: 50%;
  margin-top: 40px;
}
.b6-box-1 {
  width: 40px;
  text-align: center;
  margin-top: 20px;
}
.b6-text {
  width: 460px;
  margin-top: 20px;
  font-size: 20px;
  font-family: mm;
}
.b6-text-1 {
  width: 460px;
  margin-top: 27px;
  font-size: 20px;
  font-family: mm;
}
.b6-text-2 {
  width: 460px;
  margin-top: 25px;
  font-size: 20px;
  font-family: mm;
}

.b6-text-2:hover {
text-decoration: underline;
color: #BF3333;
}

.b6-icon-2 {
  width: 17px;
}
.b6-button-1 {
  background-color: #BF3333;
  padding: 15px;
  margin: 10px;
  margin-top: 30px;
  border-radius: 50px;
  width: 200px;
  transition: 0.2s;
}
.b6-button-1:hover {
  background-color: #862525;
}
.b6-button-text {
  font-size: 20px;
  font-family: mm;
  color: white;
  margin-top: 7px;
}
.b6-button-icons {
  margin-left: 10px;
  margin-top: 3px;
}
.b6-map-1 {display: block;}
.b6-map-2 {display: none;}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .b6 {
    margin-top: 70px;
  }
  .tb6 {
    margin-top: 40px;
  }
  .b6-container {
    border: 2px solid #BF3333;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    width: 270px;
    position: static;
    left: 50%;
    margin-top: 0px;
    margin: auto;
    text-align: center;
  }
  .b6-box-1 {
    width: 40px;
    text-align: center;
    margin-top: 20px;
  }
  .b6-text {
    width: 220px;
    margin-top: 20px;
    font-size: 16px;
    font-family: mm;
  }
  .b6-text-1 {
    width: 220px;
    margin-top: 27px;
    font-size: 16px;
    font-family: mm;
  }
  .b6-text-2 {
    width: 220px;
    margin-top: 20px;
    font-size: 16px;
    font-family: mm;
  }
  .b6-icon-2 {
    width: 19px;
  }
  .b6-icon-6 {
    width: 19px;
  }
  .b6-button-1 {
    background-color: #BF3333;
    padding: 5px;
    margin: 5px;
    margin-top: 15px;
    border-radius: 50px;
    width: 180px;
    transition: 0.2s;
  }
  .b6-button-1:hover {
    background-color: #862525;
  }
  .b6-button-text {
    font-size: 16px;
    font-family: mm;
    color: white;
    margin-top: 8px;
  }
  .b6-button-icons {
    margin-left: 10px;
    margin-top: 3px;
  }
  .b6-map-1 {display: none;}
  .b6-map-2 {display: block; margin-top: 40px;}
}
















.hamburger-menu {
  display: none;
}
#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;

  width: 26px;
  height: 26px;

  cursor: pointer;
  z-index: 101;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
    
  width: 100%;
  height: 2px;

  background-color: #BF3333;

  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  z-index: 100;
  visibility: hidden;
  top: 0;
  left: -100%;

  width: 300px;
  height: 100%;

  margin: 0;
  padding: 80px 0;

  list-style: none;

  background-color: #ECEFF1;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);

  transition-duration: .25s;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #2c2c2c;
  font-family: mr;
  font-size: 16x;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #efefef;
}

.menu-number {
  padding: 10px;
  padding-left: 20px;
  font-family: mm;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .hamburger-menu {
    display: block;
  }
  h1 {	font-family: ml; font-size: 24px;  padding: 0px;  margin: 0px; color: white; text-transform: uppercase;}
  h2 {	font-family: ml; font-size: 24px;  padding: 0px;  margin: 0px; color: #2c2c2c; text-transform: uppercase;}
  h3 {	font-family: ml; font-size: 20px;  padding: 0px;  margin: 0px; color: #2c2c2c; text-transform: uppercase;}
  h4 {	font-family: mm;	font-size: 24px;  padding: 0px;  margin: 0px; color: #0e2f60;}

  html {background: transparent!important;}
  body {padding: 0;	margin: 0;	overflow-x: hidden;	width: 100%;	word-wrap: break-word;	background: url("../img/body-fon.jpg");	font-family: mr; font-size: 16px; cursor: default; background-color: #efefef;}
  a {text-decoration: none;	color: #202020;}

}

.pb2 {
  padding-top: 100px;
}
.pb2-container-1 {
  width: 440px;
  padding-right: 40px;
}
.pb2-container-2 {
  width: 420px;
  text-align: left;
}
.pb2-img-grand {
  width: 100%;
}
.pb2-price-1 {
  padding: 20px;
  font-size: 24px;
}
.pb2-price-2 {
  background-color: #dbdbdb;
  padding: 20px;
  font-size: 24px;
}
.pb2-content {
  width: 900px;
  margin: auto;
}
.pb2-text {
  line-height: 24px;
  padding-top: 40px;
}
.pb2-img {
  height: 190px;
  opacity: 0.8;
  transition: 0.2s;
}
.pb2-img:hover {
  opacity: 1;
}
.bp2-button {
  background-color: #BF3333;
  color: white;
  padding: 15px 25px 15px 25px;
  border-radius: 50px;
  margin: 5px;
  transition: 0.2s;
}
.bp2-button:hover {
  background-color: #862525;
}
.pb2-buttons {
  padding-top: 40px;
}
@media screen and (min-width : 1px) and (max-width : 1279px) {
  .pb2 {
    padding-top: 50px;
  }
  .pb2-container-1 {
    width: 100%;
    max-width: 1000px;
    padding-right: 0px;
  }
  .pb2-container-2 {
    width: 100%;
    max-width: 1000px;
    text-align: left;
    padding-top: 40px;
  }
  .pb2-price-1 {
    padding: 10px;
    font-size: 20px;
  }
  .pb2-price-2 {
    background-color: #dbdbdb;
    padding: 10px;
    font-size: 20px;
  }
  .pb2-content {
    width: 96%;
    margin: auto;
  }
  .pb2-content h3 {
    text-align: center;
  }
  .pb2-text {
    line-height: 24px;
    padding-top: 20px;
  }
  .pb2-img {
    height: 140px;
    width: 140px;
    opacity: 0.8;
    transition: 0.2s;
  }
  .pb2-img:hover {
    opacity: 1;
  }
  .bp2-button {
    background-color: #BF3333;
    color: white;
    padding: 10px 15px 10px 15px;
    border-radius: 50px;
    margin: 5px;
    transition: 0.2s;
    width: 240px;
  }
  .bp2-button:hover {
    background-color: #862525;
  }
  .pb2-buttons {
    padding-top: 40px;
  }
  .pb2-img-container {
    text-align: center;
  }
}

.ab2-text {
  text-align: left;
}
.ab2-img-container {
  margin-top: 40px;
}
.ab2-img {
  height: 280px;
  width: 280px;
  opacity: 0.8;
  transition: 0.2s;
  margin: 10px;
}
.ab2-img:hover {
  opacity: 1;
}
@media screen and (min-width : 1px) and (max-width : 1279px) {
  .ab2-img {
    height: 140px;
    width: 140px;
    opacity: 0.8;
    transition: 0.2s;
    margin: 5px;
  }
}











































@media screen and (min-width : 1px) and (max-width : 1279px) {

}