@charset "UTF-8";


:root {
  /* default */
  --white: #fff;
  --black: #000;

  /* new-var */
  --primary: #000;
  --secondary: #f3ad10;
  --gray: #f3f6f9;

  --font-primary: 'Poppins', sans-serif;

  --h1: clamp(30px, 2.813vw, 54px);
  --h2: clamp(28px, 2.188vw, 42px);

  --h3: clamp(24px, 1.25vw, 28px);
  --h4: clamp(18px, 1.042vw, 22px);
  --h5: clamp(16px, 0.938vw, 20px);
  --h6: clamp(16px, 0.833vw, 18px);

  --base: clamp(17px, 1.042vw, 20px);
  --text-md: clamp(16px, 0.938vw, 18px);

  --btn-text: clamp(16px, 1.042vw, 20px);

  --brd-42: clamp(22px, 2.188vw, 42px);
  --brd-20: clamp(10px, 1.042vw, 20px);
  --brd-full: 999px;

  --transition: all 0.3s ease-in-out;
}

/* CSS Document */

/*==============================================================
	Common Styles Initials
==============================================================*/

html {
  -webkit-text-size-adjust: none;
  /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit !important;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--base);
  line-height: 1.5;
  color: var(--black);
  font-weight: 400;
  background: #000;
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-color: var(--white) var(--primary);
  scrollbar-width: thin;
}

body.pause {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--primary);
}

a {
  outline: none;
  text-decoration: none;
  color: var(--black);
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

.btn:focus {
  color: var(--black);
  box-shadow: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--primary);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 15px 0;
  padding: 0;
}

p:last-of-type {
  margin-bottom: 0;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: #9EA4AE;
}

.form-control:-moz-placeholder {
  opacity: 1;
  color: #9EA4AE;
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: #9EA4AE;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: #9EA4AE;
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

.row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
}

/*==============================================================
	Custom Style
==============================================================*/

/*.container {
  max-width: 1694px;
  width: 100%;
  padding: 0 16px;
}

.container-sm {
  max-width: 1430px;
}*/

.h1 {
  font-size: var(--h1);
  line-height: 1.24;
}

.h2 {
  font-size: var(--h2);
  line-height: 1;
}

.h3 {
  font-size: var(--h3);
  line-height: 1.3;
}

.h4 {
  font-size: var(--h4);
  line-height: 1;
}

.h5 {
  font-size: var(--h5);
  line-height: 1;
}

.h6 {
  font-size: var(--h6);
  line-height: 1;
}

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

.text-lg {
  font-size: var(--text-md);
  line-height: 1.357;
}

.text-xs {
  font-size: var(--text-xs);
  line-height: 2;
}

/* space */
.pt-240 {
  padding-top: clamp(55px, 12.5vw, 240px);
}

.pb-240 {
  padding-bottom: clamp(55px, 12.5vw, 240px);
}

.pt-200 {
  padding-top: clamp(50px, 10.417vw, 200px);
}

.pb-200 {
  padding-bottom: clamp(50px, 10.417vw, 200px);
}

.pt-180 {
  padding-top: clamp(45px, 9.375vw, 180px);
}

.pb-180 {
  padding-bottom: clamp(45px, 9.375vw, 180px);
}

.pt-170 {
  padding-top: clamp(45px, 8.854vw, 170px);
}

.pb-170 {
  padding-bottom: clamp(45px, 8.854vw, 170px);
}

.pt-148 {
  padding-top: clamp(35px, 7.708vw, 148px);
}

.pb-148 {
  padding-bottom: clamp(35px, 7.708vw, 148px);
}

.pt-140 {
  padding-top: clamp(35px, 7.292vw, 140px);
}

.pb-140 {
  padding-bottom: clamp(35px, 7.292vw, 140px);
}

.pt-130 {
  padding-top: clamp(30px, 6.771vw, 130px);
}

.pb-130 {
  padding-bottom: clamp(30px, 6.771vw, 130px);
}

