/*

Template RefriAmerica

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #43B02A;
  --custom-btn-bg-hover-color:    #4C8C2B;
  --dark-color:                   #00205B;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;
  --ligter-blue:                  #0077C8;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

@font-face {
  font-family: myRiadPro-Regular;
  src: url('../fonts/myriad-pro/MYRIADPRO-REGULAR.OTF');
}

@font-face {
  font-family: myRiadPro-Bold;
  src: url('../fonts/myriad-pro/MYRIADPRO-BOLD.OTF');
}

body {
  background-color: var(--white-color);

  font-family: myRiadPro-Regular; 
}

.redesTextWhite{
  font-size: 2rem;
  line-height: normal;
}

.marginLarge{
  margin-top: 10vh;
}

.tiendaImg{
  width: 15rem;
}

.no-mobile{
  display: block;
}

.just-mobile{
  display: none;
}

/*CUSTOM*/
.padding-section1{
  padding: 2rem 10rem 0rem 10rem;
}

.flexContent{
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoWidth{
  width: 12rem;
}

.logoWidthFooter{
  width: 10rem;
}

.justifyText{
  text-align: justify;
  text-justify: inter-word;
}

.parrafoAbout{
  font-size: 1.3rem;
  color: var(--dark-color);
}

.parrafoObjetivo{
  font-size: 1.3rem;
  color: var(--white-color);
}

.parrafoServicios{
  font-size: 1.3rem;
  color: var(--white-color);
}

.flex-icon-text{
  display: flex;
  align-items: center;
}

.icon-about-size{
  width: 5rem;
}

.lighter-blue{
  color: var(--ligter-blue);
}

.darker-blue{
  color: var(--dark-color);
}

.addressText{
  font-size: 1rem;
}

.filterarrow{
  filter: invert(38%) sepia(100%) saturate(3942%) hue-rotate(186deg) brightness(89%) contrast(101%);
}

.subabouttitle{

}

.dropdown-menu{
  background-color: var(--ligter-blue);
}

.dropdown-item{
  color: var(--white-color);
  font-size: 1.4rem;
  text-align: center;
}

.contactanosButton{
  font-size: 2rem !important;
  padding: 10px 30px !important;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: 'myRiadPro-Regular';
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 10px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: #00205B;
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
/*  border-radius: var(--border-radius-large);*/
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: 24px;
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--white-color);
  border-bottom: 3px solid #43B02A;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

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

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh);
  font-family: 'myRiadPro-Regular';
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 25px;
}

.hero-section .container .row {
  height: 100%;
}

