 .resp-tab {
    border-radius: 5px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
}
.resp-tab th, .resp-tab td {
    padding: 10px 20px;
    font-size: 13px;
    border: none;
    font-family: Verdana, sans-serif;	
	border: 1px solid #337AB7;
	vertical-align: top;
}
.resp-tab th {
    color: #FFF;
    background: #337AB7;
	font-weight: bold;
	border: 1px solid #1a4a73;	
    text-transform: uppercase;	
	text-align: center;	
}
.resp-tab tr:nth-child(even) {
    background: #edf7ff;
}
.resp-tab td span {
    background: #337AB7;
    color: #FFF;
    display: none;
    font-size: 11px;
    font-weight: bold;
    font-family: Verdana, sans-serif;	
    text-transform: uppercase;		
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;	
}
@media(max-width: 768px) {
    .resp-tab thead {
		display: none;
	}
    .resp-tab tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 30px;
	}
    .resp-tab td {
        margin: 0 -1px -1px 0;
        padding-top: 35px;
        position: relative;
        width: 50%;
	}
    .resp-tab td span {
        display: block;
	}
}
@media(max-width: 480px) {
    .resp-tab td {
        width: 100%;
	}
}
/* Основной контейнер */
.contact-fab * {
	box-sizing: border-box;
}
.contact-fab {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	--button-size: 64px;
	--icon-size: 28px;
}
/* Главная кнопка */
.fab-main {
	width: var(--button-size);
	height: var(--button-size);
	border-radius: 50%;
	background: linear-gradient(135deg, #5f9dd2 0%, #337AB7 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 2;
	border: 3px solid white;
}
.fab-main:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
/* Подсказка */
.fab-main::before,
.fab-child::before {
	content: attr(data-tooltip);
	position: absolute;
	right: calc(var(--button-size) + 10px);
	background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
	color: white;
	padding: 8px 15px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	will-change: transform;
}
.fab-main::after,
.fab-child::after {
	content: '';
	position: absolute;
	right: calc(var(--button-size) + 4px);
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #2d3748;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.fab-main:hover::before,
.fab-main:hover::after,
.fab-child:hover::before,
.fab-child:hover::after {
	opacity: 0.8;
}
/* Иконка главной кнопки - конверт */
.fab-main svg {
	width: var(--icon-size);
	height: var(--icon-size);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	fill: white;
	position: absolute;
}
/* Конверт (обычное состояние) */
.fab-main .envelope-icon {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}
/* Крестик (скрыто в обычном состоянии) */
.fab-main .close-icon {
	opacity: 0;
	transform: scale(0) rotate(45deg);
}
/* Анимация при открытии */
.fab-main.active .envelope-icon {
	opacity: 0;
	transform: scale(0) rotate(-45deg);
}
.fab-main.active .close-icon {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}
/* Контейнер дочерних кнопок */
.fab-children {
	position: absolute;
	bottom: calc(var(--button-size) + 15px);
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	pointer-events: none;
	z-index: 1;
}
.fab-children.active {
	opacity: 1;
	pointer-events: all;
}
/* Дочерние кнопки */
.fab-child {
	width: var(--button-size);
	height: var(--button-size);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay), box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0s;           
	position: relative;
	border: 3px solid white;
	transform: translateY(200px) scale(2); 
	text-decoration: none;
	opacity: 0;
}
.fab-children.active .fab-child {
	transform: translateY(0) scale(1);
	opacity: 1;
}
/* Просто задержки для всей анимации */
.fab-child:nth-child(1) { --delay: 0.2s; }
.fab-child:nth-child(2) { --delay: 0.1s; }
.fab-child:nth-child(3) { --delay: 0s; }
.fab-children.active .fab-child:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
/* Иконки дочерних кнопок */
.fab-child svg {
	width: var(--icon-size);
	height: var(--icon-size);
	fill: white;
	transition: 0.5s;
	will-change: transform;
}      
.fab-children.active .fab-child:hover svg {
	transform: scale(1.1);
}
/* Цвета кнопок */
.fab-child.phone {
	background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}
.fab-child.telegram {
	background: linear-gradient(135deg, #2CA9DC 0%, #1C7EB6 100%);
}
.fab-child.max {
	background: linear-gradient(135deg, #3E5CFC 0%, #8043D9 100%);
}
/* Адаптивность */
@media (max-width: 768px) {
	.contact-fab {
		--button-size: 60px;
		--icon-size: 24px;
		bottom: 15px;
		right: 15px;
	}           
	.fab-children {
		bottom: calc(var(--button-size) + 10px);
		gap: 10px;
	}
}
@media (max-width: 480px) { 
	.contact-fab {
		--button-size: 55px;
		--icon-size: 22px;
		bottom: 10px;
		right: 10px;
	}           
	.fab-main::before,
	.fab-child::before {
		font-size: 13px;
		padding: 6px 12px;
	}
}
/* Карточка */
.atuinCard {
	position: relative;
	height: 100%;
	z-index: 1;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid #ddd;
	transition: 0.5s;
	background: #fff;
}	
.atuinCard-image {
	position: relative;
	aspect-ratio: 1.2 / 1;
	overflow: hidden;
}
.atuinCard-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}
.atuinCard-image strong {
	color: #000;
	font-size: 18px;
	line-height: 1.3;
	text-transform: uppercase;
	padding: 80px 16px 36px;
	text-align: center;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
	text-shadow: 0 0 22px rgba(255, 255, 255, 0.8), 0 2px 10px rgba(255, 255, 255, 1); 
	transition: 0.5s;
	font-weight: 700;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
}
.atuinCard-txt {
	transform: translateY(-8px);
	text-align: center;
}
.atuinCard-txt p {
	font-size: 16px;
	line-height: 1.3;
	padding: 0 16px;
	margin: 0;
}
.atuinCard:hover {
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2), inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.atuinCard:hover .atuinCard-image img  {
	transform: scale(1.1);
}
.atuinCard:hover .atuinCard-image strong {
	padding: 120px 16px 66px;
	color: #000;
}
@media (min-width: 576px) {
	.atuinCard-txt p {
		font-size: 18px;
	}
}
@media (min-width: 992px) {
    .col-lg-3{
        flex: 0 0 auto;
        width: 25%;
        margin-top: 10px;
    }
}                      
  .apr *,
.apr *:before {
	line-height: 1.3;
}
.apr {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #f6f6f600;
	padding: 20px 0;  
}
.apr .apr-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	text-align: center;
	flex: 0 1 330px;
	font-family: Verdana, sans-serif;   
	cursor: default;
	
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	border-radius: 20px; 
	margin: 20px;
}
@media screen and (min-width: 1080px) {
	.apr .apr-item {
		margin: 20px 0;
	}
	.apr .apr-item-left {
		border-radius: 20px ;
	}  
	.apr .apr-item-center {
		margin: 0;
		z-index: 10;
		box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 20px 32px rgba(0,0,0,0.2);
	}
	.apr .apr-item-right {
		border-radius: 0 20px 20px 0;
	}   
}
.apr .apr-deco {
	background: #337AB7;
	padding: 50px 0 160px;
	position: relative;
}
.apr .apr-item-center .apr-deco {
	background: #1269b5;
} 
.apr .apr-price {
	font-size: 38px;
	font-family: 'Sofia Sans Extra Condensed', sans-serif; 
	font-weight: bold;
	padding: 0;
	color: #FFF;
}
.apr .apr-price > span {
	font-size: 38px;
}
.apr span.apr-currency {
	font-size: 42px;
    font-weight: normal;
	padding-left: 6px;
	vertical-align: top;
    color: #BFE2FF;
}
.apr .apr-title {
	font-size: 22px;
	font-weight: bold;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #BFE2FF;
}
.apr .apr-deco-svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 160px;
}
.apr .deco-layer {
	transition: transform 0.5s;
	fill: #FFF;
}
.apr .apr-item:hover .deco-layer--1 {
	transform: translate3d(15px, 0, 0);
}
.apr .apr-item:hover .deco-layer--2 {
	transform: translate3d(-15px, 0, 0);
}
.apr .apr-feature-list {
	margin: -55px 0 0;
	display: flex;
	flex-direction: column;
    justify-content: center;
	height: 100%;
	padding: 0 0 35px;
	list-style: none;
	position: relative;
	z-index: 2;
}
.apr .apr-feature-list li {
	padding: 8px;
	padding-left: 34px;
	font-size: 15px;
	margin: 0 10px;
	border-bottom: 1px solid #BFE2FF;
	text-align: left;
	position: relative;
}
.apr .apr-feature-list li:before {
	position: absolute;
	left: 10px;
	content: "\2714";
	color: green;
	font-weight: bold;
}
.apr .apr-action {
	border: none;
	margin: auto 40px 20px 40px;
	padding: 10px;
	color: #fff;
	border-radius: 30px;
	background: #337AB7;
	transition: background 0.5s;
	outline: none;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2); 
	font-family: 'Sofia Sans Extra Condensed', sans-serif; 
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
}
.apr .apr-action:hover, 
.apr .apr-action:focus {
	background: #183a57;  
    }	
