/*
    Copyright PRO TV S.A. All rights reserved.
    Contact: @protv.ro
*/
@charset "utf-8";

/*
        INCLUDES
*/
@import "reset.css";
@import "bootstrap.min.css";
@import "animate.css";
@import "fontawesome-all.min.css";
@import "dropzone.min.css";
@import "font-face.css";
@import "footer.css";

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* GENERAL */
:root {
  --background-color: #423D39;
  --main-font: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
  --main-font-size: 18px;
  --block-margin: 20px;
  --block-padding: 40px;
  
  /* Colors: */
  --vodafone-red: #E60000;
  --vodafone-gradient: linear-gradient(90deg, rgba(130,0,0,1) 0%, rgba(230,0,0,1) 100%);
  --vodafone-slate-grey: #25282B;
  --vodafone-grey: #4A4D4E;
  --vodafone-turquoise: #007C92;
  --vodafone-aqua: #00B0CA;
  --vodafone-aubergine: #5E2750;
  --vodafone-red-violet: #9C2AA0;
  --vodafone-spring-green: #A8B400;
  --space-grey: #ccc;
  --white: #ffffff;
  --black: #000000;

  /* Fonts */
  --h1-title: 1.6rem;
  --h2-section-title: 3.4rem;
  --h3-title: 1.9rem;
  --p-rule: 1.2rem;
}

::placeholder {
    color: rgba(var(--white), 1) !important;
}

:-ms-input-placeholder {
    color: rgba(var(--white), 1) !important;
}

::-ms-input-placeholder {
    color: rgba(var(--white), 1) !important;
}

/* General Styles */
body::-webkit-scrollbar {
    width: 10px;
  }
  
  body::-webkit-scrollbar-track {
    background: var(--vodafone-slate-grey);
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: var(--vodafone-red);
    border-radius: 6px;
    border: 3px solid var(--vodafone-red);
  }

/* GENERAL */

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all .2s ease-in;
}

*:focus {
  outline: none !important;
  transition: all .2s ease-in;
}

html,
body {
  height: 100%;
  width: 100%;
  position: relative;
  height: -webkit-fill-available;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden !important;
  overflow-y: auto;
  margin: 0;
  padding: 0;;
}

body {
  background: var(--rockstar-black);
  font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--vodafone-slate-grey);
}

a {
  color: var(--vodafone-red);
}
a:hover,
a:focus {
  color: var(--vodafone-slate-grey);
}

main {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1000px;
}


/*Navigation styles */
.vodafone-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vodafone-nav .nav-item {
  padding: 0 var(--block-margin);
}

.vodafone-nav .nav-item a {
  font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--vodafone-slate-grey);
  padding: 9px 20px;
}

.vodafone-nav .navbar-nav > li > a::after {
  content:'';
  display: block;
  width:0;
  height: 3px;
  background: var(--vodafone-red);
  transition: width .3s;
}

.vodafone-nav .navbar-nav > li > a:hover::after {
  width:100%;
  background: var(--vodafone-red);
  font-weight: 500;  
}

.vodafone-nav .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--vodafone-red)
}

.vodafone-nav .nav-item a:hover {
  color: var(--vodafone-red);
}

.navbar-toggler .spantext {
  display: flex;
}