.artist-section {
  background-image: url('../images/section8Redes/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url('../images/section2AboutUs/aboutus.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

.fullportrait{
  height: calc(100vh);
}

.fullportraitContact{
  height: calc(120vh);
}

.mediumportrait{
  height: calc(100vh);
}

.smallportrait{
  height: calc(100vh);
}

/*---------------------------------------
  Slider              
-----------------------------------------*/
div.carousel-nav-icon > svg {
    height: 48px;
    width: 48px;
}

html[data-bs-theme="dark"] div.carousel-nav-icon > svg {
    fill: #FFF !important;
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }

    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
    transform: translateX(0);
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/

.schedule-section {
  background-image: url('../images/section4Slider/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-section {
  background-color: var(--dark-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contacto-section {
  background-color: var(--dark-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.imageObjetivo{
  width: 100%;
}

/*---------------------------------------
  Aliados              
-----------------------------------------*/
.aliados-section {
  background-image: url('../images/section6Aliados/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.imageAliado{
  width: 15rem;
}

/*---------------------------------------
  servicios              
-----------------------------------------*/
.servicios-section {
  background-image: url('../images/section7Servicios/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.serviCard{
  background-color: var(--white-color);
  height: 23rem;
}

.sangria{
  text-indent: 20px;
}

.botonmain{
  width: 15rem;
}

.botonregresar{
  width: 10rem;
}

.locationLogo{
  width: 2rem;
}

.serviCardIcon{
  width: 5rem;
  height: 5rem;
}

.serviCardText{
  font-family: myRiadPro-Bold;
}

.serviCardText2{
  font-size: 16px;
  height: 7rem;
}

.serviButton{
  background-color: var(--ligter-blue);
  color: var(--white-color);
  margin-left: 3rem;
  margin-right: 3rem;
  padding: .7rem;
  font-size: 18px;
  cursor: pointer;

}

/*---------------------------------------
  redes              
-----------------------------------------*/
.redes-section {
  background-image: url('../images/section8Redes/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.backRedes{
  background-image: url('../images/section8Redes/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: white;
}

.pointercursor{
  cursor: pointer;
}

.botonvermas{
  width: 8rem;
}

.vermascontainer{
  height: 80vh;
  overflow: scroll;
}

.igContainer{
    background-color: white;
    height: 30rem;
    overflow: scroll;
}

.imageRedes{
  width: 2.5rem;
  cursor: pointer;
}

.eapps-instagram-feed-title{
  display: none !important;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/

.contact-section{
  background-color: #ededed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contactFormButton{
  background-color: var(--ligter-blue);
  color: var(--white-color);
  font-size: 1.1rem;
}

.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  Modals              
-----------------------------------------*/
.modalTienda{
  background-image: url('../images/tienda/fondo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalVentas{
  background-image: url('../images/section7Servicios/banners/ventas/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalConstruccion{
  background-image: url('../images/section7Servicios/banners/construccion/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalProyectos{
  background-image: url('../images/section7Servicios/banners/proyectos/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalMantenimiento{
  background-image: url('../images/section7Servicios/banners/mantenimiento/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalForm{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
  background-color: var(--dark-color);
}

.modalpr1{
  background-image: url('../images/modalesProyectos/pr1/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr2{
  background-image: url('../images/modalesProyectos/pr2/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr3{
  background-image: url('../images/modalesProyectos/pr3/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr4{
  background-image: url('../images/modalesProyectos/pr4/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr6{
  background-image: url('../images/modalesProyectos/pr6/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr7{
  background-image: url('../images/modalesProyectos/pr7/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr8{
  background-image: url('../images/modalesProyectos/pr8/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr9{
  background-image: url('../images/modalesProyectos/pr9/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr11{
  background-image: url('../images/modalesProyectos/pr11/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalpr12{
  background-image: url('../images/modalesProyectos/pr12/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30rem;
}

.modalText{
  font-size: 1.2rem;
}

.backbutton{
  font-size: 1.5rem;
  cursor: pointer;
}

.modalImage{
  transform: translate(0rem, 2rem);
  width: 25rem;
}

.modalImagePro{
  width: 12rem;
  border-radius: 10px;
}

.modalTitle{
    border-bottom: 3px solid #43B02A;
    display: inline;
}

.modalTitlePro{
  color: var(--custom-btn-bg-color);
}

.liText{
  font-size: 1.2rem;
  color: var(--dark-color);
}

.liKey{
  color: var(--ligter-blue);
}

.whatImage{
  width: 2rem;
}

.error{
      border: 5px solid red !important;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  margin-top: 10px;
  margin-bottom: 10px;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

.textFooterSize{
  font-size: 15px;
}

.positionEnd{
  text-align: right;
}

.noOverFlow{
  overflow: hidden;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .positionEnd{
    text-align: center;
  }

  .marginLarge{
    margin-top: auto;
  }

  .tiendaImg{
    width: 10rem;
  }

  .no-mobile{
    display: none;
  }

  .just-mobile{
    display: block;
  }

  .mobileInicio{
    font-size: 2.5rem; 
  }

  .mobileHeight{
    height: 10rem;
  }

  .spaceMobil{
    margin-top: 5rem;
  }

  .spaceMobil2{
    margin-top: 5rem;
  }

  .fullportrait{
    height: auto;
  }

  .fullportraitContact{
    height: auto;
  }

  .mediumportrait{
    height: auto;
  }

  .smallportrait{
    height: auto;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

