@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

:root {
  --main-color: #BF3131;
  --body-background: #ffffff54;
  --countdown: #bf3131cb;
  --story: #c74848cb;
  --footer: #bf3131cb;
  --button-hover: #972727;

  --notification-background: #bf3131cb;
  --notification-text: #ffffff;
  --notification-shadow: #be6d6d;
  /* old: #F69D9D; */
}

/* #story{
  background-color: var(--story);
} */
#story {
  background: linear-gradient(to bottom right, var(--footer), #333);
  padding: 80px 20px;
  color: white;
  font-family: 'Georgia', serif;
  text-align: center;
}

#story h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}

#story-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
}

.story-photos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.story-photos img {
  border-radius: 10px;
  width: 250px;
  height: 200px; /* fixed height */
  object-fit: cover; /* keeps aspect ratio and fills the box */
  object-position: top; /* center the image inside */
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.story-photos img:hover {
  transform: scale(1.05);
}

.loading-indicator-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--notification-shadow);
  z-index: 1000;
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ccc;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*
🌿 Sage Green
#B2BEB5 – soft and muted

#A3B18A – a slightly warmer, earthy sage

🌾 Champagne
#F7E7CE – light and warm

#EFE1D6 – creamy with a soft elegance

🪻 Dusty Blue
#A8C0C9 – pale, dreamy blue-gray

#7A9E9F – deeper, calm dusty blue

🍇 Mauve / Plum
#C1A192 – muted mauve with warm undertones

#8E5572 – romantic plum with depth

🌅 Terracotta / Burnt Orange
#E07A5F – warm and earthy

#D99873 – a softer, peachier terracotta

🪻 Lavender
#C8A2C8 – classic soft lavender

#E6DAF2 – very light, ethereal lavender
*/

/* =======================================================
*
* 	Template Style 
*	Edit this section
*
* ======================================================= */
html,
body {
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  background: var(--body-background);
  /* background: linear-gradient(135deg, #ffccd5, #ffa4ab, #f58b96, #bd7b8d); */
  background-attachment: fixed;
  background-size: cover;
  color: #848484;
  font-weight: 300;
  overflow-x: hidden;
  /* display: none; */
}

body.offcanvas {
  overflow: hidden;
}

a {
  color: var(--main-color);
  -webkit-transition: 0.5s, ease;
  -o-transition: 0.5s, ease;
  transition: 0.5s, ease;
}

a:hover {
  text-decoration: none;
  color: var(--main-color);
}

p,
ul,
ol {
  margin-bottom: 1.5em;
  font-size: 16px;
  color: #848484;
  font-family: "Open Sans", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #5a5a5a;
  font-family: "Montez", cursive;
  font-weight: 400;
  margin: 0 0 30px 0;
}

figure {
  margin-bottom: 2em;
}

/*RSVP FORM Start*/
.is-invalid {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 5px #ff6b6b;
}

.notification {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 15px;
  background: var(--notification-background);
  color: var(--notification-text);
  font-family: 'Brush Script MT', cursive;
  font-size: 1.5em;
  text-align: center;
  box-shadow: 0 0 15px var(--notification-shadow);
}

/*RSVP FORM End*/

/* GALLERY Start*/
/* .gallery:after {
    content: '';
    display: block;
    height: 2px;
    margin: .5em 0 1.4em;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(77,77,77,1) 50%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(77,77,77,1) 50%, rgba(0, 0, 0, 0) 100%);
}

.gallery img {
    height: 100%;
}

.gallery a {
    /* width: 240px; */
/*height: 280px;
    display: inline-block;
    overflow: hidden;
    margin: 4px 6px;
    box-shadow: 0 0 4px -1px #000;
} */
.baguetteBox.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  /* space between images */
  justify-content: center;
  padding: 10px;
}

.baguetteBox.gallery a {
  flex: 1 1 200px;
  /* grow, shrink, base width */
  max-width: 300px;
  /* optional max */
  display: block;
}

