/*
**
**** Global ****
**
*/

:root {
  --bodyFont: 'Open Sans', sans-serif;
  --numFont: 'Roboto', sans-serif;
  --highlightFont: 'Kalam', cursive;
  --headingFont: 'Titan One', cursive;

  --bodyColor: #282828;

  --bgColor2: #232323;


  --mainBlue: #3BB1F9;
  --mainGreen: #6EBA3A;

  --mainColor2: #158bdb;
  --mainColor3: #24872a;

  --mainGradient: linear-gradient(135deg, #3BB1F9 2%, #63CDAD 61%, #6EBA3A 93%);
  --mainGradient2: linear-gradient(to right, #D8ECCB, #C8E7F9);

  --blue: #2577F2;
  --lightBlue: #75CEF3;
  --darkLightBlue: #39598A;

  --red: #F22563;
  --darkBlue:#2650E1;
  --redGradient: linear-gradient(to right, #0839E2, #F225A0);

  --purple: #A33FF2;
  --gray: #2F2F2F;
  --darkGray: #1e1e1e;
  --darkBlue2: #1F3F93;

  --green: #58BD35;
  --lightBlue2: #334561;
  --cyan: #187C92;

  --orange: #FFA217;
  --lightBlue3: #006686;
  --bgorange: #DEAD01;

  --cyanBg: #00CBDC;
  --redLight: #DF2929;
  --violet: #6030E9;

  --darkgreen: #2E8B57;
}

body {
  font-size: 15px;
  font-family: var(--bodyFont);
  color: var(--bodyColor);
}

h1,h2,.h1 {
  font-family: var(--headingFont);
}

h3,h4,.h4,h5, .h5,h6 {
  font-family: var(--bodyFont);
  font-weight: 700;
}

strong {
  font-weight: 700;
}

.hl-heading {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--highlightFont);
  text-shadow:
  -1.2px -1.2px 0 #fff,
  0 -1.2px 0 #fff,
  1.2px -1.2px 0 #fff,
  1.2px 0 0 #fff,
  1.2px 1.2px 0 #fff,
  0 1.2px 0 #fff,
  -1.2px 1.2px 0 #fff,
  -1.2px 0 0 #fff;
}

.fw-medium {
  font-weight: 500;
}

.blue-style h2,
.blue-style .hl-heading {
  color: var(--blue);
}

.highlight-blue {
  color: var(--mainBlue);
}

.purple-style h2,
.purple-style .hl-heading {
  color: var(--purple);
}

.green-style h2,
.green-style .hl-heading {
  color: var(--green);
}

.darkgreen-txt,
.darkgreen-style h2,
.darkgreen-style .hl-heading {
  color: var(--darkgreen);
}

.orange-style h2,
.orange-style .hl-heading {
  color: var(--orange);
}

.red-style h2,
.red-style .hl-heading {
  color: var(--red);
}

.lightred-style h2,
.lightred-style .hl-heading {
  color: var(--redLight);
}

.darkgreen-bg {
  background-color: var(--darkgreen)!important;
}

.description p {
  font-size: 16px;
  line-height: 26px;
}

.btn:not(.main-btn) {
  color: #fff;
  outline: none;
  font-size: 15px;
  border: 1px solid #fff;
  font-weight: 500;
  border-radius: 11px;
  padding: 10px 15px;
  min-height: 45px;
  min-width: 120px;
  transition: all 0.15s linear;
}

.blue-style .section .btn:not(.main-btn) {
  background-color: var(--blue);
}

.purple-style .section .btn:not(.main-btn) {
  background-color: var(--purple);
}

.green-style .section .btn:not(.main-btn) {
  background-color: var(--green);
}

.darkgreen-style .section .btn:not(.main-btn) {
  background-color: var(--darkgreen);
}

.red-style .section .btn:not(.main-btn) {
  background-color: var(--red);
}

.lightred-style .section .btn:not(.main-btn) {
  background-color: var(--redLight);
}

.orange-style .section .btn:not(.main-btn) {
  background-color: var(--orange);
}

.btn:hover {
  transform: scale(1.05);
}

.main-btn {
  min-height: 55px;
  text-decoration: none;
  transition: all 0.15s linear;
  border: none;
  box-shadow: none;
  background: var(--mainGradient);
  color: #fff;
  font-weight: 500;
  border-radius: 37px;
  padding: 8px 22px;
  font-size: 16px;
}

.main-btn .txt {
  font-family: var(--headingFont);
  color: #ffff;
  font-weight: 500;
  z-index: 1;
  padding: 2px 10px;
  line-height: initial;
  max-width: 134px;
}

.main-btn:hover {
  line-height: 23px;
}

.btn-container > div:not(:last-child),
.btn-container > .btn:not(:last-child) {
  margin-right: 15px;
}

.btn.rounded-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  font-size: 18px;
  padding: 5px 5px 5px 8px;
  border-width: 2px;
}

.title {
  font-weight: 500;
  font-size: 18px;
}

.bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

img {
  width: 100%;
}

header.bg .container,
section.bg .container {
  position: relative;
  z-index: 9;
}

.carousel-bg,
header.bg .bg-overlay,
section.bg .bg-overlay {
  z-index: 1;
  background: linear-gradient(to right, rgb(0 0 0 / 75%) 40%, transparent 95%)
}

header.bg .bg-overlay.darker {
  background-color: rgba(0,0,0,0.55);
}

.section-space {
  padding: 100px 0;
}

.big-space {
  padding: 200px 0 100px 0;
}

.top-space {
  padding-top: 100px;
}

.btm-space {
  padding-bottom: 80px;
}

.bg-wave {
  min-height: 114px;
  z-index: 99;
}

.mxwidth1 {
  max-width: 780px;
}

.mxwidth2 {
  max-width: 600px;
}

.mxwidth3 {
  max-width: 675px;
}

.btn.blue-btn {
  background-color: var(--blue);
}

.btn.pink-btn {
  background-color: var(--red);
}

.btn.green-btn {
  background-color: var(--green);
}

.btn.darkgreen-btn {
  background-color: var(--darkgreen);
}

.btn.purple-btn {
  background-color: var(--purple);
}

.btn.orange-btn {
  background-color: var(--orange);
}

.btn.cyan-btn {
  background-color: var(--cyanBg);
}

.btn.red-btn {
  background-color: var(--redLight);
}

.btn.violet-btn {
  background-color: var(--violet);
}

.underline {
  box-shadow: inset 0px -15px 0px 0px var(--mainBlue);
  padding: 0 1px 0px 0;
}

.underline.green {
  box-shadow: inset 0px -15px 0px 0px var(--mainGreen);
}

.topwave-space {
  padding-top: 114px;
}

.gradient-bg {
  background: var(--mainGradient2);
}

.custom-list li:not(:last-child) {
  margin-bottom: 15px;
}

.custom-list .icon {
  padding-top: 2px;
  width: 45px;
  flex: 0 0 45px;
}

.custom-list .font-icon .icon {
  padding-top: 0px;
  width: 24px;
  flex: 0 0 24px;
  font-size: 24px;
}

.custom-list p {
  padding-left: 12px;
  margin-bottom: 0px;
}

.custom-list .num {
  font-size: 18px;
  color: #fff;
  background: var(--mainGradient);
  font-weight: 600;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.description p.title {
  font-weight: 600;
}

.blue-highlight {
  color: var(--mainColor2);
}

.green-highlight {
  color: var(--mainGreen);
}

.heading h2 {
  line-height: 42px;
}

/*************************
  *** Start Navbar ***
**************************/

.navbar {
  background: linear-gradient(135deg, #3BB1F9 2%, #63CDAD 61%, #6EBA3A 93%);
  box-shadow: 0px 2px 8px 0px rgba(0,0,0,.25);
}

.navbar:not(.fixed-top) {
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 20px;
  z-index: 99;
}

.navbar.fixed-top {
  top: -209px;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0,0,0,.1);
}

.navbar.fixed-top.scroll {
  top: 0px;
  transition: top 0.15s linear;
  box-shadow: 0px 2px 10px 0px rgba(0,0,0,.2);
}

.navbar.fixed-top.scroll2 {
  transition: top 0.15s linear;
}

.navbar .nav-item .nav-link:not(.btn) {
  font-size: 16px;
  padding: 3px;
  font-weight: 500;
  color: var(--bodyColor);
}

.navbar .nav-item:not(:last-child) {
  margin-right: 15px;
}

.navbar .btm-nav {
  margin-top: 25px;
}

.navbar .btm-nav .nav-item:not(:last-child) {
  margin-right: 25px;
}

.navbar .btn.nav-btn .icon,
.navbar .btn.nav-btn,
.navbar .nav-item.dropdown .nav-link.dropdown-toggle span,
.navbar .nav-item .nav-link,
.navbar .socail-link {
  transition: all 0.18s linear;
}

.navbar .navbar-brand {
  width: 150px;
}

.navbar .socail-link:not(:last-child) {
  margin-right: 8px;
}

.navbar .nav-item.l-border .nav-link {
  margin-left: 15px;
}

.navbar .btn.nav-btn {
  padding: 13px 20px;
  border-radius: 35px;
  border-color: inherit;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,.15);
}

.navbar .btn.nav-btn .icon {
  width: 30px;
  height: 30px;
  background-color: #fff;
  margin-right: 10px;
}

.navbar .btn.nav-btn.bg2 .icon {
  color: var(--mainColor2);
}

.navbar .btn.nav-btn.bg2 {
  background-color: var(--mainColor2);
  border-color: var(--mainColor2);
}

.navbar .btn.nav-btn.bg3 .icon {
  color: var(--mainColor3);
}

.navbar .btn.nav-btn.bg3 {
  background-color: var(--mainColor3);
  border-color: var(--mainColor3);
}

.navbar .dropdown-toggle .icon,
.navbar .btm-nav .nav-item .nav-link span,
.navbar .btm-nav .nav-item .nav-link,
.navbar .btn.nav-btn .txt {
  color: #fff;
}

.navbar .btm-nav {
  padding: 15px;
  border-radius: 35px;
  background-color: var(--bgColor2)
}

.navbar .dropdown-toggle::after {
  display: none;
}

.navbar .dropdown-toggle .txt {
 margin-right: 8px;
}

.footer-section .social-content .socail-link:hover,
.navbar .socail-link:hover {
  transform: scale(1.1);
}

.navbar .btn.nav-btn:hover {
  transform: scale(1.05);
}

.navbar .nav-item.dropdown:hover .nav-link.dropdown-toggle span,
.navbar .nav-item .nav-link:hover {
  color: var(--mainGreen);
}

.navbar .nav-item.dropdown:hover .nav-link.dropdown-toggle .icon {
  transform: rotate(180deg);
}

.navbar .top-nav .nav-item .nav-link:hover .icon {
  padding-bottom: 2px;
}

.navbar .nav-item.dropdown .dropdown-menu  {
  border: none;
  background-color: transparent;
  border-radius: 0px;
  padding: 15px 0 0 0;
}

.navbar .nav-item.dropdown .dropdown-menu ul {
  border: none;
  box-shadow: 0px 2px 7px 0px rgba(0,0,0,.17);
  background-color: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 0.5rem 0;
  margin-top: 20px;
  opacity: 0;
  transition: all 0.18s linear;
}

.navbar .nav-item.dropdown .dropdown-menu ul.show {
  margin-top: 0;
  opacity: 1;
}

.navbar.scroll .nav-item.dropdown .dropdown-menu ul.show {
  margin-top: 1px;
}

.navbar .nav-item.dropdown.show .nav-link.dropdown-toggle + .dropdown-menu {
  display: block;
}

.navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
}

