/* Enhanced Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Glowing Border Effect */
@keyframes border-glow {
  0% { box-shadow: 0 0 15px #ffd700; }
  50% { box-shadow: 0 0 30px #ffd700; }
  100% { box-shadow: 0 0 15px #ffd700; }
}

/* Pulse Animation for CTA */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Enhanced Header Styles */
nav ul li {
  position: relative;
  overflow: hidden;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: #ffd700;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Animated Gradient Background */
body {
  background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #2a2a2a, #3a3a3a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhanced Button Effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 215, 0, 0.2), 
    transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.btn:hover::after {
  left: 50%;
}

/* Hover Effect for Social Icons */
footer ul li img {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

footer ul li:hover img {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.8));
}

/* Animated Progress Bars for Tokenomics */
.progress-bar {
  height: 20px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffec99);
  width: 0;
  animation: fillProgress 1.5s ease-out forwards;
}

@keyframes fillProgress {
  from { width: 0; }
  to { width: var(--progress); }
}

/* 3D Card Effect for Image Containers */
.img-hold {
  perspective: 1000px;
}

.img-hold img {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.img-hold:hover img {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
}

/* Enhanced Mobile Menu */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }
  
  nav ul li {
    margin: 10px 0;
  }
}

/* Particle Background Effect */
.particle {
  position: absolute;
  background: rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float 3s infinite;
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(-20px); opacity: 1; }
}

/* Gradient Text Animation */
.gradient-text {
  background: linear-gradient(45deg, #ffd700, #ffaa00, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
  to { background-position: 200% center; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffaa00;
}

/* Hover Effect for List Items */
ul li {
  transition: transform 0.3s ease;
}

ul li:hover {
  transform: translateX(10px);
}

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

html {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p {
    padding: 0;
    margin: 0;
}

ul,
ol,
li {
    list-style: none;
}

input,
button {
    border: 0px;
}

input:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

button {
    display: inline-block;
    background-color: transparent;
}

body {
    font-weight: 400;
    font-family: "Birdgo", sans-serif;
    background: url("../images/background1.png") no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

#wrapper {
    margin: 0 auto;
    width: 100%;
}

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

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

.top-area {
    padding: 0 6rem;
}

@media (max-width: 1280px) {
    .top-area {
        padding: 0;
    }
}

.top-area .img-hold {
    text-align: left;
}

.top-area .t-area {
    text-align: center;
}

.top-area .t-area h2 {
    color: #ffffff;
    font-family: "SweetiePotato", sans-serif;
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 92px;
    margin: 0 0 15px;
}

@media (max-width: 1850px) {
    .top-area .t-area h2 {
        font-size: 75px;
        line-height: 77px;
    }
}

@media (max-width: 1550px) {
    .top-area .t-area h2 {
        font-size: 55px;
        line-height: 57px;
    }
}

@media (max-width: 767px) {
    .top-area .t-area h2 br {
        display: none;
    }
}

@media (max-width: 575px) {
    .top-area .t-area h2 {
        font-size: 40px;
        line-height: 42px;
    }
}

.top-area .t-area .by-btn {
    color: #FFF;
    font-size: 60px;
    font-weight: 400;
    line-height: 65px;
    background: url(../images/bg01.png) no-repeat;
    background-size: 100%;
    width: 360px;
    height: 115px;
    display: inline-block;
    padding: 18px 15px;
    margin: 0 0 45px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 30px;
    transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.top-area .t-area .by-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(25deg);
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}

.top-area .t-area .by-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

.top-area .t-area .by-btn:hover::after {
    opacity: 1;
    animation: shine 0.7s linear;
}

@keyframes shine {
    from {
        left: -60%;
    }
    to {
        left: 120%;
    }
}

@media (max-width: 1850px) {
    .top-area .t-area .by-btn {
        width: 300px;
        height: 96px;
        padding: 15px 15px;
        font-size: 48px;
        line-height: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 1550px) {
    .top-area .t-area .by-btn {
        font-size: 35px;
        line-height: 37px;
        width: 250px;
        height: 80px;
    }
}

.top-area .t-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px;
}

@media (max-width: 1550px) {
    .top-area .t-area ul {
        margin: 0 0 15px;
    }
}

.top-area .t-area ul li {
    margin: 0 25px 0 0;
}

@media (max-width: 1550px) {
    .top-area .t-area ul li {
        margin: 0 15px 0 0;
    }
    .top-area .t-area ul li img {
        width: 70px;
    }
}

.top-area .t-area ul li:last-child {
    margin: 0;
}

.slider-bar {
    background: #000;
    padding: 10px 6rem;
    position: relative;
}

@media (max-width: 1400px) {
    .slider-bar {
        padding: 10px 3rem;
    }
}

@media (max-width: 1024px) {
    .slider-bar {
        padding: 10px 1rem;
    }
}

@media (max-width: 575px) {
    .slider-bar {
        padding: 10px 0.5rem;
    }
}

.slider-bar:before {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    bottom: auto;
    content: "";
    background: url(../images/bg02.webp) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 20px;
    z-index: 9;
}

@media (max-width: 1550px) {
    .slider-bar:before {
        top: -10px;
    }
}

@media (max-width: 1280px) {
    .slider-bar:before {
        top: -8px;
    }
}

@media (max-width: 991px) {
    .slider-bar:before {
        top: -5px;
    }
}

@media (max-width: 575px) {
    .slider-bar:before {
        top: -3px;
        height: 7px;
    }
}

.slider-bar:after {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -10px;
    content: "";
    background: url(../images/bg03.webp) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 20px;
    z-index: 9;
}

.slider-bar .t-slider h2 {
    color: #FFF;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
}

@media (max-width: 1550px) {
    .slider-bar .t-slider h2 {
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width: 992px) {
    .slider-bar .t-slider h2 {
        font-size: 16px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    .slider-bar .t-slider h2 {
        font-size: 14px;
        line-height: 16px;
    }
}

.about-area {
    background: #079640;
}

.about-area .a-text {
    padding: 5rem 10rem 0 0;
}

@media (max-width: 1550px) {
    .about-area .a-text {
        padding: 3rem 3rem 0 0;
    }
}

@media (max-width: 1280px) {
    .about-area .a-text {
        padding: 1rem 2rem 0 0;
    }
}

@media (max-width: 991px) {
    .about-area .a-text {
        padding: 2rem 2rem;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .about-area .a-text {
        padding: 1rem 1rem;
    }
}

.about-area .a-text h2 {
    color: #FFF;
    font-size: 90px;
    font-weight: 400;
    line-height: 92px;
    margin: 0 0 30px;
    font-family: "SweetiePotato", sans-serif;
}

@media (max-width: 1850px) {
    .about-area .a-text h2 {
        font-size: 75px;
        line-height: 77px;
        margin: 0 0 20px;
    }
}

@media (max-width: 1550px) {
    .about-area .a-text h2 {
        font-size: 60px;
        line-height: 67px;
        margin: 0 0 20px;
    }
}

@media (max-width: 1280px) {
    .about-area .a-text h2 {
        font-size: 45px;
        line-height: 47px;
        margin: 0 0 15px;
    }
}

.about-area .a-text p {
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0.3px;
    margin: 0 0 25px;
}

@media (max-width: 1850px) {
    .about-area .a-text p {
        font-size: 25px;
        line-height: 35px;
        margin: 0 0 20px;
    }
}

@media (max-width: 1550px) {
    .about-area .a-text p {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 20px;
    }
}

@media (max-width: 1280px) {
    .about-area .a-text p {
        font-size: 18px;
        line-height: 25px;
        margin: 0 0 15px;
    }
}

@media (max-width: 480px) {
    .about-area .a-text p {
        font-size: 16px;
        line-height: 22px;
    }
}

.about-area .a-text .d-btn {
    color: #0250F6;
    text-align: center;
    font-size: 44px;
    font-weight: 400;
    line-height: 47px;
    background: url(../images/bg04.webp) no-repeat;
    background-size: 100%;
    max-width: 735px;
    width: 100%;
    height: 84px;
    padding: 12px 15px;
    margin: 0 0 30px;
}

@media (max-width: 1850px) {
    .about-area .a-text .d-btn {
        max-width: 620px;
        height: 72px;
        font-size: 35px;
        line-height: 37px;
        margin: 0 0 20px;
    }
}

@media (max-width: 1550px) {
    .about-area .a-text .d-btn {
        max-width: 520px;
        height: 62px;
        font-size: 25px;
        line-height: 35px;
        padding: 8px 10px;
    }
}

@media (max-width: 1100px) {
    .about-area .a-text .d-btn {
        max-width: 400px;
        height: 47px;
        font-size: 20px;
        line-height: 22px;
        padding: 8px 10px;
        margin: 0 0 15px;
    }
}

@media (max-width: 575px) {
    .about-area .a-text .d-btn {
        padding: 6px 10px;
    }
}

.to-area {
    background: #000;
    padding: 4rem 0 0;
    position: relative;
}

@media (max-width: 1550px) {
    .to-area {
        padding: 2rem 0 0;
    }
}

@media (max-width: 767px) {
    .to-area {
        padding: 1rem 0 0;
    }
}

.to-area:before {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    bottom: auto;
    content: "";
    background: url(../images/bg02.webp) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 20px;
    z-index: 9;
}

@media (max-width: 1550px) {
    .to-area:before {
        top: -10px;
    }
}

@media (max-width: 1280px) {
    .to-area:before {
        top: -8px;
    }
}

@media (max-width: 992px) {
    .to-area:before {
        top: -6px;
    }
}

@media (max-width: 767px) {
    .to-area:before {
        top: -4px;
    }
}

.to-area:after {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -10px;
    content: "";
    background: url(../images/bg03.webp) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 20px;
    z-index: 9;
}

@media (max-width: 1024px) {
    .to-area:after {
        height: 14px;
    }
}

.to-area h2 {
    text-align: center;
    color: #FFF;
    font-family: "SweetiePotato", sans-serif;
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 92px;
}

@media (max-width: 1850px) {
    .to-area h2 {
        font-size: 75px;
        line-height: 77px;
    }
}

@media (max-width: 1550px) {
    .to-area h2 {
        font-size: 60px;
        line-height: 67px;
    }
}

@media (max-width: 1280px) {
    .to-area h2 {
        font-size: 45px;
        line-height: 47px;
    }
}

.to-area .img-hold.tp {
    margin: 0;
    text-align: right;
}

@media (max-width: 1650px) {
    .to-area .img-hold.tp {
        padding: 0 0 0 4rem;
    }
}

@media (max-width: 1024px) {
    .to-area .img-hold.tp {
        padding: 0 0 0 2rem;
        height: 100%;
        display: flex;
        align-items: flex-end;
    }
}

.to-area .img-hold.le {
    text-align: right;
    margin: -3.8rem 0 0 0;
}

@media (max-width: 1650px) {
    .to-area .img-hold.le {
        margin: 0;
        padding: 0 0 0 10rem;
    }
}

@media (max-width: 1550px) {
    .to-area .img-hold.le {
        padding: 0 0 0 9rem;
    }
}

@media (max-width: 1350px) {
    .to-area .img-hold.le {
        padding: 0 0 0 8rem;
    }
}

@media (max-width: 1100px) {
    .to-area .img-hold.le {
        padding: 0 0 0 7rem;
    }
}

@media (max-width: 1024px) {
    .to-area .img-hold.le {
        padding: 0 0 0 4rem;
    }
}

@media (max-width: 767px) {
    .to-area .img-hold.le {
        padding: 0 0 0 2rem;
    }
}

.ba-area {
    padding: 5rem 7rem 0 0;
}

@media (max-width: 1550px) {
    .ba-area {
        padding: 3rem 3rem 0 0;
    }
}

@media (max-width: 1280px) {
    .ba-area {
        padding: 1rem 2rem 0 0;
    }
}

@media (max-width: 1199px) {
    .ba-area {
        padding: 1rem 0 0;
    }
}

.ba-area h2 {
    text-align: center;
    color: #ffffff;
    font-family: "SweetiePotato", sans-serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 92px;
    margin: 0 0 50px;
}

@media (max-width: 1850px) {
    .ba-area h2 {
        font-size: 75px;
        line-height: 77px;
        margin: 0 0 40px;
    }
}

@media (max-width: 1550px) {
    .ba-area h2 {
        font-size: 60px;
        line-height: 67px;
        margin: 0 0 20px;
    }
}

@media (max-width: 1280px) {
    .ba-area h2 {
        font-size: 45px;
        line-height: 47px;
        margin: 0 0 15px;
    }
}

.ba-area ul {
    padding: 30px 0 0;
}

@media (max-width: 1199px) {
    .ba-area ul {
        padding: 30px 30px;
    }
}

@media (max-width: 575px) {
    .ba-area ul {
        padding: 15px 15px;
    }
}

.ba-area ul li {
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    margin: 0 0 40px;
}

@media (max-width: 1850px) {
    .ba-area ul li {
        font-size: 25px;
        line-height: 33px;
        margin: 0 0 30px;
    }
}

@media (max-width: 1650px) {
    .ba-area ul li {
        margin: 0 0 20px;
    }
}

@media (max-width: 1550px) {
    .ba-area ul li {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 1280px) {
    .ba-area ul li {
        font-size: 18px;
        line-height: 25px;
        margin: 0 0 15px;
    }
}

@media (max-width: 480px) {
    .ba-area ul li {
        font-size: 16px;
        line-height: 20px;
    }
}

.ba-area ul li:last-child {
    margin: 0 0 50px;
}

@media (max-width: 1650px) {
    .ba-area ul li:last-child {
        margin: 0 0 30px;
    }
}

@media (max-width: 1280px) {
    .ba-area ul li:last-child {
        margin: 0 0 20px;
    }
}

@media (max-width: 1199px) {
    .ba-area ul li:last-child {
        margin: 0;
    }
}

.ba-area ul li span {
    font-size: 50px;
    line-height: 52px;
    font-family: "SweetiePotato", sans-serif;
}

@media (max-width: 1850px) {
    .ba-area ul li span {
        font-size: 40px;
        line-height: 42px;
    }
}

@media (max-width: 1550px) {
    .ba-area ul li span {
        font-size: 30px;
        line-height: 32px;
    }
}

.ba-area ul li span {
    padding: 0 7px 0 0;
}

.ba-area ul li a {
    text-decoration: underline;
    color: #fdb100;
}

.ba-area .add-area {
    padding: 0 0 0 40px;
}

@media (max-width: 1199px) {
    .ba-area .add-area {
        padding: 0 0 40px 40px;
    }
}

@media (max-width: 1024px) {
    .ba-area .add-area {
        padding: 0 0 40px 30px;
    }
}

@media (max-width: 575px) {
    .ba-area .add-area {
        padding: 0 0 15px 15px;
    }
}

.ba-area .add-area h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 10px;
}

@media (max-width: 1850px) {
    .ba-area .add-area h3 {
        font-size: 25px;
        line-height: 27px;
    }
}

@media (max-width: 1550px) {
    .ba-area .add-area h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

.ba-area .add-area .bar {
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {
    .ba-area .add-area .bar {
        flex-wrap: wrap;
    }
}

.ba-area .add-area .bar h4 {
    color: #f3f3f3;
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    line-height: 27px;
    max-width: 695px;
    height: 80px;
    width: 100%;
    background: url(../images/bg05.webp) no-repeat;
    background-size: 100%;
    padding: 20px 15px;
}

@media (max-width: 1850px) {
    .ba-area .add-area .bar h4 {
        font-size: 20px;
        line-height: 22px;
        max-width: 570px;
        height: 67px;
        padding: 18px 15px;
    }
}

@media (max-width: 1350px) {
    .ba-area .add-area .bar h4 {
        font-size: 18px;
        line-height: 20px;
        max-width: 480px;
        height: 56px;
        padding: 15px 15px;
    }
}

@media (max-width: 1280px) {
    .ba-area .add-area .bar h4 {
        font-size: 16px;
        line-height: 18px;
        max-width: 450px;
        height: 53px;
        padding: 13px 15px;
    }
}

@media (max-width: 575px) {
    .ba-area .add-area .bar h4 {
        width: 80%;
        background: url(../images/bg06.webp) no-repeat;
        background-size: 100%;
        height: 90px;
        text-align: left;
        padding: 18px 15px;
    }
}

@media (max-width: 480px) {
    .ba-area .add-area .bar h4 {
        padding: 13px 15px;
    }
}

@media (max-width: 420px) {
    .ba-area .add-area .bar h4 {
        font-size: 14px;
        line-height: 16px;
        height: 80px;
        padding: 10px 9px;
    }
}

.ba-area .add-area .bar button {
    margin: 0 0 0 12px;
}

@media (max-width: 575px) {
    .ba-area .add-area .bar button {
        width: 20%;
        margin: 0;
    }
}

#header {
    padding: 2rem 6rem 15px;
}

@media (max-width: 575px) {
    #header {
        padding: 2rem 0 15px;
    }
}

#header h1 {
    color: #ffffff;
    text-align: center;
    font-family: "SweetiePotato", sans-serif;
    font-size: 140px;
    font-weight: 400;
    line-height: 142px;
}

@media (max-width: 1850px) {
    #header h1 {
        font-size: 100px;
        line-height: 102px;
    }
}

@media (max-width: 1850px) {
    #header h1 {
        font-size: 80px;
        line-height: 82px;
        margin: 0 0 10px;
    }
}

#footer {
    background: #000;
    padding: 4rem 2rem;
    position: relative;
}

@media (max-width: 1100px) {
    #footer {
        padding: 2rem 2rem;
    }
}

#footer:before {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    bottom: auto;
    content: "";
    background: url(../images/bg02.webp) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 20px;
    z-index: 9;
}

@media (max-width: 1550px) {
    #footer:before {
        top: -10px;
    }
}

