/*
[Table of contents]

1. Body and general styles
2. Typography
3. Buttons
4. Navigation (top menu)
5. Swiper slider style
6. Backgrounds
7. Section common styling
8. breadcrumbs
9. skill
10. banner
11. about
12. gum
13. achievements
14. team
15. price-card
16. contact
17. FOOTER
18. blog page styles
19. contacts page styles
20. schedule page styles
21. responsive rules
22. Helpers classes
*/

/**-----
	[Fonts linking]
--------**/

@import url("https://fonts.googleapis.com/css?family=Merriweather:300,400,700|Poppins:400,600");

/*
  [1. Body and general styles]
*/

html {
  font-size: 16px;
}

body {
  position: relative;
  width: 100%;
  min-width: 320px;
  color: #605f5f;
  background-color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 100%;
  overflow-x: hidden;
}

/*
  [2. Typography]
*/

p {
  line-height: 30px;
  margin-top: 0px;
  margin-bottom: 10px;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #67def0;
}

a:focus,
a:active {
  outline: none;
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: 'Merriweather', sans-serif;
  font-weight: 700;
  margin-top: 0;
}

.h1 {
  font-size: 4.5rem;
  line-height: 6.25rem;
}

.h2 {
  font-size: 3rem;
  line-height: 6.25rem;
}

.h3 {
  font-size: 2.25rem;
  line-height: 1;
}

.h4 {
  font-size: 1.75rem;
  line-height: 2.5rem;
}

.h5 {
  font-size: 1rem;
  line-height: 30px;
}

.text-left {
  text-align: left;
}

/*
	[3. Buttons]
*/

button,
input,
textarea {
  outline: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

button:focus {
  outline: none;
}

.btn__main {
  display: block;
  width: 350px;
  height: 80px;
  margin: 0 auto;
  background: transparent;
  border: 6px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
}

.btn__main:hover {
  border-color: #67def0;
  color: #67def0;
}

.btn__act {
  position: relative;
  padding: 7px 54px;
  border: 3px solid #6cdff0;
  border-radius: 3px;
  background: transparent;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #262525;
  margin: 55px 0 45px;
  z-index: 5;
}

.btn__act:hover {
  background: #67def0;
}

.btn__banner {
  color: #fff;
  width: 450px;
  padding: 7px 0;
  margin: 45px 0 107px;
}

.btn__banner:hover {
  color: #262525;
}

.btn__submit {
  padding: 7px 23px;
  margin: 37px 0;
  text-transform: uppercase;
  color: #5f5e5e;
  border: 2px solid #5f5e5e;
  background: #fff;
}

.btn__submit:hover {
  background: #67def0;
  color: #262525;
}

.btn__blog-single {
  padding: 5px 8px;
  margin: 14px 0;
  border: none;
  text-transform: uppercase;
  background: #67def0;
  color: #fff;
}

.btn__blog-single:hover {
  color: #5f5e5e;
}

.btn__footer {
  width: 160px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  color: #9d9c9c;
  text-transform: uppercase;
}

.btn__footer:hover {
  background: #67def0;
  color: #262525;
}

.btn__soclink {
  color: #fff;
  border-radius: 1px;
  border: none;
  padding: 3px 4px;
  margin-right: 3px;
  line-height: 1;
  font-size: 12px;
}

.btn__soclink> .fa:before {
  margin-right: 4px;
  font-size: 16px;
}

.btn__schedule {
  position: relative;
  text-transform: uppercase;
  border: 1px solid #262525;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 2px 32px;
  color: #5f5e5e;
}

.btn__schedule-active {
  background: #67def0;
  color: #fff;
}

.btn__schedule-active:hover {
  color: #5f5e5e;
}

/*
  [4. Navigation (top menu)]
*/

.page-header {
  background-color: #383a43;
}

._header-homepage {
  position: absolute;
  width: 100%;
  z-index: 100;
  background: rgba(56,58,67,0.7);
}

.menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-responsive-button {
  display: none;
  position: relative;
  width: 20px;
  height: 20px;
}

.menu-responsive-button:before,
.menu-responsive-button:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu-responsive-button:before {
  top: 0;
  left: 0;
}

.menu-responsive-button:after {
  top: 8px;
  left: 0;
}

.menu-responsive-button.js-menu-responsive-button-active:after {
  -webkit-transform: rotate(45deg) translateY(-6px);
  -ms-transform: rotate(45deg) translateY(-6px);
      transform: rotate(45deg) translateY(-6px);
}

.menu-responsive-button.js-menu-responsive-button-active:before {
  -webkit-transform: rotate(-45deg) translateY(6px);
  -ms-transform: rotate(-45deg) translateY(6px);
      transform: rotate(-45deg) translateY(6px);
}

.menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-list {
  margin-right: 15px;
  min-width: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
      transform: translateY(4px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu-list.js-menu-opened {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.menu-item {
  position: relative;
}

.menu-link {
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.menu-link:hover:before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
  opacity: 1;
}

.menu-link:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -36px;
  display: block;
  width: 100%;
  height: 3px;
  background: #67def0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu-link__add-menu:before {
  width: 0;
  height: 0;
}

.menu-link__add-menu:hover + .menu-add-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.menu-add-list {
  display: block;
  min-width: 210px;
  border-bottom: 3px solid #67def0;
  background-color: #5f5e5e;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 20px 15px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
      transform: translateY(5px);
}

.menu-add-list:before {
  content: '';
  position: absolute;
  top: -8px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 8px 10px;
  border-color: transparent transparent #5f5e5e transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu-add-list:hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.menu-add-item {
  display: block;
}

.menu-add-link {
  display: block;
  padding: 12px 0;
  color: #888;
}

.menu-label {
  color: #fff;
  cursor: pointer;
}

.menu-label:hover {
  color: #67def0;
}

#menu-search {
  width: 0;
  border: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 0;
  margin: 24px 0;
}

#searchbox {
  display: none;
}

#searchbox:checked + #menu-search {
  width: 180px;
}

