:root {
  --primary: #FFCC00;
  --dark: #fefefe;
  --secondary:#003D87;
}

*,
:after,
:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.bg-dark {
  background-color: var(--dark) !important;
}

a {
  text-decoration: none !important;
}

.content-topbar {
  min-height: 40px;
  display: none;
  justify-content: space-between;
  align-items: center;
}

.left-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -13px;
}

.left-topbar-item {
  font-size: 12px;
  color: #ccc;
  padding: 0 13px;
  position: relative;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

a.left-topbar-item:hover {
  color: var(--primary);
}

.left-topbar-item::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.1;
  left: 0;
}

.left-topbar-item:first-child:before {
  display: none;
}

.right-topbar a {
  font-size: 18px;
  color: #ccc;
  margin: 0 4px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.right-topbar a:hover, .hvrprimary:hover {
  color: var(--primary);
}

.wrap-pic-w {display: block;}

.wrap-pic-w > img {width: 100%;}

.opacity-80:hover {
  opacity: 0.8;
}

/*------------------------------------------------------------------
[ Topbar mobile ]*/
.topbar-mobile {
  background-color: #222;
  padding: 8px 25px 5px 25px;
  margin-bottom: 0;
}

.topbar-mobile li {
  padding: 5px 0;
}

.topbar-mobile .right-topbar,
.topbar-mobile .left-topbar {
  justify-content: flex-start;
}

/*==================================================================
[ Logo ]*/
.wrap-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 125px;
  padding-top: 25px;
  padding-bottom: 10px;
}