.pt-120 {
  padding-top: clamp(30px, 6.25vw, 120px);
}

.pb-120 {
  padding-bottom: clamp(30px, 6.25vw, 120px);
}

.pt-115 {
  padding-top: clamp(30px, 5.208vw, 115px);
}

.pb-115 {
  padding-bottom: clamp(30px, 5.208vw, 115px);
}

.pt-100 {
  padding-top: clamp(30px, 5.99vw, 100px);
}

.pb-100 {
  padding-bottom: clamp(30px, 5.99vw, 100px);
}

.pt-90 {
  padding-top: clamp(30px, 4.688vw, 90px);
}

.pb-90 {
  padding-bottom: clamp(30px, 4.688vw, 90px);
}

.pt-80 {
  padding-top: clamp(30px, 4.167vw, 80px);
}

.pb-80 {
  padding-bottom: clamp(30px, 4.167vw, 80px);
}

.pt-70 {
  padding-top: clamp(30px, 4.688vw, 70px);
}

.pb-70 {
  padding-bottom: clamp(30px, 4.688vw, 70px);
}

.pt-60 {
  padding-top: clamp(30px, 3.125vw, 60px);
}

.pb-60 {
  padding-bottom: clamp(30px, 3.125vw, 60px);
}

.pt-54 {
  padding-top: clamp(25px, 2.708vw, 54px);
}

.pb-54 {
  padding-bottom: clamp(30px, 2.708vw, 54px);
}

.pt-45 {
  padding-top: clamp(25px, 2.708vw, 45px);
}

.pb-45 {
  padding-bottom: clamp(30px, 2.708vw, 45px);
}

.pt-30 {
  padding-top: clamp(20px, 1.563vw, 30px);
}

.pb-30 {
  padding-bottom: clamp(25px, 1.563vw, 30px);
}

.pb-0 {
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.px-60 {
  padding-left: clamp(10px, 3.125vw, 60px);
  padding-right: clamp(10px, 3.125vw, 60px);
}

.row-gap-30 {
  row-gap: 30px;
}

.max-w-1020 {
  max-width: 1020px;
}

.max-w-858 {
  max-width: 858px;
}

.section:is(.line-top, .line-bottom) {
  position: relative;
}

.section:is(.line-top, .line-bottom)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  max-width: 1440px;
  margin: auto;
  opacity: 0.1;
}

.section.line-bottom::after {
  top: auto;
  bottom: 0;
}


/* space */

.title-wrap .sub-title {
  font-weight: 800;
  line-height: 1.08;
  color: var(--black);
  opacity: 0.3;
  text-transform: uppercase;
  padding-bottom: clamp(15px, 1.563vw, 30px);
}

.title-wrap.title-white .h2,
.title-wrap.title-white .sub-text p,
.title-wrap.title-white .sub-title {
  color: var(--white);
  opacity: 1;
}

.title-wrap .title-icon-box {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  text-transform: capitalize;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 18px;
  line-height: 1;
  column-gap: 4px;
  border-radius: 100px 100px 100px 0px;
}

.title-wrap .title-icon-box img {
  width: 16px;
  height: auto;
}

/* .title-wrap .sub-text {
  padding-top: clamp(25px, 2.396vw, 46px);
} */

.img-cover {
  position: relative;
  padding-bottom: 100%;
}

.img-cover :is(img, video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bullet ul li {
  padding-left: 25px;
  position: relative;
}

.bullet ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 100%;
  left: 5px;
  top: 10px;
  background: var(--primary);
}

.bullet ol {
  counter-reset: item 0;
}

.bullet ol li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.bullet ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item 1;
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  color: var(--primary);
}

.bullet ol li ol {
  margin-top: 12px;
}

.bullet ol li ol li {
  padding-left: 0;
}

.bullet ol li ol li:before {
  position: relative;
  display: inline;
}

.bullet ol li ol ol {
  padding-left: 20px;
}