.baguetteBox.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  /* optional: rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* optional: subtle shadow */
}

/* GALLERY End*/

/* MAP Start*/
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* MAP End*/



/* MENU Start */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  /* padding: 1rem 0; */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-navigation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 50px;
}

#brand-logo a {
  font-size: 2.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--main-color);
  transition: color 0.3s ease;
  line-height: 1;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  padding-top: 35px;
}

#brand-logo a:hover {
  color: var(--main-color);
}

.mobile-nav-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.mobile-nav-toggle i::before,
.mobile-nav-toggle i::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.mobile-nav-toggle i::before {
  top: -8px;
}

.mobile-nav-toggle i::after {
  top: 8px;
}

.mobile-nav-toggle.is-active i {
  background-color: transparent;
}

.mobile-nav-toggle.is-active i::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav-toggle.is-active i::after {
  top: 0;
  transform: rotate(-45deg);
}

#main-menu-wrapper {
  display: block;
  padding-left: 30px;
  padding-right: 30px;
}

#main-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

#main-nav-list li.current-page a {
  color: var(--main-color);
  font-weight: 600;
}

#main-nav-list li a {
  text-decoration: none;
  color: #555;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

#main-nav-list li a:hover {
  color: var(--main-color);
}

.nav-elements-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


@media screen and (max-width: 768px) {
  #brand-logo a {
    padding-left: 0px;
    padding-top: 0px;
  }

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  #main-menu-wrapper {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    transition: left 0.4s ease-in-out;
    z-index: 999;
    overflow-y: auto;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #main-menu-wrapper.is-active {
    left: 0;
  }

  #main-nav-list {
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  #main-nav-list li {
    display: block;
    border-bottom: 1px solid #eeeeee;
  }

  #main-nav-list li:last-child {
    border-bottom: none;
  }

  #main-nav-list li a {
    padding: 1rem 0;
    /* Ensures consistent vertical spacing and full width */
    font-size: 1.2rem;
    color: #6a053c;
  }

  .no-scroll {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
  }

  #main-nav-list li a:hover {
    background-color: #fce4ec;
    color: #4a042e;
  }

  .main-navigation-header {
    padding: 0 1rem;
  }

  #brand-logo {
    margin: 0;
  }

  .nav-elements-right {
    display: block;
  }
}

/* MENU End */

::-webkit-selection {
  color: #fcfcfc;
  background: var(--main-color);
}

::-moz-selection {
  color: #fcfcfc;
  background: var(--main-color);
}

::selection {
  color: #fcfcfc;
  background: var(--main-color);
}

#header {
  position: relative;
  margin-bottom: 0;
  z-index: 9999999;
}

.stuck {
  position: fixed !important;
  top: 0 !important;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.header-top {
  padding: 10px 0;
  background: var(--main-color);
}

.header-top .link a {
  margin-left: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.header-top .link a:first-child {
  margin-left: 0;
}

.header-top .link a:hover {
  color: white !important;
}

@media screen and (max-width: 768px) {
  .header-top .link {
    text-align: center;
  }
}

.header-top .social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-right: 15px;
  position: relative;
  -webkit-transition: 0.5s, ease-in-out;
  -o-transition: 0.5s, ease-in-out;
  transition: 0.5s, ease-in-out;
}

.header-top .social a:last-child {
  margin-right: 0;
}

.header-top .social a:hover,
.header-top .social a:focus,
.header-top .social a:active {
  text-decoration: none;
  color: white !important;
}

.header-top .social a:hover i,
.header-top .social a:focus i,
.header-top .social a:active i {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .header-top .social {
    text-align: center !important;
  }
}

.hero-img {
  position: relative;
  height: inherit;
  overflow: hidden;
  width: 100%;
  height: 700px;
}

@media screen and (max-width: 410px) {
  .img-cover,
  .hero-img {
    max-height: 300px;
  }

  .img-cover{
    /* object-fit: contain; */
    background-size:contain;
    transform: scale(1.2); /* Zoom in */
  }

  .img-back{
    /* object-fit: contain; */
    background-size:cover;
  }
}

.overlay {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}

.img-cover {
  /* background-size: cover; */
  /* position: relative; */
  background-repeat: no-repeat;
  /* background-size: cover;
  background-position: center center;
  height: inherit;
  width: auto; */
  z-index: 5;
  height: 100%;
  width: 100%;
  /* object-fit: cover; */
  background-size: cover;
  object-position: top;
  background-position: center center;
}

.img-back {
  position: relative;
  background-repeat: no-repeat;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

.img-back::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/A&M_352_e.jpg');
  background-size: cover;
  background-position: center center;
  filter: blur(5px);
  z-index: 0;
}

.img-back > * {
  position: relative;
  z-index: 1;
}

.romantic-text {
  color: white;
  font-size: 80px;
  text-align: center;
  position: absolute;
  z-index: 10;
  /* margin-top: 30px; */

  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.6),
    /* subtle black shadow for readability */
    0 0 10px rgba(255, 182, 193, 0.8),
    /* pink glow */
    0 0 20px rgba(255, 218, 185, 0.7);
  /* peach glow */
  
  /* display: inline-block; */
}