.grid {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-column-gap: 10px;
}
.atuin-btn {
	display: inline-flex;
	margin: 10px;
	text-decoration: none;
	border: 2px solid #BFE2FF;
	position: relative;
	overflow: hidden;
	font-size: 10px;
	line-height: 20px;
	padding: 12px 12px;
	color: #FFF;
	font-weight: bold;
	text-transform: uppercase; 
	font-family: 'Roboto Condensed', Тahoma, sans-serif;
	background: #337AB7;
	transition: box-shadow 0.3s, transform 0.3s;
	cursor: pointer;
}
.atuin-btn:hover,
.atuin-btn:active,
.atuin-btn:focus {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	color: #FFF;
}
.atuin-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg, transparent, rgba(191, 226, 255, 0.3), transparent);
	transition: left 0.7s;
}
.atuin-btn:hover:before,
.atuin-btn:active:before,
.atuin-btn:focus:before {
	left: 100%;
}
    <!-- button end-->
    
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono");
* {
  box-sizing: border-box;
  font-weight: normal;
}

h1 {
  font-size: 2.2em;
}

.flip {
  position: relative;
}
.flip > .front,
.flip > .back {
  display: block;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
}
.flip > .front {
  transform: rotateY(0deg);
}
.flip > .back {
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  transform: rotateY(-180deg);
}
.flip:hover > .front {
  transform: rotateY(180deg);
}
.flip:hover > .back {
  opacity: 1;
  transform: rotateY(0deg);
}
.flip.flip-vertical > .back {
  transform: rotateX(-180deg);
}
.flip.flip-vertical:hover > .front {
  transform: rotateX(180deg);
}
.flip.flip-vertical:hover > .back {
  transform: rotateX(0deg);
}