/*==============================================================
	Button Style
==============================================================*/
:is(.btn, .btn-link) {
  font-size: var(--btn-text);
  line-height: 1;
  font-weight: 400;
  display: inline-flex;
  column-gap: 10px;
  align-items: center;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
}

:is(.btn, .btn-link) .icon {
  position: relative;
  top: 1px;
  width: clamp(10px, 0.625vw, 12px);
  height: auto;
}

.btn {
  text-transform: capitalize;
  padding: clamp(20px, 0.9vw, 25px) clamp(32px, 2.083vw, 40px);
  border-radius: var(--brd-full);
  box-shadow: none;
  outline: none;
  border: 1px solid transparent;
}

.btn.btn-secondary:is(:hover, :active, :focus),
.btn.btn-primary {
  color: var(--primary);
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-primary:is(:hover, :active, :focus),
.btn.btn-secondary {
  color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}

.btn-link {
  padding: 8px;
}

.btn-link span {
  display: inline-flex;
  position: relative;
}

.btn-link span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease-in-out;
}

.btn-link:is(:hover, :focus, :active) span::after {
  width: 0;
}

.btn-link.secondary:is(:hover, :focus, :active),
.btn-link.primary {
  color: var(--primary);
}

.btn-link:is(.primary, .white):is(:hover, :focus, :active),
.btn-link.secondary {
  color: var(--secondary);
}

.btn-link.white {
  color: var(--white);
}

/*==============================================================
	Common Css 
==============================================================*/

/*==============================================================
	header 
==============================================================*/
.header-wrap {
  position: relative;
  z-index: 1;
}

.header-wrap header .head-top {
  background: var(--secondary);
  text-transform: uppercase;
  color: var(--black);
  padding: 10px 0 0;
  text-align: center;
    
}

.head-top ul.social-media{
    background: #000;
    padding: 12px 10px;
    display: inline-block;
    border-radius: 10px 10px 0 0;
    margin-top: 10px;    
}
.head-top ul.social-media  li{
    display: inline-block;
    padding: 0 15px;
}
.head-top ul.social-media li a .svg{
    width: 30px;
    fill: var(--secondary);
    margin-right: 5px;
    transition: var(--transition);
}
.head-top ul.social-media li a{
    color: var(--secondary);
    text-transform: capitalize;
    font-weight: 600;
    transition: var(--transition);
}
.head-top ul.social-media li:hover .svg{
    fill: var(--white);
    transition: var(--transition);
}
.head-top ul.social-media li:hover a{
    color:var(--white);
    transition: var(--transition);
}



header .menu li a {
  display: block;
  font-size: 24px;
  line-height: 32.96px;
  transition: var(--transition);
  color: var(--white);
}

header .menu li:is(.current-menu-item, .current-menu-parent) a {
  font-weight: 500;
  color: var(--secondary);
}

header .menu li a:hover {
  color: var(--secondary);
}

.menu-arrow>.icon {
  width: 12px;
  height: auto;
  transform: rotate(90deg);
  transition: var(--transition);
}

header .logo {
  flex-shrink: 0;
  width: 200px;
   padding: 7px 10px;
  position: relative;
  margin-bottom: -54px;
}

.header-wrap header .head-bottom {
  padding: 10px 0;
}

.header-wrap header .head-bottom .container {
  display: flex;
}

.header-wrap header .header-menu .menu>ul>li {
  display: flex;
  align-items: center;
  column-gap: 3px;
  position: relative;
}

@media(min-width:1201px) {

  .menu-toggle {
    display: none;
  }

  .header-wrap header .header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: clamp(20px, 3.646vw, 70px);
  }

  .header-wrap header .header-menu .menu>ul {
    display: flex;
    align-items: center;
    column-gap: clamp(15px, 1.354vw, 26px);
  }

  .header-wrap header .header-menu .menu>ul .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--white);
    padding: 15px 10px;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }

  .header-wrap header .header-menu .menu>ul>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  .mobile-overlay {
    display: none !important;
  }
}

