/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800&amp;display=swap");

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #c1c1c1;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background: #dd1d3f;
}

body {
  color: #555555;
  font-size: 16px;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a:active,
a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

button:active,
button:hover,
button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.container-1 {
  max-width: 1316px;
  margin: 0px auto;
  overflow: hidden;
}

.form-control:focus {
  color: #333333;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.p-t-4 {
  padding-top: 50px;
}

.padd-4 {
  padding-right: 60px;
  padding-left: 48px;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

.r2 {
  transform: rotate(45deg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kanit", sans-serif;
  color: #333333;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #dd1d3f;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #dd1d3f;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #dd1d3f;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #bada55;
  background: #bada55;
}

.btn-theme:hover {
  background: #bada55;
  color: #fff;
  border-color: #bada55;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #bada55;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #bada55;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

[data-overlay] {
  position: relative;
  z-index: 1;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay="light"]::before {
  background-color: #fff;
}

[data-overlay="dark"]::before {
  background-color: #000a2d;
}

[data-overlay="theme"]::before {
  background-color: #bada55;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

/*

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

.row {
  --bs-gutter-x: 30px;
} */

.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -330px;
  width: 300px;
  padding: 25px 20px;
  height: 100%;
  display: block;
  background-color: #0a1216;
  z-index: 11000;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

.slide-bar.show {
  right: 0;
}

.close-mobile-menu {
  text-align: right;
}

.close-mobile-menu a {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 25px;
  top: -10px;
  right: 0;
}

.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-mobile-menu ul li a {
  padding: 13px 0;
  display: block;
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  text-align: center;
}

.side-mobile-menu ul li a:hover {
  color: #fec00d;
  padding-left: 5px;
}

.side-mobile-menu ul li a[aria-expanded="true"] {
  color: #bada55;
}

.side-mobile-menu ul li a[aria-expanded="true"]:before {
  background: #bada55;
  border-color: #bada55;
}

.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}

.side-mobile-menu ul li ul li {
  padding-left: 15px;
}

.side-mobile-menu ul li ul li:hover>a {
  color: #bada55;
  padding-left: 20px;
}

.side-mobile-menu ul li ul li:hover>a:before {
  background: #bada55;
  border-color: #bada55;
}

.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 16px;
}

.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #101a23;
  border-radius: 50%;
}

.side-mobile-menu ul li ul li a[aria-expanded="true"] {
  padding-left: 20px;
}

.side-mobile-menu ul li.has-children>a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: all 0.3s ease-out;
}

.side-mobile-menu ul li.has-children a[aria-expanded="true"]:after {
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.header-area {
  /*background: rgba(0,102,179,0.8);*/
  padding: 10px 0;
  z-index: 999;
  position: relative;
  overflow: hidden;
}

.main-menu {
  display: inline-block;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  display: inline-block;
}

.main-menu ul li a {
  font-size: 20px;
  color: #fff;
  padding: 10px 25px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li a {
    padding: 10px 12px;
  }
}

.main-menu ul li a:hover {
  color: #334450;
}
.sticky-header .main-menu ul li a:hover {
    color: #fecd0a;
}

.hero-content {
  padding-bottom: 20px !important;
}

.music-playing-button {
  display: block;
  border: none;
  background-color: white;
  position: relative;
  z-index: 1000;
  border-radius: 16px;
  padding: 8px 16px 8px 16px;
  margin-top: 25px;
  margin-inline: auto;
  width: 250px;
  text-align: left;
}

.music-playing-button i {
  font-size: 21px;
  vertical-align: bottom;
}

.music-playing-button span {
  margin-left: 6px;
  font-weight: 600;
  font-size: 16px;
}

.play-button-container {
  position: relative;
}

.firework {
  position: absolute;
  top: -50%;
  width: 127px;
  height: 127px;
}

.fr-1 {
  top: -104%;
  left: 24%;
}

.fr-2 {
  top: -110%;
  left: 50%;
}

.max-buy-text {
  margin-bottom: 31px;
}

.anti-dump {
  max-width: 650px;
  margin-inline: auto;
}

.anti-dump img {
  margin: auto;
  display: block;
}

.anti-dump h4 {
  color: white;
  font-size: 25px;
}

.anti-dump p {
  color: white;
  font-size: 18px;
}

.anti-whale {
  margin-top: 40px;
}

.max-buy-text p {
  text-align: center;
  color: white;
  font-size: 25px;
  margin-top: 43px;
  /* margin-bottom:; */
}

.max-buy-text p strong {
  text-align: center;
  color: white;
  font-size: 30px;
}

.max-buy-text p u {
  text-align: center;
  color: #8BC543;
  font-size: 25px;
}

.header-btn {
  display: inline-block;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .max-buy-text p strong {
    display: block;
  }

  .hero-area {
    padding-top: 85px !important;
    padding-top: 20em !important;
  }

  .header-btn {
    visibility: hidden;
    width: 150px !important;
  }

  .header-btn a {
    visibility: hidden !important;
    display: block;
    position: relative;
    transition: all 0.2s ease, visibility 0s;
    border-radius: 30px;
    background: #8bc543;
    width: 100% !important;
    height: 30px !important;
    text-align: center;
    font-size: 15px;
    padding-top: 5px !important;
    color: white;
  }

  .header-btn {
    margin-left: 0;
    width: 113px;
  }

  .pt-113 {
    padding-top: 113px;
  }

  .header-area {
    background: transparent;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    position: absolute;
    top: 0;
    z-index: 999;
	width: 100%;
  }
}

.header-btn a {
  display: inline-block;
  position: relative;
  transition: all 0.2s ease, visibility 0s;
  border-radius: 30px;
  background: linear-gradient(-180deg, #fdd008, rgb(255 152 23));
  width: 225px;
  height: 51px;
  text-align: center;
  font-size: 18px;
  padding-top: 11px;
  color: white;
}

.header-btn a:hover {
  background: 0% 0%/auto auto linear-gradient(333deg, #f7ab20 26%, rgb(255 221 0) 100%);
} 

.header-btn a:hover .img-1 {
  opacity: 0;
  visibility: hidden;
}

.header-btn a:hover .img-2 {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.header-btn a .img-1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.header-btn a .img-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.open-mobile-menu {
  display: inline-block;
  height: 50px;
  line-height: 55px;
  vertical-align: bottom;
  margin-left: 26px;
}

@media (max-width: 767px) {
  .open-mobile-menu {
    height: 40px;
    line-height: 48px;
    margin-left: 10px;
  }
}

.open-mobile-menu a {
  color: #fff;
  font-size: 40px;
  display: inline-block;
}

@media (max-width: 767px) {
  .open-mobile-menu a {
    color: #fff;
    font-size: 30px;
    display: inline-block;
  }
}

.hero-area {
  background: rgba(0,102,179,0.8);
  overflow: hidden;
}

.hero-wrapper .hero-content h2 {
  font-size: 69px;
  line-height: 76px;
  color: #fff;
  font-weight: 900;
}

.custm-m-2 {
  margin-top: -15px;
}
.token-text {
  font-size: 17px !important;
  background-color: #FFFFFF !important;
  color: #1d1e1f !important;
  margin: 0;
  margin-top: 23px !important;
  /* height: 33px !important; */
  /* line-height: normal !important; */
  font-weight: normal !important;
  display: inline-block;
  padding-top: 4px;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .hero-wrapper .hero-content h2 {
    font-size: 48px;
    line-height: 1;
    margin: 0;
    margin-top: 0rem;
    position: relative;
    z-index: 1066;
    top: -17px;
  }

  .anti-dump h4 {
    text-align: center;
    margin-top: 10px;
  }

  .anti-dump p {
    text-align: center;
  }

  .max-buy-text p:last-child {
    padding-inline: 4px;
  }

  .token-text {
    font-size: 18px !important;
    margin-bottom:1em;
  }
}

@media (max-width: 568px){
.token-text {
    font-size: 10px !important;
    margin-bottom:1em;
}
.qrcode, .copyfor{
	font-size: 10px !important;
}
}

@media (max-width: 447px){
	.qrcode{
		font-size: 18px !important;
	}
	.cap-l{
		margin-right:0px !important
	}
}
@media (max-width: 389px){
	.copyfor{
		font-size: 18px !important;
	}
	.cap-l{
		margin-right:0px !important
	}
}

.social a i,
.social a img
{
  vertical-align: top;
}
.hero-wrapper .hero-content h2 span {
  color: #3453a4;
}

.hero-wrapper .hero-content p {
  font-size: 22px;
  color: #fff;
}

@media (max-width: 767px) {
  .hero-wrapper .hero-content p {
    font-size: 18px;
  }
  .vid--head {
    min-height: auto !important;
    border: 2px solid #4891c8 !important;
  }
}

.hero-wrapper .hero-content p span {
  color: #bada55;
}

.hero-wrapper .hero-content .hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25px;
  z-index: 999;
  position: relative;
  /*justify-content: center;*/
}

.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    /*text-align: center !important;*/
}

@media (max-width: 568px){
.token-text {
    font-size: 10px !important;
    margin-bottom:1em;
}
.qrcode, .copyfor{
	font-size: 10px !important;
}
}

@media (max-width: 447px){
    .text-xs-left {
        text-align: left !important;
    }
    .text-xs-right {
        text-align: right !important;
    }
    .text-xs-center {
        text-align: center !important;
    }
}
@media (max-width: 580px){
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}
@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}
@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}
@media (min-width: 1280px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-wrapper .hero-content .hero-btn-group {
    justify-content: center;
  }
  .social {
    text-align: center;
    justify-content: center;
  }
}

/* all desktop query */
@media (min-width: 1024px) {
  .cols-mine {
    width: 21%;
  }

  .h-103 div img {
    min-height: 103px;
  }
  .social a i,
  .social a img,
  .footer-social a i {
    transition: all 0.3s;
    position: relative;
    z-index: 9999;
  }

  .social a i:hover,
  .social a img:hover,
  .footer-social a i:hover {
    transform: translateY(-10px);
  }
}

/* all desktop query */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper .hero-content .hero-btn-group {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-wrapper .hero-content .hero-btn-group {
    justify-content: center;
    display: none;
  }

  .social a {
    margin-top: 0px !important;
  }
}

.hero-wrapper .hero-content .hero-btn-group .hero-btn,
.btn-wrap .hero-btn {
  display: inline-block;
  position: relative;
  transition: all 0.2s ease, visibility 0s;
  border-radius: 30px;
  background: #dd1d3f;
  width: 171px;
  height: 51px;
  text-align: center;
  font-size: 18px;
  padding-top: 11px;
  color: white;
}

.hero-wrapper .hero-content .hero-btn-group .hero-btn2 {
  display: inline-block;
  position: relative;
  transition: all 0.2s ease, visibility 0s;
  border-radius: 30px;
  color: #3453a4;
  width: 171px;
  height: 51px;
  text-align: center;
  font-size: 18px;
  padding-top: 11px;
  background: white;
  margin-left: 25px;
}

.hero-wrapper .hero-content .hero-btn-group .hero-btn:hover {
  background: #dd1d3f;
}



@media (max-width: 767px) {
  .hero-wrapper .hero-content .hero-btn-group .hero-btn {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .hero-wrapper .hero-content .hero-btn-group .hero-btn img {
    width: 80%;
  }
}

.hero-wrapper .hero-content .hero-btn-group .hero-btn:hover .img-1,
.hero-btn:hover img:first-child {
  opacity: 0;
  visibility: hidden;
}

.hero-wrapper .hero-content .hero-btn-group .hero-btn:hover .img-2,
.hero-btn:hover img:last-child {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-wrapper .hero-content .hero-btn-group .hero-btn .img-1,
.hero-btn img:first-child {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrapper .hero-content .hero-btn-group .hero-btn .img-2,
.hero-btn img:last-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.hero-wrapper .hero-content .hero-btn-group .social a,
.social a {
  display: inline-block;
  font-size: 40px;
  color: #fff;
  /*margin-right: 41px;*/
  margin-top: 30px;
}

.hero-thumb {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.hero-thumb .thumb-img {
    /*border: 10px solid #fddac4;*/
    width: 584px;
    /*background: #151727a3;*/
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-thumb .thumb-img {
    width: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-thumb .thumb-img {
    width: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-thumb .thumb-img {
    width: auto;
  }
}

@media (max-width: 767px) {
  .hero-thumb .thumb-img {
    width: auto;
    margin: 0 10px;
  }
}

.hero-thumb .shape-1 {
  position: absolute;
  right: -25px;
  top: -25px;
  z-index: 2;
}

.hero-thumb .shape-2 {
  position: absolute;
  left: -25px;
  top: -25px;
  z-index: 2;
}

.hero-thumb .shape-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(16deg);
  z-index: -1;
  width: 849px;
}

@media (max-width: 767px) {
  .hero-thumb .shape-bg {
    width: 144%;
  }
}

.join-area {
  background-position: center center;
  background-size: 50%;
  /*background-attachment: fixed;*/
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .join-area {
    background-size: 100% 100%;
    background-attachment: inherit;
  }
}

.join-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /*background: #3c5a90;*/
  /*opacity: 0.5;*/
  background: #3453a4;
  opacity: 0.97;
}

.join-btn {
  display: inline-block;
  position: relative;
}

.join-btn:hover .img-1 {
  opacity: 0;
  visibility: hidden;
}

.join-btn:hover .img-2 {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.join-btn .img-1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.join-btn .img-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.load-up-area {
    /* background: #039be5; */
    position: relative;
    z-index: 1;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-image: url(/assets/img/map/rus5.png);
}
.load-up-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #039be5;
    opacity: 0.9;
}
.general-screen{
	background: rgba(0,102,179,0.8);
	overflow: hidden;
	position: relative;
	z-index: 1;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	background-image: url(/assets/img/map/rus2m.png);
	margin-top: -9em;
	padding-top: 13em;
}
.general-screen:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #3385c2;
    opacity: 0.9;
}

.load-content .title {
  font-size: 40px;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 767px) {
  .load-content .title {
    font-size: 25px;
    letter-spacing: 1.2px;
  }

  .img-pos1 {
    position: relative;
    left: 23px;
  }
}

.load-content p {
  font-size: 22px;
  color: #fff;
}

@media (max-width: 767px) {
  .load-content p {
    font-size: 21px;
    padding: 0px 0px;
  }
}

.load-content p span {
  color: #bada55;
}

.load-title {
  font-size: 40px;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 767px) {
  .load-title {
    font-size: 27px;
    letter-spacing: 1.2px;
  }

  .mob-p {
    padding: 1px 5px 0px 0px;
  }
}

.load-wrap {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .load-wrap {
    margin-bottom: 20px;
  }
}

.load-wrap .thumb {
  margin-bottom: 15px;
}

.load-wrap .content h4 {
  font-size: 25px;
  color: #223e8b;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .load-wrap .content h4 {
    font-size: 22px;
  }
}

.load-wrap .content p {
  color: #fff;
  font-size: 21px;
}

@media (max-width: 767px) {
  .load-wrap .content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .load-wrap .content p br {
    display: none;
  }
}

.funds-area {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
}

.funds-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #152f5f;
  opacity: 0.95;
}

.funds-content h3 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .funds-content h3 {
    font-size: 30px;
  }
}

.funds-content h4 {
  font-size: 25px;
  color: #bada55;
  margin-bottom: 25px;
}

.funds-content p {
  font-size: 20px;
  color: #fff;
}

.funds-content .btn-wrap {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .funds-content .btn-wrap {
    margin-bottom: 0;
    margin-left: 25% !important;
  }
}



.funds-content .btn-wrap a {
  display: block;
  padding: 0 25px;
  height: 63px;
  line-height: 55px;
  color: #fff;
  font-weight: 700;
  /* border-radius: 50px; */
  margin-right: 40px;
  background: transparent !important;
  width: 225px;
  padding: 0px !important;
  /*margin: auto !important;*/
}

@media (max-width: 767px) {
  .funds-content .btn-wrap a {
    width: 225px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .np-flex-row>div {
    width: 100%;
  }
}

.funds-content .btn-wrap a:last-child {
  margin-right: 0;
}

.funds-content .read-more {
  /*text-align: center;*/
}

.funds-content .read-more a {
  color: #fff;
  font-size: 20px;
  text-decoration: underline;
}

.token-area {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.token-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #19a2e5;
  opacity: 0.95;
}

.token-title {
  font-size: 40px;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 767px) {
  .token-title {
    font-size: 25px;
  }
}

.token-title span {
  color: #bada55;
}

.service-wrap {
  text-align: center;
  padding: 0 10px;
  margin-bottom: 30px;
}

.service-wrap .thumb {
  margin-bottom: 20px;
}

.service-wrap .content {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 767px) {
  .service-wrap .content {
    font-size: 18px;
  }

  .service-wrap .thumb img {
    /* max-width: 80px; */
    /* height: 64px; */
  }
  .service-wrap{
    margin-bottom: 0px;
    padding-top: 0px !important;
  }
  
}

.service-wrap .content span {
  color: #bada55;
}

.roadmap-wrapper {
  padding: 77px 50px 151px 50px;
  position: relative;
  z-index: 1;
  margin-top: 350px;
}

@media (max-width: 767px) {
  .roadmap-wrapper {
    margin-top: 240px;
    padding: 36px 30px;
  }
}

@media (max-width: 340px) {
  .roadmap-wrapper {
    margin-top: 15em;
    padding: 5px;
  }
  .roadmap-wrapper .shape-bg{
    margin-top: -1.3em;
  }
}

.roadmap-wrapper .animation-thumb {
  position: absolute;
  left: 200px;
  top: -325px;
  z-index: 2;
}

@media (max-width: 767px) {
  .roadmap-wrapper .animation-thumb {
    left: 40px;
    top: -228px;
    z-index: 2;
  }
}

.roadmap-wrapper .animation-thumb .title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  left: 85%;
  bottom: 100px;
  width: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
  .roadmap-wrapper .animation-thumb .title {
    display: none;
  }
}

@media (max-width: 767px) {
  .roadmap-wrapper .animation-thumb .roadmap-img {
    max-width: 300px;
    margin-left: 40px;
    padding-top: 21px;
  }

  .roadmap-wrapper .animation-thumb .title {
    /* left: 70px; */
    top: -45px;
    left: 50%;
    transform: translateX(-34%);
  }
}

.roadmap-wrapper .animation-thumb .star-1 {
  position: absolute;
  right: 60px;
  top: 100px;
  width: 25px;
}

@media (max-width: 320px){
	.roadmap-wrapper .animation-thumb .roadmap-img {
		/* margin-bottom: 4em; */
		margin-left: 0px;
		padding-top: 21px;
		max-width: 100%;
		/* display: none; */
		/* margin-bottom: -5em !important; */
	}
}

@media (max-width: 767px) {
  .roadmap-wrapper .animation-thumb .star-1 {
    right: 20px;
    top: 182px;
  }
}

.roadmap-wrapper .animation-thumb .star-1 svg path {
  fill: #fff;
}

.roadmap-wrapper .animation-thumb .star-2 {
  position: absolute;
  left: 25px;
  bottom: 200px;
  width: 25px;
}

.roadmap-wrapper .animation-thumb .star-2 svg path {
  fill: #fff;
}

.roadmap-wrapper .animation-thumb .star-3 {
  position: absolute;
  left: -80px;
  bottom: 75px;
  width: 25px;
}

@media (max-width: 767px) {
  .roadmap-wrapper .animation-thumb .star-3 {
    left: 0;
    bottom: 120px;
  }
}

.roadmap-wrapper .animation-thumb .star-3 svg path {
  fill: #fff;
}

.roadmap-wrapper .shape-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* .roadmap-wrapper .shape-bg svg {
  width: 100%;
  height: 100%;
} */
.roadmap-wrapper .shape-bg svg {
  width: 95%;
  margin: 0px auto;
  height: 90%;
  margin-left: 27px;
  /* fill: rgba(0,102,179,0.9); */
}

@media (max-width: 767px) {
  .roadmap-wrapper .shape-bg svg {
    border-radius: 50px;
    background: #152f5f;
  }
}

.roadmap-wrapper .shape-bg svg path {
  fill: #152f5f;
}

.roadmap-wrap {
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .roadmap-wrap {
    padding: 0;
    margin-bottom: 50px;
  }
}

.roadmap-wrap h3 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 767px) {
  .roadmap-wrap h3 {
    font-size: 30px;
  }
}