.flip {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 1em;
  width: 200px;
    text-align: center;

    }
.flip > .front,
.flip > .back {
  display: block;
  color: white;
  width: inherit;
  background-size: cover !important;
  background-position: center !important;
  height: 220px;
  padding: 1em 2em;
  background: #3176b1;
  border: 6px solid #BFE2FF;  
  border-radius: 10px;
}
.flip > .front p,
.flip > .back p {
  font-size: 14.9125px;
  line-height: 160%;
  color: #fff;
}

.text-shadow {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04), 3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04), 0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04), 7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04), 9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04), 11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04), 13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04), 0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04), 17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04), 19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}
.turbulence-container {
	position: relative;
	margin: 10px 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
 width: 100%;
    }
.blocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	position: relative;
	z-index: 1;
	padding: 100px 0;
    width: 100%;
}

.block {
	margin: 20px;
	padding: 90px 90px;
	border: 6px solid #BFE2FF;
	border-radius: 10px;
		background-image: url(https://i.pinimg.com/236x/b7/c9/ce/b7c9ce95bbe2358c8e8a8691acdc648c--rusted-metal-metal-panels.jpg?nii=t);
   
	text-align: center;
	text-transform: uppercase;
	font-family: Verdana, sans-serif;   
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);

    }
    .block1 {
	margin: 20px;
	padding: 100px 50px;
	border: 6px solid #BFE2FF;
	border-radius: 10px;
	background-image: url(https://i.pinimg.com/236x/b7/c9/ce/b7c9ce95bbe2358c8e8a8691acdc648c--rusted-metal-metal-panels.jpg?nii=t);
	text-align: center;
	text-transform: uppercase;
	font-family: Verdana, sans-serif;   
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);

    }