/*---------------------------------------------*/
.logo {
  width: 25%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo img {
  max-width: 100%;
  max-height: 50%;
}

/*---------------------------------------------*/
.wrap-logo.no-banner {
  justify-content: center;
}

.wrap-logo.no-banner .logo {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

/*---------------------------------------------*/
.logo-stick {
  /* display: none; */
  line-height: 0;
  margin-right: 15px;
}

.logo-stick img {
  max-width: 115px;
  max-height: 30px;
}


/*==================================================================
[ Main nav ]*/
.wrap-main-nav {
  width: 100%;
  height: 100px;
  z-index: 1000;
  position: relative;
  
}

.main-nav {
  width: 100%;
  height: 100px;
  background-color: var(--dark);
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.menu-desktop {
  max-width: calc(100% - 30px);
  width: 1050px;
  margin: 0 auto;
  height: 100px;
  position: relative;

}

.main-menu {
  list-style-type: none;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-menu>li {
  height: 100%;
  position: relative;
}

.main-menu>li>a {
  font-size: 16px;
  line-height: 1.5;
  color: #003D87;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5px 0px;
  margin: 0 18px;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.main-menu>li>a::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 36px);
  height: 5px;
  bottom: 0;
  left: -18px;
  background-color: var(--primary);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.main-menu>li>.dropdown::after {
  content: "\f2f9";
  font-family: Material-Design-Iconic-Font;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-left: 6px;
  margin-bottom: 1px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

li.main-menu-active>a::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.main-menu>li>a:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 1199px) {
  .main-menu>li>a {
      margin: 0 10px;
  }

  .main-menu>li>a::before {
      left: -10px;
      width: calc(100% + 20px);
  }
}

/*---------------------------------------------*/
.sub-menu {
  list-style-type: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 225px;
  background-color: #fff;
  padding: 15px 0px 15px 0px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #f2f2f2;
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.sub-menu li {
  position: relative;
  background-color: transparent;
}

.main-menu>li>.sub-menu {
  top: 100%;
  left: 0px;
}

.sub-menu a {
  font-size: 14px;
  line-height: 1.7857;
  color: #222;
  display: block;
  padding: 8px 30px;
  width: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.darkcolor{
  font-size: 14px;
  line-height: 1.7857;
  color: #222;
}

.clgray {
  font-size: 12px;
  line-height: 1.7;
  color: #888;
}

@media (max-width: 1199px) {
  .sub-menu {
      width: 190px;
  }

  .sub-menu a {
      padding: 8px 20px;
  }
}


/*---------------------------------------------*/
.main-menu>li:hover>a, .main-menu>li:hover>a:after {
  color: var(--primary);
}

.main-menu>li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}


.sub-menu>li:hover>a {
  background-color: var(--primary);
  color: #222;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Mobile ]*/
.wrap-header-mobile {
  display: flex;
  align-items: center;
  height: 65px;
  background-color: #fff;
  padding: 10px 25px;
  display: none;
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

/*------------------------------------------------------------------
[ Logo mobile ]*/
.logo-mobile {
  display: block;
  position: relative;
  height: 100%;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.logo-mobile img {
  max-width: calc(100% - 35px);
  max-height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

/*------------------------------------------------------------------
[ btn show menu ]*/
.hamburger {
  display: flex;
  align-items: center;
  padding: 0;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  border-radius: 0;
}


/*==================================================================
[ Menu mobile ]*/
.menu-mobile {
  width: 100%;
  background-color: #fff;
  display: none;
}

.main-menu-m {
  padding-top: 13px;
  padding-bottom: 23px;
  background-color: var(--primary);
  margin-bottom: 0;
}

.main-menu-m>li>a {
  font-size: 16px;
  color: #222;
  line-height: 2.8;
  padding: 9px 25px 9px 25px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.main-menu-m>li>a:hover {
  color: #222;
}

.main-menu-m>li {
  position: relative;
  background-color: var(--primary);
}

.arrow-main-menu-m {
  font-size: 14px;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 18px;
  top: 3px;
  padding: 10px;
  cursor: pointer;
}

.arrow-main-menu-m i {
  transform-origin: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.turn-arrow-main-menu-m i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*---------------------------------------------*/
.sub-menu-m {
  background-color: #222;
  padding: 10px 50px 15px 20px;
  display: none;
  list-style: none;
}

.sub-menu-m a {
  font-size: 15px;
  color: var(--primary);
  line-height: 2.5;
  padding: 5px 15px 5px 15px;
}

/*------------------------------------------------------------------
[ Mega menu ]*/
.main-menu > li.mega-menu-item {
  position: static;
}

.sub-mega-menu {
  flex-wrap: wrap;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 100%;
  display: none;
  
  border: 1px solid #f2f2f2;
  box-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);
}

.main-menu > li:hover > .sub-mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-mega-menu .nav {
  width: 240px;
  border-right: 1px solid #f2f2f2;
  padding: 30px 0;
}

.sub-mega-menu .tab-content {
  width: calc(100% - 240px);
}

/*---------------------------------------------*/
.sub-mega-menu .nav-pills .nav-link {
  font-size: 14px;
  line-height: 1.8;
  color: #222;
  border-radius: 0;
  padding: 8px 20px 8px 33px;
}

.sub-mega-menu .nav-pills .nav-link.active, 
.sub-mega-menu .show>.nav-pills .nav-link {
  color: #fff;
  background-color: var(--primary);
}

.sub-mega-menu .tab-content .tab-pane {
  padding: 25px 50px 35px 30px;
}

/*---------------------------------------------*/
@media (max-width: 991px) {
  .wrap-header-mobile {
      display: flex;
  }

  .topbar,
  .logo,
  .no-banner,
  .wrap-main-nav {
      display: none;
  }

  .wrap-logo {
      height: auto;
  }
}

@media (min-width: 992px) {
  .menu-mobile {
      display: none;
  }
}


/* .half-carousel {
  height: 60vh;
  margin: auto;
}

.carousel-caption{
 top:15%;
 margin: 0 auto;
}

.carousel-item {
  background-color: #000 !important;
} */

/* Common styles for all slides */
.bg-slide {
  height: 500px; /* Set height as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Individual slide background images */
.slide-1 {
  background-image: url('image/fiber-internet.jpeg');
}
.slide-2 {
  background-image: url('image/image1.jpg');
}
.slide-3 {
  background-image: url('image/switches.jpg');
}

/* Style carousel caption for better visibility */

.carousel-item {
  top:-15%;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  padding: 15px;
  border-radius: 5px;
  
}





/* product style */
.product-tab-navigation {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-tab-btn {
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.product-tab-btn:hover {
  background: #e9ecef;
}

.product-tab-btn.active {
  background: var(--secondary);
  color: var(--dark);
}

.product-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product-tab-content.active {
  display: block;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

.product-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.grid-item:hover .product-image-overlay {
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}



/* Footer */
.footer {
  background: linear-gradient(to right, #1a1c20, #2c3e50);
  color: #ffffff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #3498db, #2ecc71);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about {
  color: #a4b5c6;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background: #3498db;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a4b5c6;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #3498db;
  transform: translateY(-3px);
  color: #fff;
}

.footer-newsletter {
  position: relative;
  margin-top: 20px;
}

.footer-newsletter input {
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  padding-right: 50px;
}

.footer-newsletter input::placeholder {
  color: #a4b5c6;
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 40px;
  border-radius: 50%;
  background: #3498db;
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #2980b9;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #a4b5c6;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: #a4b5c6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #3498db;
}

@media (max-width: 768px) {
  .footer-section {
      margin-bottom: 40px;
  }
}




.ezy__featured24 {
  /* Bootstrap variables */
  --bs-body-color: #23262f;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-item-bg: #ffffff;
  --ezy-card-bg: #061237;
  --ezy-card-shadow: 0 24px 38px rgba(89, 88, 109, 0.27);

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__featured24 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__featured24,
.ezy__featured24.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__featured24,
.ezy__featured24.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-item-bg: #162231;
  --ezy-card-bg: rgb(11, 23, 39);
  --ezy-card-shadow: 0 24px 38px rgba(0, 0, 0, 0.27);
}

/* Dark Block Style */
.dark .ezy__featured24,
.ezy__featured24.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-item-bg: #162231;
  --ezy-card-bg: rgb(30, 39, 53);
  --ezy-card-shadow: 0 24px 38px rgba(0, 0, 0, 0.27);
}

.ezy__featured24-heading {
  font-size: 22px;
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__featured24-heading {
    font-size: 20px;
    line-height: 45px;
  }
}

.ezy__featured24-sub-heading {
  font-size: 20px;
  line-height: 25px;
  color: var(--bs-body-color);
}

.ezy__featured24-icon {
  color: var(--ezy-theme-color);
  border-radius: 50%;
  font-size: 32px;
}

.ezy__featured24-bg-holder {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 350px;
  width: 100%;
}

@media (min-width: 991px) {
  .ezy__featured24-bg-holder {
    float: right;
    height: 100%;
  }
}

.ezy__featured24-title {
  color: var(--bs-body-color);
}

.ezy__featured24-content {
  color: var(--bs-body-color);
  opacity: 0.7;
}

.ezy__featured24-card {
  position: relative;
  margin: -50px 50px 0 50px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: var(--ezy-card-shadow);
  z-index: 11;
}

@media (min-width: 991px) {
  .ezy__featured24-card {
    position: absolute;
    top: 50px;
    bottom: 50px;
    right: 75%;
    left: 0;
    margin: 0;
  }
}

.ezy__featured24-card .card-body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ezy__featured24-card-content {
  background-color: var(--ezy-card-bg);
  color: #fff;
  border-radius: 10px;
  line-height: 1.6;
}

.ezy__featured24-card-content p {
  opacity: 0.8;
}

/* Efecto hover para la card */
.card-hover:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
}
.card-custom {
  min-height: 350px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}
.card-hover:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
}
.img-fixed {
  height: 180px;
  width: 180px;
  object-fit: contain;
}
.title-fixed {
  min-height: 50px;
}


.ezy__epincentives4 {
  /* Bootstrap variables */
  --bs-body-color: #000;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-card-bg: #f6f6f6;

  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 992px) {
  .ezy__epincentives4 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__epincentives4,
.ezy__epincentives4.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-card-bg: #fff;
}

/* Dark Gray Block Style */
.dark-gray .ezy__epincentives4,
.ezy__epincentives4.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(11, 23, 39);
}

/* Dark Block Style */
.dark .ezy__epincentives4,
.ezy__epincentives4.dark {
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(30, 39, 53);
}

.ezy__epincentives4-heading {
  font-size: 26px;
  line-height: 1;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__epincentives4-heading {
    font-size: 24px;
  }
}

.ezy__epincentives4-sub-heading {
  font-size: 16px !important;
  line-height: 1.5;
  opacity: 0.65;
}

.ezy__epincentives4-card {
  background-color: var(--ezy-card-bg);
  border-radius: 8px;
}

.ezy__epincentives4-icon {
  font-size: 60px;
  color: var(--ezy-theme-color);
}

.ezy__epincentives4 p {
  font-size: 14px;
  opacity: 0.65;
}

.main-timeline {
  position: relative;
}

.main-timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #939597;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline {
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #939597;
  border: 5px solid #f5df4d;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  padding: 0px 40px 20px 0px;
  left: 0;
}

.right {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

.left::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.right::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.right::after {
  left: -12px;
}

.eazy-card {
  padding: 0px 30px;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

@media screen and (max-width: 600px) {
  .main-timeline::after {
    left: 31px;
  }
  
  .timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  .left::after, .right::after {
    left: 18px;
  }
  
  .left::before {
    right: auto;
  }

  .right {
    left: 0%;
  }
}

