@charset "UTF-8";
@font-face {
  font-family: anglecia;
  src: url(../font/Anglecia-Pro-Display.otf);
}
@font-face {
  font-family: playfair;
  src: url(../font/PlayfairDisplay-Regular.ttf);
}
@font-face {
  font-family: arrus;
  src: url(../font/Arrus.ttf);
}
* {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  height: 100px;
}

body {
  font-family: Georgia, serif;
  font-family: arrus;
  font-family: anglecia;
  font-size: 1.4vw;
}
body p {
  margin: 0;
}
body a {
  text-decoration: none;
  color: black;
}
body header .headerClass {
  padding: 1vw 3vw;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
  transition: top 0.5s ease-in-out;
}
body header .headerClass span:nth-child(2) a {
  background-image: linear-gradient(to right, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 1px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-position 1s;
}
body header .headerClass span:nth-child(2) a:hover {
  background-position: 0 100%;
}
body header .headerClass span {
  display: flex;
  align-items: center;
}
body header .headerClass span .logo img {
  width: 10vw;
}
body header .headerClass span .menuClass .menu {
  font-size: 2vw;
  color: white;
}
body header .headerClass span .menuClass .offcanvas {
  width: -moz-fit-content;
  width: fit-content;
  min-height: 100vh;
}
body header .headerClass span .menuClass .offcanvas .offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header .headerClass span .menuClass .offcanvas .offcanvas-header .offcanvas-title {
  display: flex;
  align-items: center;
}
body header .headerClass span .menuClass .offcanvas .offcanvas-header .offcanvas-title button {
  background: none;
  border: 0;
}
body header .headerClass span .menuClass .offcanvas .offcanvas-body {
  display: flex;
  justify-content: flex-end;
}
body header .headerClass span .menuClass .offcanvas .offcanvas-body .bodyClass {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
body header .headerClass span .menuClass .offcanvas .offcanvas-body .bodyClass a {
  margin: 0.5vw 0;
  text-transform: uppercase;
  font-size: 2vw;
  color: grey;
  text-wrap: nowrap;
}
body header .headerClass span .menuClass .offcanvas .offcanvas-body .bodyClass a:hover {
  color: black;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body header .headerClass.fixed {
  position: fixed;
  top: 0;
  animation: slideDown 0.7s ease-in-out forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body main .mainClass {
  min-height: 50vh;
}
body main .mainClass .lifestyleClass {
  margin: 3vw;
  display: flex;
}
body main .mainClass .lifestyleClass .bigPost {
  width: 50vw;
  margin-right: 2vw;
}
body main .mainClass .lifestyleClass .bigPost .img a img {
  width: 50vw;
}
body main .mainClass .lifestyleClass .bigPost .info {
  display: flex;
  flex-direction: column;
}
body main .mainClass .lifestyleClass .bigPost .info a:first-child {
  color: rgba(30, 30, 30, 0.5);
  text-decoration: underline;
  margin: 0.5vw 0;
  text-transform: uppercase;
  text-underline-offset: 3px;
}
body main .mainClass .lifestyleClass .bigPost .info a:first-child:hover {
  color: black;
}
body main .mainClass .lifestyleClass .bigPost .info a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
body main .mainClass .lifestyleClass .bigPost .info a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
body main .mainClass .lifestyleClass .bigPost .info p {
  text-align: end;
}
body main .mainClass .lifestyleClass .rightSide {
  display: grid;
  grid-template-columns: auto;
  align-content: space-between;
}
body main .mainClass .lifestyleClass .rightSide .smallPost {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .img {
  margin-right: 1vw;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .img a img {
  width: 20vw;
  height: 20vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .info {
  display: flex;
  flex-direction: column;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .info a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .info a:first-child {
  color: rgba(30, 30, 30, 0.5);
  text-decoration: underline;
  margin: 0.5vw 0;
  text-transform: uppercase;
  text-underline-offset: 3px;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .info a:first-child:hover {
  color: black;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .info a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
body main .mainClass .lifestyleClass .rightSide .smallPost .info p {
  text-align: end;
  color: rgba(30, 30, 30, 0.5);
}
body main .mainClass .searchClass {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 15vh 0 10vh 0;
}
body main .mainClass .searchClass .input-group form {
  display: flex;
  justify-content: center;
  width: 100%;
}
body main .mainClass .searchClass .input-group form .input-group {
  width: 50%;
}
body main .mainClass .searchres {
  margin: 3vw;
  display: flex;
  flex-direction: column;
}
body main .mainClass .searchres a {
  margin: 0.5vw 0;
  color: rgba(30, 30, 30, 0.5);
}
body main .mainClass .searchres a:hover {
  text-decoration: underline;
  color: #000000;
  text-underline-offset: 3px;
}
body main .mainClass .partnersClass {
  margin: 10vw 20vw 5vw 20vw;
  display: grid;
  row-gap: 5vw;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
  grid-template-columns: auto auto auto;
}
body main .mainClass .partnersClass .partner .img {
  display: flex;
  justify-content: center;
}
body main .mainClass .partnersClass .partner .img img {
  width: 10vw;
  height: 10vw;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .mainClass .partnersClass .partner .info {
  text-align: center;
  margin-top: 1vw;
  font-size: 2vw;
}
body main .mainClass .aboutClass {
  margin: 10vw 20vw 5vw 20vw;
}
body main .mainClass .paginatorClass nav .pagination .page-item a {
  background: none;
  color: black;
}
body main .mainClass .listClass {
  margin-top: 2vh;
}
body main .mainClass hr {
  margin: 2vw 0;
  opacity: 0.5;
  border: 0.7px solid black;
}
body main .mainClass .postClass hr {
  margin: 2vw 0;
  opacity: 0.5;
  border: 0.7px solid rgba(30, 30, 30, 0.5);
}
body main .mainClass .postClass .postHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2vw 19vw;
}
body main .mainClass .postClass .postHeader .name {
  text-align: center;
  font-size: 2.5vw;
  margin: 2vw 0;
  font-weight: bold;
  width: 100%;
}
body main .mainClass .postClass .postHeader .info {
  display: flex;
  align-items: center;
}
body main .mainClass .postClass .postHeader .info a {
  margin-right: 1vw;
  font-size: 1.2vw;
}
body main .mainClass .postClass .postHeader .info p {
  font-family: qucicksand;
  font-size: 1.2vw;
}
body main .mainClass .postClass .postHeader .info .circle {
  font-size: 0.4vw;
  margin-right: 1vw;
}
body main .mainClass .postClass .txtBlock {
  margin: 3vw 19vw;
}
body main .mainClass .postClass .txtBlock .video {
  display: flex;
  justify-content: center;
}
body main .mainClass .postClass .txtBlock .video #ytplayer {
  width: 60vw;
  height: 50vh;
  border-radius: 12px;
}
body main .mainClass .postClass .txtBlock .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 70vh;
  -o-object-position: top;
     object-position: top;
  margin-bottom: 2vw;
}
body main .mainClass .postClass .txtBlock blockquote {
  border-left: 1px solid #ccc;
  margin: 2vw 0;
  padding: 1vw;
  quotes: "“" "”" "‘" "’";
}
body main .mainClass .postClass .txtBlock blockquote:before {
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
body main .mainClass .postClass .txtBlock blockquote p {
  display: inline;
}
body main .mainClass .postClass .autor {
  text-align: start;
  margin: 2vw 20vw;
}
body main .mainClass .postClass .shareBlock {
  display: flex;
  justify-content: center;
}
body main .mainClass .postClass .shareBlock .links a {
  margin: 0 1vw;
  font-size: 2vw;
  color: rgba(30, 30, 30, 0.5);
}
body main .mainClass .postClass .shareBlock .links a:hover {
  color: #000000;
}
body main .mainClass .postClass .shareBlock .links button {
  margin: 0 1vw;
  font-size: 2vw;
  color: rgba(30, 30, 30, 0.5);
}
body main .mainClass .postClass .shareBlock .links button:hover {
  color: black;
}
body main .mainClass hr {
  margin: 3vw;
  border: 0.7px solid rgba(30, 30, 30, 0.5);
  opacity: 1;
}
body main .mainClass .faceClass {
  display: grid;
  margin: 3vw;
  grid-template-columns: auto;
  row-gap: 3vw;
}
body main .mainClass .faceClass .personBlock {
  align-items: center;
  display: flex;
}
body main .mainClass .faceClass .personBlock .img {
  margin-right: 1vw;
}
body main .mainClass .faceClass .personBlock .img a img {
  width: 50vw;
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body main .mainClass .faceClass .personBlock .info {
  display: flex;
  flex-direction: column;
}
body main .mainClass .faceClass .personBlock .info .cates {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 2vw;
  color: rgba(30, 30, 30, 0.5);
  text-transform: uppercase;
}
body main .mainClass .faceClass .personBlock .info .cates:hover {
  color: #000000;
}
body main .mainClass .faceClass .personBlock .info .name {
  font-weight: bold;
  margin: 1vw 0;
  font-size: 3vw;
}
body main .mainClass .faceClass .personBlock .info .name:hover {
  text-decoration: underline;
}
body main .mainClass .faceClass .personBlock .info .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  box-orient: vertical;
}
body main .mainClass .faceClass .personBlock .info .date {
  text-align: end;
  color: rgba(30, 30, 30, 0.5);
  font-family: quick;
}
body main .mainClass .editorsClass {
  display: grid;
  grid-template-columns: 45vw 45vw;
  justify-content: space-between;
  margin: 3vw;
  row-gap: 3vw;
}
body main .mainClass .editorsClass .editorPosts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body main .mainClass .editorsClass .editorPosts .img a img {
  width: 45vw;
  height: 55vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body main .mainClass .editorsClass .editorPosts .info {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
body main .mainClass .editorsClass .editorPosts .info a:first-child {
  color: rgba(30, 30, 30, 0.5);
  margin: 1vw 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}
body main .mainClass .editorsClass .editorPosts .info a:first-child:hover {
  color: black;
}
body main .mainClass .editorsClass .editorPosts .info a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}
body main .mainClass .editorsClass .editorPosts .info a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
body main .mainClass .editorsClass .editorPosts .info p {
  text-align: end;
  color: rgba(30, 30, 30, 0.5);
}
body main .mainClass .lastedClass {
  display: grid;
  grid-template-columns: 30vw 30vw 30vw;
  justify-content: space-between;
  margin: 3vw;
  row-gap: 3vw;
}
body main .mainClass .lastedClass .postClass .img a img {
  width: 30vw;
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body main .mainClass .lastedClass .postClass .info {
  margin-top: 1vw;
  height: 17vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body main .mainClass .lastedClass .postClass .info a:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(30, 30, 30, 0.5);
  text-transform: uppercase;
}
body main .mainClass .lastedClass .postClass .info a:hover {
  color: #000000;
}
body main .mainClass .lastedClass .postClass .info a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}
body main .mainClass .lastedClass .postClass .info a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
body main .mainClass .lastedClass .postClass .info p {
  text-align: end;
  font-family: quicksand;
  color: rgba(30, 30, 30, 0.5);
}
body main .mainClass .lahb {
  display: table;
  width: 100%;
  max-width: 100%;
  margin: 3vw 0;
}
body main .mainClass .lahb .lastArticlesHeader {
  display: table-row;
  line-height: 1.5em;
  font-size: 2em;
  white-space: nowrap;
}
body main .mainClass .lahb .lastArticlesHeader .line {
  display: table-cell;
}
body main .mainClass .lahb .lastArticlesHeader .line::after {
  display: inline-block;
  width: 100%;
  content: ",";
  font-size: 0;
  color: transparent;
  height: 0.5px;
  background: rgba(30, 30, 30, 0.5);
  vertical-align: middle;
  position: relative;
  top: -1px;
}
body main .mainClass .lahb .lastArticlesHeader p {
  font-size: 3vw;
  overflow: hidden;
  text-transform: uppercase;
  display: table-cell;
  vertical-align: middle;
  width: 1px;
  table-layout: fixed;
  padding: 0 2vw;
}
body main .mainClass .coverClass {
  display: flex;
  justify-content: center;
  height: 46vw;
  margin: 3vw;
  width: 94%;
}
body main .mainClass .coverClass .left {
  margin-right: 1vw;
  width: 100%;
}
body main .mainClass .coverClass .left a {
  height: 100%;
  position: relative;
}
body main .mainClass .coverClass .left a .img {
  height: 100%;
}
body main .mainClass .coverClass .left a .img img {
  width: 100%;
  height: 100%;
  filter: brightness(50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body main .mainClass .coverClass .left a .info {
  position: absolute;
  bottom: 1vw;
  color: white;
  padding: 1vw;
  font-size: 3vw;
  margin: 0px auto;
}
body main .mainClass .coverClass .left a .info p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  background-image: linear-gradient(to right, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 3px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-position 1s;
}
body main .mainClass .coverClass .left a:hover .info p {
  background-position: 0% 100%;
}
body main .mainClass .coverClass .right {
  display: flex;
  flex-direction: column;
}
body main .mainClass .coverClass .right .box a {
  position: relative;
}
body main .mainClass .coverClass .right .box a .img img {
  width: 22.5vw;
  height: 22.5vw;
  filter: brightness(50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body main .mainClass .coverClass .right .box a .info {
  position: absolute;
  bottom: 1vw;
  padding: 1vw;
  color: white;
}
body main .mainClass .coverClass .right .box a .info p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  background-image: linear-gradient(to right, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 1px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-position 1s;
}
body main .mainClass .coverClass .right .box a:hover .info p {
  background-position: 0% 100%;
}
body main .mainClass .coverClass .right .box:first-child {
  margin-bottom: 1vw;
}
body footer {
  background-color: #000000;
  border-top: 1px solid white;
  padding: 3vw 10vw;
  color: white;
  margin-top: 3vw;
}
body footer a {
  color: white;
}
body footer .btn {
  color: white;
}
body footer .footerClass .float1 {
  display: flex;
  justify-content: space-between;
}
body footer .footerClass .float1 .box {
  display: flex;
  flex-direction: column;
  width: 50vw;
}
body footer .footerClass .float1 .box a {
  margin: 0.5vw 0;
}
body footer .footerClass .float1 .box .img img {
  width: 10vw;
}
body footer .footerClass .float1 .box .socialicons {
  display: flex;
  align-items: center;
  margin-top: 2vw;
}
body footer .footerClass .float1 .box .socialicons a {
  color: white;
  font-size: 3vw;
  margin-right: 3vw;
}
body footer .footerClass .float1 .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body footer .footerClass .float1 .info a {
  margin: 0.5vw 0;
  font-size: 2vw;
}
body footer .footerClass .float2 {
  margin-top: 2vw;
}
body .btnToTopBlock #btnToTop {
  display: none;
  position: fixed;
  bottom: 50%;
  right: -30px;
  z-index: 99;
  font-size: 1.4vw;
  border: none;
  outline: none;
  padding: 10px 30px;
  color: black;
  cursor: pointer;
  border: 1px solid black;
  border-radius: 4px;
  transform: rotate(-90deg);
  background-color: whitesmoke;
  text-align: center;
  transition: color 0.3s ease;
}
body .btnToTopBlock #btnToTop i {
  transition: transform 0.3s ease;
  margin-left: 10px;
}
body .btnToTopBlock #btnToTop:hover i {
  transform: translateX(5px);
}

body.dark-mode {
  background: #121212;
  color: white;
}
body.dark-mode header .headerClass {
  border-bottom: 1px solid white;
}
body.dark-mode header .headerClass span .menuClass .offcanvas {
  background-color: #121212;
}
body.dark-mode header .headerClass span .menuClass .offcanvas .offcanvas-header .btn {
  color: white;
}
body.dark-mode header .headerClass span .menuClass .offcanvas .offcanvas-header .offcanvas-title .btn {
  color: white;
}
body.dark-mode header .headerClass span .menuClass .offcanvas .offcanvas-header .offcanvas-title .langClass .dropdown .dropdown-menu {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #121212;
}
body.dark-mode header .headerClass span .menuClass .offcanvas .offcanvas-body .bodyClass a:hover {
  color: white;
}
body.dark-mode main hr {
  border: 0.7px solid rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .lifestyleClass .bigPost .info a:first-child {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .lifestyleClass .bigPost .info a:first-child:hover {
  color: white;
}
body.dark-mode main .mainClass .lifestyleClass .smallPost .info a:first-child {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .lifestyleClass .smallPost .info a:first-child:hover {
  color: white;
}
body.dark-mode main .mainClass .lifestyleClass .smallPost .info p {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .searchres a {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .searchres a:hover {
  color: white;
}
body.dark-mode main .mainClass .mobClass .mobpost .info a:first-child {
  margin: 2vw 0;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}
body.dark-mode main .mainClass .mobClass .mobpost .info p {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .paginatorClass nav .pagination .page-item a {
  color: white;
}
body.dark-mode main .mainClass .editorsClass .editorPosts .img .info a:first-child {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .editorsClass .editorPosts .img .info a:first-child:hover {
  color: white;
}
body.dark-mode main .mainClass .editorsClass .editorPosts .img .info p {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .faceClass .personBlock .info .cates {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .faceClass .personBlock .info .cates:first-child:hover {
  color: white;
}
body.dark-mode main .mainClass .faceClass .personBlock .info .date {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .lastArticlesHeader .line::after {
  background: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .postClass hr {
  border: 0.7px solid rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .postClass .shareBlock .links a {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .postClass .shareBlock .links a:hover {
  color: white;
}
body.dark-mode main .mainClass .postClass .shareBlock .links button {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .postClass .shareBlock .links button:hover {
  color: white;
}
body.dark-mode main .mainClass .lastedClass .postClass .img .info a:first-child {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode main .mainClass .lastedClass .postClass .img .info a:hover {
  color: white;
}
body.dark-mode main .mainClass .lastedClass .postClass .img .info p {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode a {
  color: white;
}

@media only screen and (min-width: 1000px) {
  body main .mainClass .welcomeCaruselmob {
    display: none;
  }
  body main .mainClass .mobClass {
    display: none;
  }
  body main .mainClass .caruselClassmob {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  body {
    font-size: 4vw;
  }
  body header .headerClass span .logo img {
    width: 30vw;
  }
  body header .headerClass span .menuClass .menu {
    font-size: 6vw;
  }
  body header .headerClass span .menuClass .offcanvas .offcanvas-body .bodyClass .btn {
    font-size: 4vw;
  }
  body header .headerClass span:nth-child(2) {
    display: none;
  }
  body main .mainClass .caruselClassWeb {
    display: none;
  }
  body main .mainClass .welcomeCarusel {
    display: none;
  }
  body main .mainClass .lifestyleClass {
    display: none;
  }
  body main .mainClass .partnersClass {
    grid-template-columns: auto;
    row-gap: 15vw;
  }
  body main .mainClass .partnersClass .partner .img img {
    width: 40vw;
    height: 40vw;
  }
  body main .mainClass .partnersClass .partner .info {
    font-size: 5vw;
  }
  body main .mainClass .aboutClass {
    margin: 50vw 3vw 3vw 3vw;
  }
  body main .mainClass .mobClass {
    grid-template-columns: 90%;
    justify-content: center;
    margin: 3vw;
  }
  body main .mainClass .mobClass hr:last-child {
    display: none;
  }
  body main .mainClass .mobClass .mobpost {
    margin: 10vw 0;
  }
  body main .mainClass .mobClass .mobpost .img img {
    width: 100%;
    height: 40vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  body main .mainClass .mobClass .mobpost .info {
    display: flex;
    flex-direction: column;
    margin-top: 1vw;
  }
  body main .mainClass .mobClass .mobpost .info a:first-child {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: rgba(30, 30, 30, 0.5);
  }
  body main .mainClass .mobClass .mobpost .info p {
    text-align: end;
    color: rgba(30, 30, 30, 0.5);
  }
  body main .mainClass .postClass {
    margin-top: 20vw;
  }
  body main .mainClass .postClass .shareBlock .links .btn {
    font-size: 5vw;
  }
  body main .mainClass .postClass .postHeader {
    margin: 2vw 4vw;
  }
  body main .mainClass .postClass .postHeader .name {
    font-size: 4vw;
  }
  body main .mainClass .postClass .postHeader .info .circle {
    font-size: 1vw;
  }
  body main .mainClass .postClass .postHeader .info a {
    font-size: 3vw;
  }
  body main .mainClass .postClass .postHeader .info p {
    font-size: 3vw;
  }
  body main .mainClass .postClass .txtBlock {
    margin: 3vw 5vw;
  }
  body main .mainClass .postClass .txtBlock .img img {
    height: 28vh;
  }
  body main .mainClass .coverClass {
    display: none;
  }
  body main .mainClass .lastedClass {
    display: none;
  }
  body main .mainClass .editorsClass {
    display: none;
  }
  body main .mainClass .faceClass {
    display: none;
  }
  body main .mainClass .welcomeCarusel .div .carousel-inner .carousel-item div h5 a {
    font-size: 6vw !important;
  }
  body main .mainClass .welcomeCarusel .div .carousel-inner .carousel-item div a {
    font-size: 9vw !important;
  }
  body .btnToTopBlock {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */