@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
@import url("../../assets/fonts/stylesheet.css");
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #000000;
  position: relative;
}

.btn-primary {
  background-color: #1e9abe;
  border-color: #1e9abe !important;
}

.btn-primary:hover {
  background-color: #1e9abe;
  border-color: #1e9abe;
  -webkit-box-shadow: none;
          box-shadow: none;
}

section {
  padding: 55px 0;
}

@media (max-width: 767px) {
  section {
    padding: 25px 0;
  }
}

.container {
  max-width: 1600px;
}

@media (max-width: 1399px) {
  .container {
    max-width: 1250px;
  }
}

.fnt-sm {
  font-weight: 600;
}

header {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

header.topHead {
  background: #FEE6BC;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

header .navbar {
  padding: 35px 0;
}

header .navbar .nav-item {
  margin-right: 4px;
}

header .navbar .nav-link {
  font-size: 20px;
  color: #000000 !important;
  font-family: 'Proxima Nova Rg';
  padding: 8px 15px !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

header .navbar .nav-link.active, header .navbar .nav-link:hover, header .navbar .nav-link:focus {
  background: #1E9ABE;
  color: #fff !important;
  border-radius: 50px;
}

header .navbar .btn {
  font-size: 22px;
  border-radius: 50px;
  padding: 13px 23px;
  text-decoration: none;
  color: #fff !important;
}

header .navbar-toggler {
  border: 0;
  outline: none;
  padding: 0;
}

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

header .collapse.show {
  margin-top: 10px;
}

@media (max-width: 1600px) {
  header .navbar {
    padding: 20px 0;
  }
  header .navbar .nav-link {
    font-size: 18px;
  }
  header .navbar-brand img {
    max-width: 180px;
  }
  header .btn {
    font-size: 18px;
    padding: 8px 15px;
  }
}

@media (max-width: 1399px) {
  header .btn {
    font-size: 16px;
  }
  header .navbar .nav-link {
    font-size: 16px;
    padding: 8px 12px !important;
  }
  header .navbar-brand img {
    max-width: 140px;
  }
}

@media (max-width: 991px) {
  header .navbar {
    background: #FEE6BC;
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  header .navbar .nav-link {
    font-size: 16px;
  }
}

.commn_head {
  position: relative;
  padding-bottom: 20px;
}

.commn_head h2 {
  font-size: 67px;
  font-family: 'Proxima Nova Rg';
  font-weight: 700;
}

.commn_head::after {
  content: '';
  position: absolute;
  background-image: url(../../assets/images/head-shape.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
  height: 25px;
  width: 285px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .commn_head h2 {
    font-size: 50px;
  }
}

@media (max-width: 1399px) {
  .commn_head h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .commn_head h2 {
    font-size: 25px;
  }
  .commn_head::after {
    content: '';
    width: 150px;
  }
}

.commn_head--white {
  position: relative;
  padding-bottom: 20px;
}

.commn_head--white h2 {
  font-size: 67px;
  font-family: 'Proxima Nova Rg';
  font-weight: 700;
}

.commn_head--white::after {
  content: '';
  position: absolute;
  background-image: url(../../assets/images/head-shape2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
  height: 25px;
  width: 285px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .commn_head--white h2 {
    font-size: 50px;
  }
}

@media (max-width: 1399px) {
  .commn_head--white h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .commn_head--white h2 {
    font-size: 25px;
  }
  .commn_head--white::after {
    content: '';
    width: 150px;
  }
}

.heroSec {
  position: relative;
  background-color: #FEE6BC;
  overflow: hidden;
  margin-bottom: 55px;
}

.heroSec_imgShape {
  position: absolute;
  bottom: -5px;
  z-index: 0;
  width: 100%;
}

.heroSec_cnt {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 70px 0;
}

.heroSec_title {
  font-size: 53px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1600px) {
  .heroSec_title {
    font-size: 45px;
  }
  .heroSec_cnt img {
    max-width: 450px;
  }
}

@media (max-width: 1399px) {
  .heroSec_title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .heroSec_cnt img {
    max-width: 250px;
  }
  .heroSec_title {
    color: black;
  }
}

.ottPlatform_left {
  font-size: 24px;
}

.ottPlatform_left li::marker {
  color: #1E9ABE;
}

@media (max-width: 1399px) {
  .ottPlatform_rightImg {
    max-width: 450px;
    margin: 0 auto;
  }
  .ottPlatform_left {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .ottPlatform .voot_logo {
    max-width: 150px;
  }
  .ottPlatform_rightImg {
    max-width: 250px;
  }
  .ottPlatform_left {
    font-size: 16px;
  }
}

.teamWork {
  background: #FFF5E4;
}

.teamWork_logoImg img {
  -webkit-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}

@media (max-width: 1399px) {
  .teamWork_logodigikore {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .teamWork .col {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 50%;
            flex: 0 50%;
  }
  .teamWork_logodigikore {
    max-width: 150px;
  }
}

.showFormat .title {
  margin-top: 20px;
  font-size: 35px;
  font-family: 'Proxima Nova Rg';
}

@media (max-width: 1399px) {
  .showFormat .title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .showFormat .col {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
  .showFormat .title {
    font-size: 18px;
    margin-top: 10px;
  }
  .showFormat img {
    max-width: 100px;
  }
}

.participation {
  background-image: url("../../assets/images/participationprocess.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.participation_step {
  background: #08637E;
  font-size: 18px;
  border-radius: 6px;
  color: #FEE6BC;
  padding: 5px 20px;
  display: inline-block;
}

.participation_card_inner {
  background: #FEE6BC;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  border: 1px dashed #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-size: 30px;
  font-family: 'Proxima Nova Rg';
}

.participation_card_inner img {
  margin-right: 15px;
}

@media (max-width: 1399px) {
  .participation_card_inner {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .participation_step {
    font-size: 18px;
  }
  .participation_card_inner {
    padding: 15px;
    font-size: 16px;
  }
  .participation_card_inner img {
    max-width: 70px;
  }
}

.aboutProducers {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1399px) {
  .aboutProducers {
    font-size: 18px;
  }
}

.benefit .card {
  border-radius: 12px;
  position: relative;
}

.benefit .card::before {
  content: '';
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  border-radius: 12px;
}

.benefit .card-img-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.benefit .card-img-overlay img {
  margin-bottom: 15px;
}

.benefit .card-img-overlay .card-text {
  line-height: 24px;
}

.benefit img.card-img {
  border-radius: 12px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1399px) {
  .benefit .card-img-overlay {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .benefit .card-img-overlay img {
    margin-bottom: 5px;
    max-width: 70px;
  }
}

.getTv_card {
  font-size: 24px;
}

@media (max-width: 1399px) {
  .getTv_card {
    font-size: 18px;
  }
  .getTv_card img {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .getTv_card {
    font-size: 14px;
    line-height: 15px;
  }
}

.educational {
  background-image: url("../../assets/images/participationprocess.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.educational h3 {
  font-size: 67px;
  margin-bottom: 30px;
  font-family: 'Proxima Nova Rg';
  font-weight: 700;
  color: #FEE6BC;
}

.educational_formBox {
  background-color: #fff;
  height: 500px;
  border-radius: 25px;
}

@media (max-width: 1399px) {
  .educational h3 {
    font-size: 20px;
  }
}

.top_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  text-align: center;
  background-color: #fff5e4;
  width: 55px;
  height: 55px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: background-color .3s, 
 opacity .5s, visibility .5s;
  transition: background-color .3s, 
 opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 1px solid #fff5e4;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.top_scroll img {
  margin: 0 auto;
}

.top_scroll:hover {
  cursor: pointer;
  background-color: #fff;
  border-color: #1e9abe;
}

.top_scroll:active {
  background-color: #1e9abe;
}

.top_scroll.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .top_scroll {
    width: 40px;
    height: 40px;
  }
  .top_scroll img {
    width: 12px;
  }
}
/*# sourceMappingURL=style.css.map */