.logo {
  display: inline-block;
  padding: 30px 15px;
  font-family: 'Merriweather';
  text-transform: uppercase;
  color: #fff;
  font-size: 1.85375rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/*
  [5.  swiper slider style]
*/

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #d7d7d7;
  opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 55px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px;
}

.swiper-pagination-bullet-active {
  background: #67def0;
}

.slider-intro {
  min-height: 800px;
  height: 100vh;
}

.slider-intro__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 50;
}

.slider-intro__slide >.container {
  background: transparent;
  z-index: 51;
}

.slider-intro__slide:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #383a43;
  opacity: 0.5;
  z-index: 4;
}

/*
  [6. backgrounds]

*/

._background-image-1 {
  background-image: url("../img/backgrounds/background_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

._background-image-2 {
  background-image: url("../img/backgrounds/background_2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

._background-image-3 {
  background-image: url("../img/backgrounds/background_3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

._background-image-4 {
  background-image: url("../img/backgrounds/background_4.jpg");
}

._background-image-5 {
  background-image: url("../img/backgrounds/background_5.jpg");
}

._background-image-6 {
  background-image: url("../img/backgrounds/background_6.jpg");
}

._background-image-7 {
  background-image: url("../img/backgrounds/background_7.jpg");
}

/**-----------------------------------------------------------------
	[7. section common styling]
	-------------------------------------------------------------**/

.page-main {
  background: #fff;
}

.header-section {
  height: 500px;
}

.header__wrap {
  margin-top: 142px;
  text-align: left;
}

.header__title {
  display: inline;
  font-size: 42px;
  padding: 10px 12px;
  margin-left: 12px;
  line-height: 72px;
  background: #3f3f3f;
  color: #fff;
  letter-spacing: 1.5px;
}

.header__title span {
  color: #67def0;
}

.page-section {
  position: relative;
  padding: 35px 0;
  text-align: center;
}

.page-section__slider {
  padding: 0;
}

.page-section__header {
  position: relative;
  color: #fff;
  letter-spacing: 3px;
  text-align: center;
  margin: 95px 0;
  z-index: 5;
}

.page-section__header:before,
.page-section__header:after {
  content: '';
  display: block;
  width: 160px;
  height: 140px;
  border-radius: 3px;
  position: absolute;
}

.page-section__header:before {
  border-top: 4px solid #67def0;
  border-left: 4px solid #67def0;
  left: 15px;
  top: -60px;
}

.page-section__header:after {
  border-bottom: 4px solid #67def0;
  border-right: 4px solid #67def0;
  right: 15px;
  bottom: -15px;
}

.page-section__header >span {
  color: #67def0;
  text-transform: uppercase;
}

.page-section__title {
  display: inline-block;
  position: relative;
  margin: 35px 15px;
  padding: 2px 30px;
  letter-spacing: 2px;
  color: #262525;
  z-index: 5;
}

.page-section__title-inv {
  color: #fff;
  margin-top: 118px;
  margin-bottom: 94px;
}

.page-section__title:before,
.page-section__title:after {
  display: block;
  content: '';
  width: 65px;
  height: 54px;
  position: absolute;
}

.page-section__title:before {
  top: 0;
  left: 0;
  border-top: 2px solid #67def0;
  border-left: 2px solid #67def0;
}

.page-section__title:after {
  right: 0;
  bottom: 0;
  border-right: 2px solid #67def0;
  border-bottom: 2px solid #67def0;
}

.page-section__desk {
  color: #5f5e5e;
  margin-bottom: 56px;
}

/*
  [8. breadcrumbs]
*/

.breadcrumb {
  text-align: left;
  padding: 0;
  margin-top: 85px;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb__item:after {
  content: '\f105';
  font-family: FontAwesome;
  padding: 0 5px;
  color: #79e2f2;
}

.breadcrumb__item:last-child:after {
  content: '';
}

.breadcrumb__link {
  text-transform: uppercase;
  color: #79e2f2;
  font-size: 12px;
}

/*
  [9. skill]
*/

.skill__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #f3f2f2;
  height: 300px;
  margin-bottom: 21px;
  margin-top: 10px;
}

.skill__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 47%;
  flex: 0 1 47%;
  text-align: center;
  overflow: hidden;
}

.skill__img >img {
  display: block;
  width: 100%;
  height: auto;
}

.skill__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 53%;
  flex: 0 1 53%;
  padding: 20px 27px 20px 40px;
  text-align: left;
}

.skill__title {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #262525;
  padding-bottom: 9px;
  margin-bottom: 15px;
  border-bottom: 1px solid #6cdff0;
}

.skill__desk {
  padding: 0;
  line-height: 30px;
  height: 185px;
  overflow-y: auto;
}

/*
  [10. banner]
*/

.banner {
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 34px;
}

.banner:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #383a43;
  opacity: 0.5;
  z-index: 4;
}

.banner__title {
  margin: 177px 85px 50px;
}

.banner__title-type-2 {
  margin: 177px 0 50px;
}

/*
  [11. about]
*/

.about {
  padding: 0;
}

.about__item {
  padding-top: 43px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 512px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.about__img {
  width: 128px;
  height: 128px;
  padding: 6px;
  border-radius: 50%;
  background: #67def0;
  text-align: center;
}

.about__title {
  padding: 32px 0 18px;
  font-family: 'Merriweather';
  font-size: 1.375rem;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.about__divider {
  width: 221px;
  height: 2px;
  background: rgba(108,223,240,0.7);
}

.about__desk {
  padding: 22px 15px;
  overflow-y: auto;
  color: #605f5f;
  line-height: 30px;
}

.about__content {
  margin-bottom: 20px;
  text-align: left;
  color: #5f5e5e;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.about__content> span {
  font-weight: 600;
}

.about-page__title {
  text-align: left;
  margin-bottom: 14px;
}

/*
  [12. gum]
*/

.gum {
  margin: 0;
  padding: 0;
}

.gum__img {
  margin-top: 16px;
  padding: 0 15px;
  height: 650px;
}

.gum__img>img {
  width: 100%;
  height: 100%;
}

.gum__slider-prev,
.gum__slider-next {
  display: inline-block;
  position: absolute;
  top: 320px;
  cursor: pointer;
  z-index: 10;
}

.gum__slider-prev {
  left: 26px;
}

.gum__slider-next {
  right: 26px;
}

.gum__slider-prev:before,
.gum__slider-next:before {
  display: block;
  font-family: FontAwesome;
  font-size: 42px;
  color: #67def0;
}

.gum__slider-prev:before {
  content: '\f137';
}

.gum__slider-next:before {
  content: '\f138';
}

.gum-swiper-pagination {
  padding: 66px 0;
}

/*
  [13.  achievements]
*/

.achievements {
  padding-bottom: 101px;
  background-repeat: no-repeat;
}

.achievements:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #383a43;
  opacity: 0.5;
  z-index: 4;
}

.achievements__item {
  position: relative;
  z-index: 10;
  background: #424348;
  max-width: 160px;
  min-height: 204px;
  margin: 0 auto 30px;
}

.achievements__img >.flaticon:before {
  margin: 0;
  font-size: 4.5rem;
  color: #fff;
}

.achievements__count {
  font-family: Merriweather;
  font-size: 3rem;
  color: #67def0;
}

.achievements__desk {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

/*
  [14. team]
*/

.team {
  padding-bottom: 0;
}

.team__item {
  position: relative;
  height: 380px;
  overflow-y: hidden;
  margin: 17px 0 25px;
}

.team__item:hover .team__overlay {
  opacity: 1;
}

.team__img {
  display: block;
  width: 100%;
}

.team__overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: auto;
  margin: 5px;
  background: rgba(66,67,72,0.9);
  border: 3px solid #6cdff0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team__overlay-title {
  font-family: 'Merriweather';
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 100px;
  color: #67def0;
  text-transform: uppercase;
}

.team__overlay-desk {
  padding: 15px;
  color: #fff;
}

.team__overlay-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 10px 0;
}

.team__overlay-wrap svg.icon {
  width: 50px;
  height: 50px;
}

/*
  [15. price-card]
*/

.price-card {
  padding: 12px 0 0;
}

.price-card__item {
  height: 532px;
  border: 1px solid #262525;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: #383a43;
  color: #fff;
  margin: 12px 0 30px;
}

.price-card__item-inv {
  background: #fff;
  color: #262525;
}

.price-card__item-inv .price-card__title {
  color: #262525;
}

.price-card__item-inv .price-card__price {
  background: #67def0;
}

.price-card__item-inv .price-card__desk {
  color: #5f5e5e;
}

.price-card__item-inv .price-card__btn {
  border: 3px solid #67def0;
  background: #fff;
}

.price-card__item-inv .price-card__btn:hover {
  background: #9d9c9c;
}

.price-card__title {
  font-family: Merriweather;
  font-size: 36px;
  font-weight: 700;
}

.price-card__price {
  background: #fff;
  color: #262525;
  font-family: Merriweather;
  font-size: 72px;
  font-weight: 300;
}

.price-card__btn {
  background: #383a43;
  border: 3px solid #fff;
  padding: 12px 35px;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -ms-flex-item-align: center;
  align-self: center;
}

.price-card__btn:hover {
  background: #262525;
}

/*
  [16. contact]
*/

.contact {
  padding: 7px 0;
}

.contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact__wrap .flaticon:before {
  margin: 0 30px 0 0;
  font-size: 64px;
  color: #67def0;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__item-str {
  display: block;
  padding: 4px 0;
  color: #5f5e5e;
  text-align: left;
}

.contact__item-desk {
  padding-top: 21px;
}

.contact__form {
  padding: 12px 0 0 0;
  color: #5f5e5e;
  text-align: left;
}

.contact__input {
  display: block;
  width: 100%;
  padding: 7px 8px;
  border: 2px solid #5f5e5e;
  margin: 40px 0;
}

.contact__message {
  width: 100%;
  height: 250px;
  border: 2px solid #5f5e5e;
  padding: 7px 8px;
}

/**-----------------------------------------------------------------
	[17. FOOTER]
	-------------------------------------------------------------**/

.footer {
  background: #383a43;
  padding: 42px 0 0;
}

.footer__item {
  margin-bottom: 30px;
}

.footer__link {
  display: block;
  color: #9d9c9c;
}

.footer__title {
  margin-top: 9px;
  margin-bottom: 58px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.footer__title span {
  color: #66dff0;
}

.footer__desk {
  color: #9d9c9c;
  line-height: 30px;
  max-width: 240px;
  margin-bottom: 18px;
}

.footer__desk:last-child {
  margin-bottom: 8px;
}

.footer__desk span {
  color: #fff;
}

.footer__desk svg.icon {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  margin-top: 15px;
}

.footer__divider {
  height: 1px;
  background: #67def0;
  width: 255px;
  margin: 23px 0 13px 0;
}

.footer__list-item {
  display: block;
  margin-bottom: 50px;
}

.footer__list-img {
  display: table-cell;
}

.footer__list-img >img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.footer__list-desk {
  display: table-cell;
  padding-left: 12px;
  vertical-align: middle;
  line-height: 30px;
}

.footer__list-desk> time {
  color: #fff;
}

.footer__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 9px;
}

.footer__btn-item {
  margin-bottom: 25px;
}

.footer__copyright {
  background: #232429;
  color: #9d9c9c;
  font-size: 12px;
  padding: 10px 0;
}

.footer__copyright .fa {
  margin-right: 5px;
}

/*
  [18. blog page styles]
*/

.blog {
  padding: 0 0 24px;
}

.blog__header {
  margin-top: 24px;
  margin-bottom: 39px;
}

.blog__desk {
  margin-bottom: 62px;
}

.blog__divider {
  height: 3px;
  margin-top: 5px;
  background: #939090;
}

.blog-item {
  text-align: left;
  margin-bottom: 31px;
  padding: 6px;
}

.blog-item__img {
  overflow-y: hidden;
  max-height: 220px;
}

.blog-item__img> img {
  width: 100%;
}

.blog-item__img-title {
  padding: 12px 0 6px;
  color: #939090;
  line-height: 30px;
  text-transform: uppercase;
}

.blog-item__title {
  color: #262525;
  margin-bottom: 15px;
}

.blog-item__desk {
  color: #5f5e5e;
  height: 215px;
  overflow-y: auto;
}

.blog-item__desk> span {
  color: #8be4f3;
}

.blog-item__link {
  color: #67def0;
  text-transform: uppercase;
}

.blog-item__link:before {
  content: '\f105';
  font-family: FontAwesome;
  margin-right: 10px;
}

.blog-item__divider {
  height: 1px;
  background: #939090;
  margin: 15px 0;
}

.blog-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #939090;
  text-transform: uppercase;
}

.blog-item__info-item {
  margin: -6px 0 14px 0;
}

.blog-item__info-item:last-child {
  margin-top: 2px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.blog-item__info-item>i,
.blog-item__info-item span {
  display: table-cell;
  line-height: 30px;
}

.blog-item__info-item> span {
  padding-left: 10px;
}

.blog-item__info-item> .flaticon:before {
  font-size: 18px;
  margin: 0 10px 0 0;
}

.blog-item__info-item> .flaticon-shopping {
  display: table-cell;
}

.blog-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-pagination__list {
  margin: 40px 0;
}

.blog-pagination__item {
  display: inline-block;
  color: #939090;
}

.blog-pagination__item:after {
  content: '\f105';
  font-family: FontAwesome;
  margin: 0 10px;
}

.blog-pagination__item:last-child:after {
  content: '';
}

.blog-pagination__item:nth-child(5):after {
  content: '';
}

.blog-pagination__link {
  color: #939090;
}

.blog-pagination__link-active {
  color: #262525;
}

.blog-pagination__btn-group {
  margin: 40px 0;
}

.blog-pagination__btn-prev {
  margin-right: 21px;
}

.blog-pagination__btn-prev,
.blog-pagination__btn-next {
  color: #939090;
  text-transform: uppercase;
}

.blog-pagination__btn-prev:before,
.blog-pagination__btn-next:after {
  font-family: FontAwesome;
  letter-spacing: 3px;
}

.blog-pagination__btn-prev:before {
  content: '\f104 \f104';
  margin-right: 10px;
}

.blog-pagination__btn-next:after {
  content: '\f105 \f105';
  margin-left: 10px;
}

.blog-sidebar {
  text-align: left;
}

.blog-sidebar__title {
  font-size: 1.375rem;
  line-height: 1.875rem;
  letter-spacing: 1.5px;
  color: #262525;
}

.blog-sidebar__category {
  border-bottom: 3px solid #939090;
  padding: 21px 0 38px;
  margin-bottom: 30px;
}

.blog-sidebar__category-item {
  color: #939090;
}

.blog-sidebar__category-item:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 6.5px 0;
  background: #939090;
}

.blog-sidebar__category-item:last-child:after {
  display: none;
}

.blog-sidebar__category-link {
  color: #939090;
  line-height: 30px;
  letter-spacing: 2px;
}

.blog-sidebar__category-link:before {
  content: '\f105';
  font-family: FontAwesome;
  margin-right: 15px;
}

.blog-sidebar__popular {
  margin-top: 43px;
  margin-bottom: 31px;
  padding-bottom: 4px;
  border-bottom: 3px solid #939090;
}

.blog-sidebar__popular-item {
  margin-bottom: 46px;
}

.blog-sidebar__popular-item> .flaticon:before {
  font-size: 18px;
  margin-right: 12px;
}

.blog-sidebar__popular-item > span {
  letter-spacing: 1px;
}

.blog-sidebar__popular-link {
  display: table;
  color: #262525;
  margin-bottom: 14px;
}

.blog-sidebar__popular-img {
  display: table-cell;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.blog-sidebar__popular-title {
  display: table-cell;
  vertical-align: middle;
  padding: 0 16px;
  font-family: 'Merriweather', sans-serif;
  letter-spacing: 0.5px;
}

.blog-sidebar__btngroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 17px;
  margin: 0 5px;
  border-bottom: 1px solid #939090;
}

.blog-sidebar__btn-prev,
.blog-sidebar__btn-next {
  font-family: FontAwesome;
  border: none;
  background: transparent;
  margin: 0 26px;
}

.blog-sidebar__btn-prev:hover,
.blog-sidebar__btn-next:hover {
  color: #67def0;
}

.blog-sidebar__calendar {
  margin: 29px 0 35px;
}

.blog-sidebar__month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 89px;
  margin: 16px 0 28px;
}

.blog-sidebar__month-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33%;
  flex: 0 1 33%;
}