.navbar-toggler {
  /* background-color: var(--vodafone-slate-grey); */
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.burger {
  width: 20px;
  height: 14px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navbar-toggler[aria-expanded="false"] .burger span {
  background: var(--vodafone-red);
}

.burger span {
  background: var(--vodafone-slate-grey);
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(2) {
  top: 5px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(3) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 5px;
  left: 2px;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 5px;
  left: 2px;
}

.navbar-collapse {
  justify-content: center;
}

.navbar-brand {
  position: relative;
  display:block;
  margin: 0 auto;
}

.nav-vdf-section {
    width: 100%;
    background-color: var(--white);
    display: block;
    margin: 0 auto;
}

.vodafone-nav .logo-vdf-business {
    width: 100%;
    max-width: 130px;
    display: block;
}

.vodafone-nav .logos-protv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.vodafone-nav .logos-protv .logo-imperiulleilor {
    width: 100%;
    max-width: 200px;
    display: block;
    margin-right: 15px;
}

.vodafone-nav .logos-protv .logo-protv {
    width: 100%;
    max-width: 100px;
    display: block;
}

/* Hero Header */


/* Vodafone Section */
.vodafone-explained {
    display: block;
    margin: 0 auto;
    background-color: rgb(230,0,0);
    background-image: var(--vodafone-gradient);
    padding: 40px 0;
}

.vodafone-explained h1 {
    font-family: 'Vodafone Rg Bold';
    font-size: 2rem; 
    font-weight: 700;
    text-transform: none;
    color: var(--white);
    opacity: 1;
    margin-bottom: 30px;
    margin-top: 0px;
}

.vodafone-explained h2 {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-size: 1.375rem; 
    font-weight: 400;
    text-transform: none;
    color: var(--white);
    opacity: 1;
}

.vodafone-explained h2:first-of-type {
    margin-bottom: 30px;
}

.vodafone-explained h2 strong {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-weight: 700;
}

/* Contest Section */
.vodafone-contest {
    display: block;
    margin: 0 auto;
    background-color: var(--vodafone-slate-grey);
    padding: 40px 0;
}

.vodafone-contest h3 {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.5rem; 
    font-weight: 700;
    text-transform: none;
    color: var(--white);
    opacity: 1;
}

.vdf-panel-explained {
    width: 100%;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 6px;
    padding: 30px;
    margin: 0 auto;
    text-align: left;
    margin-top: 20px;
}

.vdf-panel-explained ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.vdf-panel-explained ul li {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-size: 1.2rem; 
    font-weight: 400;
    color: var(--vodafone-slate-grey);
}

.vdf-panel-explained ul li strong {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-weight: 700;
}

.vdf-panel-explained ul li::before {
    content: "\2022";
    color: var(--vodafone-aubergine);
    font-weight: bold; 
    display: inline-block; 
    width: 25px;
    height:25px;
    margin-left: -.5em; /* Also needed for space (tweak if needed) */
}

.carousel-vodafone {
    display: block;
    margin: 0 auto;
    background-color: var(--vodafone-slate-grey);
    padding-bottom: 40px;
}

.carousel-business {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 1000px;
    position: relative;
}
/* .vodafone-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
}*/

.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
    background-color: var(--white)!important;
    padding: 10px;
    width: 50px;
    height: 50px;
    color: var(--vodafone-red)!important;
    font-size: 20px!important;
}

.owl-carousel .owl-nav button.owl-next:hover, 
.owl-carousel .owl-nav button.owl-prev:hover, 
.owl-carousel button.owl-dot:hover {
    background-color: var(--vodafone-red)!important;
    color:var(--white)!important;
}

/* .owl-theme .owl-nav {
    position: absolute;
    left:50%;
    top: 50%;
} */


/* Select concurent */
.blue-ring {
    /* border: solid 2px var(--white); */
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 5px auto;
}

.red-ring {
    border: solid 3px var(--darker-blue);
    overflow: hidden;
}

.white-ring {
    border: solid 5px var(--light-blue);
    overflow: hidden;
}

#selectConcurent {
    text-align: center;
}

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

.item .custom-radio {
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.item .custom-control-description {
    color: var(--white);
    position: relative;
    margin: 15px auto;
    width: 100%;
    text-align: center;
    display: block;
    font-weight: bolder;
    text-transform: var(--heading-text-transform);
}

.item .custom-control-description .vodafone-item-description h4 {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.item .custom-control-description .vodafone-item-description h4 span {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
    text-transform: none;
}

.item .custom-control-description .vodafone-item-description h4 div {
    height: 26px;
}

.item .custom-control-description .vodafone-item-description p {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
}

.item .custom-control-description .vodafone-item-description .vodafone-voting {
    background-color: var(--vodafone-red);
    color: var(--white);
    border-radius: 6px;
    text-transform: capitalize;
    font-size: 1rem;
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-weight: 700;
    outline: 0;
    box-shadow: none;
    border: none;
    padding: 10px 15px;
    width: 100%;
    text-align: center;
}

/* .item .custom-control-description .vodafone-item-description .vodafone-voting:hover {
    background-image: var(--vodafone-gradient);
} */

.item .selected {
    background-color: var(--vodafone-spring-green)!important;
}

.item input[type=checkbox],
.item input[type=radio] {
    visibility: hidden;
}   

.blue-ring iframe {
    width: 100%;
    aspect-ratio: 16/9;
}


/* Form Section */
.formular {
    padding: 40px 0;
    display: block;
    margin: 0 auto;
    position: relative;
}

.formular h3 {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.5rem; 
    font-weight: 700;
    text-transform: uppercase;
    color: var(--vodafone-slate-grey);
    opacity: 1;
}

.dropzone {
    margin: 30px;
    background: rgba(var(--grey), 1);
    border: 1px solid rgba(var(--black), 0.02) !important;
}

.dropzone .dz-preview .dz-image {
    border-radius: 0 !important;
}

.dropzone .dz-preview.dz-image-preview {
    background: rgba(var(--grey), 1);
}

.dropzone.dz-started .dz-message {
    display: block;
}

.dropzone .dz-preview .dz-error-message {
    top: 30px;
}

.dropzone .dz-preview .dz-image img {
    margin: 0 auto;
}

.dropzone .dz-caption {
    font-size: .8rem;
    color: rgb(var(--subtitle-text-color));
    text-align: center;
}

.dropzone .dropzone_caption {
    width: 120px;
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
    top: 35%;
}

.btn-incarca {
    border-radius: 8px;
    background: rgba(var(--third-color), 1);
    color: rgba(var(--white), 1);
    text-transform: uppercase;
    width: 100%;
    max-width: 570px;
    height: 56px;
    padding: 15px;
}

.custom-control-description {
    font-weight: 300;
    font-size: 20px;
    color: var(--black);
    line-height: 1.2;
    text-align: left;
}

.custom-control-description a {
    color: var(--vodafone-red);
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-weight: 700;
}

.row-checkbox {
    padding-top: 20px;
}

#results {
    color: var(--vodafone-spring-green);
}

#error {
    color: var(--vodafone-red);
    padding: 15px 0;
    font-size: 20px;
    max-width: 60%;
    margin: 10px auto;
}

.info, .vodafone-premii p {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-size: .9rem;
    font-weight: 400;
    color: var(--vodafone-slate-grey);
    padding:15px 0;
}

.form-control {
    background: var(--white);
    color: var(--vodafone-slate-grey);
}

.form-control:focus {
    background: var(--vodafone-red);
    color: var(--white);
    border-color: var(--vodafone-slate-grey);
}


[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

.custom-controls-stacked .custom-control+.custom-control {
    margin-left: 0;
}

.custom-controls-stacked .custom-control {
    margin-bottom: .25rem;
}

label {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    display: block;
    font-weight: 400;
    font-size: 20px;
    color: var(--black);
    line-height: 1.2;
    text-align: left;
}

label strong {
    font-weight: 700;
    color: var(--vodafone-red);
}

.custom-control {
    position: relative;
    display: block;
    min-height: 2rem;
    padding-left: 3rem;
    margin-right: 1rem;
    cursor: pointer;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-radio .custom-control-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--space-grey);
}

.centering {
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    width: 19%;
    padding: 5px 0 0 0;

}

.custom-control-indicator {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border: 1px solid var(--space-grey);
    border-radius: 3px;
    width: 28px;
    height: 28px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 70% 75%;
    background-size: 70% 75%;
}

.custom-radio .custom-control-input:checked~.custom-control-indicator {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9Jy00IC00IDggOCc+PGNpcmNsZSByPSczJyBmaWxsPScjZmZmJy8+PC9zdmc+');
    background-color:var(--vodafone-grey);
    border: 1px solid var(--space-grey);
}

.custom-radio .custom-control-input:checked~.custom-control-indicator {
    color: var(--black);
    background-color:var(--vodafone-grey);
    border: 1px solid var(--space-grey);
}

.custom-checkbox .custom-control-input:checked~.custom-control-indicator {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGZpbGw9JyNmZmYnIGQ9J002LjU2NC43NWwtMy41OSAzLjYxMi0xLjUzOC0xLjU1TDAgNC4yNiAyLjk3NCA3LjI1IDggMi4xOTN6Jy8+PC9zdmc+');
    background-color:var(--space-grey);
    border: 1px solid var(--vodafone-red);
}

.custom-checkbox .custom-control-input:checked~.custom-control-indicator {
    color: var(--vodafone-red);
    background-color:var(--vodafone-red);
    border: 1px solid var(--vodafone-red);
}

.form-control {
    min-width: 100%;
}

.submitButton {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.325rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--vodafone-red);
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 440px;
    height: 56px;
    text-transform: uppercase;
}

