/* General Settings */
:root{
  --red:#FF003C;
  --light-grey:#F4F4F4;
  --yellow:#FFF6EC;
}
body, p, li, span, a, h1, h2, h3, h4, h5, h6{
  font-family: "futura-pt",sans-serif;
}
body, p{
    font-weight:500;
}
.container{
  max-width: 1450px;
}
main.cmp-sms-page{
  padding:0;
}
section{
  padding: 75px 0;
}
@media(max-width:1700px), (-webkit-device-pixel-ratio:1.25){
	section{
    padding: 50px 0;
	}
}
@media(max-width:1368px){
	section{
    padding: 30px 0;
	}
}
/**/
.row > .item, .flex-row > .flex-item{
  padding: 10px;
}
.flex-row{
  flex-wrap:wrap;
  flex-direction:row;
}
.flex-item.item25{
  flex: 1 1 25%;
  max-width: 25%;
}
.flex-item.item33{
  flex: 1 1 33%;
  max-width: 33%;
}
.flex-item.item45{
  flex: 1 1 45%;
  max-width: 45%;
}
.flex-item.item55{
  flex: 1 1 55%;
  max-width: 55%;
}
@media(max-width:850px){
  .flex-item.item25{
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media(max-width:767px){
  .flex-item.item25, .flex-item.item33, .flex-item.item45, .flex-item.item55, .flex-item.item50{
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/**/
.center-title-and-info{
  max-width:940px;
  margin-left:auto;
  margin-right:auto;
}
.title{
  font-size:60px;
  font-weight:700;
  line-height:110%;
}
.title b{
  color:var(--red);
}
.subtitle, .subtitle p{
  font-size:24px;
  font-weight:450;
  line-height: 1.2;
}
@media(max-width:1700px), (-webkit-device-pixel-ratio:1.25){
   .title{
     font-size: 50px;
	}
}
@media(max-width:1367px){
   .title{
	font-size: 40px;
	}
  .subtitle, .subtitle p{
    font-size: 20px;
  }
}
@media(max-width:1100px){
	.title {
    font-size: 36px;
	}
}
@media(max-width:850px){
   .title {
    font-size: 30px;
	}
  .subtitle, .subtitle p{
    font-size: 18px;
  }
  body, p, a, span{
    font-size:18px;
    }
}
@media(max-width:767px){
   .title {
    font-size: 26px;
	}
}

/**/
.btn.read-more, .btn.read-more svg, .btn.white-btn svg{
  color:var(--red);
}
.red-btn{
  background: var(--red);
  border:2px solid var(--red);
  color:#fff;
  border-radius: 0;
}
.red-btn:hover{
  color: var(--red);
  background:#fff;
}
@media (max-width: 850px) {
  .btn {
    font-size: 16px;
    line-height: 16px;
  }
}

/* Header */
header{
  padding: 20px 0;
  transition:.4s;
}
header .header_logo{
  vertical-align:top;
  line-height:0;
  display: flex;
}
.sticky-header header{
  background:var(--red);
}
header .flex-row{
  align-items:center;
}
header .flex-row > .flex-item{
  padding: 0 20px;
}
header .flex-row > .flex-item.fw{
  width:240px;
}
header .flex-row > .flex-item:not(.fw){
  flex:1;
}
header .header-menu{
  display:block;
  text-align:center;
}
header .header-menu li{
    display:inline-block;
    padding:0 8px;
}
header .header-menu li a{
  text-decoration: none;
  font-size: 19px;
  color:#fff;
}
header .header-menu li a:hover{
  color:var(--yellow);
}
.sticky-header header .btn{
  border-color:#fff;
}
header .nav-icon, header .btn.mobile{
  display:none;
}
@media(max-width:1100px){
  header{
    padding:10px 0;
  }
  header .flex-row{
    justify-content: space-between;
  }
  header .flex-row .flex-item{
    position: relative;
    z-index: 2;
  }
  header .flex-row > .flex-item.fw{
    padding:0;
  }
  header .flex-row .flex-item.menu-wrapper{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--red);
    top: 0;
    right: -100%;
    padding-top: 110px;
    padding-bottom: 30px;
    transition:.4s;
    text-align:center;
  }
  header .flex-row .flex-item.menu-wrapper.show-menu{
    right:0;
  }
  header .header-menu{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .header-menu li a{
    font-size: 20px;
    font-weight: 500;
  }
  header .nav-icon, header .btn.mobile{
    display: inline-block;
  }
  header .flex-item.doneaza-btn{
    display: none;
  }
  .nav-icon .line{
    stroke: #fff;
  }
  header .btn.mobile{
    margin: 40px auto 0;
    background:#fff;
    color:var(--red);
    border:2px solid #fff;
  }
  header .btn.mobile:hover{
    background:var(--red);
    color:#fff;
  }
  header .nav-icon{
    height: 35px;
    width: 35px;
  }
}

/* Social media */
.sm-list li a svg{
  color:#fff;
}
.sm-list li a:hover svg{
  color:var(--yellow);
}

/* Hero screen */
.hero-screen,
main.cmp-sms-page > section:first-of-type{
  position: relative;
  padding: 130px 0 30px;
}
.hero-screen .box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 550px;
  align-items: flex-start;
  gap: 40px;
}
.hero-screen .img-abs.mobile{
    display:none;
}
.disclaimer.mobile{
    display:none;
}
.hero-screen .disclaimer.desktop{
    color: #fff;
    font-size: 16px;
    width: 770px;
}
@media(max-width:1440px){
  .hero-screen, main.cmp-sms-page > section:first-of-type{
    padding: 100px 0 30px;
  }
}
@media(max-width:1280px){
    .hero-screen .box{
        max-width:450px;
    }
}
@media(max-width:1100px){
  .hero-screen .box{
    max-width: 380px;
  }
  .hero-screen .disclaimer.desktop{
    display:none;
  }
  .disclaimer.mobile{
    display: block;
    padding: 10px;
    font-size: 16px;
    background: var(--black);
    color: #fff;
  }
}
@media(max-width:767px){
    .hero-screen .img-abs.mobile{
        display:block;
    }
    .hero-screen .img-abs.desktop{
        display:none;
    }
    .hero-screen, main.cmp-sms-page > section:first-of-type {
        padding: 90px 0;
        min-height: 725px;
    }
    .hero-screen .box{
        gap:20px;
        align-items:center;
    }
    .disclaimer.mobile{
        font-size:14px;
        text-align:center;
    }
}

/**/
.intro-screen, .manifesto{
  background-image:url('../img/bg-linii.png');
  background-size:contain;
  background-repeat:repeat;
}
@media(max-width:1100px){
  .intro-screen, .manifesto{
    background-image:none;
  }
}

/* Intro screen */
.intro-screen .center-title-and-info .vector{
  position: absolute;
  right: 100px;
  top: 170px;
  z-index: 3;
}
.intro-screen .flex-row{
  position:relative;
}
.intro-screen .flex-row .vector{
  position: absolute;
  bottom: -50px;
  left: 100px;
  z-index: 3;
}
.intro-screen .flex-row:after{
  width: 100%;
  height: 74%;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-5.115deg);
  background: var(--yellow);
  display: block;
  content: '';
  position: absolute;
  z-index: 0;
}
.intro-screen.side-image-and-content .flex-row .info-item {
  padding-left: 20px;
  padding-right: 20px;
}
.intro-screen.side-image-and-content .flex-row .flex-item{
  position:relative;
  z-index: 2;
}
@media(max-width:1700px){
  .intro-screen .center-title-and-info .vector{
    width: 160px;
  }
}
@media(max-width:1400px){
  .intro-screen .center-title-and-info .vector{
    top:80px;
  }
}
@media(max-width:1100px){
  .intro-screen .vector{
    display: none;
  }
}
@media(max-width:850px){
  .intro-screen.side-image-and-content .flex-row .flex-item.image-item{
    padding-bottom:0;
  }
  .intro-screen.side-image-and-content .flex-row .info-item{
    padding: 0;
  }
}

/* Manifesto */
.manifesto{
    padding-top:0;
}
.manifesto .manifesto-box{
  position:relative;
  width: 95%;
  margin:100px auto 0;
  padding:0 40px;
  text-align:center;
}
.manifesto .manifesto-box > .title{
  display: inline-block;
  position: relative;
  margin: 0;
  margin-top: -40px;
}
.manifesto .manifesto-box > .title span{
  position:relative;
  z-index: 1;
}
.manifesto .manifesto-box > .title:before{
  display: block;
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background-image: url('../img/badge1.png');
  background-size: cover;
  background-repeat: no-repeat;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.manifesto .flex-row{
  position: relative;
  align-items: stretch;
}
.manifesto .flex-row .vectors{
  width:20%;
}
.manifesto .flex-row .vectors img{
  display:block;
}
.manifesto .flex-row .vectors img:last-of-type{
  float:right;
}
.manifesto .flex-row .info-box{
  flex: 1;
  padding: 60px;
  text-align: center;
  color: #fff;
  font-size: 20px;
}
@media(max-width:1100px){
  .manifesto .flex-row .vectors{
    display: none;
  }
}
@media(max-width:767px){
  .manifesto .flex-row .info-box{
    padding: 30px 0;
    font-size: 18px;
  }
  .manifesto .manifesto-box{
    padding: 0 10px;
    margin: 50px auto 0;
  }
}

/* Numbers */
.numbers{
  background: var(--yellow);
  color: var(--red);
  margin-bottom: 0;
  padding:30px 0;
}
.numbers ul li .number span{
  font-size:60px;
  line-height:110%;
}
.numbers ul li .info span{
  font-size:24px;
  line-height:30%;
}
@media(max-width:1024px){
  .numbers ul li .number span{
    font-size: 50px;
  }
  .numbers ul li .info span{
    font-size:20px;
  }
}
@media(max-width:767px){
  .numbers ul li .number span{
    font-size: 40px;
  }
  .numbers ul li .info span{
    font-size:16px;
  }
}

/* Side image side content */
.side-image-and-content .info{
  max-width:580px;
  margin:40px 0 30px;
}
.side-image-and-content .info p{
  font-size:20px;
}
@media(max-width:850px){
  .side-image-and-content{
    flex-direction:column;
  }
  .side-image-and-content .flex-item.item50{
    flex: 1 1 100%;
    width:100%;
    text-align:center;
  }
  .side-image-and-content .flex-item img{
    width: 100%;
    max-width:450px;
  }
  .side-image-and-content .info{
    max-width:100%;
    margin:20px 0 0;
  }
  .side-image-and-content .info p{
    font-size:18px;
  }
}
/**/
.our-promise{
  position:relative;
  padding: 115px 0 70px;
  background-image:url('../img/bg-dots.jpg');
  background-repeat:repeat;
}
.our-promise .flex-row{
  color:#fff;
}
.our-promise.side-image-and-content .flex-row.reverse .info-item{
  padding-right: 40px;
  padding-left: 90px;
}
.our-promise .image-item{
  text-align: center;
}
.our-promise .image-item img{
  margin-top:-75px;
}
@media(max-width:1281px){
  .our-promise.side-image-and-content .flex-row.reverse .info-item{
    padding-left:40px;
  }
}
@media(max-width:1100px){
  .our-promise{
    padding: 0;
    background-image:unset;
  }
  .our-promise .flex-row{
    padding: 40px 0;
  }
}
@media(max-width:767px){
  .our-promise.side-image-and-content .flex-row.reverse .info-item{
    padding: 0 0 40px;
  }
}
/***/
.ce_urmeaza{
  position:relative;
}
.ce_urmeaza:before{
  display:block;
  content:'';
  width:45%;
  height:70%;
  right:0;
  bottom:0;
  position:absolute;
  background-image:url('../img/vector-primii-pasi.jpg');
  background-repeat:repeat;
}
@media(max-width:850px){
  .ce_urmeaza .image-item, .ce_urmeaza:before{
    display: none;
  }
}

/* Gallery */
.gallery-slider{
  background-color:var(--black);
  background-image:url('../img/gallery-bg.jpg');
  background-size:cover;
  color:#fff;
}
.gallery-slider-wrapper {
  margin:20px 0;
}
.gallery-slider-wrapper .gallery-slider-item{
  display: inline-block;
  vertical-align: top;
  width: 24%;
  padding: 10px;
}
.gallery-slider-item.two-items {
  padding-top:80px;
}
.gallery-slider-item.one-item .image-wrapper figure,
.gallery-slider-item.one-item .image-wrapper a{
    aspect-ratio: 4.2 / 5;
}
.gallery-slider-item.two-items .image-wrapper figure,
.gallery-slider-item.two-items .image-wrapper a{
     aspect-ratio: 1.8 / 1;
}
.gallery-slider-item .image-wrapper{
  border: 10px solid #fff;
  border-bottom: 40px solid #fff;
}
.gallery-slider-item .image-wrapper{
  margin-bottom: 20px;
}
.gallery-slider-item .image-wrapper figure,
.gallery-slider-item .image-wrapper a{
  position: relative;
  display: block;
}
.gallery-slider-item .image-wrapper a svg{
  position: absolute;
  top:50%;
  left: 50%;
  transform:translate(-50%, -50%);
}
@media(max-width:1700px){
  .gallery-slider-item .image-wrapper{
    border: 8px solid #fff;
    border-bottom: 36px solid #fff;
  }
}
@media(max-width:1100px){
  .gallery-slider-item .image-wrapper{
    border: 5px solid #fff;
    border-bottom: 30px solid #fff;
  }
}

/* doneaza sms*/
.doneaza-sms{
  background-color:var(--yellow);
}
.doneaza-sms .title{
  margin:0 auto;
  font-weight:700;
}
@media(max-width:850px){
    .doneaza-sms{
        display:none;
    }
}


/* doneaza */
.donate-form{
  border: 50px solid var(--red);
  padding: 0;
  background: #FFFBF6;
}
.donate-form-container{
  max-width: 100%;
  width:100%;
  border-radius: unset;
  background: unset;
}
.donate-form-container .form{
  text-align:left;
}
.donate-form-container .frecventa select{
  margin: 0;
  margin-top: 10px;
}
.donate-form-container .custom-checkbox span.wpcf7-list-item-label, .donate-form-container .custom-checkbox.btn{
  color: var(--red);
  border: 1px solid var(--red);
  background: unset;
  border-radius:0;
  font-weight:500;
}
.donate-form-container .custom-checkbox span.wpcf7-list-item-label:hover, .donate-form-container .custom-checkbox.btn:hover{
  background: rgba(255, 0, 60, 0.09);
  color:var(--red);
}
.donate-form-container .custom-checkbox input[type=checkbox]:checked + span.wpcf7-list-item-label, .donate-form-container .custom-checkbox.btn.active {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}
.donate-form-container .alta-suma input{
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 0;
  background-color: rgba(255, 0, 60, 0.09);
}
.donate-form-container .alta-suma input::placeholder{
	color: var(--red);
  font-weight:500;
  font-size:16px;
}
.donate-form-container .submit-row .btn{
  width: auto;
  height:unset;
  background-color:var(--red);
  color:#fff;
  border:1px solid var(--red);
}
.donate-form-container .submit-row .btn:hover{
  background:transparent;
  color:var(--red);
}
.form input:focus::placeholder, .form textarea:focus::placeholder, .form select:focus{
  color:var(--red);
}
.form input:focus, .form textarea:focus, .form select:focus{
  border-bottom: 1px solid var(--red);
}
.donate-form .terms-row span{
    font-size:16px;
}
.form .terms-row span a,
.donate-form-container .info a{
  color:var(--red);
  font-size:16px;
}
.wpcf7-form input[type=checkbox]+span:before{
  border:1px solid var(--red);
  height: 15px;
  width: 15px;
}
.wpcf7-form input[type=checkbox]+span:after{
  background-color:var(--red);
  top: 4px;
  left: 4px;
}
.donate-form .mobile{
  display: none;
}
.donate-form .terms-row span{
    vertical-align:top;
}
.donate-form-container .additional_info .text_item p,
.donate-form-container .additional_info .text_item a{
    font-size:16px;
}
.donate-form-container .form .row > .item{
    margin-left:-10px;
}
.donate-form-container .datele-tale h3{
    padding-left:0;
}
@media(max-width:1700px){
  .donate-form{
    border:40px solid var(--red);
  }
  .donate-form-container{
     padding:30px;
  }
}
@media(max-width:1367px){
  .donate-form{
    border:30px solid var(--red);
  }
}
@media(max-width:1281px){
  .donate-form{
    border:20px solid var(--red);
  }
}
@media(max-width:1100px){
  .donate-form{
    border:10px solid var(--red);
  }
  .donate-form-container{
    padding: 20px;
  }
}
@media(max-width:850px){
  .donate-form{
    border:5px solid var(--red);
  }
  .donate-form .flex-row{
    flex-direction:column;
  }
  .donate-form .flex-item.item45,
  .donate-form .flex-item.item55{
    flex:1 1 100%;
    width: 100%;
    max-width:100%;
  }
  .donate-form .flex-item.item45{
    min-height:200px;
    padding:0;
  }
  .donate-form .desktop{
    display: none;
  }
  .donate-form .mobile{
    display:block;
    position:static;
  }
  .donate-form-container{
    padding: 10px 0;
    text-align: center;
  }
  .donate-form-container .form, .donate-form-container .submit-row{
    text-align: center;
  }
  .donate-form-container .frecventa select{
    margin:10px auto 0;
  }
  .donate-form-container .submit-row .btn{
    margin:0 auto;
  }
  .donate-form-container .form .row > .item{
    margin-left:0;
  }
}


/* doneaza alte metode */
.doneaza-alte-metode{
  position:relative;
}
.doneaza-alte-metode:after{
  display:block;
  content:'';
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  background-color:rgba(0,0,0,0.5);
}
.doneaza-alte-metode .container{
  position:relative;
  z-index: 2;
  color:#fff;
}
.doneaza-alte-metode .container .subtitle{
  margin-bottom:50px;
}
.doneaza-alte-metode .center-title-and-info{
  margin-bottom:0;
}
@media(max-width:1367px){
  .doneaza-alte-metode .container .subtitle{
    margin-bottom:30px;
  }
}

/*Testimonials */
.testimonials{
  position:relative;
  background:var(--light-grey);
  padding: 130px 0 70px;
  overflow:hidden;
}
.testimonials .vector{
  position: absolute;
  top: -210px;
}
.testimonials-slider{
  max-width: 945px;
  margin: 0 auto;
}
.testimonials-item{
  align-items: stretch;
  display:flex!important;
}
.testimonials-item .quote:last-of-type{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.testimonials-item .info{
  flex: 1;
  padding: 0 40px;
  text-align: center;
}
.testimonials-item .info .quote-text{
  font-size: 20px;
}
.testimonials-item .info .author,
.testimonials-item .info .position{
  color:var(--red);
  margin-bottom:0;
}
.testimonials-item .info .author{
  font-weight:700;
}
.testimonials-item .info .position{
  font-size:16px;
}
.slick-dots {
  --gap-active: 5rem;
}
ul.slick-dots {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  margin-top: 20px;
}
ul.slick-dots li {
  position:relative;
  margin-right:0;
  min-width:2ch;
}
ul.slick-dots li.slick-active{
  margin-right:var(--gap-active);
}
ul.slick-dots li.slick-active:last-child{
  margin-right:0;
}
ul.slick-dots li button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:all .35s ease;
  text-indent:unset;
  width:unset;
  height:unset;
  margin:0;
  color:var(--black);
}
ul.slick-dots li button:before{
  display:none;
}
.slick-dots li.slick-active button {
  color: var(--red);
  opacity: 1;
}
ul.slick-dots li.slick-active:not(:last-child)::after  {
  display:block;
  content:"";
  position:absolute;
  top:50%;
  left:100%;
  height:2px;
  width:var(--gap-active);
  transform:translateY(-50%);
  background:var(--red);
}
ul.slick-dots li:has(+ li.slick-active:last-child) {
  margin-right: var(--gap-active);
}
ul.slick-dots li:has(+ li.slick-active:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: var(--gap-active);
  height: 2px;
  transform: translateY(-50%);
  background: var(--red);
  transition: all .35s ease;
}
.slick-dots li.slick-active button {
  color: var(--red);
}
@media(max-width:767px){
  .testimonials{
    padding: 30px 0;
  }
  .testimonials-item .info .quote-text{
    font-size: 16px;
  }
  .testimonials-item .info{
    padding: 0 10px;
  }
  .testimonials-item .quote:last-of-type{
    align-items: flex-end;
  }
  .testimonials-item .quote svg{
    width:30px;
    height: 30px;
  }
}


/* Post previews */
.post-preview-portrait figure,
.item.item24 article figure{
  height: unset;
  aspect-ratio: 16/9;
}
.post-preview-portrait figure img{
  border-radius: 0;
}
.post-preview-portrait .preview-title{
  min-height: unset;
  display: block;
  font-weight: 450;
  font-size: 24px;
  line-height: 125%;
  margin-bottom: 20px;
}
.post-preview-portrait .inner-content p{
  line-height: 133.33%;
  margin-bottom:20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
}
.post-preview a:hover .read-more svg, .post-preview a:hover .read-more, .post-preview a:hover .preview-title {
  color: var(--red);
}
@media(max-width:850px){
  .post-preview-portrait .preview-title,
  .post-preview-portrait .inner-content p{
    margin-bottom: 10px;
  }
  .post-preview-portrait .inner-content p{
      font-size:18px;
  }
}

/* Resurse */
.resurse .post-preview-portrait{
  height: 100%;
  position: relative;
}
.resurse .post-preview a,
.resurse .post-preview .inner-content{
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.resurse .post-preview .inner-content .preview-title{
  flex: 1;
}
/**/
.resurse.rppr, .resurse.alte-resurse{
  padding: 70px 0;
}
.resurse.rppr{
  background: var(--yellow);
}
.resurse.alte-resurse{
  background:var(--light-grey);
}
.resurse.alte-resurse .flex-item.item50:first-of-type,
.resurse.alte-resurse .flex-item.item50{
  padding: 10px;
  margin-bottom: 40px;
}
@media(max-width:1700px), (-webkit-device-pixel-ratio:1.25){
  .resurse.rppr, .resurse.alte-resurse{
    padding: 50px 0;
  }
}
@media(max-width:1360px){
  .resurse.rppr, .resurse.alte-resurse{
    padding: 40px 0;
  }
}
@media(max-width:1100px){
  .resurse.rpp .flex-item.item25{
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media(max-width:767px){
  .resurse .flex-item,
  .resurse.alte-resurse .flex-item.item50,
  .resurse.alte-resurse .flex-item.item50:first-of-type{
      padding:10px 0;
      margin-bottom:20px;
  }
  .resurse.rpp .flex-item.item25{
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Footer */
footer.bg-red{
  background: var(--red);
  color:#fff;
  padding: 20px 0;
}
footer .flex-row{
  align-items: center;
}
footer .sm-list{
  margin-top: 0;
}
footer .menu-cmp-sms-menu-container{
  flex: 1;
}
footer .footer-menu{
  display: block;
  text-align: center;
}
footer .footer-menu li{
  display: inline-block;
  padding: 0 10px;
}
footer .footer-menu li a{
  text-decoration: none;
  font-size: 16px;
}
footer .footer-menu li a:hover{
  color:var(--yellow);
}
@media(max-width:1100px){
    footer .flex-row{
        flex-direction:column;
    }
}
@media(max-width:767px){
    footer .footer-menu{
        text-align:left;
    }
}
/***/
.video-screen lite-youtube{
    width:100%;
    max-width:100%;
}
.video-screen{
    border: 40px solid #FF003C;
    background: #FFFBF6;
    padding: 4rem 1rem;
    margin:30px 0;
}
@media(max-width:1600px){
    .video-screen{
        border: 30px solid #FF003C;
        padding: 3rem 1rem;
        margin:20px 0;
    }
}
@media(max-width:1440px){
    .video-screen{
        border: 20px solid #FF003C;
    }
}
@media(max-width:1110px){
    .video-screen{
        border: 10px solid #FF003C;
    }
}
@media(max-width:767px){
    .video-screen{
        border: 5px solid #FF003C;
        padding:2rem 10px;
    }
}