.blog-sidebar__month-link {
  color: #5f5e5e;
  text-transform: uppercase;
}

.blog-sidebar__divider {
  width: 100%;
  height: 0;
  border-bottom: 3px solid #939090;
}

.blog-sidebar__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 25px 0;
}

.blog-sidebar__tags-item {
  margin-right: 5px;
  margin-bottom: 20px;
}

.blog-sidebar__tags-btn {
  padding: 2px 6px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #939090;
  background: #cdcdcd;
}

.blog-sidebar__tags-btn:hover {
  color: #fff;
  background: #67def0;
}

.blog-single {
  padding-top: 69px;
}

.blog-single__title {
  margin: -7px 0 38px;
  padding-left: 0px;
  text-align: left;
  letter-spacing: 2px;
  line-height: 70px;
  color: #262525;
}

.blog-single__divider {
  width: 100%;
  border-bottom: 3px solid #67def0;
}

.blog-single__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 18px 0;
}

.blog-single__info-item {
  color: #939090;
}

.blog-single__info-item> span {
  margin-left: 8px;
  text-transform: uppercase;
  color: #939090;
}

.blog-single__info-item .flaticon:before {
  padding-right: 8px;
}

.blog-single__img {
  padding: 5px 1px;
}

.blog-single__img img {
  width: 100%;
}