@media(max-width:1280px) {
  header .logo {
    width: 150px;
  }
}

@media(max-width:1200px) {
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    opacity: 0.8;
    transition: var(--transition);
  }

  .mobile-overlay:not(.active) {
    opacity: 0;
    visibility: hidden;
  }

  header .header-menu .menu-toggle {
    padding: 10px;
    width: 100%;
    justify-content: flex-end;
    background: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  header .header-menu .btn-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
  }

  header .header-menu .btn-wrap .btn {
    width: 100%;
    justify-content: center;
      margin: 10px 0;
      font-size: 22px;
  }

  header .header-menu .menu-toggle button {
    display: inline-flex;
  }

  header .header-menu .menu-toggle button .icon {
    width: 16px;
    height: auto;
  }

  header .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: var(--primary);
    padding: 40px 10px 80px;
    z-index: 1;
    height: 100dvh;
    transition: var(--transition);
  }

  header .header-menu:not(.active) {
    right: -320px;
  }

  header .logo {
    width: 80px;
    margin: 0;
    padding: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-toggle button {
    color: var(--white);
    border: 0;
    background: transparent;
  }

  header .header-menu .menu {
    height: 100%;
    overflow: auto;
  }

  header .header-menu .menu ul {
    display: flex;
    flex-direction: column;
  }

  .header-wrap header .header-menu .menu>ul>li {
    flex-direction: column;
    align-items: flex-start;
  }

  header .menu li {
    position: relative;
  }

  header .menu li a {
    font-size: 22px;
    line-height: 1;
    padding: 14px 10px;
    width: 100%;
  }

  header .menu li .menu-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    position: absolute;
    top: 0;
    right: 0;
  }

  header .menu>ul>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu-arrow.active>.icon {
    transform: rotate(-90deg);
  }

  header .header-menu .menu ul.sub-menu {
    display: none;
  }

  header .header-menu .menu ul {
    width: 100%;
  }

  header .header-menu .menu>ul>li>ul>li {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media(max-width:767px) {
  header .head-top {
    font-size: 14px;
  }
}

/* ===== banner ===== */
.banner {
  position: relative;
}

.ssb_banner .owl-nav{
    display: block;
    
}

.ssb_banner .owl-nav button{
    height: 50px;
    width: 50px;
    
    background: rgba(243,173,16,1) !important;
    font-size: 40px !important;
    color: #fff !important;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    line-height: 60px;
    text-align: center;
    opacity: 0.5;
    transition: var(--transition);
}
.ssb_banner .owl-nav button.owl-next{
    right: 0px;
    border-radius: 5px 0 0 5px;
}
.ssb_banner .owl-nav button.owl-prev{
    left: 0px;
    border-radius: 0px 5px 5px 0px;
}

.ssb_banner .owl-nav button:hover{
    opacity: 1;
    transition: var(--transition);
}

/* ===== banner ===== */



/*==== SSB-FETURES======*/

.ssb-feature{
    padding: 60px 0;
    background: var(--primary); 
}
.ssb-feature ul{
   width: 100%;
    overflow: hidden;
    display: flex;
}
.ssb-feature ul li{
    color: #fff;
    font-weight: 700;
    float: left;
    width: 25%;
    text-align: center;
    position: relative;
    margin: 0 auto;
    
}
.ssb-feature ul li::after{
    content: "";
    width: 1px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f9b233;
}

.ssb-feature ul li:last-child::after{
    content: none;
}

.ssb-feature ul li .svg{
    fill:#f3ad10;
    width: 80px;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}


.about-ssb{
    padding: 80px;
    background: var(--secondary);
}

.about-ssb .about-text h2{
    color: var(--white);
    margin-bottom: 20px;
}

.about-ssb .about-text p{
    color: var(--white);
}
.about-ssb .about-text .btn-wrap{
    margin-top: 20px;
}
.about-ssb .about-text .btn-wrap .btn{
    color: var(--secondary);
  background: var(--primary);
  border-color: var(--primary);
}

.about-ssb .about-text .btn-wrap .btn:hover{
    color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}

.ssb-game{
    padding: 80px 0;
}
.ssb-game h2{
     color: var(--secondary);
    text-align: center;
    margin-bottom: 20px;
}

.ssb-game .game-box{
    margin-top: 30px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
.ssb-game .game-box img{
    width: 100%;
    border-radius: 15px;
    transform: scale(1);
  transition: transform .5s ease;
}

.ssb-game .game-box::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    transition: var(--transition);
}
.ssb-game .game-box:hover::before{
    background: rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.ssb-game .game-box:hover img{
    transform: scale(1.2);
  transition: transform .5s ease;
}
.ssb-game .game-box:hover{
    border: 2px solid var(--secondary);
    transition: var(--transition);
}

.ssb-game .game-box .btn-wrap{
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    display: none;
    z-index: 2;
        transition: var(--transition);
}

.ssb-game .game-box:hover .btn-wrap{
    display: block;
    transition: var(--transition);
}



/*====================Counter============*/



.ssb_counter{
    padding: 40px 0 100px 0;
    overflow: hidden;
    text-align: center;
}




.ssb_counter .counter_list_icon{
    display: inline-block;
    margin-bottom: 50px;
    position: relative;
}
.ssb_counter  .counters_list h3::before{
    content: "";
    position: absolute;
    height: 96px;
    width: 96px;
    background: #000;
    right: -12px;
    top:15px;
    border-radius: 50%;
     transition: all .5s ease-in-out;
    animation: counterDownUp 5s ease-in-out infinite alternate;
}


@keyframes counterDownUp {
  0% {
    transform: translateY(0em);
  }
  100% {
    transform: translateY(-0.5em);
      background: #f8f7fe;
  }
}


.ssb_counter  .counters_list h3{
    display: inline-block;
    position: relative;
}
.ssb_counter .counters_list .counter{
    font-size: 90px;
    line-height: 100px;
    font-weight: 700;
    color: #3a188a;
     transition: all .5s ease-in-out;
}

.ssb_counter  .counters_list sup{
    color: #3a188a;
    font-size: 55px;
    font-weight: 400;
     transition: all .5s ease-in-out;
}




.ssb_counter  .count-text{
    color: #000!important;
    font-size: 36px;
    line-height: 50px;  
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding-bottom: 0;
     transition: all .5s ease-in-out;
}
.ssb_counter .count-text span{
    font-weight: 700;
}


.ssb_counter .bg_colorful{
    background: rgb(243,71,157);
    background: linear-gradient(263deg, rgba(249,180,57,1) 0%, rgba(187,120,0,1) 100%); 
    transition: all .5s ease-in-out;
    border: none;
    padding: 15px;
  border-radius: 8px;
}

.ssb_counter .bg_colorful .count-text,
.ssb_counter .bg_colorful .counters_list .counter,
.ssb_counter .bg_colorful .counters_list sup{
    color: #fff;
     transition: all .5s ease-in-out;
}
.ssb_counter .bg_colorful .counters_list h3::before{
    opacity: 0.1;
     transition: all .5s ease-in-out;
}

.payment-gateway{
    padding-bottom: 40px;
}
.payment-gateway .item img{
    width: auto;
}

.payment-gateway .item{
    text-align: center;
   
}
.payment-gateway .item img{
    text-align: center;
     margin: 0 auto;
}



/* ===== home-testimonial ===== */

/* ===== footer ===== */
.footer-wrap .footer-top {
  padding: clamp(35px, 5.208vw, 100px) 0;
  background: var(--gray);
}

.footer-wrap .footer-top .container {
  text-align: center;
  max-width: 1120px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--primary);
}

.footer-wrap .footer-bottom {
  padding: clamp(30px, 2.604vw, 50px) 0 0;
  background: var(--primary);
}

.footer-wrap .footer-bottom .logo {
  display: inline-block;
  margin: 0 auto;
}

footer .footer-menu {
  padding: 25px 0 35px;
}

footer .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 26px;
}