@media (max-width: 1280px) {
    #footer:before {
        top: -8px;
    }
}

@media (max-width: 992px) {
    #footer:before {
        top: -6px;
    }
}

@media (max-width: 767px) {
    #footer:before {
        top: -4px;
    }
}

#footer ul {
    display: flex;
    align-items: center;
    margin: 0 0 35px;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    #footer ul {
        justify-content: center;
        margin: 0 0 15px;
    }
}

#footer ul li {
    margin: 0 20px 0 0;
}

#footer ul li:last-child {
    margin: 0;
}

@media (max-width: 1550px) {
    #footer ul li {
        margin: 0 15px 0 0;
    }
    #footer ul li img {
        width: 50px;
    }
}

#footer h5 {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

#footer h5.tr {
    text-align: right;
}

@media (max-width: 992px) {
    #footer h5.tr {
        text-align: center;
    }
}

#footer h2 {
    color: #FFF;
    font-size: 63px;
    font-weight: 400;
    line-height: 65px;
    margin: 0 0 50px;
}

@media (max-width: 1400px) {
    #footer h2 {
        margin: 0 0 30px;
    }
}

@media (max-width: 992px) {
    #footer h2 {
        text-align: center;
        margin: 0 0 15px;
    }
}

@media (max-width: 992px) {
    #footer h2 {
        font-size: 50px;
        line-height: 52px;
    }
}

#footer p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

@media (max-width: 992px) {
    #footer p {
        text-align: center;
        margin: 0 0 15px;
    }
}

/*# sourceMappingURL=main.css.map */

#header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

#header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#header nav ul li {
    margin-right: 10px;
}

#header nav ul li a {
    text-decoration: none;
    color: #f0ba33;
}