/*
author         Media SAT
author URL     https://www.mediasat.ro
copyright      Copyright (C) Media SAT. Toate drepturile rezervate.
*/

/*  sectiuni
  ----------------------------------------------------------------------
  
  1. reset
  2. container
  3. header
  4. hero
  5. clase custom
  6. continut variabil
  7. footer

*/

/* ----------------------------------------------------------------------
  1. reset
---------------------------------------------------------------------- */

/*  variabile
---------------------------------------------------------------------- */

:root {
  /* colors */
  --color-main: #00B2FF;
  --color-dark: #131D2F;
  --color-border: #E8E8E8;
  --color-light-bg: #F8F8F8;
  --color-grey: #999999;
  --color-dark-bg: #2E2E2E;
  --color-white: #FFFFFF;
  --color-black: #171717;

  /* border-radius */
  --border-radius: .25rem;

  /* shadows */
  --box-shadow: 0 3px 6px rgba(19, 29, 47, .27);
  --text-shadow: 0 3px 3px rgba(19, 29, 47, .27);
  --card-shadow: 0 .5rem 1rem rgba(19, 29, 47, .27);

  /* effects */
  --transition-effect: all .3s ease-out 0s;
}

/*  bootstrap overrides
---------------------------------------------------------------------- */

/* text */
p.lead {
  font-weight: 400;
}

/* buttons */
.btn {
  padding: 1.2rem 2.3rem 1.1rem;
  border-radius: 2.3rem;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  border-color: transparent;
  transition: var(--transition-effect);
  box-shadow: var(--box-shadow);
}
.btn:hover,
.btn:focus {
  border-color: transparent;
  box-shadow: none;
}
.btn.btn-primary {
  background-color: var(--color-main);
  color: var(--color-white);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: var(--color-dark);
  box-shadow: none;
}
.btn.btn-dark {
  background-color: var(--color-dark);
}
.btn.btn-dark:hover {
  background-color: var(--color-black);
} 

/* breadcrumbs */
ol.breadcrumb {
  margin-bottom: 0;
}
ol.breadcrumb li a,
.breadcrumb-item.active {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
ol.breadcrumb li a:hover,
ol.breadcrumb li a:focus {
  color: var(--color-main);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-main);
}


/*  typography
---------------------------------------------------------------------- */

/* links */
a, a:hover, a:focus {
  color: var(--color-main);
  transition: var(--transition-effect);
  text-decoration: none;
  cursor: pointer;
}
a:active,
a:hover {
  outline: none;
}

/* text */
p {
  line-height: 1.7;
}
p:last-of-type {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------------
  2. container
---------------------------------------------------------------------- */

#mdst-containerwrap {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* 
---  pagefold homepage
*/

#mdst-pagefold {
  background-image: url("../img/pagefold-bg.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
}

.home #mdst-pagefold {
  background-image: url("../img/pagefold-bg.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

  /* xx-large devices (larger desktops, 1920px and up) */
  @media (min-width: 1920px) {
    .home #mdst-pagefold {
      /*background-size: 100% 640px;*/
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    }

    #mdst-pagefold {
      /*background-size: 100% 640px;*/
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    }

  }

  /* x-large devices (large desktops, less than 1400px) */
  @media (max-width: 1399.98px) {
    

    #mdst-pagefold {
      background-image: url("../img/pagefold-bg1400.jpg");
      -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    }

    .home #mdst-pagefold {
      background-image: url("../img/pagefold-bg1400.jpg");
      -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    }

  }

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    .home #mdst-pagefold {
      background-image: url("../img/pagefold-bg1200.jpg");
      background-repeat: no-repeat;
      -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    }

    #mdst-pagefold {
      background-image: url("../img/pagefold-bg1200.jpg");
      background-repeat: no-repeat;
      -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    }

  }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-pagefold {
      background-image: none;
    }
  }

/* ----------------------------------------------------------------------
  3. header
---------------------------------------------------------------------- */

#mdst-headerwrap {
  background-image: url("../img/header-bg.jpg");
  background-repeat: no-repeat;
}

  /* xx-large devices (larger desktops, 1920px and up) */
  @media (min-width: 1920px) {
    #mdst-headerwrap {
      background-size: 100% 128px;
    }
  }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-headerwrap {
      background-image: none;
    }
  }

  /* x-large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    #mdst-header {
      padding-top: 1.6rem;
      padding-bottom: 1.3rem;
    }
  }

/* 
---  header on homepage
*/

/* no background for header if on homepage */
#mdst-headerwrap.mdst-headerwrap-homepage {
  background-image: none;
}

/* 
---  logo
*/

#mdst-logo {
  padding-top: .5rem;
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    #mdst-logo {
      padding-bottom: .5rem;
    }
  }

/* 
---  navigation
*/

#mdst-header li.nav-item a {
  padding: .3rem 0;
  margin: 0 1rem;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--color-white);
  position: relative;
  font-weight: 600;
  text-shadow: var(--text-shadow);
}
#mdst-nav .dropdown-toggle::after,
#mdst-nav .mdst-submenu-link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-style: normal;
  color: var(--color-main);
  font-size: 1rem;
  border: 0 none;
  margin-left: .4rem;
  vertical-align: baseline;
  line-height: 0;
  text-shadow: none;
}
#mdst-nav .mdst-submenu-link::after {
  content: "\f105";
  margin-left: 1rem;
  vertical-align: middle;
}

  /* x-large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {

    /* secondary */
    #mdst-nav-secondary li.nav-item a {
      text-transform: none;
    }
    #mdst-nav-secondary li.nav-item:last-child a {
      margin-right: 0;
    }
    #mdst-nav-secondary li.nav-item a i[class^="fa"],
    #mdst-nav-secondary li.nav-item a i[class*=" fa"] {
      color: var(--color-main);
      margin-right: .5rem
    }

    /* language switcher */
    #mdst-nav-langswitch li.nav-item a {
      position: absolute;
      top: -.5rem;
      right: .7rem;
      margin: 0;
      padding: 0;
    }
    #mdst-nav-langswitch li.nav-item a:hover,
    #mdst-nav-langswitch li.nav-item a:focus {
      color: var(--color-main);
    }

  }

  /* large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    #mdst-header #mdst-nav li.nav-item a::before,
    #mdst-header #mdst-nav-secondary li.nav-item a::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 2px;
      top: 100%;
      left: 0;
      background: var(--color-main);
      transition: transform 0.5s;
      transform: scaleX(0);
      transform-origin: right;
    }
    #mdst-header #mdst-nav li a.nav-link.active::before,
    #mdst-header #mdst-nav li.nav-item a:hover::before,
    #mdst-header #mdst-nav-secondary li a.nav-link.active::before,
    #mdst-header #mdst-nav-secondary li.nav-item a:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* submenu */
    #mdst-nav .dropdown-menu {
      background-color: var(--color-dark);
      padding: .2rem 0 0 0;
      border: 1px solid #223353;
      box-shadow: var(--box-shadow);
    }
    #mdst-nav .dropdown-menu li {
      position: relative;
    }
    #mdst-nav .dropdown-menu a.dropdown-item {
      margin: 0;
      padding: .7rem 1rem;
      border-bottom: 2px solid #223353;
    }
    #mdst-nav .dropdown-menu a.dropdown-item:hover,
    #mdst-nav .dropdown-menu a.dropdown-item:focus,
    #mdst-nav .dropdown-menu a.dropdown-item:active,
    #mdst-nav .dropdown-menu a.dropdown-item.active {
      color: var(--color-main);
      background-color: var(--color-dark);
    }
    #mdst-nav .mdst-submenu {
      display: none;
      position: absolute;
      left: 100%;
      top: -1px;
      padding-top: 0;
    }
    #mdst-nav .dropdown-menu > li.dropdown:hover > .mdst-submenu {
      display: block;
    }
  }