.roadmap-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roadmap-wrap ul li {
  display: block;
  color: #ffff;
  font-size: 20px;
}

@media (max-width: 767px) {
  .roadmap-wrap ul li {
    font-size: 17px;
  }
}

.roadmap-wrap .shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 16px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .roadmap-wrap .shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .roadmap-wrap .shape {
    display: none;
  }
}

.roadmap-wrap .shape svg path {
  fill: #039be5;
}

.cta-content h3 {
  font-size: 60px;
  margin-bottom: 5px;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-content h3 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .cta-content h3 {
    font-size: 38px;
  }
}

.cta-content h4 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #bada55;
}

@media (max-width: 767px) {
  .cta-content h4 {
    font-size: 25px;
  }
}

.cta-content .cta-btn a {
  display: inline-block;
  margin-right: 50px;
  position: relative;
}

@media (max-width: 767px) {
  .cta-content .cta-btn a {
    font-size: 25px;
    margin-right: 20px;
  }

  .mob-p-1 {
    padding-left: 30px;
  }

  .roadmap-wrapper .shape-bg svg {
    width: 91%;
    margin: 0px auto;
    height: 96%;
    margin-left: 16px;
  }

  .container-1 {
    padding: 0;
    margin: 0;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .mob-left-1 {
    text-align: left !important;
  }
}

.cta-content .cta-btn a:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .cta-content .cta-btn a img {
    width: 150px;
  }
}

