Skip to content
Snippets Groups Projects
home.css 26.3 KiB
Newer Older
Augustin Lemesle's avatar
Augustin Lemesle committed
/* Paths */
/* Colors */
/* Global Media Queries */
/* Direction */
@import 'lib/swiper.css';
/* Home Page */
.home .notebook {
  width: 300px;
  height: 175px;
  margin-left: auto;
  margin-right: auto;
  max-width: 2000px;
  border-radius: 0;
  border: 0;
  background: transparent;
}
@media only screen and (min-width: 481px) {
  .home .notebook {
    width: 400px;
    height: 233px;
  }
}
@media (min-width:  768px) {
  .home .notebook {
    width: 600px;
    height: 349px;
  }
}
@media (min-width: 1024px) {
  .home .notebook {
    width: 720px;
    height: 422px;
  }
}
@media (min-width: 1280px) {
  .home .notebook {
    width: 800px;
    height: 466px;
  }
}
.home .notebook > div {
  background: transparent url('../img/laptop.png') no-repeat;
  background-size: 100%;
  padding: 15px 36px 20px;
  border: 0;
  border-radius: 0;
}
@media only screen and (min-width: 481px) {
  .home .notebook > div {
    padding: 22px 48px 24px;
  }
}
@media (min-width:  768px) {
  .home .notebook > div {
    padding: 32px 74px 36px;
  }
}
@media (min-width: 1024px) {
  .home .notebook > div {
    padding: 44px 93px 20px;
  }
}
@media (min-width: 1280px) {
  .home .notebook > div {
    padding: 43px 100px 47px;
  }
}
.home .notebook > div .codeScreen {
  min-height: 100px;
  height: 140px;
}
@media only screen and (min-width: 481px) {
  .home .notebook > div .codeScreen {
    height: 186px;
  }
}
@media (min-width:  768px) {
  .home .notebook > div .codeScreen {
    height: 280px;
  }
}
@media (min-width: 1024px) {
  .home .notebook > div .codeScreen {
    height: 360px;
  }
}
@media (min-width: 1280px) {
  .home .notebook > div .codeScreen {
    height: 374px;
  }
}
.home .sectionContent {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.home .section {
  overflow: hidden;
  margin-top: 15vh;
  margin-bottom: 15vh;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
@media (orientation: portrait) {
  .home .section {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
}
.home .section h3 {
  color: #c19e56;
  margin: 0 0 12px;
}
@media only screen and (min-width: 480px) {
  .home .section h3 {
    margin-top: 8vh;
  }
Augustin Lemesle's avatar
Augustin Lemesle committed
}
Augustin Lemesle's avatar
Augustin Lemesle committed
@media (min-width:  768px) {
  .home .section h3 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .home .section h3 {
    font-size: 25px;
    margin-top: 30px;
  }
}
@media (min-width: 1600px) {
  .home .section h3 {
    font-size: 30px;
    margin-top: 36px;
  }
}
@media (min-width: 1890px) {
  .home .section h3 {
    font-size: 34px;
    margin-top: 40px;
.home .section .aboutScreen {
  overflow: visible;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.home .section .downloadSection {
  margin-bottom: 0;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.home h2 {
  color: #c19e56;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.home p br {
  display: none;
}
Augustin Lemesle's avatar
Augustin Lemesle committed

.banner-desc {
	text-align: center;
}

Augustin Lemesle's avatar
Augustin Lemesle committed
.home .banner-title {
  max-width: 280px;
  margin: 0 auto 20px;
}
.home .banner-title br {
  display: none;
}
@media (min-width:  768px) {
  .home .banner-title {
    font-size: 33px;
Augustin Lemesle's avatar
Augustin Lemesle committed
    margin-top: 10px;
    margin-bottom: 8px;
    max-width: 620px;
  }
}
@media (min-width: 1280px) {
  .home .banner-title {
    font-size: 39px;
Augustin Lemesle's avatar
Augustin Lemesle committed
    max-width: 740px;
  }
}
@media (min-width: 1600px) {
  .home .banner-title {
    font-size: 44px;
Augustin Lemesle's avatar
Augustin Lemesle committed
    max-width: 800px;
  }
}
@media (min-width: 1890px) {
  .home .banner-title {
    font-size: 50px;
Augustin Lemesle's avatar
Augustin Lemesle committed
    max-width: 960px;
  }
}
.home .banner-desc {
  max-width: 520px;
Augustin Lemesle's avatar
Augustin Lemesle committed
  margin: 0 auto 20px;
}
@media (min-width:  768px) {
  .home .banner-desc {
    font-size: 16px;
    font-weight: 600;
    max-width: 550px;
Augustin Lemesle's avatar
Augustin Lemesle committed
    margin-bottom: 32px;
  }
}
@media (min-width: 1280px) {
  .home .banner-desc {
    font-size: 18px;
    max-width: 700px;
Augustin Lemesle's avatar
Augustin Lemesle committed
  }
}
@media (min-width: 1600px) {
  .home .banner-desc {
    font-size: 20px;
    max-width: 900px;
Augustin Lemesle's avatar
Augustin Lemesle committed
  }
}
@media (min-width: 1890px) {
  .home .banner-desc {
    font-size: 21px;
    max-width: 1150px;
Augustin Lemesle's avatar
Augustin Lemesle committed
    margin-bottom: 48px;
  }
}
.home footer {
  display: block;
}
.siteIntro > div {
  transform: translateY(-200px);
  opacity: 0;
  transition: 0.1s ease-out;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.pageContent.secure .siteIntro .sectionContent {
  transform: translateY(0);
  opacity: 1;
}
.pageContent.secure a.goDown {
  transform: translate(-50%, 0);
  opacity: 1;
}
.pageContent.error .codeDemoScreen > .sectionContent {
  opacity: 1;
}
a.goDown {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -200px);
  opacity: 0;
  text-align: center;
  transition: 0.1s ease-out;
Augustin Lemesle's avatar
Augustin Lemesle committed
  z-index: 11;
}
a.goDown span {
  display: block;
}
a.goDown .icon {
  animation: arrowMove 1.4s infinite;
  color: #f79421;
  display: inline-block;
  font-size: 80%;
  margin-top: 12px;
  transition: all 0.1s;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.nonTouch a.goDown:hover {
  color: #f79421;
}
.nonTouch a.goDown:hover .icon {
  color: #f26521;
}
.swiper-container-autoheight .swiper-wrapper {
  height: auto;
}
.swiper-button-next,
.swiper-button-prev {
  background: none !important;
  font-size: 30px;
  width: 46px;
  height: 46px;
Augustin Lemesle's avatar
Augustin Lemesle committed
  padding: 3px 15px;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.tabSlider {
  width: 100%;
  height: 70px;
  margin: 0 auto;
  max-width: 430px;
  /*.swiper-button-next {
        right: 0;
    }
    .swiper-button-prev {
        left: 0;
    }*/
}
@media (min-width: 1024px) {
  .tabSlider {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: 68px;
    overflow: visible;
    max-width: none;
  }
}
.tabSlider .swiper-slide {
  max-width: 100%;
  height: auto;
}
@media (min-width: 1280px) {
  .tabSlider .swiper-slide:nth-child(4) .slideTxt span {
    width: 115px;
  }
}
.tabSlider .sliderWrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .tabSlider .sliderWrapper {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    transform: none !important;
  }
}
.tabSlider .slideTxt {
  position: relative;
  left: 0px;
}
Allan Blanchard's avatar
Allan Blanchard committed
.tabSlider .slideTxt:hover span {
  text-decoration: underline;
}
.tabSlider .swiper-slide-active .slideTxt:hover span {
  text-decoration: none;
}
Augustin Lemesle's avatar
Augustin Lemesle committed
@media (min-width: 1024px) {
  .tabSlider .slideTxt {
    left: 0;
  }
}
.tabSlider .slideTxt:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 70px;
  width: 0;
}
@media (min-width: 1024px) {
  .tabSlider .slideTxt:before {
    height: 68px;
  }
}
.tabSlider .slideTxt b,
.tabSlider .slideTxt span {
  display: block;
}
.tabSlider .slideTxt b {
  display: none;
  color: #f7931c;
  font-size: 70px;
  font-weight: 300;
  line-height: 70px;
}
.tabSlider .slideTxt span {
  width: 200px;
  /*margin: 0 auto;*/
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .tabSlider .slideTxt span {
    width: 90px;
    cursor: pointer;
    margin-left: -4px;
    text-align: left;
    position: relative;
    padding: 5px 36px;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.1s;
Augustin Lemesle's avatar
Augustin Lemesle committed
  }
  .tabSlider .slideTxt span:before {
    content: '';
    background: #f57f1e;
    background: linear-gradient(to bottom, #f57f1e 0%, #ef3659 100%);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 32px;
    margin-top: -16px;
  }
}
@media (min-width: 1280px) {
  .tabSlider .slideTxt span {
    padding: 6px 20px;
    font-size: 15px;
  }
}
@media (min-width: 1600px) {
  .tabSlider .slideTxt span {
    padding: 8px 45px 8px 34px;
    font-size: 17px;
    width: 100px;
  }
}
@media (min-width: 1890px) {
  .tabSlider .slideTxt span {
    font-size: 18px;
  }
}
.tabSlider .slideTxt a {
  color: #f57f1e;
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 90%;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .tabSlider .swiper-slide {
    height: 100%;
    width: auto !important;
    display: inline-block;
    backface-visibility: hidden;
  }
  .tabSlider .swiper-slide:first-child .slideTxt span:before {
    display: none;
  }
  .tabSlider .swiper-button-next,
  .tabSlider .swiper-button-prev {
    display: none !important;
  }
  .tabSlider .swiper-slide-active .slideTxt span {
    color: #AAAAAA;
Augustin Lemesle's avatar
Augustin Lemesle committed
  }
}
.codeDemoScreen {
  color: #555555;
  position: relative;
  /*margin-bottom: 0 !important;*/
}
.codeDemoScreen > div {
Augustin Lemesle's avatar
Augustin Lemesle committed
  opacity: 1;
  transition: 0.1s;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.codeDemoScreen .sectionContent {
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 0 0;
  overflow: hidden;
}
.codeDemoScreen h4 {
  color: #f7931c;
  font-size: 13px;
  margin: 5vh 0 0;
}
@media (min-width: 1024px) {
  .codeDemoScreen h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.codeDemoScreen .slideHeader {
  margin-bottom: auto;
  margin-top: auto;
}
@media (min-width: 1024px) {
  .codeDemoScreen .slideHeader {
Augustin Lemesle's avatar
Augustin Lemesle committed
    margin-top: 1.5vh;
Augustin Lemesle's avatar
Augustin Lemesle committed
  }
}
@media (min-width: 1600px) {
  .codeDemoScreen .slideHeader {
Augustin Lemesle's avatar
Augustin Lemesle committed
    margin-top: 1.5vh;
Augustin Lemesle's avatar
Augustin Lemesle committed
  }
}
.codeDemoScreen .codeDemoBlock {
  max-width: none;
  height: auto;
Augustin Lemesle's avatar
Augustin Lemesle committed
  padding-top: 15px;
  width: 100vw;
}
@media (min-width: 1280px) {
  .codeDemoScreen .codeDemoBlock {
    padding-top: 25px;
  }
}
.codeDemoScreen .codeDemoBlock .swiper-container {
  overflow: visible;
  margin-left: 5%;
  margin-right: 5%;
Augustin Lemesle's avatar
Augustin Lemesle committed
  /*@media @fromExtraLargeScreen {
                max-width: 700px;
            }
            @media @fromFullHDScreen {
                max-width: 810px;
            }*/
}

@media (min-width: 1024px) {
  .codeDemoScreen .codeDemoBlock .swiper-container {
    margin-left: 15%;
    margin-right: 15%;
  }
}
Augustin Lemesle's avatar
Augustin Lemesle committed
.codeDemoScreen .codeDemoBlock .swiper-slide {
  visibility: hidden;
  transition-duration: 0ms !important;
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeDemoBlock .swiper-slide {
    display: flex;
  }
}
Augustin Lemesle's avatar
Augustin Lemesle committed
.codeDemoScreen .codeDemoBlock .swiper-wrapper {
  transition-duration: 0ms !important;
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeDemoBlock .swiper-wrapper {
    align-items: flex-end;
  }
}
.codeDemoScreen .codeDemoBlock .swiper-slide-active {
  opacity: 1 !important;
  visibility: visible;
}
.codeDemoScreen .codeDemoBlock .swiper-slide-active .codeScreen .codeTab pre {
  opacity: 1;
}
.codeDemoScreen .codeDemoBlock .title {
  text-align: left;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeDemoBlock .title {
    margin-bottom: 0;
    width: 180px;
    padding-bottom: 18px;
  }
}
@media (min-width: 1280px) {
  .codeDemoScreen .codeDemoBlock .title {
    width: 70%;
  }
}
.codeDemoScreen .codeDemoBlock .title a {
  text-transform: uppercase;
  color: #f7931c;
  font-weight: 800;
}
.codeDemoScreen .codeDemoBlock .title b {
  display: inline-block;
  font-size: 24px;
  font-weight: 300;
  vertical-align: top;
  margin-right: 16px;
}
@media (min-width:  768px) {
  .codeDemoScreen .codeDemoBlock .title b {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeDemoBlock .title b {
    display: block;
    font-size: 41px;
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .codeDemoScreen .codeDemoBlock .title b {
    font-size: 52px;
    line-height: 1;
  }
}
.codeDemoScreen .codeDemoBlock .title span {
  font-size: 13px;
  line-height: 1.4;
  display: inline-block;
  max-width: 80%;
  padding-top: 2px;
  vertical-align: top;
}
@media (min-width:  768px) {
  .codeDemoScreen .codeDemoBlock .title span {
    max-width: 85%;
    padding-top: 5px;
  }
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeDemoBlock .title span {
    color: #b0b0b0;
    max-width: none;
    display: block;
  }
}
@media (min-width: 1280px) {
  .codeDemoScreen .codeDemoBlock .title span {
    font-size: 14px;
  }
}
.codeDemoScreen .codeDemoBlock .title samp {
  color: #f7931c;
  font-style: italic;
  padding: 0 4px;
Augustin Lemesle's avatar
Augustin Lemesle committed
  display: inline-block;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.swiper-slide-active .codeDemoScreen .codeDemoBlock .title {
  opacity: 1;
  transform: translateY(0);
}
.codeDemoScreen .codeDemoBlock .codeTips {
  padding: 10px 0;
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeDemoBlock .codeTips {
    display: none;
  }
}
.sideimg {
  display: flex;
  margin: auto;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sideimg {
    width: 48%;
  }
}
.sidetext {
  text-align: left;
  font-family: 'Muli';
  font-size: 14px;
  display: flex;
}
@media (min-width: 1024px) {
  .sidetext {
    font-size: 15px;
    width: 48%;
  }
  .sidetext div {
    margin:auto;
  }
}
@media (min-width: 1600px) {
  .sidetext {
    font-size: 16px;
Augustin Lemesle's avatar
Augustin Lemesle committed
.codeDemoScreen .notebook {
  margin-top: 0;
}
.codeDemoScreen .notebook > div > div {
  min-height: 270px;
}
@media (min-width:  768px) {
  .codeDemoScreen .notebook > div > div {
    min-height: 354px;
  }
}
@media (min-width: 1024px) {
  .codeDemoScreen .notebook > div > div {
    min-height: 390px;
  }
}
@media (min-width: 1600px) {
  .codeDemoScreen .notebook > div > div {
    min-height: 454px;
  }
}
.codeDemoScreen .codeScreen .codeTab {
  padding: 0;
  overflow: visible;
}
.codeDemoScreen .codeScreen .codeTab > div:first-child {
  font-size: 10px;
  background: #202020;
  width: 100%;
  border: 0;
  height: 100%;
  padding: 15px 12px;
  overflow: auto;
}
@media only screen and (min-width: 375px) {
  .codeDemoScreen .codeScreen .codeTab > div:first-child {
    padding: 15px 25px;
  }
}
@media (min-width:  768px) {
  .codeDemoScreen .codeScreen .codeTab > div:first-child {
    font-size: 13px;
    padding: 25px 30px 20px;
  }
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeScreen .codeTab > div:first-child {
    font-size: 14px;
    padding: 28px 40px 20px;
    min-height: 360px;
  }
}
@media (min-width: 1600px) {
  .codeDemoScreen .codeScreen .codeTab > div:first-child {
    font-size: 15px;
  }
}
.codeDemoScreen .codeScreen .codeTab > div:first-child::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.codeDemoScreen .codeScreen .codeTab > div:first-child::-webkit-scrollbar-thumb {
  background-color: rgba(200, 200, 200, 0.4);
}
.codeDemoScreen .codeScreen .codeTab > div:first-child::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: rgba(200, 200, 200, 0.15);
}
.codeDemoScreen .codeScreen .codeTab pre {
  font-family: monospace;
  line-height: 1.1 !important;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.1s 0.1s;
Augustin Lemesle's avatar
Augustin Lemesle committed
  border: none;
  box-shadow: none;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
@media (min-width: 1024px) {
  .codeDemoScreen .codeScreen .codeTab pre u {
    display: inline-block;
    vertical-align: top;
  }
}
/* About Section */
.aboutScreen .sectionContent {
  padding: 0;
}
.aboutScreen .circleBlock {
  width: 92vw;
  height: 92vw;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 460px) {
  .aboutScreen .circleBlock {
    width: 360px;
    height: 360px;
  }
}
@media (min-width:  768px) {
  .aboutScreen .circleBlock {
    width: 500px;
    height: 500px;
  }
}
@media (min-width: 1600px) {
  .aboutScreen .circleBlock {
    width: 620px;
    height: 620px;
  }
}
@media (min-width: 1890px) {
  .aboutScreen .circleBlock {
    width: 707px;
    height: 707px;
  }
}
.aboutScreen .circleBlock h2 {
  margin: 0;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  margin-top: -20px;
  font-size: 17px;
}
@media (min-width:  768px) {
  .aboutScreen .circleBlock h2 {
    margin-top: -38px;
    font-size: 30px;
  }
}
@media (min-width: 1600px) {
  .aboutScreen .circleBlock h2 {
    margin-top: -43px;
    font-size: 39px;
  }
}
@media (min-width: 1890px) {
  .aboutScreen .circleBlock h2 {
    margin-top: -49px;
    font-size: 43px;
  }
}
.aboutScreen .circleBlock .circle {
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-color: #f2ae22;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.aboutScreen .circleBlock .circle.robustness {
  border-color: #f2ae22;
}
.aboutScreen .circleBlock .circle.codeStandard {
  border-color: #e10019;
  width: 65%;
  height: 65%;
  left: 17.5%;
  top: 17.5%;
}
.aboutScreen .circleBlock .circle.security {
  border-color: #ec662b;
  width: 82%;
  height: 82%;
  left: 5%;
  top: 4%;
}
.aboutScreen .circleBlock a {
  color: #404040;
  text-transform: uppercase;
  text-align: left;
  position: absolute;
  left: 33%;
  top: 4%;
  margin: -37px 0 0 -37px;
}
@media (min-width: 460px) {
  .aboutScreen .circleBlock a {
    left: 28%;
    top: 9%;
  }
}
@media (min-width: 1600px) {
  .aboutScreen .circleBlock a {
    margin: -45px 0 0 -45px;
  }
}
.aboutScreen .circleBlock a .icon {
  background: #f7931c;
  border-radius: 50%;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  width: 74px;
  height: 74px;
  text-align: center;
  font-size: 32px;
  line-height: 78px;
}
.aboutScreen .circleBlock a .icon .icon-code {
  font-size: 88%;
}
@media (min-width:  768px) {
  .aboutScreen .circleBlock a .icon {
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .aboutScreen .circleBlock a .icon {
    width: 90px;
    height: 90px;
    font-size: 44px;
    line-height: 92px;
  }
}
@media (min-width: 1890px) {
  .aboutScreen .circleBlock a .icon {
    width: 96px;
    height: 96px;
    font-size: 46px;
    line-height: 99px;
  }
}
.aboutScreen .circleBlock a .txt {
  display: block;
  font-size: 14px;
  font-weight: 600;
  width: 74px;
  transition: color 0.1s;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
@media (min-width:  768px) {
  .aboutScreen .circleBlock a .txt {
    text-align: right;
    width: 300px;
    position: absolute;
    right: 100%;
    top: 50%;
    margin: -16px 12px 0 0;
  }
}
@media (min-width: 1024px) {
  .aboutScreen .circleBlock a .txt {
    font-size: 17px;
    font-weight: 400;
    margin-top: -20px;
  }
}
@media (min-width: 1600px) {
  .aboutScreen .circleBlock a .txt {
    font-size: 22px;
    margin-top: -28px;
  }
}
@media (min-width: 1890px) {
  .aboutScreen .circleBlock a .txt {
    font-size: 25px;
    margin-top: -32px;
  }
}
.aboutScreen .circleBlock a b {
  display: block;
  font-weight: 900;
}
@media (min-width: 1024px) {
  .aboutScreen .circleBlock a b {
    font-weight: 800;
  }
}
.aboutScreen .circleBlock a.robustness .txt {
  width: 200px;
}
@media (min-width: 1024px) {
  .aboutScreen .circleBlock a.robustness .txt {
    width: 300px;
  }
}
.aboutScreen .circleBlock a.codeStandard {
  top: 82%;
  left: 18%;
}
.aboutScreen .circleBlock a.codeStandard .icon {
  background: #f2ae22;
}
.aboutScreen .circleBlock a.security {
  top: 73%;
  left: 73%;
}
.aboutScreen .circleBlock a.security .icon {
  background: #e74643;
}
.aboutScreen .circleBlock a.security .txt {
  text-align: right;
}
@media (min-width:  768px) {
  .aboutScreen .circleBlock a.security .txt {
    text-align: left;
    right: auto;
    left: 100%;
    margin-left: 12px;
  }
}
.nonTouch .aboutScreen .circleBlock a:hover .txt {
  color: #000;
}
/* Calendar Section */
.calendarScreen {
  /*background: #f6f6f6;*/
  overflow: hidden;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.calendarScreen .sectionContent {
Augustin Lemesle's avatar
Augustin Lemesle committed
}
.calendarScreen h2 {
  color: #484848;
  text-transform: none;
  font-size: 33px;
Augustin Lemesle's avatar
Augustin Lemesle committed
}
  margin-top: 200px;
Augustin Lemesle's avatar
Augustin Lemesle committed
.eventDetailsBlock .swiper-slide {
  width: 100vw;
  padding-left: 20px;
  padding-right: 20px;
}
.eventDetailsBlock .contentBlk {
  display: flex;
  flex-direction: column;
Augustin Lemesle's avatar
Augustin Lemesle committed
  text-align: left;
  font-size: 13px;
}
@media (min-width:  800px) {
  .eventDetailsBlock .contentBlk {
    display: inline-flex;
    flex-direction: row;
  }
}  
Augustin Lemesle's avatar
Augustin Lemesle committed
.eventDetailsBlock .contentBlk > div {
  margin-left: 16px;
Augustin Lemesle's avatar
Augustin Lemesle committed
}