/* mobile */
#mdst-header .navbar {
  padding-top: 0;
}
#mdst-header .navbar-toggler {
  padding: .15rem .3rem;
}
#mdst-header .navbar-toggler:focus {
  box-shadow: none;
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    #mdst-header #mdst-nav {
      margin-left: auto !important;
    }
    #mdst-header #mdst-nav-secondary {
      margin-left: 0 !important;
    }
    #mdst-header .navbar-collapse #mdst-nav-secondary li.nav-item a i[class^="fa"],
    #mdst-header .navbar-collapse #mdst-nav-secondary li.nav-item a i[class*=" fa"] {
      display: none;
    }
    #mdst-header li.nav-item a {
      margin: 0 .5rem;
    }
    #mdst-header .navbar {
      padding-bottom: 0;
    }
  }

  /* large devices (desktops, less than 1100px) */
    @media (max-width: 1099.98px) {
      #mdst-header li.nav-item a {
        margin: 0 .3rem;
      }
    }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-headerwrap {
      background-color: var(--color-white);
    }
    #mdst-headerwrap .container-fluid {
      padding: 0
    }
    #mdst-header .navbar-toggler{
      border: 0 none;
    }
    #mdst-header .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.97%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    #mdst-header .navbar-collapse {
      border-top: 1px solid var(--color-border);
      padding-top: .5rem;
      padding-bottom: .5rem;
    }
    #mdst-header li.nav-item a {
      font-size: .85rem;
      color: var(--color-black);
      margin: 0;
      padding: .5rem 1rem .5rem 0;
      text-shadow: none;
    }
    #mdst-header li.nav-item a.nav-link.active,
    #mdst-header li.nav-item a:hover,
    #mdst-header li.nav-item a:focus {
      color: var(--color-main);
    }

    /* submenu */
    #mdst-nav .dropdown-toggle::after,
    #mdst-nav .mdst-submenu-link::after {
      font-size: .8rem;
      margin-left: .3rem;
    }
    #mdst-header .navbar-nav .dropdown-menu {
      margin-bottom: .2rem;
      padding: 0;
      border: 1px solid var(--color-border);
      box-shadow: var(--box-shadow);
    }
    #mdst-header .navbar-nav .dropdown-menu a.dropdown-item {
      padding: .7rem .8rem .6rem;
      border-bottom: 1px solid var(--color-border);
    }
    #mdst-header .navbar-nav .dropdown-menu a.dropdown-item:hover,
    #mdst-header .navbar-nav .dropdown-menu a.dropdown-item:focus,
    #mdst-header .navbar-nav .dropdown-menu a.dropdown-item:active,
    #mdst-header .navbar-nav .dropdown-menu a.dropdown-item.active {
      background-color: var(--color-white);
      color: var(--color-main);
    }
    #mdst-nav .dropdown-menu.mdst-submenu {
      margin: 0;
      padding: 0;
      display: block;
      border: 0 none;
      border-radius: 0;
      box-shadow: none;
    }
    #mdst-nav .dropdown-menu.mdst-submenu li a.dropdown-item {
      padding-left: 1.6rem;
      border-bottom: 1px solid var(--color-border);
    }
  }

/* ----------------------------------------------------------------------
  4. hero
---------------------------------------------------------------------- */

#mdst-hero {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 10rem;
}
#mdst-hero h1#mdst-hero-title {
  margin-bottom: 1rem;
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 7.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: var(--box-shadow);
}
#mdst-hero p#mdst-hero-lead {
  margin-bottom: 3.6rem;
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
  text-shadow: var(--text-shadow);
}

  /* x-large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    #mdst-hero p#mdst-hero-lead {
      width: 40%;
    }
  }

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    #mdst-hero {
      padding-top: 3rem;
      padding-bottom: 7rem;
      -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    }
    #mdst-hero h1#mdst-hero-title {
      font-size: 5rem;
      margin-bottom: 0;
    }
    #mdst-hero p#mdst-hero-lead {
      margin-bottom: 3rem;
    }
  }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-hero {
      padding-top: 6rem;
      padding-bottom: 9rem;
      background-image: url("../img/pagefold-bg1000.jpg");
      background-repeat: no-repeat;
      -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    }
    #mdst-hero p#mdst-hero-lead {
      font-size: 1rem;
      margin-bottom: 2rem;
    }
  }

  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    #mdst-hero h1#mdst-hero-title {
      font-size: 4rem;
      margin-bottom: .5rem;
    }
  }

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    #mdst-hero {
      background-image: url("../img/pagefold-bg600.jpg");
      padding-top: 5rem;
      padding-bottom: 7rem;
    }
    #mdst-hero h1#mdst-hero-title {
      font-size: 3.75rem;
    }
    #mdst-hero p#mdst-hero-lead {
      font-size: 1.1rem;
      font-weight: 400;
    }
  }


/* ----------------------------------------------------------------------
  5. clase custom
---------------------------------------------------------------------- */

/*  text
---------------------------------------------------------------------- */

.mdst-heading-title h2 {
  margin-bottom: 3.6rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

  /* x-large devices (large desktops, less than 1400px) */
  @media (max-width: 1399.98px) {
    .mdst-heading-title h2 {
      font-size: 2.5rem;
    } 
  }

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-heading-title h2 {
      margin-bottom: 2rem;
      font-size: 2rem;
    }
  }

.mdst-text-color {
  color: var(--color-main);
}

/*  descriere pagina
---------------------------------------------------------------------- */

.mdst-descriere-pagina {
  background-color: var(--color-main);
  color: var(--color-white);
  padding-top: 2.7rem;
  padding-bottom: 3rem;
}
.mdst-descriere-pagina h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0;
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    .mdst-descriere-pagina {
      padding-top: 1.7rem;
      padding-bottom: 1.7rem;
    }
    .mdst-descriere-pagina h2 {
      font-size: 1.5rem;
    }
  }

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-descriere-pagina {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }
    .mdst-descriere-pagina h2 {
      font-size: 1.125rem;
    }
  }

/*  separator
---------------------------------------------------------------------- */

/* sep */
.mdst-sep {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--color-border);
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .mdst-sep {
      margin-top: 4rem;
      padding-top: 4rem;
    }
  }
  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-sep {
      margin-top: 3rem;
      padding-top: 3rem;
    }
  }

/* sep first */
.mdst-sep-first {
  padding-top: 6rem;
  border-top: 1px solid var(--color-border);
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .mdst-sep-first {
      padding-top: 4rem;
    }
  }
  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-sep-first {
      padding-top: 3rem;
    }
  }

/* sep last */
.mdst-sep-last {
  margin-top: 6rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-top: 1px solid var(--color-border);
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .mdst-sep-last {
      margin-top: 4rem;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
  }
  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-sep-last {
      margin-top: 3rem;
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
  }

/*  content
---------------------------------------------------------------------- */

.mdst-content .row {
  align-items: center;
  margin-bottom: 2rem;
}
.mdst-content .row:last-of-type {
  margin-bottom: 0;
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    .mdst-content .row > .col-xl-6 {
      margin-bottom: 2rem;
    }
    .mdst-content .row > .col-xl-6:last-of-type {
      margin-bottom: 0;
    }
  }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .mdst-content .row > [class^="col"],
    .mdst-content .row > [class*=" col"] {
      margin-bottom: 2rem;
    }
    .mdst-content .row > [class^="col"]:last-of-type,
    .mdst-content .row > [class*=" col"]:last-of-type {
      margin-bottom: 0;
    }
  }

/* title */
.mdst-content-title {
  margin-bottom: 1.5rem;
}
.mdst-content-title h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}
.mdst-content-title h3 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.mdst-content-title h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}
.mdst-content-title h6 {
  font-size: .875rem;
}

  /* x-large devices (large desktops, less than 1400px) */
  @media (max-width: 1399.98px) {
    .mdst-content-title h2 {
      font-size: 2.5rem;
    } 
  }

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-content-title h2 {
      margin-bottom: 1rem;
      font-size: 2.25rem;
      line-height: 1.2;
    }
  }

/* text */
.mdst-content p.lead {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.875;
}
.mdst-content p.lead:last-of-type {
  margin-bottom: 0;
}

/* button */
.mdst-content .mdst-btn {
  margin-top: 2rem;
}