.navbar .nav-item.dropdown .dropdown-menu li:not(:last-child) .dropdown-item {
  border-bottom: 1px solid #efefef;
}

.navbar .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background-color: var(--mainGreen);
}

body.home .navbar .navbar-nav .nav-link[data-page='home'],
body.contacto .navbar .navbar-nav .nav-link[data-page='contacto'],
body.feria .navbar .navbar-nav .nav-link[data-page='feria'] {
  font-weight: 500;
  color: var(--mainGreen)
}

body.infantiles .navbar .nav-item.dropdown .dropdown-menu .dropdown-item[data-page='infantiles'],
body.interactivos .navbar .nav-item.dropdown .dropdown-menu .dropdown-item[data-page='interactivos'] {
  color: #fff;
  background-color: var(--mainGreen);
}

/* Responsive */

@media only screen and (max-width: 1399px) {
  .navbar .navbar-brand {
    max-width: 300px;
  }
  .navbar:not(.fixed-top) {
    padding-top: 15px;
  }
  .navbar .btm-nav {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .navbar .navbar-brand {
    max-width: 270px;
    margin-right: 0px;
  }
  .navbar .btn.nav-btn {
    padding: 11px 16px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar:not(.fixed-top) {
    padding: 10px 0;
  }
  .navbar .navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 60px;
    height: 46px;
    padding: 12px 10px;
    border: 1px solid #fff;
    box-shadow: none;
    outline: none;
    transition: all 0.15s linear;
  }
  .navbar .navbar-toggler-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 35px;
    transition: background-color 0.15s linear, transform 0.15s linear;
    background-color: #fff;
  }
  .navbar .navbar-toggler:not(.collapsed),
  .navbar .navbar-toggler:hover {
    border-color: var(--mainColor2);
    background-color: var(--mainColor2);
  }
  .navbar,
  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-line,
  .navbar .navbar-toggler:hover .navbar-toggler-line {
    background-color: #fff;
  }
  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
  }
  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-child(2) {
    opacity: 0;
  }
  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }
  .navbar .btm-nav {
    margin-top: 0px;
    padding: 0px;
    background-color: transparent;
  }
  .navbar .btm-nav .nav-item .nav-link span,
  .navbar .btm-nav .nav-item .nav-link {
    color: #fff;
  }
  .navbar .btm-nav .nav-item.dropdown:hover .nav-link span,
  .navbar .btm-nav .nav-item .nav-link:hover {
    color: var(--bgColor2);
  }
  .navbar .navbar-collapse {
    background-color: transparent;
  }
  .navbar .inner-nav {
    padding: 10px 0 2.5px 0;
  }
  .navbar .l-border {
    border: none;
  }
  .navbar .top-nav {
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 10px;
  }
  .navbar .nav-social-contianer li:nth-child(3),
  .navbar .top-nav .navbar-nav {
    width: 100%;
    flex: 0 0 100%;
  }
  .navbar .nav-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .navbar .nav-social-contianer li:nth-child(1) {
    order: 1;
  }
  .navbar .btm-nav .nav-item:not(:last-child),
  .navbar .nav-item.l-border .nav-link,
  .navbar .nav-item:not(:last-child) {
    margin: 0px;
  }
  .navbar .dropdown-item,
  .navbar .btm-nav .nav-item .nav-link {
    font-weight: 500;
  }
  .navbar .nav-social-contianer li:nth-child(3) .nav-link,
  .navbar .btm-nav .nav-item .nav-link {
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.5);
  }
  .navbar .nav-item.nav-social-content {
    margin: 20px 0 12.5px 0;
    order: 2;
  }
  .navbar .socail-link:not(:last-child) {
    margin-right: 15px;
  }
  .navbar .nav-item.dropdown .dropdown-menu {
    text-align: center;
    padding-top: 0px;
  }
  .navbar .nav-item.dropdown .dropdown-menu ul {
    margin-top: 0;
    background-color: var(--bgColor2);
  }
  .navbar .nav-item.dropdown .dropdown-menu ul .dropdown-item {
    color: #fff;
  }
  .navbar .nav-btn-container .nav-item {
    margin: 7.5px;
  }
  body.home .navbar .navbar-nav .nav-link[data-page='home'],
  body.feria .navbar .navbar-nav .nav-link[data-page='feria'],
  body.infantiles .navbar .navbar-nav .nav-link[data-page='infantiles'],
  body.page-puestos-de-feria .navbar .navbar-nav .nav-link[data-page='puestos'] {
    color: var(--bgColor2);
    font-weight: 600;
  }
}