@media screen and (max-width: 768px) {
  .img-cover .img-back {
    /* padding: 3em 0;
    background-position: center center; */
    /* center image horizontally */
  }
}

@media screen and (min-width: 1600px) {
  .img-cover {
    max-height: 1200px;
    padding: 3em 0;
    background-position: center center;
    background-size: contain;
    /* center image horizontally */
  }
}

.img-cover .display-t {
  display: table;
  height: inherit;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* @media screen and (max-width: 768px) {
  .img-cover .display-t {
    height: auto;
  }
} */

.img-cover .display-tc {
  display: table-cell;
  vertical-align: middle;
}

.img-cover .display-tc h1 {
  color: #fff;
}

.img-cover .display-tc h2 {
  color: #fff;
  font-size: 80px;
  margin-bottom: 30px;
  font-weight: 300 !important;
}

.img-cover .display-tc h2 strong {
  font-weight: 700;
}

/* @media screen and (max-width: 768px) {
  .img-cover .display-tc h2 {
    font-size: 45px;
  }
} */

.img-cover .display-tc p {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 7px;
}

.img-cover .display-tc p span {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 5px 0px;
}

.sf-arrows .sf-with-ul {
  padding-right: 2.5em;
}

.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #ccc;
}

.sf-arrows>li>.sf-with-ul:focus:after,
.sf-arrows>li:hover>.sf-with-ul:after,
.sf-arrows>.sfHover>.sf-with-ul:after {
  border-top-color: #ccc;
}

.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #ccc;
}

.sf-arrows ul li>.sf-with-ul:focus:after,
.sf-arrows ul li:hover>.sf-with-ul:after,
.sf-arrows ul .sfHover>.sf-with-ul:after {
  border-left-color: #ccc;
}

#couple-home,
#groom-bride,
#blog-section,
#form-back-img,
#when-where,
#guest,
#gallery,
.content-section {
  padding: 4em 0;
}

#countdown {
  padding: 4em 0;
}

@media screen and (max-width: 768px) {

  #couple-home,
  #groom-bride,
  #blog-section,
  #form-back-img,
  #when-where,
  #guest,
  #gallery,
  .content-section {
    padding: 4em 0;
  }

  #countdown {
    padding: 2em 0;
  }
}

.section-gray {
  background: #F6FAF7;
}

.heading-section {
  padding-bottom: 0em;
  margin-bottom: 0em;
}

.heading-section h2 {
  font-size: 50px;
  font-weight: 300;
  position: relative;
  color: var(--main-color);
}

.heading-section p {
  font-size: 18px;
}

#couple-home img {
  margin-bottom: 20px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

#couple-home h3 {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  #couple-home h3 {
    font-size: 35px;
  }
}