/* icons */
.mdst-content-icon-box {
  margin-bottom: 2rem;
}
.mdst-content-icon-box:last-of-type {
  margin-bottom: 0;
}
.mdst-content-icon i[class^="fa"],
.mdst-content-icon i[class*=" fa"] {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 1.5rem;
  margin-right: 1rem;
  font-size: 1.5rem;
  width: 4.7rem;
  text-align: center;
  border-radius: 100%;
  box-shadow: var(--box-shadow);
}
.mdst-content-icon-title h5 {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

/* icons check */
.mdst-content-icon-check-box {
  margin-bottom: 1.5rem;
}
.mdst-content-icon-check-box:last-of-type {
  margin-bottom: 0;
}
.mdst-content-icon-check-box .mdst-content-icon-title h5 {
  font-weight: 400;
  font-size: 1rem;
}
.mdst-content-icon-check i[class^="fa"],
.mdst-content-icon-check i[class*=" fa"] {
  background-color: var(--color-white);
  color: var(--color-main);
  border: 1px solid var(--color-border);
  padding: 1rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-align: center;
  border-radius: 100%;
}

/*  card
---------------------------------------------------------------------- */

.mdst-card-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}
.mdst-card-box:hover {
  box-shadow: var(--card-shadow);
  transition: var(--transition-effect);
}

  /* large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    .mdst-card .row:last-of-type .mdst-card-box {
      margin-bottom: 0;
    }
  }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .mdst-card .row:last-of-type .d-flex:last-of-type .mdst-card-box {
      margin-bottom: 0;
    }
  }

/* icon */
.mdst-card-icon {
  margin-right: auto !important;
  margin-left: auto !important;
  margin-top: 1rem;
  margin-bottom: 2rem;
  width: 10rem;
  height: 10rem;
  padding: 2rem;
  font-size: 3.75rem;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 100%;
  box-shadow: var(--box-shadow);
}
.mdst-card-icon i {
  vertical-align: middle;
}

/* image */
.mdst-card-img {
  margin-bottom: 2.2rem;
}

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-card-img {
      margin-bottom: 1.5rem;
    }
  }

/* title */
.mdst-card-title h2 {
  margin-bottom: 3.3rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.mdst-card-title h3 {
  margin-bottom: .7rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.mdst-card-title h4 {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .mdst-card-title h2 {
      margin-bottom: 2rem;
      text-align: center;
    }
  }

/* ----------------------------------------------------------------------
  6. continut variabil
---------------------------------------------------------------------- */

/*  breadcrumbs
---------------------------------------------------------------------- */

#mdst-breadcrumbs {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-breadcrumbs {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  }

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    #mdst-breadcrumbs {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }
  }

/*  homepage
---------------------------------------------------------------------- */

/* stiri */
#mdst-stiri {
  margin-top: 1.75rem;
}

/* noi in cifre */
#mdst-cifre {
  background-color: var(--color-main);
  color: var(--color-white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
#mdst-cifre.mdst-sep {
  border: 0 none;
}
#mdst-cifre h4 {
  font-size: 2.25rem;
  font-weight: 700;
}
#mdst-cifre p {
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* servicii */
#mdst-servicii.mdst-sep {
  margin: 0;
  border: 0 none;
}
#mdst-servicii .mdst-card-box {
  padding: 3rem 3rem 2.5rem;
}

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    #mdst-servicii .mdst-card-box {
      padding: 2rem 2rem 1.5rem;
    }
  }

#mdst-servicii .mdst-card-title h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

/* galerie logo */
.mdst-galerie-logo.mdst-card {
  text-align: center;
}
.mdst-galerie-logo .mdst-card-box {
  padding: 0;
  border: 0 none;
}
.mdst-galerie-logo .mdst-card-box:hover {
  box-shadow: none;
}
.mdst-galerie-logo .mdst-card-img {
  margin-bottom: 1rem;
}

/*  compania
---------------------------------------------------------------------- */

/* despre noi */
#mdst-compania-desprenoi .mdst-content-title {
  margin-bottom: 2.5rem;
}

/* anisp si certificare */
#mdst-compania-anisp h4,
#mdst-compania-certificari h4 {
  margin-bottom: 2rem;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
}

/*  internet
---------------------------------------------------------------------- */

/* satelit */
#mdst-internet-satelit .mdst-content-title h3,
#mdst-internet-satelit-info .mdst-content-title h3,
#satellite-internet-connection-euro-broadband .mdst-content-title h3,
#satellite-internet-connection-euro-broadband-info .mdst-content-title h3 {
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

/* data center */
#mdst-internet-datacenter .mdst-card-box,
#data-center .mdst-card-box {
  padding: 0;
  border: 0 none;
}
#mdst-internet-datacenter .mdst-card-box:hover,
#data-center .mdst-card-box:hover {
  box-shadow: none;
}
#mdst-internet-datacenter-facilitati h4,
#mdst-internet-datacenter-servicii h4 {
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

/* 
---  abonamente 
*/

#mdst-internet-abonamente .mdst-content-title,
#euro-broadband-subscriptions .mdst-content-title {
  margin-bottom: 4.7rem;
}

  /* x-large devices (large desktops, less than 1400px) */
  @media (max-width: 1399.98px) {
    #mdst-internet-abonamente .mdst-content-title,
    #euro-broadband-subscriptions .mdst-content-title {
      margin-bottom: 3rem;
    }
  }

#mdst-internet-abonamente .mdst-card-list,
#euro-broadband-subscriptions .mdst-card-list {
  margin-bottom: 0;
}
#mdst-internet-abonamente .mdst-card-box,
#euro-broadband-subscriptions .mdst-card-box {
  padding: 0;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-internet-abonamente .mdst-card-box,
    #euro-broadband-subscriptions .mdst-card-box {
      margin-bottom: 0;
    }
  }

#mdst-internet-abonamente .mdst-internet-abonamente-pret,
#euro-broadband-subscriptions .mdst-internet-abonamente-pret {
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 700;
  padding-top: .85rem;
  padding-bottom: .85rem;
}

/* th */
.mdst-internet-abonamente-th .mdst-card-box:hover {
  box-shadow: none;
  transition: none;
}
.mdst-internet-abonamente-th .mdst-card-title {
  padding-top: 3rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-border);
}
.mdst-internet-abonamente-th .mdst-card-title h4 {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}
.mdst-internet-abonamente-th .mdst-card-list li {
  padding: 1.3rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
}
.mdst-internet-abonamente-th .mdst-card-list li:last-child {
  border: 0 none;
}
.mdst-internet-abonamente-th li.mdst-card-list-compact {
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.mdst-internet-abonamente-th-li {
  font-size: 0.875rem;
  font-weight: 700;
}

/* td */
.mdst-internet-abonamente-td .mdst-card-box:hover,
.mdst-internet-abonamente-td .mdst-card-box.mdst-active {
  box-shadow: 0 0 0 .3rem var(--color-main);
}
.mdst-internet-abonamente-td .mdst-card-title {
  padding-top: 2rem;
  padding-bottom: 3.1rem;
  border-bottom: 1px solid var(--color-border);
}
.mdst-internet-abonamente-td .mdst-card-title h4 {
  font-size: 1.5rem;
  padding: 1rem 2rem 0;
}
.mdst-internet-abonamente-td .mdst-card-list li {
  padding: 1.11rem 2rem;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--color-border);
}
.mdst-internet-abonamente-td .mdst-card-list li:last-child{
  border: 0 none;
}

  /* x-large devices (large desktops, less than 1400px) */
  @media (max-width: 1399.98px) {
    .mdst-internet-abonamente-td .mdst-card-list li {
      padding: .8rem 2rem .6rem;
    }
  }

/* tr */
.mdst-internet-abonamente-tr .mdst-card-box:hover {
  box-shadow: none;
}
.mdst-internet-abonamente-tr li {
  padding-top: .835rem;
  padding-bottom: .835rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
}
.mdst-internet-abonamente-tr .mdst-card-list li:last-child{
  border: 0 none;
}

/* 
---  parteneri
*/