.sl-container {
	border: 10px solid #BFE2FF;
	margin: 20px auto 40px auto;
	overflow: hidden;
	position: relative;
    width: 640px;
	height: 420px;
	box-sizing: border-box;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
}
.sl-container .view {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.sl-container .view img {
	width: 640px;
	max-width: 640px;
}
.sl-container .view-before {
	z-index: 100;
}
.sl-container .view-after {
	width: 100px;
	z-index: 200;
}
.sl-container .dragme {
	position: absolute;
	width: 10px;
	height: 100%;
	top: 0px;
	left: 100px;
	background-color: #BFE2FF;
	cursor: pointer;
	z-index: 300;
}
.sl-container .dr-circle {
	position: absolute;
	top: calc(50% - 20px);
	left: -15px;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	text-align: center;
	background-color: #BFE2FF;
	cursor: pointer;
	z-index: 300;
}
.sl-container .dr-circle i {
	line-height: 40px;
	font-size: 20px;
	color: #337AB7;
	font-weight: bold;
}
@media screen and (max-width: 600px) {
	.sl-container {
		width: 320px;
		height: 210px;
	}
	.sl-container .view img {
		width: 320px;
		max-width: 320px;
	}
}
.zima, .leto {
 font-weight: bold;
 color: #337AB7;
 text-decoration: underline;
 cursor: pointer;
}
.zima:hover, .leto:hover {
 color: #000;
}
.slider * {
	box-sizing: border-box;
}	
.slider {
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin: 20px 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);	
}
.slider .item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	opacity: 1;
	transition: opacity 1s;
}
.slider .item:not(.is-active) {
	opacity: 0;
	pointer-events: none;
}
.slider .item:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}
.slider .item .imgs {
	position: relative;
	width: 60%;
	padding-top: 60%;
}
.slider .item .imgs .grid {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(12, 1fr);
	grid-column-gap: 32px;
	grid-row-gap: 32px;
	transform: rotate(-20deg);
}
.slider .item .img {
	width: 100%;
	height: 100%;
	position: relative;
	will-change: transform;
	box-shadow: -2px 4px 12px rgba(0,0,0,0.2), -8px 16px 20px rgba(0,0,0,0.2);
	background: #000;
}
.slider .item .img img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	opacity: 0.7;
	transition: opacity 0.3s;
}
.slider .item .img:hover img {
	opacity: 1;
}
.slider .item .img-1 {
	grid-area: 1/1/7/5;
}
.slider .item .img-2 {
	grid-area: 2/5/7/13;
}
.slider .item .img-3 {
	grid-area: 7/1/12/9;
}
.slider .item .img-4 {
	grid-area: 7/9/13/13;
}
.slider .item .content {
	pointer-events: none;
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 120px;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
	font-weight: 600; 
	text-align: center;
	text-shadow: 0 0 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.7);  
	color: #BFE2FF;
	font-size: 54px;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;  
	text-transform: uppercase;
    white-space: pre-wrap;
}
@media screen and (max-width: 567px) {
 .slider .item .content {
	font-size: 34px;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;  
 overflow-wrap: break-word;
}
}
.slider .item .content .item-text {
	color: #FFF;
	font-size: 20px;
	margin-top: 20px;
}
.slider .item .content .item-title .letter {
	display: inline-block;
}
.slider .nav .next, 
.slider .nav .prev {
	height: 80px;
	width: 80px;
	position: absolute;
	top: calc(50% - 40px);
	cursor: pointer;
	z-index: 4;
	transition: transform 0.3s;
}
.slider .nav .next {
	right: 20px;
}
.slider .nav .next:hover {
	transform: translateX(10px);
}
.slider .nav .prev {
	left: 20px;
}
.slider .nav .prev:hover {
	transform: translateX(-10px);
}
.slider .nav .next svg, 
.slider .nav .prev svg {
	stroke: #BFE2FF;
	transition: stroke 0.3s;
}
.slider .nav .next:hover svg, 
.slider .nav .prev:hover svg {
	stroke: #FFF;
}
@media (max-width: 767px) {
	.slider {
		height: 400px;
	}
	.slider .nav .next, 
	.slider .nav .prev {
		height: 40px;
		width: 40px;
		top: calc(50% - 20px);
	}
	.slider .nav .next {
		right: 10px;
	}
	.slider .nav .prev {
		left: 10px;
	}
	.slider .item .content {
		font-size: 20px;
		padding: 0 60px;
	}
	.slider .item .content .item-text {
		font-size: 13px;
	}
}
@media (max-width: 460px) {
	.slider .item .imgs {
		width: 100%;
		padding-top: 100%;
	}
}
.img-section {
	width: 100%;
	background: linear-gradient(135deg, #168fa8 0%, #168fa8 40%, #FFF 40%, #FFF 100%);
	display: flex;   
	align-items: center;
	margin: 20px 0;
}
.img-section img {
	border: 20px solid rgba(191, 226, 255, 0.8);
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.7);
	margin: 40px;
	box-sizing: border-box;
	flex: 0 0 45%;
	width: 45%;
}
.img-section .img-data {
	font-family: Verdana, sans-serif;
	font-size: 16px;
	padding: 20px;
}
@media only screen and (max-width: 700px) {
	.img-section {
		flex-flow: row wrap;
	}
	.img-section .img-data {
		background: #FFF;
		border-bottom: 8px solid #337AB7;
	}
	.img-section img {
		margin: 40px auto;
		flex: 0 0 80%;
		width: 80%;
	}
}		
.social-icons-2 {
    padding: 0;
    list-style: none;
    margin: 10px;
}
.social-icons-2 li {
	display: inline-block;
	position: relative;
}
.social-icons-2 li a {
	width: 30px;
	height: 30px;
	display: inline-block;
	text-align: center;
	margin: 0 4px;
	border-radius: 50%;
	padding: 6px;
	box-sizing: border-box;
	text-decoration:none;
	box-shadow: 0 8px 12px rgba(0,0,0,0.3);
	background: linear-gradient(0deg, #ddd, #fff);
	transition: .5s;
}
.social-icons-2 li a:hover {
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	color: #000;
}
.social-icons-2 li a i {
	display: block;
	background: linear-gradient(0deg, #fff, #ddd);
	border-radius: 50%;
	padding: 12px;
	font-size: 24px;
	color: #969696;
	transition: .5s;
	width: 14px;
	height: 14px;
	position: absolute;
	box-sizing: content-box;
}
.social-icons-2 li a:hover i {
	color: #337AB7;
}
.social-icons-2 li a img {
	width: 24px;
	height: 24px;
}
.topgood1 {
  margin-top: 0px;
 color:#fff;       
}
.topgood1 .text-center div {
	/*border: 10px solid #ed8c17;*/
	border: 2px solid #168fa8;
    border-radius: 4px ;
	margin-top: -100px;
    color:#fff;
	font-size: 18px;
	text-transform: uppercase;
	padding: 20px;
	margin: 10px;
    background: #FFF;
	font-weight: 600;
	height: 120px;
	display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
     box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
    }  
    ::-webkit-input-placeholder {font-size: 16px;}
::-moz-placeholder {font-size: 16px;}         
:-moz-placeholder {font-size: 16px;}
:-ms-input-placeholder {font-size: 16px;}
:focus::-webkit-input-placeholder {opacity: 0;}	
:focus::-moz-placeholder {opacity: 0;}	
:focus:-moz-placeholder {opacity: 0;}	
:focus:-ms-input-placeholder {opacity: 0;}	
.form-at {
	width: 100%;
	padding: 20px;
	box-sizing: border-box; 
	overflow: hidden;
	font-size: 0;  
	letter-spacing: 0;	
	background: #f9f9f9;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 10px 18px rgba(0,0,0,0.2);
}
.form-at * {
	box-sizing: border-box;
	font-family: Verdana, sans-serif;	
}
.validate-input-at,
.no-validate-input-at {
	width: 100%;
	position: relative;
	background-color: #fff;
	border: 2px solid #BFE2FF;
	border-radius: 2px;
	margin-bottom: 20px;
}
.validate-input-at.w-50,
.no-validate-input-at.w-50 {
	width: calc(50% - 10px);
	display: inline-block;
}
.validate-input-at.w-50:first-child,
.no-validate-input-at.w-50:first-child {
	margin-right: 20px;
}
.input-at {
	display: block;
	width: 100%;
	background: transparent;
	color: #000;
}
input.input-at {
	height: 50px;
	padding: 0 20px 0 20px;
	font-size: 16px;
	outline: none;
	border: none;  
}
textarea.input-at {
	min-height: 170px;
	padding: 18px 20px;
	font-size: 16px;
	line-height: 22px;
	outline: none;
	border: none;
	resize: none;
}
textarea.input-at:focus, 
input.input-at:focus {
	border-color: transparent;
}
.focus-input-at {
	position: absolute;
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	top: -1px;
	left: -1px;
	pointer-events: none;
	border: 2px solid #337AB7;
	border-radius: 2px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s;
	transform: scaleX(1.1) scaleY(1.3);
}
.input-at:focus + .focus-input-at {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}
.form-at-btn {
	position: relative;
	display: block;
	padding: 0 40px;
	height: 50px;
	background-color: #337AB7;
	border-radius: 2px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.2;
	transition: all 0.4s;
	margin: 0 auto;
	outline: none;
	border: none;
	cursor: pointer;		
}
.form-at-btn:hover {
	background-color: #333333;
}
.form-at-btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
}
.alert-validate::before {
	content: attr(data-validate);
	position: absolute;
	max-width: 70%;
	background-color: #fff;
	border: 1px solid #c80000;
	border-radius: 2px;
	padding: 4px 25px 4px 10px;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
	pointer-events: none;
	color: #c80000;
	font-size: 13px;
	line-height: 1.4;
	text-align: left;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.4s;
}
.alert-validate::after {
	content: "\f129";
	font-family: "FontAwesome";
	display: block;
	position: absolute;
	color: #c80000;
	font-size: 18px;
	font-weight: bold;	
	top: 50%;
	transform: translateY(-50%);
	right: 22px;
}
.alert-validate:hover:before {
	visibility: visible;
	opacity: 1;
}
.error-at {
	color: red;
	padding: 10px 0;
}
.success-at {
	color: green;
	font-size: 28px;
	padding: 20px 0;
	text-align: center;
}
.form-at input[type=checkbox] {
    display:none;
}
.form-at input[type=checkbox] + label {
    display: block;
    position: relative;
    margin: 0 0 20px 34px;
    font-size: 13px;
    line-height: 24px;
    color: #333333;
}
.form-at input[type=checkbox] + label:before {
	box-sizing: border-box;
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    line-height: 22px;
    left: -34px;
	border: 2px solid #BFE2FF;
	border-radius: 2px;
}
.form-at input[type=checkbox]:checked + label:before{
    content: '\2714';
    color:#337AB7;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
	border: 2px solid #337AB7;
}
@media (max-width: 768px) {
	.validate-input-at.w-50 {
		width: 100%;
	}
	.validate-input-at.w-50:first-child {
		margin-right: 0;
	}
	.alert-validate::before {
		visibility: visible;
		opacity: 1;
	}
   .certificates-section{
             background-image: url(90);
   
   
    border-top: 1px solid #EAEAEA;
  
     background-size: cover;   
}
i {
    font-style: normal;
}    
.certificate-gallery .element{
    margin-bottom: 10px;
    border: 1px solid #76b500;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2);
}
.certificate-gallery .element {
    margin-bottom: 10px;
    border: 1px solid #76b500;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2);
    height: 231px;
    width: 100%;
    object-fit: cover;
}  
 .grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 30px;
	row-gap: 30px;
	padding: 20px 0;
}

@media only screen and (max-width: 600px) {
	.grid {
		grid-template-columns: 1fr;
	}
}
.grid-item {
	box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2);
	transition: box-shadow .3s;
	width: 100%;
	height: 320px;  
}
.grid-item .image {
	height: 200px;
	overflow: hidden;
}
.grid-item .info {
    position: relative;
    height: calc(100% - 142px);
    padding: 16px 14px 80px 14px;
    /* height: 123px; */
}
.grid-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
}
.grid-item .image img  {
  	transition: transform 280ms ease-in-out;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.grid-item:hover .image img  {
	transform: scale(1.1);
}
.info h2 {
font-family: 'Sofia Sans Extra Condensed', sans-serif;
	color: #033566;
	font-size: 20px;
	font-weight: 800;
	margin: 0;
	margin-bottom: 10px;
	text-align: center;
}
.info-text p {
	font-size: 15px;
	line-height: 20px;
	font-family: Verdana, sans-serif; 
	margin-bottom: 10px;
}
.info-text p:last-child {
	margin-bottom: 0;
}
.grid-item .button-wrap {
	display: block;
	width: 100%;
	position: absolute;
	bottom: 1px;
	left: 0;
	text-align: center;
}

 a.button28 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: rgb(209,209,217);
  text-decoration: none;
  text-shadow: 0 -1px 2px rgba(0,0,0,.2);
  padding: .5em 1em;
  outline: none;
  border-radius: 3px;
  background-color: #181a3d;
  box-shadow:
   0 1px rgba(255,255,255,.2) inset,
   0 3px 5px rgba(0,1,6,.5),
   0 0 1px 1px rgba(0,1,6,.2);
  transition: .2s ease-in-out;
  width: 100%;   
}
a.button28:hover:not(:active) {
background-color: #181a3d;
    }