.cta-content .cta-btn a:hover .img-1 {
  opacity: 0;
  visibility: hidden;
}

.cta-content .cta-btn a:hover .img-2 {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.cta-content .cta-btn a .img-1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.cta-content .cta-btn a .img-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.nft-area {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background: #152f5f;
}
.nft-area:before {
    /* content: ""; */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* background: #19a2e5; */
    opacity: 0.95;
}

.n-pb-35 {
    padding-bottom: 35px;
}

.putin-area {
  position: relative;
  z-index: 1;
  /* background-position: center center; */
  background-attachment: fixed;
  background-size: cover;
  /* width: 100%; */
  max-width: 100%;
  overflow-x: hidden;
}

.putin-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0,102,179,1.0);
  opacity: 0.95;
}

.putin-area .shape-1 {
	position: absolute;
    right: 0%;
    top: 100px;
    transition: all 2s;
    /* transform: rotate(100deg); */
    z-index: -1;
}

.shape-6 {
  /* transform: rotate(26deg); */
}

.contact {
  color: #dd1d3f !important;
  font-size: 25px !important;
}

.putin-area .shape-2 {
  position: absolute;
  left: 0%;
  top: 38%;
  z-index: -1;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .putin-area .shape-2 {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .putin-area .shape-2 {
   display: none;
  }
}

@media (max-width: 767px) {
  .putin-area .shape-2 {
    display: none;
  }
}

.putin-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 767px) {
  .putin-title {
    font-size: 26px;
  }
}