/* title */
#mdst-internet-parteneri .mdst-content-title,
#partners .mdst-content-title {
  margin-bottom: 5rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-internet-parteneri .mdst-content-title,
    #partners .mdst-content-title  {
      margin-bottom: 2rem;
    }
  }

#mdst-internet-parteneri .mdst-content-title h3,
#partners .mdst-content-title h3 {
  margin-bottom: 1rem;
}
#mdst-internet-parteneri .mdst-content-title h6,
#partners .mdst-content-title h6 {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* dropdown orase */
#mdst-internet-parteneri .mdst-dropdown-btn,
#partners .mdst-dropdown-btn {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-border);
  width: 100%;
  box-shadow: none;
  text-align: left;
  padding: .5rem 1.5rem;
  text-transform: none;
  font-size: 1.35rem;
  font-weight: 600;
}
#mdst-internet-parteneri .mdst-dropdown-btn.dropdown-toggle::after,
#partners .mdst-dropdown-btn.dropdown-toggle::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1rem;
  margin: 0;
  padding: 1.1rem 1.5rem 1rem;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-main);
  color: var(--color-white);
  text-align: center;
  pointer-events: none;
  border: 0 none;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
#mdst-internet-parteneri .mdst-dropdown ul.dropdown-menu,
#partners .mdst-dropdown ul.dropdown-menu {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-border);
  width: 100%;
}
#mdst-internet-parteneri .mdst-dropdown a.dropdown-item,
#partners .mdst-dropdown a.dropdown-item {
  padding: .5rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
#mdst-internet-parteneri .mdst-dropdown a.dropdown-item:hover,
#mdst-internet-parteneri .mdst-dropdown a.dropdown-item:focus,
#partners .mdst-dropdown a.dropdown-item:hover,
#partners .mdst-dropdown a.dropdown-item:focus {
  background-color: transparent;
  color: var(--color-main);
}

/* harta */
#mdst-internet-parteneri-harta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
#mdst-internet-parteneri-harta object {
  width: 100%;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-internet-parteneri-harta {
      margin-top: 1rem;
      margin-bottom: 2rem;
    }
  }

/* rezultate tabel */
#mdst-internet-parteneri-rezultate > .mdst-card-box {
  margin: 0;
}
#mdst-internet-parteneri-rezultate .mdst-card-box {
  padding: 0;
}
#mdst-internet-parteneri-table.mdst-card-box {
  text-align: left;
}
#mdst-internet-parteneri-table table.table {
  margin-bottom: 0;
}
#mdst-internet-parteneri-table table.table tr {
  font-weight: 600;
}
#mdst-internet-parteneri-table table.table,
#mdst-internet-parteneri-table table.table > :not(:last-child) > :last-child > * {
  border-color: var(--color-border);
}
#mdst-internet-parteneri-table table.table > :not(caption) > * > * {
  padding: 1rem 1.5rem;
}
#mdst-internet-parteneri-table table.table tbody tr:last-child th,
#mdst-internet-parteneri-table table.table tbody tr:last-child td {
  border-bottom: 0 none;
}
#mdst-internet-parteneri-table table.table thead th {
  vertical-align: middle;
}

/* rezultate tabel mobile */ 
.mdst-internet-parteneri-table-mobile {
  border-bottom: 1px solid var(--color-border);
  padding: .7rem 1rem .5rem;
}
.mdst-internet-parteneri-table-mobile:first-of-type {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.mdst-internet-parteneri-table-mobile:last-of-type {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-bottom: 0 none;
}
.mdst-internet-parteneri-table-mobile:first-of-type,
.mdst-internet-parteneri-table-mobile:hover,
.mdst-internet-parteneri-table-mobile:focus {
  background: var(--color-main);
  color: var(--color-white);
}
.mdst-internet-parteneri-table-mobile:hover a,
.mdst-internet-parteneri-table-mobile:focus a {
  color: var(--color-white);
  text-decoration: underline;
}
.mdst-internet-parteneri-table-mobile h4 {
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.mdst-internet-parteneri-table-mobile p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
}


/*  telefonie
---------------------------------------------------------------------- */

/* 
---  abonamente
*/

.mdst-telefonie-abonamente .mdst-card-box {
  padding: 0;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .mdst-telefonie-abonamente .mdst-card-box {
      margin-bottom: 0;
    }
  }

#mdst-telefonie-abonamente .mdst-content-title {
  margin-bottom: 3rem;
}
.mdst-telefonie-abonamente .mdst-card-box:hover,
.mdst-telefonie-abonamente .mdst-card-box.mdst-active {
  box-shadow: 0 0 0 .3rem var(--color-main);
}
.mdst-telefonie-abonamente .mdst-card-box.mdst-active .mdst-card-title h4 {
  color: var(--color-main);
}
.mdst-telefonie-abonamente .mdst-card-title {
  padding-top: 3rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}
.mdst-telefonie-abonamente .mdst-card-title h4 {
  font-size: 1.5rem;
}
.mdst-telefonie-abonamente .mdst-card-title p {
  margin-bottom: .8rem;
}
.mdst-telefonie-abonamente .mdst-telefonie-abonamente-pret {
  padding-bottom: 2.5rem;
}
.mdst-telefonie-abonamente .mdst-telefonie-abonamente-pret h5 {
  font-size: 3.75rem;
  font-weight: 700;
}
.mdst-telefonie-abonamente .mdst-telefonie-abonamente-pret p {
  font-size: 1.125rem;
}

/* 
---  tarife
*/

#mdst-telefonie-fixa-tarife .row,
#mdst-telefonie-greenline-tarife .row {
  align-items: center;
}
#mdst-telefonie-fixa-tarife .mdst-card-box,
#mdst-telefonie-greenline-tarife .mdst-card-box {
  padding: 0;
  text-align: left;
}
#mdst-telefonie-fixa-tarife .mdst-card-box:hover {
  box-shadow: none;
}
#mdst-telefonie-fixa-tarife .mdst-card-title,
#mdst-telefonie-greenline-tarife .mdst-card-title {
  margin-bottom: 1.3rem;
}

  /* medium devices (tablets, 768px and up) */
  @media (min-width: 768px) {
    #mdst-telefonie-fixa-tarife .mdst-card-box,
    #mdst-telefonie-greenline-tarife .mdst-card-box {
      max-width: 747px;
    }
  }

.mdst-telefonie-tarife-tr {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
}
.mdst-telefonie-tarife-tr:last-of-type {
  border-bottom: 0 none;
}
.mdst-telefonie-tarife-tr h5 {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
}
.mdst-telefonie-tarife-info h4 {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
}
.mdst-telefonie-tarife-tr label,
.mdst-telefonie-tarife-tr span {
  color: var(--color-black);
  font-weight: 700;
}
.mdst-telefonie-tarife-tr input.form-control {
  max-width: 5rem;
  border: 0 none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  padding: .3rem .75rem;
}

/* calculator */
#mdst-telefonie-tarife-calculator a.dropdown-toggle {
  /*margin-left: 1rem;*/
  padding-left: 1.5rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-grey);
}
#mdst-telefonie-tarife-calculator a.dropdown-toggle::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-style: normal;
  border: 0 none;
  color: var(--color-main);
  font-size: 1.125rem;
  width: auto;
  height: auto;
  margin-left: 1rem;
  vertical-align: 0;
}
#mdst-telefonie-tarife-calculator .dropdown-menu {
  border: 1px solid var(--color-border);
  border-radius: 0;
}
#mdst-telefonie-tarife-calculator .dropdown-menu li a {
  font-size: 1rem;
  font-weight: 600;
}
#mdst-telefonie-tarife-calculator .dropdown-menu li a:hover,
#mdst-telefonie-tarife-calculator .dropdown-menu li a:focus {
  background-color: transparent;
  color: var(--color-main);
}
#mdst-telefonie-tarife-calculator .mdst-telefonie-tarife-tr {
  border: 0 none;
}

  /* medium devices (tablets, 768px and up) */
  @media (min-width: 768px) {
    #mdst-telefonie-tarife-calculator.mdst-card-box {
      max-width: 60rem;
    }
  }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-telefonie-tarife-calculator.mdst-card-box {
      padding: 0;
    }
    #mdst-telefonie-tarife-calculator .mdst-telefonie-tarife-tr {
      padding: 1rem 1.5rem;
    }
  }

