/*
Theme Name:  Custom Theme
Theme URI: 
Author: Socail Pie
Author URI: https://socialpie.io/
Text Domain: socail-pie-theme
Description:  Discount Codes 2024.
Version: 1.0
Requires at least: 5.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
*/
@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('assets/fonts/cabinetgrotesk/CabinetGrotesk-Medium.eot');
    src: url('assets/fonts/cabinetgrotesk/CabinetGrotesk-Medium.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/cabinetgrotesk/CabinetGrotesk-Medium.woff2') format('woff2'),
        url('assets/fonts/cabinetgrotesk/CabinetGrotesk-Medium.woff') format('woff'),
        url('assets/fonts/cabinetgrotesk/CabinetGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial';
    src: url('assets/fonts/arial/Arial-Mdm.eot');
    src: url('assets/fonts/arial/Arial-Mdm.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/arial/Arial-Mdm.woff2') format('woff2'),
        url('assets/fonts/arial/Arial-Mdm.woff') format('woff'),
        url('assets/fonts/arial/Arial-Mdm.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial';
    src: url('assets/fonts/arial/Arial-BoldMT.eot');
    src: url('assets/fonts/arial/Arial-BoldMT.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/arial/Arial-BoldMT.woff2') format('woff2'),
        url('assets/fonts/arial/Arial-BoldMT.woff') format('woff'),
        url('assets/fonts/arial/Arial-BoldMT.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial';
    src: url('assets/fonts/arial/ArialMT.eot');
    src: url('assets/fonts/arial/ArialMT.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/arial/ArialMT.woff2') format('woff2'),
        url('assets/fonts/arial/ArialMT.woff') format('woff'),
        url('assets/fonts/arial/ArialMT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root{
    --sec-font: 'Cabinet Grotesk';
    --primary_font: 'Arial';
    --text-color1 : #282828;
    --primary_col: #3d49b7;
    --primary_col_var: #D7FFF0;
    --secondary_col: #00504D;
    --gray: #F5F3F7;
    --heading_col: #171717;
    --body_col: #202020;
    --secondary_col_var : #F5F9F8;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--primary_font);
    background: #000;
    color: #fff;
}
a, a:hover {
  color: var(--primary_col);
}
body img {
  max-width: 100%;
  height: auto;
}
.fw-500{
  font-weight: 500;
}
.custom-btn {
  background: linear-gradient(90deg, #8491DE 0%, #3D49B7 100%);
  color: #fff;
  font-family: var(--sec-font);
  padding: 1em 1.5em !important;!i;!;
}

body header#masthead {
    z-index: 99;
}
body header#masthead ul.menu-wrapper {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}
body header#masthead ul.menu-wrapper > li {
  list-style: none;
}
body header#masthead ul.menu-wrapper > li > a {
  color: #fff;
  font-family: var(--sec-font);
  font-weight: 500;
  text-transform: capitalize;
  /* padding: 0.3em 0.8em; */
  text-decoration: none;
  transition: all 0.3s;
}
body header#masthead ul.menu-wrapper > li .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all 0.3s;
  background: #fff;
  border-radius: 4px 4px 16px 16px;
  box-shadow: 0px 4px 40px 0px #00000014;
  padding: 1.2em;
  left: 50%;
  width: 14.5em;
  transform: translateX(-50%);
  z-index: 99;
  list-style: none;
  top: 50px;
}
body header#masthead ul.menu-wrapper > li .sub-menu li {
  margin-bottom: 0.3em;
}
body header#masthead ul.menu-wrapper > li .sub-menu li:last-child {
  margin-bottom: 0;
}
body header#masthead ul.menu-wrapper > li .sub-menu li a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 2px 0px;
}
body header#masthead ul.menu-wrapper > li button.sub-menu-toggle {
  display: none;
}
body header#masthead ul.menu-wrapper > li.menu-item-has-children > a:after {
  content: "\f078";
  font-family: "FontAwesome";
  margin-left: 0.6em;
}
body header#masthead ul.menu-wrapper > li.highlighted-menu > a {
  color: var(--primary_col);
  font-weight: 700;
}
body header#masthead ul.menu-wrapper > li {
  /* margin-right: 1em; */
  position: relative;
}
body header#masthead ul.menu-wrapper > li > a {
  display: inline-block;
}
body header#masthead ul.menu-wrapper > li:last-child {
  margin-right: 0;
}
body header#masthead ul.menu-wrapper > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