.submitButton:hover {
    color: var(--white);
    background-image: var(--vodafone-gradient);
}

.start-campaign {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: none;
    color: var(--vodafone-slate-grey);
    opacity: 1;
    padding: 50px 0 0;
}

/* Premii Section */
.vodafone-premii {
    display: block;
    margin: 0 auto;
    background: var(--white);
    padding: 40px 0;
    border-top: 4px solid var(--vodafone-red);
}

.vodafone-premii h3 {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.5rem; 
    font-weight: 700;
    text-transform: uppercase;
    color: var(--vodafone-slate-grey);
    opacity: 1;
}

.vodafone-premii img {
    display: block;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.vodafone-premii .premiu {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.2rem; 
    font-weight: 700;
    text-transform: capitalize;
    color: var(--vodafone-slate-grey);
    opacity: 1;
}

.vodafone-premii p {
    color: var(--vodafone-slate-grey);
}

/* Vodafone Business Section */
.vodafone-business {
    display: block;
    margin: 0 auto;
    background-color: var(--vodafone-red);
    background: var(--vodafone-gradient);
    padding: 40px 0;
}

.vodafone-business h3 {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-size: 1.5rem; 
    font-weight: 400;
    color: var(--white);
    opacity: 1;
}

.vodafone-business h3 strong {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-weight: 700;
}

.vodafone-business .carousel-products {
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.vodafone-business .carousel-products .item {
    background-color: var(--white);
    border: 1px solid var(--space-grey);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    min-height: 520px;
    padding: 20px;
}

.vodafone-business .carousel-products .business-item-description h4 {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
    color: var(--vodafone-red);
    border-bottom: 1px solid var(--vodafone-grey);
    padding-bottom: 10px;
}

.vodafone-business .carousel-products .business-item-description p {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    text-align: left;
    color: var(--vodafone-slate-grey);
}

.vodafone-business .carousel-products .business-item-description p:first-of-type {
    padding-top: 10px;
}

.vodafone-business .disclaimer {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
}

.vodafone-business .disclaimer strong {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-weight: 700;
}

/* .business-item-description {
    position: relative;
    display: block;
    margin: 0 auto;
}
 */


.vodafone-business .carousel-products .business-item-description .vodafone-packs {
    background-color: var(--vodafone-red);
    display: block;
    color: var(--white);
    border-radius: 6px;
    text-transform: capitalize;
    font-size: 1rem;
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    outline: 0;
    box-shadow: none;
    border: none;
    padding: 10px 15px;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.vodafone-business .carousel-products .business-item-description .vodafone-packs:hover {
    background: var(--vodafone-gradient);
}

.vodafone-business .carousel-products .owl-nav button.owl-next, 
.vodafone-business .carousel-products .owl-nav button.owl-prev, 
.vodafone-business .carousel-products button.owl-dot {
    background-color: var(--vodafone-slate-grey)!important;
    padding: 10px;
    width: 50px;
    height: 50px;
    color: var(--vodafone-red)!important;
    font-size: 20px!important;
}

.vodafone-business .carousel-products .owl-nav button.owl-next:hover, 
.vodafone-business .carousel-products .owl-nav button.owl-prev:hover, 
.vodafone-business .carousel-products button.owl-dot:hover {
    background-color: var(--white)!important;
    color:var(--vodafone-red)!important;
}

/* Footer Images Section */
.vodafone-small {
    display: block;
    margin: 0 auto;
    background-color: var(--black);
    padding: 40px 0;
}

.vodafone-small .logos-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.vodafone-small .logos-footer .vdf-stacked {
    width: 100%;
    max-width: 100px;
    display: block;
    margin-right: 30px;
}

.vodafone-small .logos-footer .il-stacked {
    width: 100%;
    max-width: 80px;
    display: block;
}

/* Castigatori section */
.castigatori {
    display: block;
    margin: 0 auto;
    position: relative;
    background: var(--vodafone-gradient);
    padding: 40px 0;
}

.castigatori h1 {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 30px;
    opacity: 1;
}

.castigatori .castigatori__bg {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.castigatori h2 {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--vodafone-slate-grey);
    opacity: 1;
    border-bottom: 1px solid var(--space-grey);
    padding: 6px;
}

/* Interviuri antreprenori section */

.interviuri-antreprenori {
    display: block;
    margin: 0 auto;
    background-color: var(--vodafone-slate-grey);
    padding: 40px 0;
}

.interviuri-antreprenori h3 {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding-bottom: 40px;
    opacity: 1;
}

.interviuri-antreprenori iframe {
    width: 100%;
    max-width: 435px;
    height: auto;
    aspect-ratio: 16/9;
}

.interviuri-antreprenori h4 {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.vodafone-winners {
    display: block;
    margin: 0 auto;
    background-color: var(--vodafone-slate-grey);
    padding: 40px 0;
}

.vodafone-winners h3 {
    font-family: 'Vodafone Rg Bold', "Montserrat", Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--vodafone-red);
    opacity: 1;
    padding-bottom: 20px;
}

.vodafone-winners h4 {
    font-family: 'Vodafone Rg', "Montserrat", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
    padding-bottom: 10px;
}

/* .vodafone-offers {
    padding-bottom: 40px;
}

.vodafone-offers .iframe-rectangleb {
    padding-top: 40px;
}

@media screen and (max-width: 560px) {
    .vodafone-offers .iframe-billboard {
        display: none;
    }
} */

@media screen and (max-width: 768px) {
    .navbar-toggler {
        margin: 0 auto;
    }
  
    .navbar-collapse {
        background-color: rgba(230, 0, 0, 0.7);
        padding-top: 2rem;
        padding-bottom: 2rem;
        top: 54px;
        position: fixed;
        left: 15px;
        width: calc( 100% - 30px);
        font-weight: bold;
        text-align: center;
        z-index: 50;
    }

    .navbar-toggler-icon {
        background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAcAAAAIABAMAAADnC6FpAAAAJ1BMVEX////mAADmAADmAADmAADmAADmAADmAADmAADmAADmAADmAADmAADE2ORCAAAADHRSTlMAEDBAUGCAoLDA0PDnWYbmAAADHklEQVR42u3dvWpUURSG4RONoCFFGhG0sbexUoQUXoJeg20asU1hLVMI3kCms5hGa4tAIA7jvigz8Xf8SZ83z3MHH8zsc87aa+81TQAAAAAAAAAAAAAAAABA2qM3I+D9i//Euz0bEcvn/8r3eIS8+jvfk5Hy7s98d0bMy818259qAb883Qh4OHI+/57v7gia/8p3bVEMuLr/M+CDkfTxR76tRTPgau97wJ0RNe8uoRsL6fbI+vYsvNcN+KH9C/3+G70+wh6eBbxVDvj2LOB+OeBJ+y94/ifcGml70412wGfTzXbA19NuO+BxexFdL6MH7YCn06wdcDkt2gFX04gTUEABBRRQwIsC5h/0+Ve1/Mt2/nMp/8GbL1nki075smG+8Nsv3ec3X/LbZ/kN0P4Wdr4JId9G0mzFWzu6Kq1c+Wa8fjtlviG239Lcb0rPHyvoHwzpH+3pH87qH68DAAAAAAAAAAAAAAAAAAAAAAAAAAAus/gFqvUrcOuXGNevoa5fJJ6/Cr5+mX99HEN+oEZ9JEp+qM3OiJp3l9CNhTQ/Giw/3O2wG/D8N5ofsJgfkblfDngy9cfU5gcN50dF54d977YDHrcX0fUyetAOeDrN2gGX06IdcDWNOAEFFFBAAQW8KGD+QZ9/Vcu/bOc/l/IfvPmSRb7olC8b5gu//dJ9fvMlv32W3wDtb2HnmxDybSTNVry1o6vSypVvxuu3U+YbYvstzf2m9Pyxgv7BkP7Rnv7hrP7xOgAAAAAAAAAAAAAAAAAAAAAAAAAA4DKLX6BavwK3folx/Rrq+kXi+avg65f518cx5Adq1Eei5Ifa7IyoeXcJ3VhI86PB8sPdDrsBz3+j+QGL+RGZ++WAJ1N/TG1+0HB+VHR+2PduO+BxexFdL6MH7YCn06wdcDkt2gFX04gTUEABBRRQwIsC5h/0+Ve1/Mt2/nMp/8GbL1nki075smG+8Nsv3ec3X/LbZ/kN0P4Wdr4JId9G0mzFWzu6Kq1c+Wa8fjtlviG239Lcb0rPHyvoHwzpH+3pH87qH68DAAAAAAAAAAAAAAAAACK+AphZ81WYueY3AAAAAElFTkSuQmCC);
    }
      
  }
  
  @media screen and (max-width: 560px) {
    .navbar-toggler {
        margin-left: 0;
    }

    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
      color: var(--white);
      font-weight: bold;
    }

    .vodafone-nav .nav-item a,
    .vodafone-nav .nav-item a.active {
        color: var(--white)!important; 
    }
  
    .navbar-brand img {
      max-width: 100px;
    }
  
    .logo-protv-link img {
      max-width: 90px;
    }

    .logo-imperiulleilor-link {
        display: none;
    }

    .vodafone-nav .navbar-brand {
        margin-left: 0;
    }

    .item .custom-radio {
        margin-right: 0;
    }
  
    /* .burger {
      margin-left: -30px;
    } */
  }
  