/* 
---  alonia conferinte
*/

  /* x-large devices (large desktops, less than 1400px) */
  @media (max-width: 1399.98px) {
    #mdst-telefonie-alonia-conferinte .mdst-alonia-cta,
    #alonia-business .mdst-alonia-cta {
      text-align: center;
      margin-top: 1rem;
    }
  }
  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-telefonie-alonia-conferinte,
    #alonia-business {
      text-align: center;
    }
  }


/* 
---  alonia abonamente
*/

#mdst-alonia-abonamente .mdst-card-box {
  padding: 5rem 3rem;
}
  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    #mdst-alonia-abonamente .mdst-card-box {
      padding: 3rem;
    }
  }

/* icon */
#mdst-alonia-abonamente .mdst-card-icon {
  background: var(--color-main);
  background: linear-gradient(315deg, hsla(254, 64%, 40%, 1) 10%, hsla(198, 100%, 50%, 1) 90%);
  background: -moz-linear-gradient(315deg, hsla(254, 64%, 40%, 1) 10%, hsla(198, 100%, 50%, 1) 90%);
  background: -webkit-linear-gradient(315deg, hsla(254, 64%, 40%, 1) 10%, hsla(198, 100%, 50%, 1) 90%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#4425A7", endColorstr="#00B2FF", GradientType=1 );
  padding: 2.5rem;
  width: 11.5rem;
  height: 11.5rem;
  border-radius: 2.5rem;
  font-size: 4.125rem;
  align-items: center;
  justify-content:center;
  display: flex;
}
#mdst-alonia-abonamente-premium .mdst-card-icon {
  font-size: 5rem;
}
#mdst-alonia-abonamente .mdst-card-icon i[class^="fa"],
#mdst-alonia-abonamente .mdst-card-icon i[class*=" fa"] {
  text-shadow: var(--text-shadow);
}

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    #mdst-alonia-abonamente .mdst-card-icon {
      margin-bottom: 1rem;
    }
  }

/* title */
#mdst-alonia-abonamente .mdst-card-title {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
#mdst-alonia-abonamente .mdst-card-title h3,
#mdst-alonia-abonamente .mdst-card-title h4 {
  font-size: 2.25rem;
  margin-bottom: 0;
}
#mdst-alonia-abonamente .mdst-card-title h2 {
  color: var(--color-main);
  font-size: 4.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    #mdst-alonia-abonamente .mdst-card-title h2 {
      font-size: 3rem;
      margin-bottom: 0;
    }
  }

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    #mdst-alonia-abonamente .mdst-card-title {
      margin-bottom: 1rem;
    }
  }

/* text */
#mdst-alonia-abonamente .mdst-card-box .mdst-alonia-abonamente-text {
  text-align: left;
}

/* cta */
.mdst-alonia-abonamente-cta {
  margin-top: 4rem;
}

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .mdst-alonia-abonamente-cta {
      margin-top: 2rem;
    }
    .mdst-alonia-abonamente-cta .mdst-btn {
      margin-bottom: 1rem;
    }

  }


/* 
---  alonia info
*/

#mdst-telefonie-alonia-info .mdst-card-box,
#alonia-business-detalii .mdst-card-box,
#alonia-business-details .mdst-card-box {
  text-align: left;
  padding: 0;
}

/* titles */
#mdst-telefonie-accordion-titles {
  padding: 1rem 1.5rem;
}
#mdst-telefonie-accordion-titles .mdst-card-title {
  text-align: center;
}

  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    #mdst-telefonie-accordion-titles .mdst-card-title h3 {
      font-size: 1rem;
    }
    #mdst-telefonie-accordion-titles {
      padding: .5rem 1rem;
    }
  }

/* accordion */
#mdst-telefonie-alonia-info .mdst-telefonie-accordion .row,
#alonia-business-detalii .mdst-telefonie-accordion .row,
#alonia-business-details .mdst-telefonie-accordion .row {
  align-items: center;
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion i[class^="fa"],
#mdst-telefonie-alonia-info .mdst-telefonie-accordion i[class*=" fa"],
#alonia-business-detalii .mdst-telefonie-accordion i[class^="fa"],
#alonia-business-detalii .mdst-telefonie-accordion i[class*=" fa"],
#alonia-business-details .mdst-telefonie-accordion i[class^="fa"],
#alonia-business-details .mdst-telefonie-accordion i[class*=" fa"] {
  color: var(--color-main);
  font-size: 1.125rem;
  vertical-align: middle;
}
#mdst-telefonie-alonia-info .mdst-telefonie-alonia-info-start,
#mdst-telefonie-alonia-info .mdst-telefonie-alonia-info-premium,
#alonia-business-detalii .mdst-telefonie-alonia-info-start,
#alonia-business-detalii .mdst-telefonie-alonia-info-premium,
#alonia-business-details .mdst-telefonie-alonia-info-start,
#alonia-business-details .mdst-telefonie-alonia-info-premium {
  text-align: center;
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion p,
#alonia-business-detalii .mdst-telefonie-accordion p,
#alonia-business-details .mdst-telefonie-accordion p {
  font-size: 1rem;
  font-weight: 600;
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion .accordion-item,
#alonia-business-detalii .mdst-telefonie-accordion .accordion-item,
#alonia-business-details .mdst-telefonie-accordion .accordion-item {
  padding: 0;
  border: 0 none;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion:last-of-type .accordion-item,
#alonia-business-detalii .mdst-telefonie-accordion:last-of-type .accordion-item,
#alonia-business-details .mdst-telefonie-accordion:last-of-type .accordion-item {
  border-bottom: 0 none;
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion .accordion-button,
#alonia-business-detalii .mdst-telefonie-accordion .accordion-button,
#alonia-business-details .mdst-telefonie-accordion .accordion-button {
  padding: 0;
  color: var(--color-black);
  background-color: transparent;
  box-shadow: none;
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f106";
  font-weight: 900;
  font-style: normal;
  background-image: none;
  color: var(--color-main);
  font-size: 1.125rem;
  width: auto;
  height: auto;
  margin-left: 1rem;
}
#alonia-business-detalii .mdst-telefonie-accordion .accordion-button::after,
#alonia-business-details .mdst-telefonie-accordion .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-style: normal;
  background-image: none;
  color: var(--color-main);
  font-size: 1.125rem;
  width: auto;
  height: auto;
  margin-left: 1rem;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion .accordion-header,
#alonia-business-detalii .mdst-telefonie-accordion .accordion-header,
#alonia-business-details .mdst-telefonie-accordion .accordion-header {
  padding: 1rem 1.5rem;
}
#mdst-telefonie-alonia-info .mdst-telefonie-accordion .accordion-body,
#alonia-business-detalii .mdst-telefonie-accordion .accordion-body,
#alonia-business-details .mdst-telefonie-accordion .accordion-body {
  padding: 1rem 1.5rem;
  background-color: var(--color-main);
  color: var(--color-white);
}

  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    #mdst-telefonie-alonia-info .mdst-telefonie-accordion .accordion-header,
    #mdst-telefonie-alonia-info .mdst-telefonie-accordion .accordion-body,
    #alonia-business-detalii .mdst-telefonie-accordion .accordion-header,
    #alonia-business-detalii .mdst-telefonie-accordion .accordion-body,
    #alonia-business-details .mdst-telefonie-accordion .accordion-header,
    #alonia-business-details .mdst-telefonie-accordion .accordion-body {
      padding: .5rem 1rem;
    }
  }

/* tarife */
#mdst-telefonie-accordion-tarife {
  padding: 1rem 1.5rem;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
#mdst-telefonie-accordion-tarife p {
  font-weight: 600;
}

  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    #mdst-telefonie-accordion-tarife {
      padding: .5rem 1rem;
    }
  }