.blog-single__img-inner {
  width: 50%;
  float: left;
  margin-right: 30px;
}

.blog-single__article {
  text-align: left;
  padding: 0 5px 0 12px;
  line-height: 30px;
  color: #5f5e5e;
}

.blog-single__article strong {
  letter-spacing: 0.6px;
  color: #262525;
  font-weight: 600;
}

.blog-single__article a {
  color: #67def0;
}

.blog-single__article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0;
}

.blog-single__article-footer a {
  color: #939090;
}

.blog-single__article-footer a:hover {
  color: #67def0;
}

.blog-single__article-soc > span {
  margin-right: 16px;
  letter-spacing: 0.3px;
}

.blog-single__comments {
  padding: 0 5px 0 12px;
}

.blog-single__comments-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #262525;
}

.blog-single__comments-wrap {
  text-align: left;
}

.blog-single__comments-list .blog-single__comments-list {
  padding-left: 10%;
}

.blog-single__comments-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #262525;
  margin-bottom: 36px;
}

.blog-single__comments-item:last-child {
  border-bottom: none;
}

.blog-single__comments-item:first-child {
  border-bottom: 1px solid #262525;
}

.blog-single__comments-img {
  display: inline-block;
  float: left;
  margin-right: 15px;
  width: 80px;
  height: 80px;
}