@media only screen and (max-width: 500px) {
  .navbar .navbar-brand {
    max-width: 235px;
  }
}

/*************************
    **** End Navbar ***
**************************/

/*************************
  *** Start Header ***
**************************/
.nav-top-pace {
  margin-top: 194px;
}

.header-section {
  margin-top: 194px;
  color: #fff;
  padding: 150px 0
}

.header-section.bg1 {
  background-image: url('../img/bg-header0.jpg');
}

.header-section.bg2 {
  background-image: url('../img/bg-header4.jpg');
}

.header-section.bg3 {
  background-image: url('../img/bg-header6.jpg');
}

.header-section.bg4 {
  background-image: url('../img/bg-header7.jpg');
}

.header-section .bg-wave.btm-wave {
  bottom: -116px;
}

.header-section .bg-wave {
  background-image: url('../img/wave-gradient.png');
}

.header-section .bg-wave {
  min-height: 114px;
  z-index: 99;
  bottom: -1px;
}

.header-section .description p {
  font-size: 18px;
  line-height: 28px;
}

.header-section .description .h4 {
  color: var(--mainGreen);
}

.header-section .heading h1 {
  text-shadow: 1px 1px 2px black;
}


/*
**
**** About Section ****
**
*/

.about-section {
  padding-bottom: 80px;
}

.about-section .pic {
  max-width: 480px;
}

.about-section .pic.gradient {
  height: 480px;
  border-radius: 100%;
  padding: 6px;
  background: var(--mainGradient);
}

.about-section:not(.delivery) .pic img {
  object-fit: cover;
  height: 100%;
}

.about-section .games-num {
  color: #fff;
  right: 0;
  width: 92px;
  flex: 0 0 92px;
  height: 92px;
  bottom: 70px;
}

.about-section .games-num .overlay {
  filter: blur(1.4px);
  background: linear-gradient(to bottom, var(--mainBlue), var(--mainGreen));
}

.about-section .games-num .num {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
}

.about-section .games-num .txt {
  font-size: 14px;
}

/*
**
**** Feature Section ****
**
*/

.features-section h2,
.features-section {
  color: #fff;
}

.features-section .inner-content > div  {
  flex: 0 0 50%;
}

.features-section .left-content .pic {
  min-height: 770px;
}

.home .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg6.jpg');
}

.feria .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg4.jpg');
}

.infantiles .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg6.jpg');
}

.interactivos .features-section .left-content .pic1 {
  background-image: url('../img/adult-bounce2.jpg');
}

.contacto .features-section .left-content .pic1 {
  background-image: url('../img/feature-bg6.jpg');
}

.features-section .left-content .bg-overlay {
  z-index: 1;
  background-color: rgba(0,0,0,0.1);
}