/*  sms
---------------------------------------------------------------------- */

/* payments */
#mdst-sms-payments .mdst-card-box {
  margin-bottom: 0;
}

/* info + servicii */
#mdst-sms-marketing-info .mdst-content-title,
#mdst-sms-marketing-servicii .mdst-content-title,
#mdst-sms-payments-info .mdst-content-title,
#mdst-sms-payments-servicii .mdst-content-title {
  margin-bottom: 2.5rem;
}

/*  call center
---------------------------------------------------------------------- */

/* alonia */
#mdst-callcenter-alonia .mdst-card-title h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-callcenter-alonia {
      text-align: center;
    }
    #mdst-callcenter-alonia .mdst-card-title h3 {
      margin-top: 2rem;
    }
  }

/*  contact
---------------------------------------------------------------------- */

.mdst-contact .mdst-card-box {
  text-align: left;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem !important;
}
.mdst-contact .mdst-card-title i[class^="fa"],
.mdst-contact .mdst-card-title i[class*=" fa"] {
  color: var(--color-main);
  margin-right: .5rem;
}
.mdst-contact .mdst-card-title h2 {
  margin-bottom: 2.2rem;
}
.mdst-contact p {
  margin-bottom: 0;
  line-height: 2;
}
.mdst-contact p a {
  color: var(--color-black);
}

/* contact */
#mdst-contact.mdst-sep-first {
  padding-bottom: 1rem;
  padding-top: 2.5rem;
}

/* harta */
#mdst-contact-harta img {
  box-shadow: var(--box-shadow);
}
#mdst-contact-harta {
  margin-bottom: 4rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-contact-harta {
      margin-bottom: 3rem;
    }
  }

/* formular de contact */
#mdst-formular-contact .mdst-formular-contact-col {
  margin-bottom: 2rem;
}
#mdst-formular-contact .form-control {
  border-color: var(--color-border);
  padding: .5rem .75rem;
}
#mdst-formular-contact-intrebare label {
  font-weight: bold;
}


/*  login
---------------------------------------------------------------------- */
.mdst-login.mdst-sep-last {
  margin: 0;
  padding-top: 0;
  border: 0 none;
}
#mdst-login-alertwrap.mdst-sep-first {
  padding-top: 4rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-login-alertwrap.mdst-sep-first {
      padding-top: 2rem;
    }
  }

.mdst-resetpassword.mdst-sep-last {
  margin: 0;
  padding-top: 0;
  border: 0 none;
}
#mdst-resetpassword-alertwrap.mdst-sep-first {
  padding-top: 4rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-resetpassword-alertwrap.mdst-sep-first {
      padding-top: 2rem;
    }
  }


.mdst-register.mdst-sep-last {
  margin: 0;
  padding-top: 0;
  border: 0 none;
}
#mdst-register-alertwrap.mdst-sep-first {
  padding-top: 4rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-register-alertwrap.mdst-sep-first {
      padding-top: 2rem;
    }
  }

.mdst-comanda.mdst-sep-last {
  margin: 0;
  padding-top: 0;
  border: 0 none;
}
#mdst-comanda-alertwrap.mdst-sep-first {
  padding-top: 4rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-comanda-alertwrap.mdst-sep-first {
      padding-top: 2rem;
    }
  }

.mdst-confirmare.mdst-sep-last {
  margin: 0;
  padding-top: 0;
  border: 0 none;
}
#mdst-confirmare-alertwrap.mdst-sep-first {
  padding-top: 4rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-confirmare-alertwrap.mdst-sep-first {
      padding-top: 2rem;
    }
  }

/* ----------------------------------------------------------------------
  7. footer
---------------------------------------------------------------------- */

#mdst-footerwrap {
  background-color: #131D2F;
  color: #fff;
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

/* title */
#mdst-footer h4.mdst-footer-title {
  color: var(--color-main);
  margin-bottom: 1.7rem;
  font-size: 1.5rem;
  font-weight: 700;
}

/* list */
#mdst-footer ul.mdst-footer-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
#mdst-footer ul.mdst-footer-list li {
  margin-bottom: 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
}
#mdst-footer ul.mdst-footer-list li:last-child {
  margin-bottom: 0;
}
#mdst-footer ul.mdst-footer-list li a {
  color: var(--color-white);
}
#mdst-footer ul.mdst-footer-list li a:hover,
#mdst-footer ul.mdst-footer-list li a:focus {
  color: var(--color-main);
}

/* call center */
#mdst-footer-call-center {
  margin-top: 3rem;
}
#mdst-footer-call-center a {
  color: var(--color-white);
}
#mdst-footer-call-center h4.mdst-footer-title {
  margin-bottom: 1rem;
}
#mdst-footer-call-center .mdst-footer-icon i[class^="fa"],
#mdst-footer-call-center .mdst-footer-icon i[class*=" fa"] {
  font-size: 1.5rem;
}

/* contact */
#mdst-footer h5.mdst-footer-list-title {
  margin-bottom: .5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
}
#mdst-footer ul.mdst-footer-list li.mdst-footer-list-phone {
  margin-bottom: 0;
}
#mdst-footer-vanzari,
#mdst-footer-business,
#mdst-footer-alonia,
#mdst-footer-satelit {
  margin-bottom: 2rem;
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    #mdst-footer-internet,
    #mdst-footer-telefonie1,
    #mdst-footer-sms {
      margin-bottom: 3rem;
    }
  }

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    
    #mdst-footer-business {
      margin-bottom: 0rem;
    }
  }

  /* x-small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    #mdst-footer {
      text-align: center;
    }

    
  }

  @media (max-width: 768px) {
    #mdst-footer-telefonie1 h4.mdst-footer-title {
      margin-bottom: 0;
      height: 20px;
    }

    #mdst-footer-office {
      margin-bottom: 2rem;
    }


  }


/* 
---  copyright
*/

#mdst-copyrightwrap {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

/* text */
#mdst-copyright p.mdst-copyright-text {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 700;
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    #mdst-copyright p.mdst-copyright-text {
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--color-border);
      text-align: center;
    }
  }

/* navigation */
#mdst-copyright ul.mdst-copyright-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
#mdst-copyright ul.mdst-copyright-nav li a {
  margin: 0 .5rem;
  padding: 0 .5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  display: block;
  transition: var(--transition-effect);
}
#mdst-copyright ul.mdst-copyright-nav li a:hover,
#mdst-copyright ul.mdst-copyright-nav li a:focus {
  color: var(--color-main);
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    #mdst-copyright ul.mdst-copyright-nav {
      margin-bottom: 1.5rem;
    }
  }
  
  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    #mdst-copyright ul.mdst-copyright-nav {
      flex-direction: column;
      text-align: center;
    }
    #mdst-copyright ul.mdst-copyright-nav li a {
      padding: .5rem;
    }
  }

/* social media */
#mdst-copyright-socialmedia {
  text-align: right;
}
#mdst-copyright-socialmedia .mdst-social-media {
  margin-left: .5rem;
}
#mdst-copyright-socialmedia .mdst-social-media i[class^="fa"],
#mdst-copyright-socialmedia .mdst-social-media i[class*=" fa"]{
  font-size: 1.5rem;
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    #mdst-copyright-socialmedia {
      text-align: center;
    }
  }

/* 
---  back to top
*/

#mdst-backtotop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99999;
  width: auto;
}

#mdst-backtotop.mdst-btn.btn {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: .5rem 1rem;
  font-size: 1.3rem;
}

  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    #mdst-backtotop {
      position: relative;
      width: 100%;
      padding: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 0;
    }
  }

#mdst-formular-comanda-descriere textarea {
  width: 100%;
  resize: none;
}

#mdst-pagefold{
  height: 112.4px;
}

.home #mdst-pagefold{
  height: auto;
}

#telefonie_tara {
    max-height: 300px;
    overflow: scroll;
}

#mdst-formular-comanda-tip_abonament,
#mdst-formular-comanda-serviciul_dorit {
  position: relative;
}