footer .footer-menu ul li a {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

footer .footer-menu ul li a:hover {
  color: var(--secondary);
}

footer .copyrights {
  font-size: 12px;
  line-height: 1.3;
  color: var(--white);
  border-top: 1px solid var(--white);
  padding: 15px 0;
}

footer .copyrights .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

footer ul.social {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

footer ul.social li {
  display: inline-flex;
}

footer ul.social li a {
  color: var(--white);
  display: inline-flex;
  transition: var(--transition);
}
footer ul.social li .svg{
    fill:var(--white);
    width: 30px;
}

footer ul.social li .svg:hover {
  fill: var(--secondary);
}


.sticky-wp{
    background: #4fcc5d;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    position: fixed;
    bottom: 7%;
    right: 1%;
    z-index: 99999;
    
}
.sticky-wp .svg{
     fill:var(--white);
        width: 50px;
      text-align: center;
      margin: 0 auto;
      display: block;
      line-height: 100px;
      padding-top: 15px;
}

.sticky-sup{
    background: #0188d5;
    bottom: 7%;
    right: inherit;
    left: 1%;
    z-index: 99999;
}
.sticky-sup .svg{
    width: 70px;
    padding-top: 7px;
}

/* ===== footer ===== */


.about-in{
    background: var(--primary);
}

.inner-banner{
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.inner-banner-text{
    text-align: center;
}
.inner-banner-text h1{
    color:var(--white);
    font-size: 60px;
}
.inner-banner-text ul{
    margin-top: 15px;
}
.inner-banner-text ul li,
.inner-banner-text ul li a{
    color:var(--white);
    font-size: 16px;
}
.inner-banner-text ul li a:hover{
    color: var(--secondary);
    transition: var(--transition);
}

.inner-banner-text ul li{
    display: inline-block;
    position: relative;
    padding: 0 10px;
}
.inner-banner-text ul li::after{
    content: "|";
    font-size: 20px;
    color:var(--white);
    position: absolute;
    right: -4px;
    top: -3px;
}
.inner-banner-text ul li:last-child::after{display: none;}

.about-in .about-text h2{
    color: var(--secondary);
}
.about-in .about-text .btn-wrap .btn{
    color: var(--primary);
  background: var(--secondary);
  border-color: var(--secondary);
}
.about-in .about-text .btn-wrap .btn:hover{
    color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}



.ssb-contact{
    text-align: center;
    padding: 40px 0 40px 0;
}

.ssb-contact h2{
    color: var(--secondary);
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 30px;
}
.ssb-contact ul li{
    display: block;
    margin: 30px 0;
}

.ssb-contact ul li p{
    color: var(--secondary);
    font-size: 28px;
    font-weight: 600;
    
}
.ssb-contact ul li a{
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
}
.ssb-contact ul li a:hover{
    color: var(--secondary);
    transition: var(--transition);
}

.ssb-contact .social-media li{
    display: inline-block;
    margin: 0 15px;
}
.ssb-contact .social-media li a{display: block;}

.ssb-contact .social-media li .svg{
    width: 50px;
    fill: var(--white);
    transition: var(--transition);
}
.ssb-contact .social-media li .svg:hover{
    fill: var(--secondary);
    transition: var(--transition);
}

.ssb-policy{
    text-align: left;
    padding: 40px 0;
}
.ssb-policy h3{
    color: var(--secondary);
    margin-top: 40px;
}
.ssb-policy p{
    color: var(--white);
    padding: 10px 0;
    font-size: 18px;
    line-height: 28px;
}
.ssb-policy ul li span,
.ssb-policy p a,
.ssb-policy p a{
    color: var(--secondary);
    font-weight: 600;
}
.ssb-policy ul li{
    color: var(--white);
    margin: 10px 0;
    font-size: 18px;
    line-height: 28px;
}
.ssb-policy a:hover{
    color: var(--white);
}