@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');
html {
  width: 100%;
  font-family: 'Merriweather', serif;
}

body {
  overflow-x: hidden !important;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
}

body.show-spinner > main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::after{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.img-right {
   margin: 0 0 10px 20px;
   padding: 0;
   float: right;
}
.img-left {
   margin: 0 10px 10px 20px;
   padding: 0;
   float: left;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.text-lesson p{
	font-family: 'Merriweather', serif;
	font-size: 1.2rem;
}

blockquote {
	
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 1.5rem;
  line-height: 1.5;
  /* изменить цвет полоски */
  border-left: 5px solid #2b6ca1; /* 5px solid #eee; */
  /* изменит цвет текста */
  color: #368bc0;
}

blockquote p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

.page-br {
  padding-bottom: 9px;
  margin: 40px 0 20px;
}

.vizit-card {
  display: flex;
  flex-direction: row;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04); }
  
 .vizit-card .image-side {
    width: 50%;
    background: url("../img/login-balloon.jpg") no-repeat center top;
    background-size: cover;
    padding: 80px 40px; }
    .vizit-card .image-side .h3 {
      line-height: 0.8rem; }
	  
 .main-banner {
    width: 120%;
    background: url("../img/pexels-697672.jpg") no-repeat center top;
	background-color: #555;
	margin: -40px 0 5px -160px;
    padding: 30px 10px; }
	
 .main-colorw {

	background-color: #454545;
  }
  
 @media only screen and (max-device-width: 820px) {

    .main-banner {
	width: 130%;
	background: url("../img/pexels-697672.jpg") no-repeat center top;
	background-color: #555;
	margin: 0 0 0 -140px;
    padding: 5px 5px;
    }
}

@media only screen and (max-device-width: 480px) {

    .main-banner {
	width: 112%;
	background: url("../img/pexels-697672.jpg") no-repeat center top;
	background-color: #555;
	margin: 0 0 0 -15px;
    padding: 5px 5px;
    }
}