#mdst-formular-comanda-tip_abonament:after,
#mdst-formular-comanda-serviciul_dorit:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-weight: 900;
  font-style: normal;
  color: #6c757d;
  font-size: 1rem;
  position: absolute;
  right: 20px;
  top: 40px;
  pointer-events: none;
}

#serviciul_dorit, #tip_abonament{
  cursor: pointer;
}

#mdst-telefonie-abonamente .mdst-telefonie-abonamente {
  cursor: pointer;
}

.formulare #formulare ul,
#arhiva-ancom ul,
#ancom-indicatori-de-calitate-administrativi ul {
  list-style-type: none;
}

.servReglemTable td {
    border: 1px solid #ccc;
    border-collapse: collapse;
}

.servReglemTable td:nth-child(2) {
    width: 35%;
}

.insideContentDiv table td {
    padding: 0.33333em 0.55556em;
}

.servReglemTable td:nth-child(1) {
    width: 5%;
    text-align: center;
}

.servReglemTable td:nth-child(3) {
    width: 15%;
    text-align: center;
}

.servReglemTable td:nth-child(4) {
    width: 45%;
}

.formulare #formulare h1,
#arhiva-ancom h1,
#ancom-indicatori-de-calitate-administrativi h1,
.forms #formulare h1
 { 
  background-color: #131D2F;
  color: #fff;
  position: relative;
  font-size: 30px;
  padding: 10px 0 10px 35px;
}

.formulare #formulare h1:before,
.forms #formulare h1:before,
#arhiva-ancom h1:before,
#ancom-indicatori-de-calitate-administrativi h1:before {
  font-family: "Font Awesome 5 Free";
  content: "\f019";
  font-weight: 900;
  font-style: normal;
  color: #6c757d;
  font-size: 1rem;
  position: absolute;
  right: 35px;
  top: 20px;
  pointer-events: none;
  color: #fff;
}

#mdst-internet-abonamente .mdst-internet-abonamente-td:not(:last-child) .mdst-card-box,
#euro-broadband-subscriptions .mdst-internet-abonamente-td:not(:last-child) .mdst-card-box {
  cursor: pointer;
}

#mdst-nav-langswitch {
    position: absolute;
    top: -15px;
    right: 5px;
    margin: 0;
    padding: 0;
}

#mdst-nav-langswitch li a.nav-item {
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    text-shadow: var(--text-shadow);
    text-decoration: none;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
display: block;
}

#mdst-nav-langswitch li a.nav-item.active {
    color: var(--color-white);
}

.separator_lang {
  color: #fff;
line-height: 35px;
font-size: .8rem;
font-weight: 600;
}

/*#harta > svg {
  width: 600px;
  display: block;
  margin: 0 auto;
}*/


#harta text {
  pointer-events: none;
}

#harta path {
  cursor: pointer;
}

#orase_dropdown {
  max-height: 200px;
  overflow: scroll;
  overflow-x: hidden;
}

#mdst-nav-secondary .dropdown-menu {
    background-color: var(--color-dark);
    padding: .2rem 0 0 0;
    border: 1px solid #223353;
    box-shadow: var(--box-shadow);
}

#mdst-nav-secondary .dropdown-menu a.dropdown-item {
    margin: 0;
    padding: .7rem 1rem;
    border-bottom: 2px solid #223353;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--color-white);
    position: relative;
    font-weight: 600;
}

#mdst-nav-secondary .dropdown-menu a.dropdown-item:hover, #mdst-nav-secondary .dropdown-menu a.dropdown-item:focus, #mdst-nav-secondary .dropdown-menu a.dropdown-item:active, #mdst-nav-secondary .dropdown-menu a.dropdown-item.active {
    color: var(--color-main);
    background-color: var(--color-dark);
}

.ban_class {
  pointer-events: none;
  color: red;
}

.email_class {
  pointer-events: none;
}

.paginate_button.current {
  color: #333 !important;
  border: 1px solid #979797;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
  background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
}

.paginate_button.disabled{
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: .5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    *cursor: hand;
    color: #333 !important;
    border: 1px solid transparent;
    border-radius: 2px;
}

.paginate_button:hover {
    color: #fff !important;
    border: 1px solid #111;
    background-color: #585858;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
    background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
    background: -moz-linear-gradient(top, #585858 0%, #111 100%);
    background: -ms-linear-gradient(top, #585858 0%, #111 100%);
    background: -o-linear-gradient(top, #585858 0%, #111 100%);
    background: linear-gradient(to bottom, #585858 0%, #111 100%);
}

.paginate_button.disabled:hover {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.paginate_button.current:hover {
  color: #333 !important;
  border: 1px solid #979797;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
  background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
  background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
}


@media (max-width: 768px) {

    .mesaj_stornare {
      display: none;
    }

}

input.cmn-toggle-round + label {
    padding: 2px;
    width: 36px;
    height: 18px;
    background-color: #dddddd;
    border-radius: 18px;
}

.cmn-toggle + label {
    display: block !important;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

input.cmn-toggle-round:checked + label::before {
    background-color: #8ce196;
}

input.cmn-toggle-round:checked + label::after {
    margin-left: 18px;
}

input.cmn-toggle-round + label::before {

    right: 1px;
    background-color: #f1f1f1;
    border-radius: 18px;
    transition: background 0.4s;

}

#politica-de-cookies .cmn-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

#politica-de-cookies .ce_text.insideContentDiv table{
  width: 100%;
}

input.cmn-toggle-round + label::before, input.cmn-toggle-round + label::after {
    display: block !important;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
}

input.cmn-toggle-round + label::after {

    width: 17px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: margin 0.4s;

}


@media (max-width: 991.98px) {

  #mdst-nav-secondary .navbar-nav .dropdown-menu {
    margin-bottom: .2rem;
    padding: 0;
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow);
  }

  #mdst-nav-secondary .dropdown-menu {
    background-color: #fff;
  }

  #mdst-nav-secondary .dropdown-menu a.dropdown-item {
    font-size: .85rem;
    color: var(--color-black);
    margin: 0;
    padding: .5rem 1rem .5rem 0;
    text-shadow: none;
  }

}

.insideContentDiv.cookie_bar {
    background-color: #1579db !important;
    min-height: 80px !important;
    position: fixed;
    bottom: 0;
    z-index: 100000;
}

.insideContentDiv.cookie_bar {
    padding: 0.15em 3em 1.0em 3em;
    font-size: 0.88889em;
    width: 100%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.insideContentDiv.cookie_bar .p_cc-cookies {
    color: #fff;
    font-size: 13px;
    line-height: 1.19em;
    padding-top: 30px;
    padding-bottom: 11px;
    text-align: justified;
}

.insideContentDiv.cookie_bar .p_cc-cookies a {
    color: #fff !important;
    text-decoration: underline;
}

.insideContentDiv.cookie_bar .cc-cookies {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.35);
    z-index: 99999;
    text-align: center;
    color: #fff;
}

.insideContentDiv.cookie_bar .cc-cookies a.cc-cookie-admin {
    color: #fff;
    display: inline-block;
    text-decoration: none;
    padding: 0.5em 0.75em;
    border-radius: 3px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.35);
    -o-transition: background 0.5s ease-in;
    -webkit-transition: background 0.25s ease-in;
    -moz-transition: background 0.25s ease-in;
}

.insideContentDiv.cookie_bar .cc-cookies a.cc-cookie-accept {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    background: #7DAF3B;
    padding: 0.5em 0.75em;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.35);
    -o-transition: background 0.5s ease-in;
    -webkit-transition: background 0.25s ease-in;
    -moz-transition: background 0.25s ease-in;
}

.lang-ro.first a {
  padding-right: 4px !important;
}

.lang-en.last a {
  padding-left: 4px !important;
}

@media (max-width: 1400px) {
  #harta {
    display: none;
  }
}

@media (max-width: 1200px) {
  #mdst-nav-langswitch {
    top: 0;
  }

  .navbar-expand-lg .navbar-collapse {
      margin-top: 10px;
  }

  #mdst-nav-langswitch {
    right: 13px;
  }

}

@media (min-width: 992px) {
 
  .navbar-expand-lg .navbar-collapse {
      margin-top: 10px;
  }

}

