
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --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:                14px;
  --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;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  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;
}

.item-boxes {
  text-align: center;
  padding: 25px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 13px 0px rgba(159, 159, 159, 0.25);
}

.item-boxes2 {
  text-align: center;
  padding: 45px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 13px 0px rgba(159, 159, 159, 0.25);
  height: 220px;
}

.item-boxes2 h4 {
  color: #444;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.item-boxes2 p {
  color: #444;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  text-transform: capitalize;
}


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

.underline {
  width: 100px;
  height: 4px;
  background-color: #eccb72;
  margin: 15px auto;
  border-radius: var(--border-radius-small);
  opacity: revert;
}

.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(--primary-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(--primary-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-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%;
}

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

.logo-set {
  width: 100px;
}

.logo-set2 {
  width: 350px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

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

.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: var(--p-font-size);
  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: #ffdc9d;
}

.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 - 51px);
}

.hero-section h1 {
  color: var(--white-color);
  font-size: 50px;
}

.hero-section p {
  color: var(--white-color);
  font-size: 26px;
}

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

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

.hero-section .container .row {
  height: 100%;
  display: flex;
  align-items: center;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-section {
  background: url(../images/bg-1.png);
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0px;
}

.artists-section h2 {
  color: #fff;
}

.artists-section p {
  color: #fff;
}

.artists-section h4 {
  color: #fff;
}

.box3 {
  height: 140px;
  opacity: 1;
  color: rgb(68, 68, 68);
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 15px 0px;
}

.box3 h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.box3 p {
  text-align: center;
  color: rgb(68, 68, 68) !important;
  font-size: 13px !important;
  line-height: 20px !important;
  padding: 0px 15px;
  font-weight: 500;
}

.contant_section {
    padding: 50px 0px;
}

.contant_section h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

.contant_section p {
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
}

.contant_section ul li {
    font-weight: 500;
    line-height: 30px;
    list-style: disc;
    font-size: 14px;
}

.about-us-page {
  background-image: url(../images/bg-1.png);
  background-size: cover;
  padding: 100px 0px;
}

.about-us-page h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 15px;
}

.about-us-page p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about-us-content {
  padding: 50px 0px;
}

.about-us-content h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 20px;
}

.about-us-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}

.about-us-content-2 {
  padding: 50px 0px;
  background-color: #f0f8ff;
}

.about-us-content-2 h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 20px;
}

.about-us-content-2 p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}

.btnSet {
  display: inline-block;
  background-color: #EE5007;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
}

.font-set {
    font-size: 17px !important;
    line-height: 25px !important;
}

.hero {
  background: #0b1c2d;
  color: #ffffff;
  padding: 90px 0;
}
.hero h1 span {
  color: #c9a24d;
}
.section-padding {
  padding: 50px 0;
}
.badge-custom {
  background-color: #eef3f8;
  color: #0b1c2d;
  font-weight: 500;
}
.cta-box {
  background: #f8f9fa;
  padding: 60px;
  border-radius: 12px;
}

.service-section {
  padding: 100px 0px;
  background-image: url(../images/service-banner.jpg);
  background-size: cover;
}

.service-section h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 20px;
}

.service-section p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  max-width: 800px;
  margin: auto;
}

/* ==========================================================================
  8. Portfolio Section
   ========================================================================== */

   #portfolios {
    background-color: #f0f8ff;
    padding: 50px 0px;
   }

   #portfolios h4 {
    color: #444;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 163.636% */
    letter-spacing: 1.54px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 0;
   }

    #portfolios h6 {
    color: #444;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px; /* 156.25% */
   }

    #portfolios p {
    color: #444;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 200% */
  }

  /* .img_1 {
    background: url(../img/img_1.jpg) fixed;
    position: relative;
    height: 400px;
  }

  .img_2 {
    background: url(../img/img_2.jpg) fixed;
    position: relative;
    height: 400px;
  } */

  .pad_set {
    padding-left: 65px;
    padding-right: 65px;
  }
  
  .topPAdding {
    padding-top: 25px;
  }

  .topPAdding2 {
    padding-top: 60px;
  }

  .Legal_section {
    padding: 25px;
  }

  .Legal_section h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
  }

  .Legal_section p {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
  }

  .section-title {
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  .lines2 {
    width: 145px;
    height: 4px;
    position: relative;
    float: left;
    margin: auto;
    background-color: #eccb72;
 }

 .footer_logo2 {
  width: 250px;
 }

.box3 {
  background: rgba(255, 255, 255, 0.8);
  height: 140px;
  border-radius: 4px;
  opacity: 1;
  padding: 15px 0px;
  color: #444;
  margin-bottom: 15px;
}

.box3 h6 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.box3 p {
  text-align: center;
  color: #444 !important;
  font-size: 13px !important;
  padding: 0px 15px;
  line-height: 20px !important;
}

.contant_section {
  padding: 50px 0px;
}

.contant_section h3 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.contant_section p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
}