a.button28:active {
  top: 1px;
  background: linear-gradient(rgb(76,77,82), rgb(56,57,62)) rgb(76,77,82);
  box-shadow:
   0 0 1px rgba(0,0,0,.5) inset,
   0 2px 3px rgba(0,0,0,.5) inset,
   0 1px 1px rgba(255,255,255,.1); 
     }  
   .contact-container * {
	box-sizing: content-box;
}	
.contact-container {
	position: fixed;
	right: 0;
	z-index: 99999999;
	bottom: 140px;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
}
.contact-container.visible {
	transform: translateX(-10px);
}
.contact {	
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	border: 5px solid #313a5b;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: Verdana, sans-serif;  
	position: relative;
	height: 110px;	
	width: 350px;
	max-width: calc(100% - 10px);
}
.contact span.close-btn {
	width: 20px;
	height: 20px;
	border: 0;
	cursor: pointer;
	position: absolute;
	top: 5px;
	right: 5px;
}
.contact span.close-btn svg {
	stroke: #313a5b;
	width: 20px;
	height: 20px;
}
.contact span.close-btn:focus {
	outline: none;
}
.contact div {
	background-color: #313a5b;
	border-radius: 0 0 10px 10px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 18px;
	padding: 2px 0 6px;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	text-align: center;
	width: 280px;
}
.contact ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.contact ul li {
	margin: 24px 6px 0 6px;
}
.contact ul li a {
	border: 4px solid #BFE2FF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	font-size: 24px;
	color: #313a5b;
	width: 48px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
.contact ul li a:hover {
	border-color: #313a5b;
	color: #000;
	box-shadow: 0 9px 12px -9px #337AB7;
}
.contact-btn {
	border-radius: 30px;
	background-color: #7b7979;
	border: 2px solid #313a5b;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	color: #fff;
	cursor: pointer;
	padding: 12px 20px;
	position: fixed;
	bottom: 90px;
	right: 20px;
	z-index: 99999999;
	font-size: 15px;
	font-weight: bold;
	line-height: 20px;
	font-family: Verdana, sans-serif;  	
	text-transform: uppercase;
	transition: all 0.4s ease-in-out;
}
.contact-btn:hover {
	background-color: #ffffff;
	color: #313a5b;
}
.contact-btn:focus {
	outline: none;
}
@media screen and (max-width: 480px) {
	.contact-container.visible {
		transform: translateX(0px);
	}
	.contact-btn {
		right: 10px;
	}
}      
 .acor-container {
	margin: 20px 0;
}
.acor-container .acor-body {
	width: calc(100% - 40px);
	margin: 0 auto;
	height: 0;
	color: rgba(0, 0, 0, 0);
	background-color: #BFE2FF;
	line-height: 18px;
	padding: 0 30px;
	box-sizing: border-box;
	transition: color 0.5s, padding 0.5s;
	overflow: hidden;
	font-family: Verdana, sans-serif; 
	font-size: 16px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 10px 16px rgba(0,0,0,0.2);
}
.acor-container .acor-body p {
	margin: 0 0 10px;
}
.acor-container label {
	cursor: pointer;
	background-color: #313a5b;
	display: block;
	padding: 15px 20px;
	width: 100%;
	color: #BFE2FF;
	font-weight: 300;
	box-sizing: border-box;
	z-index: 100;
	font-family: Verdana, sans-serif;   
	font-size: 18px;
	margin: 0 0 5px;
	transition: color .35s;
}
.acor-container label:hover {
    color: #FFF;
}
.acor-container input{
	display: none;
}
.acor-container label:before {
	
	float: right;
}
.acor-container input:checked + label {
	background-color: #5b668f;
    color: #FFF;
	box-shadow: 0 8px 26px rgba(0,0,0,0.4), 0 28px 30px rgba(0,0,0,0.3);
}
.acor-container input:checked + label:before {
    transition: transform .35s;
    transform: rotate(90deg);
}
.acor-container input:checked + label + .acor-body {
	height: auto;
	margin-top: -5px;
	color: #000;
	padding: 20px 30px 10px;
}
.yamap_wrap {
	margin: 20px 0;
	padding: 20px;
	font-size: 18px;
	text-align: center;
	border: 6px solid #168fa8;
	font-family: 'Roboto Condensed', sans-serif;
	display: flex;
    align-items: center;
    justify-content: center;
	height: 380px;
	width: 100%;
}
.vk_wrap {
	width: 100%;
	margin: 20px 0;
	padding: 20px;
	font-size: 18px;
	text-align: center;
	border: 6px solid #ddc57b;
	font-family: 'Roboto Condensed', sans-serif;
	display: flex;
    align-items: center;
    justify-content: center;
	height: 260px;
}
#vk_groups {
	width: 100%;
} 
        .topgood {
  margin-top: -80px;
 color:#fff;       
}
.topgood .text-center div {
	/*border: 10px solid #ed8c17;*/
	border: 2px solid #168fa8;
    border-radius: 4px ;
	margin-top: -100px;
    color:#fff;
	font-size: 18px;
	text-transform: uppercase;
	padding: 20px;
	margin: 10px;
    	background: #FFF;
    background-image: url(/0112.webp);

	font-weight: 600;
	height: 120px;
	display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
     box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
    } 