.features-section .right-content {
  padding: 184px 35px 150px 35px;
}

.features-section .right-content ul li.d-flex .highlight {
  font-weight: 600;
  padding-right: 10px;
}

.blue-style .features-section .right-content {
  background-color: var(--darkLightBlue);
}

.red-style .features-section .right-content {
  background: var(--redGradient);
}

.lightred-style .features-section .right-content {
  background: #ad2e2e;
}

.purple-style .features-section .right-content {
  background: var(--darkBlue2);
}

.green-style .features-section .right-content {
  background: var(--cyan);
}

.darkgreen-style .features-section .right-content {
  background: #2B3A42;
}

.orange-style .features-section .right-content {
  background: var(--bgorange);
}

.gradient-bg .features-section .right-content {
  background: #1973AA;
}

.features-section .feature {
  font-size: 16px;
}

.features-section .feature:not(:last-child) {
  margin-bottom: 10px;
}

.features-section .feature .txt {
  transition: all 0.15s linear;
}

.features-section .feature .num {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  font-weight: 500;
  background-color: #7E7E7E;
  margin-right: 10px;
  box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 30%);
}

.features-section .feature:nth-child(1) .num {
  background-color: #FF5E5E;
}
.features-section .feature:nth-child(2) .num {
  background-color: #FFB053;
}
.features-section .feature:nth-child(3) .num {
  background-color: #5EBD5C;
}
.features-section .feature:nth-child(4) .num {
  background-color: #7F60FF;
}
.features-section .feature:nth-child(5) .num {
  background-color: #2577F2;
}
.features-section .feature:nth-child(6) .num {
  background-color: #303030;
}
.features-section .feature:nth-child(7) .num {
  background-color: #50B6B0;
}
.features-section .feature:nth-child(8) .num {
  background-color: #E56E00;
}
.features-section .feature:nth-child(9) .num {
  background-color: #CE43FF;
}

.features-section .txt-content:not(.noline) .feature:nth-child(1):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #FF5E5E;
}
.features-section .txt-content:not(.noline) .feature:nth-child(2):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #FFB053;
}
.features-section .txt-content:not(.noline) .feature:nth-child(3):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #5EBD5C;
}
.features-section .txt-content:not(.noline) .feature:nth-child(4):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #7F60FF;
}
.features-section .txt-content:not(.noline) .feature:nth-child(5):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #2577F2;
}
.features-section .txt-content:not(.noline) .feature:nth-child(6):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #303030;
}
.features-section .txt-content:not(.noline) .feature:nth-child(7):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #50B6B0;
}
.features-section .txt-content:not(.noline) .feature:nth-child(8):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #E56E00;
}
.features-section .txt-content:not(.noline) .feature:nth-child(9):hover .txt {
  box-shadow: inset 0px -7px 0px 0px #CE43FF;
}

.features-section .overlay-shapes {
  max-width: 875px;
  background-size: contain;
  background-position: right 80px;
  background-image: url('../img/shapes-overlay.png');
}

.features-section .bg-wave {
  bottom: -1px;
  background-image: url('../img/wave-white.png');
}

.gradient-bg .features-section .bg-wave {
  background-image: url('../img/wave-gradient.png');
}

.gradient-bg .features-section .bg-wave.topwave {
  top: -1px;
  bottom: auto;
  background-image: url('../img/wave-gradient2.png');
}

.features2-section .feature-card .title {
  margin-bottom: 6px;
  font-weight: 700;
}

.features2-section .feature-card .txt {
  font-weight: 500;
}

.features2-section .highlight {
  font-weight: 700;
}

.features2-section .feature-card .icon {
  max-width: 132px;
  padding: 30px;
  margin-bottom: 28px;
}

.features2-section .feature-card .inner-card {
  padding-top: 30px;
  background-color: rgba(255, 255, 255, .3);
  border-radius: 15px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, .05);
}

.features2-section .feature-card .icon::before,
.features2-section .feature-card .icon::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: rotate(15deg);
  border-radius: 25px;
}

.features2-section .feature-card .icon::after {
  opacity: 0.5;
  transform: rotate(0deg);
  filter: blur(2px);
}

.features2-section .feature-card .pic {
  width: 65px;
  z-index: 1;
}

.features2-section .feature-card:nth-child(1) .icon::before,
.features2-section .feature-card:nth-child(1) .icon::after {
  background-color: #3C89FC;
}
.features2-section .feature-card:nth-child(1) .highlight {
  color: #3C89FC;
}
.features2-section .feature-card:nth-child(2) .icon::before,
.features2-section .feature-card:nth-child(2) .icon::after {
  background-color: #F13C3C;
}
.features2-section .feature-card:nth-child(2) .highlight {
  color: #F13C3C;
}
.features2-section .feature-card:nth-child(3) .icon::before,
.features2-section .feature-card:nth-child(3) .icon::after {
  background-color: #58BD35;
}
.features2-section .feature-card:nth-child(3) .highlight {
  color: #58BD35;
}
.features2-section .feature-card:nth-child(4) .highlight,
.features2-section .feature-card:nth-child(4) .icon::before,
.features2-section .feature-card:nth-child(4) .icon::after {
  background-color: #AD56F1;
}
.features2-section .feature-card:nth-child(4) .highlight {
  color: #AD56F1;
}
.features2-section .feature-card:nth-child(5) .icon::before,
.features2-section .feature-card:nth-child(5) .icon::after {
  background-color: #FEA92A;
}
.features2-section .feature-card:nth-child(5) .highlight {
  color: #FEA92A;
}


/*
**
**** Address ****
**
*/

.address-section .pic {
  max-width: 700px;
  border-radius: 25px;
  padding: 8px;
  margin-top: 2px;
  border: 2px dashed var(--mainBlue);
}

.address-section .pic img {
  border-radius: 24px;
}

.address-section .pic.highlight {
  border-color: var(--mainColor);
}

.address-section .address-row .icon {
  flex: 0 0 28px;
  width: 28px;
  margin-right: 15px;
}

.address-section .address-row .txt {
  color: var(--headingColor);
}

.address-section .note-container {
  padding: 20px;
  border-radius: 15px;
  background-color: rgba(248, 57, 58, 0.08);
}

.address-section .note-container .txt {
  color: var(--headingColor);
}

.address-section iframe {
  height: 510px;
  border-radius: 25px;
}



/*
**
**** FAQ ****
**
*/