body header#masthead .mobile-menu button.mobile-menu-toggle {
    border: 0;
    background: transparent;
}
body header#masthead .mobile-menu .mobile-menu-toggle > div:first-child {
  margin: 0 0.5em;
}
body header#masthead .mobile-menu .mobile-menu-toggle span {
  height: 2px;
  width: 1.3em;
  background: var(--primary_col);
  display: block;
  margin-bottom: 0.3em;
  margin-left: 0em;
  transform: rotate(0deg);
  transition: 0.4s;
}
body header#masthead .mobile-menu .mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}
body header#masthead .mobile-menu .mobile-menu-toggle.close span:not(.label):nth-child(1) {
  transform: rotate(45deg);
  transition: 0.4s;
  position: relative;
}
body header#masthead .mobile-menu .mobile-menu-toggle.close span:not(.label):nth-child(2) {
  display: none;
}
body header#masthead .mobile-menu .mobile-menu-toggle.close span:not(.label):nth-child(3) {
  transform: rotate(-45deg);
  transition: 0.4s;
  position: relative;
  top: -7px;
}
body header#masthead .mobile-menu .mm-panel {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 99;
  background: #fff;
  box-shadow: 2px 5px 10px #b64e414d;
  width: 88%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
body header#masthead .mobile-menu .mm-panel .container {
  padding: 0;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper {
  padding: 0;
  display: block;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li {
  list-style: none;
  border-bottom: 1px solid #cfcfcf;
  position: relative;
  display: block;
  margin-right: 0;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li:last-child {
  border-bottom: 0;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  padding: 0.9em 0.7em;
  display: block;
  line-height: 1;
  letter-spacing: 1px;
  transition: 0.3s;
  color: var(--body_col);
  text-align: left;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li a:hover {
  background: var(--secondary_col);
  color: #fff;
  transition: 0.3s;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li a:after {
  display: none;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li .sub-menu-toggle {
  display: none;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li .chevron-child {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9em;
  border-left: 1px solid #cfcfcf;
  font-size: 1.4em;
  background: #fff;
  transition: 0.3s;
  color: #000;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li .chevron-child:hover {
  background: var(--secondary_col);
  transition: 0.3s;
  color: #fff;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li .chevron-child i {
  transform: rotate(-90deg);
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li > .sub-menu {
  display: none;
  padding-left: 8px;
  box-shadow: none;
  position: relative;
  padding: 0;
  padding-left: 0.7em;
  transition: 0.4s all;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li.open-sub > .sub-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  top: 0;
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper li.open-sub .chevron-child i {
  transform: rotate(-180deg);
}
body header#masthead .mobile-menu .mm-panel ul.menu-wrapper .sub-menu {
  width: 100%;
}
body p {
  line-height: 1.2;
}

footer.site-footer {
    padding-top: 8rem;
}
footer .left-section-upper {
    border: 1px solid #292929;
    background: linear-gradient(180deg, #141414 0%, #000000 100%);
    padding: 9%;
}
footer .left-section-upper h2,
footer .right-sec-wrap h2 {
  font-size: 2.5rem;
}
footer .footer-menu-wrap h3 {
  font-size: 1.5rem;
}
footer .footer-menu-wrap li a {
  color: #fff;
  transition: all 0.3s;
  font-weight: 700;
}
footer .footer-menu-wrap li a:hover {
  color: var(--primary_col);
}
footer .social-icons li {
  flex: 1;
}
footer .social-icons li a {
  color: #fff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  text-decoration: none;
  background: linear-gradient(180deg, #141414 0%, #000000 100%);
  border-radius: 40px;
  border: 1px solid #292929;
  a
}
footer .right-sec-wrap {
  background: linear-gradient(180deg, #141414 0%, #000000 100%);
  border: 1px solid #292929;
  padding: 3%;
}
footer form label {
  display: block;
  margin-bottom: 0.6em;
  margin-top: 1rem;
}
footer form input:not(.wpcf7-submit),
footer form select {
    border: 1px solid #6D6D6D;
    background: transparent;
    width: 100%;
    border-radius: 30px;
    padding: 1em;
    color: #6D6D6D;
}
footer form .wpcf7-acceptance label {
   color: #6D6D6D;
}
footer form .wpcf7-acceptance input {
  width: auto;
  background: transparent;
}
footer form .wpcf7-submit {
      background: linear-gradient(90deg, #8491DE 0%, #3D49B7 100%);
    color: #fff;
    font-family: var(--sec-font);
    border-radius: 30px;
    padding: 0.8rem 2.2rem;
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1920px;
    }
    footer .footer-row {
    margin-left: 1.5em;
    margin-right: 1.5em;
}
}
@media (max-width: 1399px) {
    /*body { font-size: 0.938rem; }*/
    body { font-size: 0.813rem; }
  footer .left-section-upper h2, footer .right-sec-wrap h2 { font-size: 2rem; }
  footer .social-icons li a {
    font-size: 2em;
    border-radius: 19px;
}
}
@media (max-width: 1399px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 95%;
    }
}
@media (max-width: 1099px) {
  footer.site-footer {
    padding-top: 5rem;
  }
  footer .social-icons li a {
    font-size: 1.5rem;
    border-radius: 20px;
  }
}
@media (max-width: 999px) {
    body { font-size: 0.813rem; }
}
@media (max-width: 767px) {
  .custom-btn {padding: 0.8em 0.8em !important;}
  header .custom-btn {padding: 0.5em 0.7em !important;}
  header .custom-btn img {margin-right: 0.2em !important;}
  .logo-col img { width: 150px;}
  footer .right-sec-wrap {padding: 5%;}
}