.contant_section ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.contant_section ul li {
  list-style: disc;
  font-weight: 500;
  line-height: 30px;
}
.footer-block {
  display: inline-flex;
  justify-content: center;
  padding-top: 25px;
  list-style-type: none;
}
.footer-block li {
  margin-right: 10px;
  margin-bottom: 15px;
}
.lineSet {
  font-size: 17px;
}

.logo-width {
  width: 100px;
}

.logo-width2 {
  width: 250px;
  margin-top: 40px !important;
}

.logo-width3 {
  width: 200px;
  margin-top: 15px !important;
}

.footer_logo {
  width: 100px;
}

.footer-block p {
  font-size: 12px;
  color: #fff;
  margin-left: 10px;
  margin-top: 5px;
}

.disclaimer-text {
  font-size: 12px;
  position: relative;
}

.footer-center {
  text-align: center;
}

.contact-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-area {
  border-bottom: 1px solid #353c46;
  background: #1a1e25;
  padding-top: 50px;
  padding-bottom: 35px;
}

.contact-content p {
  font-size: 15px;
  margin: 30px 0 60px;
  position: relative;
}

.contact-content p::after {
  background: #353c46;
  bottom: -30px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 80%;
}

.contact-content h6 {
  color: #8b9199;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-content span {
  color: #353c47;
  margin: 0 10px;
}

.contact-social {
  margin-top: 30px;
}

.contact-social > ul {
  display: inline-flex;
}

.contact-social ul li a {
  border: 1px solid #8b9199;
  color: #8b9199;
  display: inline-block;
  height: 40px;
  margin: 0 10px;
  padding-top: 7px;
  transition: all 0.4s ease 0s;
  width: 40px;
}

.contact-social ul li a:hover {
  border: 1px solid #fab702;
  color: #fab702;
}

.contact-content img {
  max-width: 210px;
}

footer {
  background: #1a1e25;
  color: #868c96;
}

footer p {
  padding: 15px 0;
  text-align: center;
  margin-bottom: 0;
}

footer img {
  width: 44px;
}

.contact-banner {
  background-image: url(../images/contact-banner.png);
  background-size: cover;
  padding: 100px 0px;
}

.contact-banner h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-banner p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  margin: auto;
}

.contact-page-sec {
  padding: 50px 0px;
}

.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
  background: #071c34;
  padding: 15px 30px;
  height: 170px;
}
.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fda40b;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #999999;
  font-size: 15px;
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
  background: #fda40b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}

.whatsapp_float {
position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    padding-top: 8px;
}


/*---------------------------------------
  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;
  }

  .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 {
    height: calc(55vh - 51px);
    padding-top: 130px;
  }

  .hero-section p {
    color: var(--white-color);
    font-size: 20px;
  }

  .item-boxes2 {
    padding: 20px;
    height: auto;
  }

  .pad_set {
    padding-left: 30px;
    padding-right: 30px;
 }

 .topPAdding2 {
    padding-top: 0px;
 }

 .about-us-page h1 {
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 10px;
    padding-top: 45px;
  }
  .service-section h1 {
    font-size: 28px;
    line-height: 48px;
    padding-top: 30px;
 }

 .cta-box {
    padding: 0px;
 }

}

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

@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;
  }
}
.selectField {
  background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}
/* Parsley error messages */
.parsley-errors-list ul li {
    color: red;          /* Red text for error messages */
    font-size: 13px;     /* Optional font size */
    margin-top: 5px;     /* Space above error message */
    list-style: none;    /* Remove bullet points */
    padding-left: 0;     /* Remove padding */
}

/* Highlight only the invalid input/select/textarea border */
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    border: 2px solid red !important;
    border-radius: 4px;
}