.faq-section .accordion-item {
  border: none;
  background-color: transparent;
}

.faq-section .accordion-item  .faq-content {
  border: 1px solid #D8D8D8;
  border-radius: 25px;
  max-width: 590px;
  padding: 0 25px;
  background-color: #fff;
}

.gradient-bg .faq-section .accordion-item .faq-content {
  border: 1px solid #fff;
  box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 11%);
}

.gradient-bg .accordion-button .txt {
  font-weight: 700;
  font-family: var(--bodyFont);
}

.gradient-bg .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--mainBlue);
}

.gradient-bg .faq-section .accordion-item .faq-content.active h2 {
  color: var(--mainBlue);
}

.gradient-bg .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--mainBlue);
}

.faq-section .accordion-item:not(:last-child)  .faq-content {
  margin-bottom: 25px;
}

.faq-section .accordion-button {
  background-color: transparent;
  padding: 20px 0px;
}

.faq-section .accordion-button {
  color: inherit;
  box-shadow: none;
  outline: none;
}

.faq-section .accordion-button::after {
  display: none;
}

.faq-section .accordion-button .txt {
  padding-right: 50px;
}

.faq-section .faq-content:not(.active) .accordion-button .icon {
  color: #979797;
}

.faq-section .accordion-button .icon {
  right: 0;
  font-size: 18px;
  color: inherit;
  transform: rotate(180deg);
  transition: all 0.2s linear;
}

.faq-section .faq-content:not(.active) .accordion-button .icon {
  color: #979797;
  transform: rotate(0deg);
}

.faq-section .accordion-body,
.faq-section .faq-content:not(.active) .accordion-button {
  color: var(--bodyColor)!important;
}

.faq-section .accordion-body {
  padding: 20px 0 15px 0;
  border-top: 1px solid #D8D8D8;
}

.faq-section ul li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}

.faq-section ul li::before {
  content: ' ';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  top: 7.5px;
  left: 10px;
  background-color: var(--mainBlue);
}

.darkgreen-style .faq-section ul li::before {
  background-color: var(--darkgreen);
}

.lightred-style .faq-section ul li::before {
  background-color: var(--redLight);
}

.blue-style .faq-section .accordion-item .faq-content.active {
  color: var(--blue);
}
.blue-style .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--blue);
}
.blue-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--blue);
}

.red-style .faq-section .accordion-item .faq-content.active {
  color: var(--red);
}
.red-style .faq-section .accordion-item  .faq-content.active {
  border: 1px solid var(--red);
}
.red-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--red);
}

.lightred-style .faq-section .accordion-item .faq-content.active {
  color: var(--redLight);
}

.lightred-style .faq-section .accordion-item  .faq-content.active {
  border: 1px solid var(--redLight);
}

.lightred-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--redLight);
}

.purple-style .faq-section .accordion-item .faq-content.active {
  color: var(--purple);
}
.purple-style .faq-section .accordion-item  .faq-content.active {
  border: 1px solid var(--purple);
}
.purple-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--purple);
}

.green-style .faq-section .accordion-item .faq-content.active {
  color: var(--green);
}

.darkgreen-style .faq-section .accordion-item .faq-content.active {
  color: var(--green);
}

.green-style .faq-section .accordion-item  .faq-content.active {
  border: 1px solid var(--green);
}

.green-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--green);
}

.darkgreen-style .faq-section .accordion-item  .faq-content.active {
  border: 1px solid var(--green);
}

.darkgreen-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--green);
}

.orange-style .faq-section .accordion-item .faq-content.active {
  color: var(--orange);
}
.orange-style .faq-section .accordion-item .faq-content.active {
  border: 1px solid var(--orange);
}
.orange-style .faq-section .faq-content.active .accordion-body {
  border-top: 1px solid var(--orange);
}

/*
**
**** Terms Section ****
**
*/

.main-section {
  padding-top: 200px;
}

.terms-section .heading .icon {
  max-width: 80px;
}

.terms-section .heading .line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: var(--mainBlue);
}

.terms-section .heading .txt {
  font-size: 36px;
  padding: 0 15px;
  color: var(--mainBlue);
}

.terms-section .terms-content {
  max-width: 1300px;
  width: 95%;
  padding: 35px;
  border-radius: 20px;
  background-color: #fff;
  min-height: 700px;
  margin-bottom: 80px;
  box-shadow: 0 0 24px 0 rgb(0 0 0 / 9%);
}

.terms-section .terms-content .note {
  font-size: 14px;
  font-weight: 500;
  color: #5f5f5f;
  padding-left: 15px;
}

.terms-section .terms-content .note::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #5f5f5f;
}

.terms-section .terms-content p {
  line-height: 25px;
  font-weight: 500;
}

.terms-section .terms-content h6 {
  margin-bottom: 6px;
}

.terms-section .terms-content p + h6 {
  margin-top: 25px;
}

.terms-section .terms-content ul {
  margin: 0 0 25px 0;
  padding: 0 0 0 10px;
  list-style: none;
  font-weight: 500;
  line-height: 26px;
}

.terms-section .terms-content ul li {
  position: relative;
  padding-left: 18px;
  font-weight: 600;
}

.terms-section .terms-content ul li::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  top: 50%;
  top: 10px;
  border-radius: 100%;
  background-color: var(--mainGreen);
}

.terms-section .address-container .icon {
  flex: 0 0 21px;
  width: 21px;
  margin-right: 10px;
}

.terms-section .address-container .address-row .title {
  font-size: 15px;
  font-weight: 600;
}


/*
**
**** Price Section ****
**
*/

.glist-section .games-control .btn {
  color: var(--mainBlue);
  border-color: var(--mainBlue);
  border-radius: 8px;
  margin-bottom: 16px;
}

.glist-section .games-control .btn:not(:last-child) {
  margin-right: 10px;
}

.glist-section .games-control .btn.active,
.glist-section .games-control .btn:hover {
  transform: none;
  color: #fff;
  background-color: var(--mainBlue);
}

.glist-section .inner-item {
  padding: 15px 25px;
  background-color: rgba(255,255,255,0.45);
  border: 2px dashed var(--mainBlue);
  border-radius: 25px;
  height: 100%;
}

.glist-section .inner-item .title {
  font-size: 22px;
  font-family: var(--headingFont);
  color: var(--mainBlue);
}

