/******************************************************************
  Template Name: Manup
  Description: Manup Event HTML Template
  Author: Colorlib
  Author URI: http://colorlib.com
  Version: 1.0
  Created: Colorlib
******************************************************************/

/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Home About Section
6.  Team Member Section
7.  Pricing Section
8.  Latest Blog Section
9.  Contact
10.  Footer Style

-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

@import url("./_variables.css");
@import url("./_fonts.css");

html,
body {
  height: 100%;
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;

  background-color: var(--verde);
  color: var(--bege);
  font-size: 16px;

  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--bege);
  font-weight: 400;
  font-family: "Humant", sans-serif;
}

h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 100%;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: var(--bege);
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--bege);
  margin-bottom: 10px;
}

.section-title p {
  font-size: 18px;
  color: var(--bege);
  margin-bottom: 0;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.spad-2 {
  padding-top: 50px;
  padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

.bg-gradient,
.bd-text .bd-tag-share .s-share a:hover,
.bh-text .play-btn,
.schedule-table-tab .nav-tabs .nav-item .nav-link.active,
.newslatter-inner .ni-form button,
.latest-item .li-tag,
.price-item .pi-price,
.price-item .tr-tag,
.schedule-tab .nav-tabs .nav-item .nav-link.active,
.site-btn {
  background-image: -o-linear-gradient(330deg, #ee8425 0%, #f9488b 100%),
    -o-linear-gradient(330deg, #ee8425 0%, #f9488b 100%);
  background-image: linear-gradient(120deg, #ee8425 0%, #f9488b 100%),
    linear-gradient(120deg, #ee8425 0%, #f9488b 100%);

  background: linear-gradient(
    90deg,
    rgba(242, 241, 220, 1) 55%,
    rgba(218, 217, 196, 1) 75%
  );
}

.price-item .price-btn:hover {
  background: linear-gradient(90deg, var(--amarelo) 55%, var(--amarelo) 75%);
}

/* buttons */

.primary-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 40px;
  color: #ffffff;
  text-align: center;
  border-radius: 50px;
  background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#ee8425),
      to(#f9488b)
    ),
    -webkit-gradient(linear, left top, right top, from(#ee8425), to(#f9488b));
  background-image: -o-linear-gradient(left, #ee8425 0%, #f9488b 100%),
    -o-linear-gradient(left, #ee8425 0%, #f9488b 100%);
  background-image: linear-gradient(to right, #ee8425 0%, #f9488b 100%),
    linear-gradient(to right, #ee8425 0%, #f9488b 100%);
}

.site-btn {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 10px 40px 12px;
  border-radius: 50px;
}

/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/*---------------------
  Header
-----------------------*/

.header-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-section.header-normal {
  border-bottom: 1px solid #e5e5e5;
}

.header-section > div.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  float: left;
  padding-top: 36px;
  padding-bottom: 37px;
}

.logo a {
  display: inline-block;
}

.nav-menu {
  float: right;
}

.nav-menu .mainmenu {
  display: inline-block;
}

.nav-menu .mainmenu ul li {
  display: inline-block;
  list-style: none;
  margin-right: 40px;
  position: relative;
}

.nav-menu .mainmenu ul li .dropdown {
  position: absolute;
  width: 180px;
  background: #ffffff;
  z-index: 99;
  left: 0;
  top: 130px;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 4px 13px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 13px 30px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-menu .mainmenu ul li .dropdown li {
  display: block;
  margin-right: 0;
}

.nav-menu .mainmenu ul li .dropdown li a {
  padding: 8px 10px;
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: capitalize;
}

.nav-menu .mainmenu ul li .dropdown li a:hover {
  color: var(--amarelo);
}

.nav-menu .mainmenu ul li .dropdown li a:after {
  display: none;
}

.nav-menu .mainmenu ul li.active a:after {
  opacity: 1;
}

.nav-menu .mainmenu ul li:hover > a:after {
  opacity: 1;
}

.nav-menu .mainmenu ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: 100px;
}

.nav-menu .mainmenu ul li a {
  font-size: 16px;
  color: var(--bege);
  text-transform: uppercase;
  font-weight: 600;
  padding: 42px 0;
  position: relative;
  display: inline-block;
}

.nav-menu .mainmenu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 36px;
  height: 2px;
  width: 100%;
  background: var(--amarelo);
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-menu .primary-btn.top-btn,
.schedule-section .primary-btn.top-btn {
  margin: 27px 0;
  background: none;
  background-color: var(--amarelo);
}

.slicknav_menu {
  display: none;
}

.slicknav_menutxt {
  color: var(--verde) !important;
  text-shadow: none !important;
  font-weight: 900 !important;
}

/*---------------------
  Hero
-----------------------*/

.hero-section {
  background-image: url("../img/bg-sec-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section .hero-text {
  padding: 100px 0 200px;
}

.hero-section .hero-text span {
  font-size: 16px;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-section .hero-text h2 {
  font-size: 60px;
  color: #ffffff;
  line-height: 72px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 35px;
}

.hero-section .hero-text p {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-top: -15px;
}

.hero-section a {
  background: none;
  background-color: var(--amarelo);
}

/*---------------------
  Conter
-----------------------*/

.counter-section {
  padding: 40px 0;
}

.counter-section .counter-text span {
  font-size: 16px;
  color: var(--verde);
}

.counter-section .counter-text h3 {
  color: var(--verde);
  font-weight: 700;
  line-height: 38px;
  margin-top: 10px;
}

.counter-section .cd-timer {
  text-align: right;
}

.counter-section .cd-timer .cd-item {
  display: inline-block;
  text-align: center;
  margin-left: 35px;
  height: 120px;
  width: 120px;
  padding-top: 32px;
  position: relative;
}

.counter-section .cd-timer .cd-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--verde);
  content: "";
  opacity: 0.1;
  border-radius: 4px;
}

.counter-section .cd-timer .cd-item:first-child {
  margin-left: 0;
}

.counter-section .cd-timer .cd-item span {
  font-size: 60px;
  color: var(--verde);
  font-weight: 600;
  line-height: 30px;
}

.counter-section .cd-timer .cd-item p {
  font-size: 18px;
  color: var(--verde);
  margin-bottom: 0;
  line-height: 30px;
}

/*---------------------
  Home About Section
-----------------------*/

.home-about-section {
  padding-bottom: 90px;
}

.ha-pic {
  -webkit-box-shadow: 0px 0px 30px rgba(11, 12, 48, 0.15);
  box-shadow: 0px 0px 30px rgba(11, 12, 48, 0.15);
  margin-right: 30px;
}

.ha-pic img {
  min-width: 100%;
  border-radius: 2px;
}

.ha-text {
  padding-top: 74px;
}

.ha-text h2 {
  color: var(--bege);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
}

.ha-text p {
  margin-bottom: 21px;
}

.ha-text ul {
  margin-bottom: 27px;
}

.ha-text ul li {
  list-style: none;
  font-size: 16px;
  line-height: 30px;
  color: var(--bege);
}

.ha-text ul li span {
  color: var(--amarelo);
}

.ha-text .ha-btn {
  font-size: 16px;
  color: var(--bege);
  font-weight: 600;
  position: relative;
}

.ha-text .ha-btn:before {
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: var(--amarelo);
  content: "";
}

/*---------------------
  Schedule Section
-----------------------*/

.schedule-section {
  padding-bottom: 60px;
}

.schedule-tab .nav-tabs {
  border-radius: 2px;
  margin-bottom: 60px;
  -webkit-box-shadow: 3px 10px 30px rgba(74, 74, 77, 0.15);
  box-shadow: 3px 10px 30px rgba(74, 74, 77, 0.15);
  justify-content: center;
}

.schedule-tab .nav-tabs .nav-item {
  border-right: 1px solid var(--bege);
  width: 20%;
  text-align: center;
}

.schedule-tab .nav-tabs .nav-item:nth-child(4) {
  border-right: none;
}

.schedule-tab .nav-tabs .nav-item:nth-child(4),
.schedule-tab .nav-tabs .nav-item:nth-child(8) {
  margin-right: 20px;
}

.schedule-tab .nav-tabs .nav-item:nth-child(1),
.schedule-tab .nav-tabs .nav-item:nth-child(5) {
  margin-left: 20px;
}

.schedule-tab .nav-tabs .nav-item:nth-child(n + 5) {
  border-top: 1px solid var(--bege);
}

.schedule-tab .nav-tabs .nav-item:last-child {
  border-right: none;
}

.schedule-tab .nav-tabs .nav-item .nav-link {
  padding: 14px 0 13px 0;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.schedule-tab .nav-tabs .nav-item .nav-link.active {
  border-radius: 2px;
  border-color: var(--bege);
}

.schedule-tab .nav-tabs .nav-item .nav-link.active h5 {
  color: var(--verde);
}

.schedule-tab .nav-tabs .nav-item .nav-link.active p {
  color: var(--verde);
}

.schedule-tab .nav-tabs .nav-item .nav-link h5 {
  color: var(--bege);
  font-weight: 600;
}

.schedule-tab .nav-tabs .nav-item .nav-link p {
  margin-bottom: 0;
}

.schedule-tab .st-content {
  border: 1px solid #ebebeb;
  border-radius: 2px;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.schedule-tab .st-content:hover {
  -webkit-box-shadow: 3px 12px 30px rgba(23, 24, 34, 0.05);
  box-shadow: 3px 12px 30px rgba(23, 24, 34, 0.05);
  border: 1px solid #428892;
}

.schedule-tab .st-content .sc-pic {
  text-align: center;
  padding: 30px 0;
}

.schedule-tab .st-content .sc-pic img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
}

.img-small {
  height: 80px !important;
  width: 80px !important;
}

.schedule-tab .st-content .sc-text {
  padding: 58px 0;
}

.schedule-tab .st-content .sc-text h4 {
  color: var(--bege);
  font-weight: 600;
  margin-bottom: 10px;
}

.schedule-tab .st-content .sc-text ul li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  color: var(--bege);
  margin-right: 25px;
  position: relative;
}

.schedule-tab .st-content .sc-text ul li:last-child:after {
  display: none;
}

.schedule-tab .st-content .sc-text ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "/";
}

.schedule-tab .st-content .sc-text ul li i {
  color: var(--amarelo);
  font-size: 14px;
}

.schedule-tab .st-content .sc-widget {
  padding: 58px 0;
}

.schedule-tab .st-content .sc-widget li {
  list-style: none;
  font-size: 16px;
  color: var(--bege);
  line-height: 32px;
  position: relative;
  padding-left: 22px;
}

.schedule-tab .st-content .sc-widget li i {
  color: var(--amarelo);
  position: absolute;
  left: 0;
  top: 7px;
}

.schedule-tab .st-content + .subeventos .container .row:first-child h4 {
  margin: 0;
}

.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:first-child
  > div:nth-child(2),
.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:first-child
  > div:nth-child(3) {
  padding: 30px 0 0 15px;
  display: flex;
  align-items: center;
}

.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:first-child
  > div:nth-child(2)
  .sc-text,
.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:first-child
  > div:nth-child(3)
  .sc-widget {
  padding: 0;
}

.schedule-tab .st-content + .subeventos .container .row:nth-child(n + 2) h3 {
  font-size: 24px;
}

.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:nth-child(n + 2)
  > div:nth-child(2),
.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:nth-child(n + 2)
  > div:nth-child(3) {
  display: flex;
  align-items: center;
}

.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:nth-child(n + 2)
  > div:nth-child(2)
  .sc-text,
.schedule-tab
  .st-content
  + .subeventos
  .container
  .row:nth-child(n + 2)
  > div:nth-child(3)
  .sc-widget {
  padding: 20px 0;
}

.segmenta-hora-intermissarium {
  padding-left: 0px !important;
}

.segmenta-hora-intermissarium li:nth-child(2n + 1) {
  margin: -8px;
  padding-left: 0px !important;
  font-weight: 800;
}

/*---------------------
  Pricing Section
-----------------------*/

.pricing-section {
  padding-top: 90px;
  padding-bottom: 80px;

  background-image: url("../img/bg-sec-ticket.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-section .section-title {
  margin-bottom: 88px;
}

.pricing-section .section-title h2 {
  color: #ffffff;
}

.pricing-section .section-title p {
  color: #a0a1b5;
}

.price-item {
  background: #ffffff;
  text-align: center;
  padding-top: 34px;
  padding-bottom: 18px;
  position: relative;
  border-radius: 2px;
  margin-bottom: 40px;
}

.price-item.top-rated {
  margin-top: -36px;
}

.price-item .tr-tag {
  width: 28px;
  height: 50px;
  line-height: 38px;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 50% 65%, 0% 100%, 0% 0%);
  clip-path: polygon(100% 0%, 100% 100%, 50% 65%, 0% 100%, 0% 0%);
  position: absolute;
  right: 26px;
  top: 0;
  background: none;
  background-color: var(--amarelo);
}

.price-item .tr-tag i {
  color: #ffffff;
}

.price-item h4 {
  color: var(--verde);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.price-item .pi-price {
  padding-top: 16px;
  padding-bottom: 14px;
  margin-bottom: 38px;
  background: none;
  background-color: var(--verde);
}

.price-item .pi-price h2 {
  font-size: 60px;
  color: var(--amarelo);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.price-item .pi-price h2 span {
  font-size: 30px;
  position: absolute;
  left: 0px;
  top: 9px;
}

.price-item ul li {
  list-style: none;
  font-size: 16px;
  color: var(--verde);
  line-height: 38px;
}

.price-item .price-btn {
  font-size: 16px;
  color: var(--bege);
  font-weight: 600;
  display: inline-block;
  background: var(--verde);
  padding: 10px 85px;
  border-radius: 50px;
  -webkit-box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  bottom: -39px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.price-item .price-btn:hover {
  color: #ffffff;
}

.price-item .price-btn:hover span {
  color: #ffffff;
}

.price-item .price-btn span {
  color: var(--amarelo);
  position: relative;
  top: 3px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------
  Home Contact 
-----------------------*/

.contact-section .section-title {
  text-align: left;
  margin-bottom: 40px;
}

.cs-text .ct-address span {
  font-size: 16px;
  color: var(--bege);
}

.cs-text .ct-address p {
  font-size: 18px;
  color: var(--bege);
  line-height: 30px;
  margin-top: 8px;
}

.cs-text ul {
  margin-bottom: 22px;
}

.cs-text ul li {
  font-size: 18px;
  color: var(--bege);
  line-height: 36px;
  list-style-type: none;
  display: inline-block;
  margin-right: 42px;
}

.cs-text ul li:last-child {
  margin-right: 0;
}

.cs-text ul li span {
  font-size: 16px;
  color: var(--bege);
  display: block;
}

.cs-text .ct-links span {
  font-size: 16px;
  color: var(--bege);
}

.cs-text .ct-links p {
  font-size: 18px;
  color: var(--bege);
  line-height: 30px;
  margin-top: 8px;
}

.cs-map {
  height: 400px;
  -webkit-box-shadow: 0px 12px 30px rgba(11, 12, 48, 0.15);
  box-shadow: 0px 12px 30px rgba(11, 12, 48, 0.15);
}

.cs-map iframe {
  width: 100%;
}

/*---------------------
  Footer
-----------------------*/

.footer-section {
  background: var(--bege);
  padding-top: 50px;
  padding-bottom: 60px;
}

.footer-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  padding-bottom: 50px;
  border-bottom: 1px solid #2f3039;
}

.partner-logo .pl-table {
  display: inline-block;
  display: table;
}

.partner-logo .pl-table .pl-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: 41px;
}

.footer-text {
  text-align: center;
  padding-top: 60px;
}

.footer-text .ft-logo {
  margin-bottom: 20px;
}

.footer-text .ft-logo a {
  display: inline-block;
}

.footer-text ul {
  margin-bottom: 18px;
}

.footer-text ul li {
  list-style: none;
  display: inline-block;
  margin-right: 52px;
}

.footer-text ul li:last-child {
  margin-right: 0;
}

.footer-text ul li a {
  font-size: 18px;
  color: #a0a1b5;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-text ul li a:hover {
  color: var(--amarelo);
}

.footer-text .copyright-text {
  font-size: 14px;
  color: #a0a1b5;
  margin-bottom: 28px;
}

.footer-text .copyright-text i {
  color: var(--amarelo);
}

.footer-text .copyright-text a {
  color: #a0a1b5;
}

.footer-text .copyright-text a:hover {
  color: var(--amarelo);
}

.footer-text .ft-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #a3a3ae;
  border: 1px solid #45464e;
  border-radius: 50%;
  margin-right: 15px;
}

.footer-text .ft-social a:last-child {
  margin-right: 0;
}

/*-------------------------------- Responsive Media Styles --------------------------------*/

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nav-menu .mainmenu ul li {
    margin-right: 25px;
  }
  .hero-section .hero-text {
    padding-top: 110px;
  }
  .counter-section .cd-timer .cd-item {
    margin-left: 25px;
  }
  .ha-text {
    padding-top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .schedule-tab .st-content .sc-pic {
    text-align: left;
    padding: 30px 0 0;
  }
  .schedule-tab .st-content .sc-text {
    padding: 30px 0 0;
  }
  .schedule-tab .st-content .sc-widget {
    padding: 30px 0;
  }
  .schedule-tab .st-content {
    padding-left: 30px;
  }
  .price-item.top-rated {
    margin-top: 0;
  }
  .cs-map {
    margin-top: 20px;
  }
  .counter-section .counter-text {
    margin-bottom: 30px;
  }
  .counter-section .cd-timer {
    text-align: left;
  }
  .ha-pic {
    margin-right: 0;
  }
}

/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-menu .primary-btn.top-btn {
    display: none;
  }
  .nav-menu .mainmenu ul li {
    margin-right: 20px;
  }
  .nav-menu .mainmenu ul li:last-child {
    margin-right: 0;
  }
}

/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
  p {
    font-size: 0.75rem;
  }

  .hero-section .hero-text {
    padding-bottom: 100px;
  }

  .counter-section .cd-timer .cd-item {
    margin-bottom: 10px;
  }
  .footer-text ul li {
    margin-right: 15px;
  }
  .nav-menu .mainmenu {
    display: none;
  }
  .nav-menu .primary-btn.top-btn {
    display: none;
  }
  .hero-section .hero-text h2 {
    font-size: 40px;
    line-height: normal;
  }
  .counter-section .cd-timer .cd-item {
    margin-right: 10px;
    margin-left: 0;
  }
  .counter-section .cd-timer .cd-item:last-child {
    margin-right: 0;
  }
}

/* Small Mobile: 320px */

@media only screen and (max-width: 479px) {
  .hero-section .hero-text h2 {
    font-size: 36px;
    line-height: normal;
  }
  .counter-section .cd-timer .cd-item {
    margin-right: 10px;
    margin-left: 0;
  }
  .footer-text ul li {
    margin-bottom: 10px;
  }
  .schedule-tab .nav-tabs .nav-item {
    width: 33.33%;
    margin: 0 !important;
  }
  .schedule-tab .nav-tabs .nav-item:nth-child(2n) {
    margin-right: 20px !important;
    border-right: none;
  }
  .schedule-tab .nav-tabs .nav-item:nth-child(3),
  .schedule-tab .nav-tabs .nav-item:nth-child(4) {
    border-top: 1px solid var(--bege);
  }
}