.about {
    padding: 30px 0;
    background-color: #fff;
}

.about .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;
color: #313a5b;
}

.about .heading h2 span {
    color: #313a5b;
}

.about .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #000000;
    margin: 20px 0 60px;
    padding: 0;
}

.about h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.about p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: #000000;
    margin: 20px 0 15px;
    padding: 0;
}

.about h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 8px 0;
}

.about h4 i {
    color:#313a5b;
    margin-right: 10px;
}
.youtube-wrap {
	position: relative;
	max-width: 800px;
	margin: 20px auto;
	border: 6px solid #313a5b;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
}
.youtube-wrap div[youtube] {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
	background: #000;
	cursor: pointer;
}
.youtube-wrap div[youtube]:before {
	content: "";  
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	border: 6px solid #BFE2FF;
	width: 80px;
	height: 80px;
	z-index: 3;
	box-shadow: 0 8px 26px rgba(0,0,0,0.4), 0 28px 30px rgba(0,0,0,0.3);
	position: absolute;
	top: 20px;
	left: 20px;	
/* Кнопка по центру */	
/*	
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%); 
*/
	transition: 0.5s;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' stroke='%23BFE2FF' fill='%23BFE2FF' stroke-linecap='round'%3e%3cpolygon points='5 3 19 12 5 21 5 3'%3e%3c/polygon%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: 60% 50%;  
}
.youtube-wrap div[youtube]:hover:before {
	background-color: rgba(0, 0, 0, 0.7);
	border: 6px solid #FFF;
}
.youtube-wrap div[youtube].show:before,
.youtube-wrap div[youtube].show:after {
    display: none;
}
.youtube-wrap div[youtube] iframe,
.youtube-wrap div[youtube] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 1;
}	
.youtube-wrap div[youtube] img {
	z-index: 2;
	object-fit: cover;
	object-position: 50% 50%;
}
@media screen and (max-width: 420px) {
	.youtube-wrap div[youtube]:before {
		width: 60px;
		height: 60px;
		border: 4px solid #BFE2FF;
	}
} 
   .glass-backdrop {
	height: 500px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 0;
	background: url("/1/21.webp") center no-repeat;
    background-repeat: no-repeat;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
      background-attachment: fixed;   
    
    }