.glist-section .twelve-card .inner-item h3 {
  font-family: var(--headingFont);
  color: var(--mainBlue);
  font-weight: 500;
  padding-bottom: 25px;
}

.glist-section  .price-slide .price-icon {
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 4px;
  text-align: center;
  line-height: 23px;
  font-size: 16px;
  background-color: var(--mainColor2);
  font-family: var(--numFont);
}

.glist-section .twelve-card .price-slide .slide-info h6 {
  padding: 7px 0 0 0;
  font-size: 16px;
  font-weight: 700;
}

.glist-section .twelve-card .price-slide .feature-list li {
  position: relative;
  padding-left: 17px;
  color: #898989;
  line-height: initial;
  margin-bottom: 5px;
}

.glist-section .twelve-card .price-slide .feature-list li::after {
  content: ' ';
  position: absolute;
  width: 9px;
  height: 9px;
  left: 0;
  top: 6px;
  border-radius: 100%;
  background-color: var(--mainColor2);
}

.glist-section .twelve-card .price-slide .info-txt {
  color: #898989;
}

.glist-section .twelve-card .price-slide .feature-list {
  margin-bottom: 10px;
}

.glist-section .price-slide .inner-slide-info.twelve-card {
  border-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 5px;
}

.glist-section .twelve-card .price-slide .btn-container {
  margin-top: 13px;
}

.glist-section .pic {
  max-width: 230px;
  flex: 0 0 230px;
  width: 100%;
}

.glist-section .twelve-card .card-img,
.glist-section .pic img {
  border-radius: 15px;
  object-fit: cover;
}

.glist-section .pic img {
  min-height: 220px;
}

.glist-section .info {
  padding-left: 20px;
}

.glist-section .item-btn .btn {
  color: var(--mainBlue);
  width: 100%;
  margin: 20px 0 5px 0;
  border-color: var(--mainBlue);
  border-radius: 35px;
}

.glist-section .item-btn .btn:hover {
  transform: none;
  color: #fff;
  background-color: var(--mainBlue);
}

.glist-section .inner-item .info-icon {
  width: 30px;
  flex: 0 0 30px;
}

.glist-section .twelve-card .inner-item .info-icon {
  width: 55px;
  flex: 0 0 55px;
}

.glist-section .inner-item .info-txt {
  font-weight: 500;
  padding-left: 10px;
}

.glist-section .game-item {
  margin-bottom: 25px;
}

.glist-section .twelve-card .price-slide .slide-note .feature .icon {
  width: 19px;
  margin-top: 2px;
}

.glist-section .twelve-card .price-slide .slide-note .txt {
  font-weight: 600;
  padding-left: 7px;
}

.glist-section .twelve-card .price-slide .slide-note > div:not(:last-child) {
  margin-right: 35px;
}

.glist-section .twelve-card .price-slide .slide-note {
  margin-left: 35px;
  padding-top: 20px;
  padding-bottom: 5px;
  border-top: 1px solid #E3E3E3;
  text-align: justify;
}

.glist-section .twelve-card .price-slide .btn-container a {
  color: var(--mainBlue);
  border-color: var(--mainBlue);
  border-radius: 35px;
}

.glist-section .twelve-card .price-slide .btn-container a:hover {
  color: #fff;
  border-color: var(--mainBlue);
  background-color: var(--mainBlue);
  transform: none;
}


/*
**
**** Product ****
**
*/

.product-section .product-container .inner-content {
  padding: 25px;
  background-color: rgba(255,255,255,0.45);
  border: 2px dashed var(--mainBlue);
  border-radius: 25px;
}

.product-section .details-title {  
  margin: 10px 0 35px 0;
}

.product-section .details-title h4 {
  font-weight: 100;
  color: var(--mainBlue);
  font-family: var(--headingFont);
}

.product-section .details-title .icon {
  width: 28px;
  flex: 0 0 28px;
  margin-right: 10px;
}

.product-section .inner-row {
  flex: 0 0 50%;
  width: 50%;
  padding-right: 20px;
}

.product-section .inner-row .txt ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.product-section .inner-row .txt .title {
  padding: 0px 0 6px 0;
}

.product-section .inner-row .icon-new + .txt .title {
  padding: 4px 0 10px 0;
}

.product-section .inner-row .txt ul li {
  position: relative;
  padding-left: 17px;
  line-height: initial;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
}

.product-section .inner-row .txt ul li::before {
  content: ' ';
  position: absolute;
  width: 9px;
  height: 9px;
  left: 0;
  top: 6px;
  border-radius: 100%;
  background-color: var(--mainBlue);
}

.product-section .inner-row .txt .note {
  font-size: 15px;
}

.product-section .inner-row .txt .h-price {
  color: var(--mainBlue);
  font-weight: 600;
}

.product-section .details-row {
  margin-bottom: 25px;
}

.product-section .details-row .icon {
  width: 44px;
  flex: 0 0 44px;
  margin: 0px 15px 0 0;
}

.product-section .product-details {
  padding-left: 25px;
}

.product-section p {
  font-size: 16px;
  font-weight: 500;
}

.product-section .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--mainBlue);
}

.product-section .num-details {
  margin-bottom: 35px;
}

.product-section .num-details p {
  font-size: 18px;
  font-weight: 700;
}

.product-section .num-details .icon {
  flex: 0 0 40px;
  width: 40px;
  margin-right: 10px;
}

.product-section .btn-details .btn {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  background: var(--mainGradient);
}

.product-section .btn-details .btn:hover {
  transform: scale(1.03);
}

.product-section .product-gallery {
  flex: 0 0 36%;
  width: 36%;
}

.product-section .product-gallery .product-pic {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 6px;
  background: var(--mainGradient);
}

.product-section .product-pic .slide-pic {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
}

.product-section .product-pic .slide-pic.banner-img img {
  min-height: auto;
  max-height: none;
}

.product-section .slide img {
  border-radius: 10px;
  height: auto;
}

.product-section .product-imgs {
  position: relative;
  padding: 10px 53px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 20px;
  overflow: hidden;
}

.product-section .product-imgs > .imgs {
  overflow: hidden;
}

.product-section .product-imgs .icon {
  font-size: 29px;
  background-color: rgba(255,255,255,1);
  border-radius: 100%;
  width: 33px;
  height: 33px;
  color: #f74949;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-in-out;
}