#couple-home .amp-center {
  font-size: 60px;
  margin-top: 100%;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  #couple-home .amp-center {
    font-size: 40px;
  }
}

.time-unit {
  display: inline-block;
  width: 90px;
  font-size: 40px;
  /* or whatever width fits the largest value */
  text-align: center;
}

/* #countdown {
  background: var(--countdown);
} */
#countdown{
  background: linear-gradient(to bottom right,rgba(168, 2, 2, 0.2),rgba(255, 0, 0, 0.4));
}

#countdown .countdown {
  margin-bottom: 0;
  font-size: 50px;
  color: #fff;
}

#countdown .countdown span {
  /* margin: 0 10px; */
  display: inline-block;
  font-family: "Montez", cursive;
}

#countdown .countdown small {
  display: block;
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
}

.couple-wrap {
  width: 100%;
  float: left;
  background: #F6FAF7;
}

.couple-desc {
  padding: 3em;
}

@media screen and (max-width: 768px) {
  .couple-desc {
    padding: 1.5em;
  }
}

.couple-desc h3 {
  font-size: 40px;
}

.couple-desc .social-icons a:first-child {
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .couple-desc .social-icons a i {
    font-size: 20px;
  }
}

.wedding-events {
  background: #fff;
}

.wedding-events .ceremony-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 400px;
}

.wedding-events .desc {
  padding: 2em;
}

.wedding-events .desc h3 {
  font-size: 30px;
}

.wedding-events .desc p strong {
  font-size: 14px;
}

.text-outline {
  color: white;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

#form-back-img {
  position: relative;
  background-size: cover;
  /* background-position: bottom center; */
  background-repeat: no-repeat;
}

#form-back-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

#form-back-img .form-control {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgb(173, 173, 173);
  color: #fff;
  font-size: 16px !important;
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#form-back-img .form-control::-webkit-input-placeholder {
  color: #ffffffc9;
}

#form-back-img .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffffc9;
}

#form-back-img .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffffc9;
}

#form-back-img .form-control:-ms-input-placeholder {
  color: #ffffffc9;
}

#form-back-img .form-control:focus {
  background: rgba(255, 255, 255, 0.3);
}

#form-back-img .btn-block {
  height: 54px;
  border: none !important;
  background: var(--main-color);
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 50px;
  padding-right: 50px;
}

#form-back-img .form-inline .form-group {
  width: 100% !important;
  margin-bottom: 10px;
}

#form-back-img .form-inline .form-group .form-control {
  width: 100%;
  padding: 27px 20px !important;
}

#form-back-img .heading-section {
  margin-bottom: 30px;
}

#form-back-img .heading-section h2 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

#form-back-img .heading-section p {
  color: rgba(255, 255, 255, 0.7);
}

.groom-men img {
  margin-bottom: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.groom-men h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
}

.gallery {
  margin-bottom: 30px;
}

.gallery .gallery-img {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.gallery .gallery-img img {
  position: relative;
  max-width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
}

.gallery .gallery-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.blog {
  margin-bottom: 60px;
}

.blog a img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .blog {
    width: 100%;
  }
}

.blog .blog-text {
  margin-bottom: 30px;
  position: relative;
  background: #fff;
  width: 100%;
  padding: 30px;
  float: right;
}

.blog .blog-text span {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px;
}

.blog .blog-text span.by {
  color: rgba(0, 0, 0, 0.5);
  margin-right: 7px;
}

.blog .blog-text span.posted_date {
  color: rgba(0, 0, 0, 0.5);
  margin-right: 7px;
}

.blog .blog-text span.comment a {
  color: rgba(0, 0, 0, 0.3);
}

.blog .blog-text span.comment a i {
  color: var(--main-color);
  padding-left: 4px;
}

.blog .blog-text h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.5;
  font-family: "Open Sans", Arial, sans-serif;
}

.blog .blog-text h3 a {
  color: rgba(0, 0, 0, 0.6);
}