.glass-backdrop h1 {
	position: relative;
	text-align: center;
	color: #FFF;
	width: 85%;
	font-size: 36px;
	line-height: 40px;
	padding: 40px 0;
	box-shadow: 0 6px 18px rgba(0,0,0,0.2), 0 16px 28px rgba(0,0,0,0.2);
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);

   
	text-transform: uppercase;
	font-family: 'Roboto', Tahoma, sans-serif;
	letter-spacing: 4px;
	z-index: 1;
	overflow: hidden;
	backdrop-filter: blur(8px);
    font-weight: 800;
}
.h2 {
position:relative;
background: #fff;
padding:30px 40px;
margin:0 10%;
margin-bottom:-70px;
top:-120px;
box-shadow: 0 0 8px 4px rgba(0, 0, 0, .2);	
}  
.openTabby,
.openTabby * {
	box-sizing: border-box;
}
.openTabby {
	overflow: hidden;
	margin: 20px 0;
}
.openTabby .openTabby--nav {
	position: relative;
	display: none;
	width: 10000px;
}
.openTabby .openTabby--nav:after {
	display: block;
	content: "";
	clear: both;
}
.openTabby .openTabby--nav ul {
	float: left;
	display: table;
	margin: 0;
	padding: 0;  
}
.openTabby .openTabby--nav ul:after {
	display: block;
	content: "";
	clear: both;
} 
.openTabby .openTabby--nav ul li {
	float: left;
	cursor: pointer;
	list-style: none;
	line-height: 3;
	padding: 0 20px;
	color: #666;
	font-weight: 600; 
	border: 2px solid transparent;
	position: relative;
	top: 2px;
	z-index: 2;
	text-transform: uppercase;
	font-family: Verdana, sans-serif;   
}
.openTabby .openTabby--nav ul li:hover {
	color: #337AB7;
}
.openTabby .openTabby--nav ul li.active {
	color: #337AB7;
	background: #fff;
	border: 2px solid #168fa8;
	border-radius: 8px 8px 0 0;
	border-bottom: 2px solid #FFF;
	cursor: default;
}