.product-section .product-imgs .slide:hover .icon {
  transform: translate(-50%, -50%) scale(1.08);
}

.product-section .product-imgs .owl-stage {
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.product-section .product-imgs .slide {
  cursor: pointer;
}

.product-section .product-imgs .owl-nav button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 33px;
  height: 33px;
  color: #fff;
  border-radius: 100%;
  background-color: var(--mainBlue);
  background-color: rgba(0, 0, 0, 0.85);
}

.product-section .product-imgs .owl-nav button:last-child {
  left: auto;
  right: 10px;
}

.product-section .product-imgs iframe {
  display: none;
}

.product-section .product-pic .slide-pic iframe + img {
  display: none;
}

.product-section .product-pic .slide-pic iframe {
  width: 100%;
  min-height: 280px;
}


/*
**
**** Footer ****
**
*/

.footer-section {
  padding: 170px 0 28px;
  color: #fff;
  background-color: #2D2D2D;
}

.footer-section.topwave-space {
  margin-top: 114px;
  padding-top: 56px;
}

.footer-section .bg-wave {
  top: 0px;
  transform: rotate(180deg);
  background-image: url('../img/wave-white.png');
}

.footer-section .bg-wave.top-wave {
  transform: rotate(0deg);
  margin-top: -114px;
  background-image: url('../img/top-wave.png');
}

.footer-section .left-content {
  padding-right: 30px;
}

.footer-section .left-content .logo {
  width: 115px;
  flex: 0 0 115px;
}

.footer-section .left-content .about {
  padding-left: 15px;
  font-size: 15px;
}

.footer-section .left-content .social-icon .social  {
  width: 38px;
}

.footer-section .right-content .icon {
  width: 18px;
}

.footer-section .right-content .txt {
  font-size: 15px;
  font-weight: 500;
}

.footer-section .left-content .social-icon .social:not(:last-child) {
  margin-right: 12px;
}

.footer-section .right-content {
  padding-left: 30px;
}

.footer-section .mid-content {
  padding: 0 30px;
}

.footer-section .mid-content ul {
  padding-right: 15px;
  flex: 0 0 65%;
  width: 65%;
}

.footer-section .mid-content ul:last-child {
  flex: 0 0 35%;
  width: 35%;
}

.footer-section .mid-content ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 5px;
  transition: all 0.25s linear;
}

.footer-section .copyright a:hover,
.footer-section .mid-content ul li a:hover {
  color: #959595;
}

.footer-section .top-footer > div {
  padding-bottom: 30px;
  margin-bottom: 10px;
}

.footer-section .top-footer > div:not(:last-child) {
  border-right: 1px solid #646464;
}

.footer-section .copyright {
  padding: 28px 0 0 0;
  border-top: 1px solid #646464;
  font-size: 14px;
  font-weight: 500;
}

.footer-section .copyright a {
  color: #fff;
  transition: all 0.25s linear;
}


/*
**
**** responsive ****
**
*/

@media only screen and (min-width: 992px) {
  .header-section:not(.fixed-height) {
    min-height: 600px;
  }
}

@media only screen and (min-width: 1200px) {
  .header-section:not(.fixed-height) {
    min-height: 700px;
  }
}

@media only screen and (min-width: 1400px) {
  .header-section:not(.fixed-height) {
    min-height: 900px;
  }
}