.blog-single__comments-img> img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.blog-single__comments-img> img:before {
  content: '\f10a';
  font-family: Flaticon;
  position: absolute;
  color: #fff;
  font-size: 36px;
  line-height: 2;
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #5f5e5e;
}

.blog-single__comments-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #939090;
  line-height: 1;
}

.blog-single__comments-name {
  text-transform: uppercase;
  margin: 0 30px 0 0;
  color: #262525;
  line-height: 1;
  letter-spacing: 0.5px;
}

.blog-single__comments-data {
  text-transform: uppercase;
  margin-right: 18px;
}

.blog-single__comments-data> span {
  font-size: 9px;
  vertical-align: top;
  margin-right: 5px;
}

.blog-single__comments-btn {
  border: none;
  background: transparent;
  padding: 0;
}

.blog-single__comments-btn:hover {
  color: #67def0;
}

.blog-single__comments-desk {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-top: 9px;
}

.blog-single__form {
  padding: 0 15px;
  margin-bottom: 29px;
}

.blog-single__form-section {
  text-align: left;
}

.blog-single__form-title {
  margin-bottom: 26px;
  letter-spacing: 1.3px;
}

.blog-single__form-label {
  text-transform: uppercase;
}

.blog-single__form-input {
  display: block;
  width: 100%;
  border: 2px solid #5f5e5e;
  margin: 17px 0;
  padding: 8px 4px;
}