.openTabby .openTabby--slidesContainer {
	background-color: #fff;
	display: table;
	position: relative;
	overflow: scroll;	
}
.openTabby .openTabby--slidesContainer .openTabby--slide {
	padding: 20px;
	background: #fff;
	width: 100%;
	overflow: scroll;  
}
.openTabby.accordion .openTabby--nav ul {
	padding: 20px;
}
.js .openTabby .openTabby--nav {
	display: block;
	top: 0;
}
.js .openTabby .openTabby--slidesContainer {
	display: block;
}
.js .openTabby .openTabby--slidesContainer .openTabby--slide {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.js .openTabby .openTabby--slidesContainer .openTabby--slide.active {
	opacity: 1;
	z-index: 1;
}
.js .openTabby.csstransitions .openTabby--nav ul li {
	transition: all 0.3s ease 0s;
}
.js .openTabby.csstransitions .openTabby--slidesContainer {
	transition: all 0.3s ease 0s;
}
.js .openTabby.csstransitions .openTabby--slidesContainer .openTabby--slide {
	transition: all 0.3s ease 0s;
}
.openTabby .effect-fade .openTabby--slide {
	opacity: 0;
}
.openTabby .effect-fade .openTabby--slide.active {
	opacity: 1;
}
.openTabby .effect-shrink .openTabby--slide {
	transform: scale(0.6);
}
.openTabby .effect-shrink .openTabby--slide.active {
	transform: scale(1);
}
.openTabby .effect-grow .openTabby--slide {
	transform: scale(1.4);
}
.openTabby .effect-grow .openTabby--slide.active {
	transform: scale(1);
}
.openTabby .effect-slide-left .openTabby--slide {
	transform: translate(-100%, 0);
}
.openTabby .effect-slide-left .openTabby--slide.active {
	transform: translate(0, 0);
}
.openTabby .effect-slide-right .openTabby--slide {
	transform: translate(100%, 0);
}
.openTabby .effect-slide-right .openTabby--slide.active {
	transform: translate(0, 0);
}
.openTabby .effect-slide-up .openTabby--slide {
	transform: translate(0, 100%);
}
.openTabby .effect-slide-up .openTabby--slide.active {
	transform: translate(0, 0);
}
.openTabby .effect-slide-down .openTabby--slide {
	transform: translate(0, -100%);
}
.openTabby .effect-slide-down .openTabby--slide.active {
	transform: translate(0, 0);
}
.openTabby .effect-flip-vertical .openTabby--slide {
	transform: rotateX(180deg);
}
.openTabby .effect-flip-vertical .openTabby--slide.active {
	transform: rotateX(0);
}
.openTabby .effect-flip-horizontal .openTabby--slide {
	transform: rotateY(180deg);
}
.openTabby .effect-flip-horizontal .openTabby--slide.active {
	transform: rotateY(0);
}
.openTabby .effect-rotate .openTabby--slide {
	transform: rotateZ(360deg);
}
.openTabby .effect-rotate .openTabby--slide.active {
	transform: rotateZ(0);
}
.js .openTabby.responsive .openTabby--slidesContainer {
	overflow: hidden;
	border: 2px solid #168fa8;
}
.js .openTabby.responsive .openTabby--slidesContainer .openTabby--slide {
	display: table;
	overflow: hidden;
}
.js .openTabby.accordion .openTabby--nav {
	width: auto;
}
.js .openTabby.accordion .openTabby--nav ul {
	width: 100%;
}
.js .openTabby.accordion .openTabby--nav ul li {
	width: 100%;
	float: none;
	display: block;
	text-align: center;
}
.openTabby.accordion .openTabby--nav ul li.active {
	border-bottom: 2px solid #168fa8;
}    

    