@media only screen and (max-width: 1399px) {
  .title {
    font-size: 18px;
  }
  .nav-top-pace,
  .header-section {
    margin-top: 185px;
  }
  .about-section:not(.delivery) .pic.gradient,
  .about-section:not(.delivery) .pic {
    max-width: 410px;
    height: 410px;
  }
  .about-section .games-num {
    width: 85px;
    flex: 0 0 85px;
    height: 85px;
    bottom: 60px;
  }
  .btm-space {
    padding-bottom: 70px;
  }
  .features-section .right-content {
    padding: 160px 35px 150px 35px;
  }
  .features-section .left-content .pic {
    min-height: 730px;
  }
  .about-section .custom-list {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .title {
    font-size: 16px;
  }
  .header-section {
    padding-top: 125px;
  }
  .features2-section .feature-card {
    margin-bottom: 25px;
  }
  .features2-section .feature-card .icon {
    max-width: 102px;
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  .features2-section .feature-card .pic {
    width: 52px;
  }
  .features2-section.btm-space {
    padding-bottom: 10px;
  }
  .glist-section .pic {
    max-width: 150px;
    flex: 0 0 150px;
  }
  .product-section .num-details p,
  .product-section .title {
    font-size: 16px;
  }
  .product-section p {
    font-size: 15px;
  }
  .product-section .details-row .icon {
    flex: 0 0 40px;
    width: 40px;
  }
  .product-section .details-row .icon {
    flex: 0 0 35px;
    width: 35px;
  }
  .product-section .details-row.btn-details {
    margin-bottom: 15px;
  }
  .footer-section .mid-content {
    padding: 0 15px;
  }
  .footer-section .left-content {
    padding-right: 15px;
  }
  .footer-section .right-content {
    padding-left: 15px;
  }
  .footer-section .mid-content ul li a {
    font-size: 14px;
  }
  .terms-section .heading .icon {
    max-width: 70px;
  }
  .terms-section .heading .txt {
    font-size: 32px;
  }
  .terms-section .heading .line {
    width: 35px;
  }
  .main-section {
    padding-top: 165px;
  }
  .address-section iframe {
    height: 461px;
  }
  .address-section .custom-list {
    margin-bottom: 0px;
  }
  .custom-list .icon {
    width: 40px;
    flex: 0 0 40px;
  }
  .features-section .left-content .pic {
    min-height: 700px;
  }
}

@media only screen and (max-width: 991px) {
  .section-space {
    padding: 50px 0;
  }
  .big-space {
    padding-top: 110px;
  }
  header.bg .bg-overlay, section.bg .bg-overlay {
    background: rgba(0,0,0,.7);
  }
  .nav-top-pace {
    margin-top: 108px;
  }
  .header-section {
    margin-top: 108px;
    padding-top: 65px;
    min-height: 600px;
  }
  .about-section:not(.delivery) .pic.gradient, .about-section:not(.delivery) .pic {
    max-width: 350px;
    height: 350px;
  }
  .about-section .custom-list li:last-child {
    margin-bottom: 20px;
  }
  .features-section .right-content {
    padding: 150px 25px 150px 25px;
  }
  .product-section .inner-content {
    flex-wrap: wrap;
  }
  .product-section .product-details,
  .product-section .product-gallery {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 0;
  }
  .product-section .details-title {
    margin: 35px 0;
  }
  .product-section .details-row.btn-details {
    margin-bottom: 0px;
  }
  .product-section .product-gallery .product-pic {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-section .num-details .icon {
    flex: 0 0 30px;
    width: 30px;
  }
  .address-section .custom-list {
    margin: 28px 0px 15px 0px;
  }
  .address-section .address-container,
  .address-section .description {
    max-width: 500px;
    margin: 0 auto;
  }
  .address-section iframe {
    height: 320px;
  }
  .address-section .pic {
    max-width: 500px;
    margin: 0 auto;
  }
  .faq-section .left-content {
    margin-bottom: 25px;
  }
  .footer-section {
    padding: 170px 0 28px 0;
  }
  .footer-section .top-footer > div.right-content {
    padding: 10px 15px 0px 15px;
    text-align: center;
    font-size: 14px;
  }
  .footer-section .top-footer > div.mid-content {
    border-right: none;
  }
  .footer-section.topwave-space {
    padding-top: 40px;
  }
  .main-section {
    padding-top: 115px;
  }
  .terms-section .heading .txt {
    font-size: 30px;
  }
  .terms-section .heading .line {
    width: 30px;
  }
  .terms-section .terms-content {
    padding: 25px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .heading h2 {
    line-height: 34px;
  }
  .container {
    padding: 0 20px;
  }
  .bg-wave,
  .header-section .bg-wave {
    min-height: 60px;
  }
  .header-section {
    min-height: 580px;
    padding-bottom: 95px;
  }
  section.pickup-section {
    padding-top: 35px;
  }
  .about-section {
    padding-bottom: 50px;
  }
  .about-section.delivery .pic {
    max-width: 375px;
    margin-bottom: 20px;
  }
  .features-section .inner-content {
    flex-wrap: wrap;
  }
  .features-section .inner-content > div {
    flex: 0 0 100%;
    width: 100%;
  }
  .features-section .inner-content .right-content {
    order: 1;
    padding: 100px 25px 10px 25px;
  }
  .features-section .inner-content .left-content {
    order: 2;
  }
  .features-section .left-content .pic {
    min-height: 430px;
  }
  .features2-section .feature-card .title {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  .features2-section .feature-card {
    max-width: 390px;
  }
  .product-section .row-group {
    flex-wrap: wrap;
  }
  .product-section .inner-row {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 0px;
  }
  .product-section .inner-row:not(:last-child) {
    margin-bottom: 15px;
  }
  .product-section .details-row .icon {
    flex: 0 0 40px;
    width: 40px;
  }
  .product-section .num-details .icon {
    flex: 0 0 30px;
    width: 30px;
  }
  .product-section .details-row {
    margin-bottom: 15px;
  }
  .footer-section {
    padding-top: 115px;
  }
  .footer-section .top-footer > div.left-content {
    border-right: none;
    padding-bottom: 20px;
    border-bottom: 1px solid #646464;
  }
  .footer-section .left-content .about {
    font-size: 14px;
  }
  .footer-section .top-footer > div.mid-content {
    padding: 10px 15px 0 15px;
    margin-bottom: 0px;
  }
  .footer-section .bg-wave.top-wave {
    margin-top: -59px;
  }
  .footer-section.topwave-space {
    margin-top: 60px;
  }
  .main-section {
    padding-top: 30px;
  }
  .terms-section .heading .icon {
    max-width: 60px;
  }
  .terms-section .heading .txt {
    font-size: 24px;
    padding: 0 10px;
  }
  .terms-section .heading .line {
    width: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .header-section {
    padding-bottom: 110px;
  }
  .features-section .left-content .pic {
    min-height: 380px;
  }
  .address-section .address-container, .address-section .description {
    max-width: 380px;
  }
  .terms-section .heading .line {
    display: none;
  }
  .faq-section .accordion-button .txt {
    line-height: 23px;
  }
  .custom-list .font-icon .icon {
    width: 22px;
    flex: 0 0 22px;
    font-size: 22px;
  }
  .btm-space {
    padding-bottom: 60px;
  }
  .product-section .details-row .icon {
    flex: 0 0 35px;
    width: 35px;
  }
  .product-section .num-details .icon {
    flex: 0 0 30px;
    width: 30px;
  }
  .product-section .details-title {
    margin: 30px 0 20px 0;
  }
}

@media only screen and (max-width: 500px) {
  .btn.rounded-circle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
  }
  .main-btn .txt {
    font-size: 15px;
    padding: 2px 8px;
  }
  .main-btn {
    min-height: 50px;
  }
  .underline.green {
    box-shadow: inset 0px -10px 0px -1px var(--mainGreen);
  }
  .underline {
    box-shadow: inset 0px -10px 0px -1px var(--mainBlue);
  }
  .faq-section .accordion-item .faq-content {
    padding: 0 15px;
  }
  .faq-section .accordion-body {
    padding: 15px 0 10px 0;
  }
  .footer-section {
    padding-top: 105px;
  }
  .title {
    font-size: 16px;
  }
  .glist-section .inner-item {
    padding: 10px 15px;
  }
  .glist-section .inner-item .info-icon {
    width: 26px;
    flex: 0 0 26px;
  }
  .glist-section .info {
    padding-left: 15px;
  }
  .glist-section .pic img {
    min-height: 170px;
  }
  .glist-section .inner-item .title {
    font-size: 20px;
  }
  .glist-section .twelve-card .inner-item h3 {
    font-size: 20px;
    padding-bottom: 18px;
  }
  .footer-section.topwave-space {
    padding-top: 20px;
  }
  .terms-section .terms-content {
    width: 100%;
    padding: 20px;
  }
  .terms-section .heading .txt {
    line-height: 32px;
  }
}

@media only screen and (max-width: 389px) {
  .about-section:not(.delivery) .pic.gradient, .about-section:not(.delivery) .pic {
    max-width: 300px;
    height: 300px;
  }
}


/*
**
**** Global animation ****
**
*/

@keyframes fadeIn2 {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeOut2 {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes topAnim {
  0% {transform: translateY(150px); opacity: 0;}
  100% {transform: translateY(0px); opacity: 1;}
}