.blog-single__form-message {
  width: 100%;
  height: 250px;
  border: 2px solid #5f5e5e;
  margin: 23px 0;
  padding: 8px 4px;
  overflow-y: auto;
}

/*
  [19. contacts page styles]
*/

.contacts__list {
  text-align: left;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 19px;
}

.contacts__item-icon> .flaticon:before {
  font-size: 40px;
  color: #67def0;
  margin-right: 30px;
}

.contacts__item-desk {
  color: #5f5e5e;
  line-height: 30px;
  margin: 0;
}

.contacts__item-desk>a {
  color: #5f5e5e;
}

.contacts__item-desk>a:hover {
  color: #67def0;
}

.contacts__item-desk-center {
  -ms-flex-item-align: center;
  align-self: center;
}

.contacts__img> img {
  width: 100%;
}

.contacts__form {
  text-align: left;
  margin-top: 141px;
}

.map {
  width: 100%;
  height: 363px;
}

/*
  [20. schedule page styles]
*/

.schedule__btngroup {
  margin: 15px 0;
}

.schedule__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 15px;
  margin-bottom: 55px;
}

.schedule__filter-list {
  position: absolute;
  background: #5f5e5e;
  border-bottom: 3px solid #67def0;
  padding: 20px 15px;
  text-align: right;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
      transform: translateY(5px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 5;
}

.schedule__filter-list:hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.schedule__filter-list a {
  color: #fff;
  cursor: pointer;
}

.schedule__filter-list a:hover {
  color: #67def0;
}

.schedule__dropdown {
  padding-right: 10px;
  padding-left: 48px;
}

.schedule__dropdown:hover + .schedule__filter-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.schedule__dropdown:after {
  content: '\f0d7';
  margin-left: 34px;
  font-family: FontAwesome;
}

.schedule__table {
  position: relative;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #262525;
  text-transform: uppercase;
}

.schedule__table span.flaticon:before {
  color: #67def0;
}

.schedule__table> thead,
.schedule__table td,
.schedule__table th {
  border: 1px solid #262525;
}

.schedule__table-wrap {
  position: relative;
  overflow-x: auto;
  padding: 0 15px;
  margin-bottom: 71px;
}

.schedule__table-desk {
  margin: 5px;
  color: #fff;
}

.schedule__table-over:after {
  content: '';
  display: table-caption;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(40,39,39,0.45);
}

.schedule__modal {
  display: none;
  position: fixed;
  width: 595px;
  height: 620px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  z-index: 15;
  padding: 7px;
  overflow-y: hidden;
}

.schedule__modal span.schedule__modal-close {
  position: absolute;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}

.schedule__modal span.schedule__modal-close:hover,
.schedule__modal span.schedule__modal-close:focus {
  color: #262525;
  cursor: pointer;
}

.schedule__modal-wrap {
  width: 100%;
  height: 100%;
  border: 1px solid #67def0;
  color: #5f5e5e;
  text-align: left;
  overflow-y: auto;
}

.schedule__modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #dbd6d6;
}