.info-box {
  display: inline-block;
  background: #039be5;
  text-align: center;
  height: 100%;
  border-radius: 20px;
  padding: 20px 50px;
  min-width: 282px;
  box-shadow: 0 6px 3px rgb(0 0 0 / 38%);
}

@media (min-width: 768px) and (max-width: 991px) {
  .info-box {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .info-box {
    min-width: auto;
    width: 100%;
    max-width: 225px;
  }
}

.info-box .thumb {
  margin-bottom: 15px;
}

.info-box p {
  font-size: 22px;
  color: #fff;
}

@media (max-width: 767px) {
  .info-box p br {
    display: none;
  }
}

.putin-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .putin-content h3 {
    font-size: 29px;
  }
}

.putin-content p {
  font-size: 22px;
  color: #fff;
}

@media (max-width: 767px) {
  .putin-content p {
    font-size: 24px;
  }
}

.putin-content p svg {
  height: 30px;
  margin-right: 30px;
}

.putin-content p svg path {
  fill: #039be5;
}

.putin-content-2 h3 {
  line-height: 39px;
}

.putin-content-2 p {
  color: #fff;
  margin-bottom: 30px;
}

.putin-content-2 h3 {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .putin-content-2 h3 {
    font-size: 24px;
  }

  p.para-1 {
    font-size: 22px;
  }
}