#map {
  width: 100%;
  height: 500px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #map {
    height: 200px;
  }
}

.social-icons>a {
  padding: 4px 10px;
  color: var(--main-color);
}

.social-icons>a i {
  font-size: 26px;
}

.social-icons>a:hover,
.social-icons>a:focus,
.social-icons>a:active {
  text-decoration: none;
  color: #5a5a5a;
}

#page{
  background: linear-gradient(to bottom right,rgba(168, 2, 2, 0.3),rgba(255, 0, 0, 0.7));
}

#footer {
  /* background: var(--footer); */
  background: linear-gradient(to top bottom,rgba(107, 1, 1, 0.3),rgba(202, 0, 0, 0.7));
  padding: 60px 0 40px;
}

#footer p {
  color: white;
  font-size: 14px;
}

#footer p a {
  color: rgba(255, 255, 255, 0.5);
}

#footer p a:hover,
#footer p a:active,
#footer p a:focus {
  color: rgba(255, 255, 255, 0.9) !important;
}

#footer h2 {
  color: #fff;
  font-size: 60px;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn.btn-primary {
  background: var(--main-color);
  color: #fff;
  border: none !important;
  border: 2px solid transparent !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
  box-shadow: none;
  background: var(--main-color);
  color: #fff !important;
}

.btn:hover,
.btn:active,
.btn:focus {
  background: var(--button-hover) !important;
  color: #fff;
  outline: none !important;
}

.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default:active {
  border-color: transparent;
}

.js .animate-box {
  opacity: 0;
}

#wrapper {
  overflow-x: hidden;
  position: relative;
}

.offcanvas {
  overflow: hidden;
}

.offcanvas #wrapper {
  overflow: hidden !important;
}

#page {
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* .offcanvas #page {
  -moz-transform: translateX(-240px);
  -webkit-transform: translateX(-240px);
  -ms-transform: translateX(-240px);
  -o-transform: translateX(-240px);
  transform: translateX(-240px);
}

#offcanvas-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99;
  background: #222;
  right: -240px;
  width: 240px;
  padding: 20px;
  overflow-y: scroll !important;
  display: none;
}

@media screen and (max-width: 768px) {
  #offcanvas-menu {
    display: block;
  }
}

#offcanvas-menu ul {
  padding: 0;
  margin: 0;
}

#offcanvas-menu ul li {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
}

#offcanvas-menu ul li a {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.4);
}

#offcanvas-menu ul li a:hover {
  color: var(--main-color);
}

#offcanvas-menu ul li>.sub-menu {
  margin-top: 9px;
  padding-left: 20px;
}

#offcanvas-menu ul li.active>a {
  color: var(--main-color);
}

#offcanvas-menu ul .sub-menu {
  display: block !important;
} */

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

.row-bottom-padded-lg {
  padding-bottom: 7em;
}

@media screen and (max-width: 768px) {
  .row-bottom-padded-lg {
    padding-bottom: 2em;
  }
}

.row-top-padded-lg {
  padding-top: 7em;
}

@media screen and (max-width: 768px) {
  .row-top-padded-lg {
    padding-top: 2em;
  }
}

.row-bottom-padded-md {
  padding-bottom: 4em;
}

@media screen and (max-width: 768px) {
  .row-bottom-padded-md {
    padding-bottom: 2em;
  }
}

.row-top-padded-md {
  padding-top: 4em;
}

@media screen and (max-width: 768px) {
  .row-top-padded-md {
    padding-top: 2em;
  }
}

.row-bottom-padded-sm {
  padding-bottom: 2em;
}

@media screen and (max-width: 768px) {
  .row-bottom-padded-sm {
    padding-bottom: 2em;
  }
}

.row-top-padded-sm {
  padding-top: 2em;
}

@media screen and (max-width: 768px) {
  .row-top-padded-sm {
    padding-top: 2em;
  }
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.padding {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lead {
  line-height: 1.8;
}

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/hourglass.svg) center no-repeat #222222;
}