.schedule__modal-desk {
  margin: 0;
}

.schedule__modal-itm {
  padding: 33px 28px 26px;
}

.schedule__modal-title {
  margin: 0;
  text-transform: uppercase;
  color: #67def0;
}

.schedule__modal-title> span.flaticon:before {
  margin-right: 10px;
  font-size: 35px;
  font-weight: 400;
}

.schedule__modal-coach {
  padding: 37px 28px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
}

.schedule__modal-img {
  width: 100px;
  height: 100px;
  display: inline-block;
  border-radius: 50%;
  background: #dbd6d6;
  margin-right: 50px;
  overflow: hidden;
  border: 1px solid #9d9c9c;
}

.schedule__modal-img > img {
  width: 100%;
}

.schedule__modal-name {
  font-family: Merriweather;
  color: #79e2f2;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.schedule__modal-place {
  margin: 0;
}

.schedule__modal-place:before {
  content: '\f10d';
  font-family: Flaticon;
  color: #67def0;
  margin-right: 9px;
}

.schedule__modal-about {
  padding: 31px 28px;
  overflow-y: hidden;
}

.schedule__modal-about-title {
  display: inline-block;
  background: #67def0;
  padding: 7px 35px 3px 15px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 1px;
}

.schedule__modal-about-divider {
  height: 1px;
  width: 100%;
  background: #67def0;
  margin-bottom: 18px;
}