.putin-content-2 h3 span {
  color: #bada55;
}

.putin-thumb-2 img {
  width: 100%;
}

@media (max-width: 767px) {
  .putin-thumb {
    height: 310px;
  }
}

@media (max-width: 767px) {
  .svg-last {
    /*width: 100px !important;*/
  }
}

@media (max-width: 767px) {
  .load-thumb img {
    width: 75%;
  }
}

.footer-area {
  background: #1b1b2e;
}

.footer-text p {
  font-size: 15.5px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-text p a {
  font-size: 15.5px;
  color: #fff;
}

.footer-thumb img {
  display: inline-block;
  margin-right: 30px;
}

.footer-thumb a:first-child img {
  width: 75px;
  height: 72px;
  object-fit: cover;
}

.footer-thumb a:last-child img {
  width: 102px;
  height: 102px;
  object-fit: cover;
  object-position: 50% 50%;
}

.footer-thumb a:first-child p {
  color: white;
  margin-top: 30px;
  font-size: 20px;
}

.footer-thumb a:last-child p {
  color: white;
  /* margin-top: 10px; */
  font-size: 20px;
}


@media (max-width: 767px) {
  .footer-thumb a:last-child img {
    width: 72px;
    height: 72px;
  }

  .footer-thumb a:first-child img {
    width: 55px;
    height: 52px;
  }

  .brand-names p:last-child a {
    width: 82px !important;
    font-size: 14px !important;
  }

  .brand-names p:first-child a {
    width: 65px !important;
    font-size: 14px !important;
  }

  .footer-thumb img {
    margin-right: 10px;
    width: 40px;
  }
}

.footer-social a {
  display: inline-block;
  font-size: 38px;
  color: #fff;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .footer-social a {
    font-size: 35px;
    margin-left: 10px;
  }

  .hero-wrapper .hero-content .hero-btn-group .social {
    display: block;
    width: 100%;
  }

  .hero-wrapper .hero-content .hero-btn-group .social a {
    margin: 0;
    margin-left: 1rem;
  }
}

.letter-s {
  letter-spacing: 0.03em;
}

.green-1 {
  color: #bada55;
}

.trasn {
  transition: all 2s;
}

@media (max-width: 767px) {
  .load-thumb-2 img {
    width: 90%;
    margin-bottom: 20px;
  }

  .footer-text p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 20px;
  }

  .footer-text p a {
    font-size: 12px;
    color: #fff;
  }
}

.sticky-header {
  background: #325c92;
  position: fixed;
  top: 0;
  z-index: 88;
  width: 100%;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .hero-thumb .shape-bg {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%) rotate(16deg);
    z-index: -1;
    width: 739px;
  }

  .hero-wrapper .hero-content h2 {
    font-size: 61px;
    line-height: 76px;
    color: #fff;
    font-weight: 900;
  }
}

.n-bg-blue {
  background-color: rgb(21, 47, 95);
}

.n-left-svg {
  width: 298px;
  margin: auto;
}

.font-18 {
  font-size: 18px;
}

.text-white {
  color: #ffffff;
}

.n-purple-btn {
  background: 0% 0% / auto auto linear-gradient(333deg, #781aff 26%, #ff16ff 100%),
    #b46640;
  border-radius: 12.5px;
  transition: inherit;
  color: #ffffff;
  letter-spacing: 0.1em;
  font-size: 18px;
  width: 175px;
  height: 51px;
  padding-top: 13px;
  display: inline-block;
  transition: all 0.2s ease, visibility 0s;
}

.n-purple-btn:hover {
  color: #ffffff;
  background: 0% 0% / auto auto linear-gradient(333deg, #ea26ff 26%, rgba(180, 102, 64, 0) 100%);
}

.n-margin-b-50 {
  margin-bottom: 50px !important;
}

.n-margin-y-12 {
  margin-block: 12px !important;
}

.n-left-p {
  width: 330px;
  margin: auto;
  margin-bottom: 11px !important;
}

.n-right-svg {
  width: 140px;
  margin: auto;
}

.n-green-btn {
  transition: all 0.2s ease, visibility 0s;
  background: repeat padding-box border-box 0% 0% / auto auto scroll linear-gradient(333deg, #00bd68 26%, #407c51 100%),
    #b46640;
  border-radius: 12.5px;
  transition: inherit;
  color: #ffffff;
  letter-spacing: 0.1em;
  font-size: 18px;
  width: 175px;
  height: 51px;
  padding-top: 13px;
  display: inline-block;
}

.n-green-btn:hover {
  color: #ffffff;
  background: 0% 0% / auto auto linear-gradient(333deg, #00bd68 26%, rgba(180, 102, 64, 0) 100%);
}

.n-right-p {
  width: 360px;
  margin: auto;
  margin-bottom: 11px !important;
}

.n-pt-35 {
  padding-top: 35px;
}

.n-pb-61 {
  padding-bottom: 61px;
}

.brand-names p:first-child a {
  width: 105px;
  text-align: center;
  font-size: 20px;
  color: white;
  display: block;
}

.brand-names p:last-child a {
  width: 102px;
  text-align: center;
  font-size: 20px;
  color: white;
  display: block;
}

.qrcode, .copyfor {
    display: inline-block;
    color: #fff;
    position: relative;
    transition: all 0.2s ease, visibility 0s;
    border-radius: 10px;
    background: #dd1d3f;
    /* width: 171px; */
    /* height: 51px; */
    text-align: center;
    font-size: 18px;
    padding: 9px;
    color: white;
	z-index:2;
}

.copyfor {
    margin-right: 0.2em;
    background: #3453a4;
    padding: 9px 20px;
    color: #fff;
}

a.copyfor:hover {
    color: #e5dedc;
    background: #dd1d3f;
}

a.qrcode:hover {
    background: #3453a4;
    color: #e5dedc;
}
.social .hero-btn {
    position: relative;
    height: 40px;
    color: white;
}
.social .hero-btn img:hover {
    transform: none;
}
.social .hero-btn img:first-child {
    width: auto;
}

.social .hero-btn img:last-child {
    width: auto;
}
.f-ico {
    font-size: 1.5em;
    padding: 0em 0.3em;
    color: #fff;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.f-tg:hover, .f-tw:hover {
    color: #0597de;
}
.pl-0 {
    padding-left: 0px;
}
.mw-298{
	max-width: 298px;
}
.cta-content .fut-btn{
	display: inline-block;
    position: relative;
    transition: all 0.2s ease, visibility 0s;
    border-radius: 30px;
    background: #dd1d3f;
    width: 171px;
    height: 51px;
    text-align: center;
    font-size: 18px;
    padding-top: 11px;
    color: white;
}
.cta-content .fut-btn:hover{
	background: #3453a4;
}
.tw {margin-right: 0px !important;}

.soc-bl{
    display: inline-block;
    /*margin-right: 40px;*/
}

@media (max-width: 740px) {

.soc-bl{
    display: inline-block;
    margin-right: 40px;
}
}

@media (max-width: 777px) {
    .soc-bl{
        width:100%;
        margin-right: 0px !important;
        padding: 0px !important;
        margin: 0px !important;
    }
    .mark-cap{
        margin-right: 0px !important;
    }
	.cap-l {
		margin-right: 0px !important;
	}
}

@media (min-width: 1200px){
.chart-btn a {
    font-size: 15px !important;
    width: auto !important;
    height: auto !important;
    padding: 10px;
	}
}
@media (max-width: 1024px){
  .load-thumb-2 img {
    position:absolute;
    height: 450px;
    width: auto;
    left: -3em;
    bottom: 3em;
  }
}

@media (max-width: 767px){
.load-thumb-2 img {
    position:absolute;
    height: 350px;
    width: auto;
    left: 5em;
    right: 0px;
    bottom: 11em;
}
}
@media (max-width: 590px){
.load-thumb-2 img {
    position:absolute;
    height: 350px;
    width: auto;
    left: 2em;
    right: 0px;
    bottom: 12em;
}
}

@media (max-width: 506px){
.load-thumb-2 img {
    position:absolute;
    height: 420px;
    width: auto;
    left: -4em;
    bottom: 12em;
}
}
@media (max-width: 372px){
.load-thumb-2 img {
    height: 420px;
    left: -6em;
    bottom: 16em;
}
}
@media (max-width: 330px){
.d-putin {
    display: none !important;
}
.alt-putin {
    width: 100%;
    
}
}

.copyright {
    color: #3f3f5c;
}

.vid--head{
	width: 100%;
    height: auto;
    min-height: 268px;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    border: 10px solid #fddac4;
}
.socline {
    margin-right: 15px !important;
}