@media (max-width: 992px) {

  #mdst-nav-langswitch {
    position: relative;
    top: 0;
    right: 0;
  }

  .mesaj_bun_venit {
    color: var(--bs-dark) !important;
  }

}

@media (max-width: 992px) {
  #mdst-nav-langswitch.navbar-nav {
    display: inline-block;
  }

  #mdst-nav-langswitch li a.nav-item, .separator_lang
   {
    color: #999;
  }

  #mdst-nav-langswitch li a.nav-item.active {
    color: #000;
  }

  .lang-ro.first, .separator_lang, .lang-en.last {
    float: left;
  }

  li.nav-item a:focus {
      color: var(--color-main);
  }
}

#mdst-nav-langswitch li a.nav-item.active:hover {
    color: var(--color-main);
}

.forms #formulare ul {
  list-style-type: none;
}


@media (max-width: 768px) {
  #mediasat-compania-prezentare-video video,
  #general-presentation video {
    width: 100%;
  }

  .reports .container,
  .rapoarte .container {
    max-width: none;
  }

  #rapoarte_client_length, #rapoarte_client_info, #rapoarte_client_filter  {
    margin-bottom: 20px;
  }

}

#mdst-nav-langswitch li a.nav-item {
  cursor: context-menu;
}

#mdst-nav-langswitch li a.nav-item.active {
    cursor: pointer;
}

.reports h1,
.rapoarte h1 {
  margin-bottom: 50px;
}

.home_subtitle {
  color: #fff;
}

.form-group{
  margin-bottom: 1.15rem;
}

/*.nav-item.dropdown > a.nav-link {
  pointer-events: none;
}*/

.home #mdst-hero-title,
.home_subtitle {
  font-size: 4.5rem !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: var(--box-shadow);
}

@media (max-width: 1300px) {
  .home #mdst-hero-title,
  .home_subtitle {
    font-size: 3.5rem !important;
  }

}

@media (max-width: 992px) {
  .home #mdst-hero-title,
  .home_subtitle {
    font-size: 2.5rem !important;
  }

}

.mesaj_bun_venit {
  font-size: .7rem;
  color: var(--color-white);
  text-shadow: var(--text-shadow);
  line-height: 35px;
  margin-right: 5px;
}

.mesaj_bun_venit span {
  font-weight: 600;
}

.plati.online .btn.btn-primary,
.online.payments .btn.btn-primary {
    margin-top: 20px;
    border-color: var(--color-main);
}


.plati.online form,
.online.payments form {
    margin-top: 40px;
}

.buton_sepecial_servicii {
  padding: 15px;
  display: inline-block;
  width: 50%;
  margin: 10px auto;
}



.link_special {
  cursor: pointer;
}

.container_imagini_aplicatie_iphone {
  width: 100%;
}

.rand_imagini_aplicatie_iphone {
  display: inline-block;
  width: 24%;
  text-align: center;
}

@media (max-width: 992px) {

  .rand_imagini_aplicatie_iphone {
    width: 49%;
    margin-bottom: 40px;
  }

}

@media (max-width: 450px) {

  .rand_imagini_aplicatie_iphone {
    width: 100%;
    margin-bottom: 30px;
  }

}

.container_video_app {
  text-align: center;
}

.container_video_app video {
  border: 1px solid #000;
}

@media (max-width: 768px) {

  .container_video_app video {
    width: 100%;
  }

  .container_video_app video {
    border: none;
  }

  .container_simplu {
    margin-top: 20px;
  }

  #mdst-internet-abonamente-info {
    margin-top: 20px;
  }

}

.container_simplu {
  margin-top: 50px;
}

#mdst-internet-abonamente-info {
  margin-top: 40px;
}

.butoane_bussiness .mdst-alonia-cta {
  text-align: center;
}

.butoane_bussiness .mdst-alonia-cta a {
  min-width: 138px;
  margin: 0 10px;
}

.butoane_bussiness {
  margin: 40px 0 80px;
}

@media (max-width: 1200px) {

  #mdst-internet-satelit .col-xl-6,
  #satellite-internet-connection-euro-broadband .col-xl-6 {
    width: 50%;
  }

  .poza_kit_satelit img {
    width: 100%;
    margin: 0 auto;
  }

}

@media (max-width: 576px) {

  .poza_kit_satelit img {
    display: none;
  }

  #mdst-internet-satelit .col-xl-6,
  #satellite-internet-connection-euro-broadband .col-xl-6 {
    width: 100%;
  }

}

.drop_buton {
  display: none;
}

@media (max-width: 992px) {

  .mdst-internet-abonamente-td .mdst-card-title {
      padding-top: 0;
      padding-bottom: 1rem;
  }

  .drop_buton {
    display: inline-block;
  }

}

.mdst-internet-abonamente-td .mdst-card-title {
  position: relative;
  z-index: 0;
}

.mdst-internet-abonamente-td {
  position: relative;
  z-index: 0;
}


.mdst-internet-abonamente-td .mdst-card-title .drop_buton::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-style: normal;
    background-image: none;
    color: var(--color-main);
    font-size: 1.125rem;
    margin-left: 1rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--color-main);
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    z-index: 2;
}

.vizzzibil.drop_buton::after {
  content: "\f106" !important;
}


@media (min-width: 992px) {

  .home #mdst-hero-title, .home_subtitle {
    font-size: 60px !important;
  }

  #mdst-hero-lead {
    margin-top: 30px;
  }

}

.container_stai_acasa .lead {
    margin: auto;
    font-size: 1.75rem;
    font-weight: 700;
}


.imagine_euro_brodband img {
  width: 100%;
}

.continut_euro_broadband p {
  width: 100%;
  text-align: justify;
}


@media (min-width: 1200px) {
  .imagine_euro_brodband img {
    max-height: 230px;
    width: auto;
  }
}

@media (max-width: 992px) {
  .imagine_euro_brodband img {
    max-height: 440px;
    width: auto;
  }

  .imagine_euro_brodband {
    text-align: center;
  }
}

@media (max-width: 600px) {

  .imagine_euro_brodband img {
    width: 100%;
  }

}

.mdst-internet-peering .mdst-card-box {
  min-width: 166px;
  min-height: 166px;
  position: relative;
}

.mdst-internet-peering .mdst-card-box .mdst-card-img {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 100px !important;
    left: 50%;
}

/*.scalare {
  scale: 1.5;
}*/

#fap_pagina .fap {
    font-size: 0.85em;
    margin: 0 auto;
}

#fap_pagina .centeredContent {
    text-align: center;
}

#fap_pagina #fapTable .separate {
    border-radius: 10px;
    border-spacing: 0;
    border-collapse: separate;
}

#fap_pagina #fapTable .tabelle {
    width: 70%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#fap_pagina .fap table {
    margin: 0 auto;
    width: 70%;
    text-align: center;
    border: 1px solid #ccc;
}

#fapTable .separate tr:first-child th:first-child, table.separate tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

#fapTable .separate tr:first-child th, table.separate tr:first-child td {
    border-top: 1px solid #e8e8e8;
}

#fapTable .separate tr th:first-child, table.separate tr td:first-child {
    border-left: 1px solid #e8e8e8;
}

#fapTable th {
    background-color: #ffb98d;
    padding: 3px;
    font-size: 1.1em;
    text-align: center;
}

#fapTable .separate td, table.separate th {
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

#fapTable .separate tr th {
  font-weight: 600;
}

body {
    zoom: 0.85 !important; /* Other non-webkit browsers */
    zoom: 85% !important; /* Webkit browsers */
}

#module-suplimentare #mdst-telefonie-accordion-heading22 .accordion-button::after {
  display: none;
}

#module-suplimentare.mdst-sep-last {
  border-top: none;
}


.d-none.d-xxl-block .mdst-internet-abonamente-th .mdst-card-list li,
.d-none.d-xxl-block .mdst-internet-abonamente-td .mdst-card-list li,
.d-none.d-xxl-block .mdst-internet-abonamente-tr li {
  height: 65px;
}