.schedule__modal-about-desk {
  overflow-y: auto;
  max-height: 185px;
}

.bg-red {
  background: #d74d2e;
}

.bg-green {
  background: #60894e;
}

.bg-black {
  background: #201f1f;
}

.bg-blue {
  background: #3330a7;
}

.bg-purple {
  background: #c72ebe;
}

.bg-orange {
  background: #f29a0e;
}

/*

*/

.page-preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #9d9c9c;
  z-index: 500;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.page-preloader-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.js-page-preloader_loaded {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
  visibility: hidden;
}

.page-preloader-item1,
.page-preloader-item2,
.page-preloader-item3,
.page-preloader-item4 {
  height: 50px;
  width: 12px;
  background: #67def0;
  display: inline-block;
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
      transform: translateY(25px);
}

.page-preloader-item1 {
  -webkit-animation: itemMove 0.5s ease infinite alternate;
  animation: itemMove 0.5s ease infinite alternate;
}

.page-preloader-item2 {
  -webkit-animation: itemMove 0.5s ease 0.08s infinite alternate;
  animation: itemMove 0.5s ease 0.08s infinite alternate;
}

.page-preloader-item3 {
  -webkit-animation: itemMove 0.5s ease 0.16s infinite alternate;
  animation: itemMove 0.5s ease 0.16s infinite alternate;
}

.page-preloader-item4 {
  -webkit-animation: itemMove 0.5s ease 0.24s infinite alternate;
  animation: itemMove 0.5s ease 0.24s infinite alternate;
}

/**-----------------------------------------------------------------
	[21. responsive rules]
	-------------------------------------------------------------**/

/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */

@media only screen and (max-width: 1024px) {
  .gum__img {
    height: inherit;
  }

  .gum__img >img {
    height: auto;
  }

  .gum__slider-prev,
  .gum__slider-next {
    display: none;
  }
}

/* Medium Devices, Desktops */

@media only screen and (max-width: 991px) {
  .header__title {
    font-size: 22px;
    line-height: 48px;
  }

  ._header-homepage {
    background: #383a43;
  }

  .menu-responsive-button {
    display: inline-block;
  }

  .menu-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .menu-list {
    min-width: 300px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 95px;
    left: 0;
    right: 0;
    background: #383a43;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
  }

  .menu-list.js-menu-opened {
    min-height: 100vh;
  }

  .menu-item {
    text-align: center;
  }

  .menu-link {
    padding: 24px 0;
  }

  .menu-link__add-menu:hover + .menu-add-list {
    height: 92px;
  }

  .menu-add-list {
    position: relative;
    display: block;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 0;
    overflow-y: hidden;
    border: none;
    padding: 0 15px;
  }

  .menu-add-list:before {
    border: none;
  }

  .logo {
    padding: 30px 5px;
  }

  .page-section__header {
    font-size: 2rem;
    line-height: 1.5;
    padding: 0 25px;
  }

  .btn__main {
    max-width: 280px;
  }

  .contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog-single__img-inner {
    width: 100%;
  }
}

@media only screen and (max-width: 568px) {
  .schedule__modal {
    width: 100%;
    height: 100%;
  }

  .schedule__modal-about-desk {
    max-height: inherit;
  }
}

@media only screen and (max-width: 480px) {
  .h2 {
    font-size: 1.5rem;
  }

  .skill__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: inherit;
  }

  .skill__img {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .skill__content {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .banner__title {
    margin: 95px 0;
  }

  .btn__banner {
    width: 100%;
  }

  .contact__wrap .flaticon:before {
    margin: 0 10px 0 0;
  }

  .footer__title {
    font-size: 2rem;
  }

  .blog-pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@-webkit-keyframes itemMove {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes itemMove {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */
