/* text fonts Poppins & Gilroy */
@font-face {
    font-family: "Poppins-Thin";
    src: url("../fonts/poppins/Poppins-Thin.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Poppins-Light";
    src: url("../fonts/poppins/Poppins-Light.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/poppins/Poppins-Regular.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/poppins/Poppins-Medium.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/poppins/Poppins-Bold.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-Thin";
    src: url("../fonts/gilroy/Gilroy-Thin.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-Regular";
    src: url("../fonts/gilroy/Gilroy-Regular.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-Medium";
    src: url("../fonts/gilroy/Gilroy-Medium.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-SemiBold";
    src: url("../fonts/gilroy/Gilroy-SemiBold.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Gilroy-Bold";
    src: url("../fonts/gilroy/Gilroy-Bold.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
}
/* color variables */
:root {
    --blue: #26AFE6;
    --pink: #FE3DCE;
    --main-bg: #110326;
    --deep: #0C111A;
    --grey: #141922;
    --light-gray: #b6b7b9;
    --dark: #060A0F;
    --white: #FFFFFF;
}
/* main styles */
html, body {
    overflow-x: hidden;
}
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--main-bg);
    width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Poppins-Medium";
}
/* social media */
.social-side {
    padding-left: 0;
    list-style: none;
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    font-size: 1.8rem;
    z-index: 999;
}
.social-side li {
    margin: 15px 0;
}
.social-side li a {
    font-size: 2rem;
    color: var(--blue);
    display: block;
    transition: all .3s;
}
.social-side li:hover a {
    transform: translate(-.5rem, 0);
}


/* Nav */
.nav {
    width: 100%;
    height: 90px;
    position: fixed;
    line-height: 65px;
    text-align: center;
}
.container-nav {
    display: flex;
}
.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
    padding-top: 9px;
}
.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}
.nav div.logo a:hover {
    color: #00E676;
}
.nav div.logo a img {
    height: 60px;
}
.nav div.main_list {
    height: 65px;
    margin:auto 0 auto auto;
}
.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}
.nav div.main_list ul li a {
    font-family: "Poppins-Medium";
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 1.12rem;
    position: relative;
}
.nav div.main_list ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    bottom: -6px;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav div.main_list ul li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}
.navTrigger {
    display: none;
}
.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

/* nav xs */
.header {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease-out, background 1s ease-out;
    transition-delay: 0.2s;
    z-index: 99999;
  }
  .header .burger-container {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent;
    margin-top: 10px;
    margin-right: 10px;
    float: right;
  }
    .header .burger-container #burger {
    width: 18px;
    height: 8px;
    position: relative;
    display: block;
    margin: -4px auto 0;
    top: 50%;
  }
    .header .burger-container #burger .bar {
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    background: #FFF;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
  }
    .header .burger-container #burger .bar.topBar {
    transform: translateY(0px) rotate(0deg);
  }
    .header .burger-container #burger .bar.btmBar {
    transform: translateY(6px) rotate(0deg);
  }
    .header .icon {
    display: inline-block;
    position: absolute;
    height: 100%;
    line-height: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #FFF;
    font-size: 22px;
    left: 50%;
    transform: translateX(-50%);
  }
    .header .icon.icon-bag {
    right: 0;
    top: 0;
    left: auto;
    transform: translateX(0px);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.65s;
  }
   .header ul.menu {
    position: relative;
    display: block;
    padding: 0px 48px 0;
    list-style: none;
    margin-top: 115px;
  }
    .header ul.menu li.menu-item {
    border-bottom: 1px solid #333;
    margin-top: 5px;
    transform: scale(1.15) translateY(-30px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  }
    .header ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.49s;
  }
    .header ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.42s;
  }
    .header ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.35s;
  }
    .header ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.28s;
  }
    .header ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.21s;
  }
    .header ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.14s;
  }
    .header ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.07s;
  }
    .header ul.menu li.menu-item a {
    display: block;
    position: relative;
    color: #FFF;
    font-family: "Ek Mukta", sans-serif;
    font-weight: 100;
    text-decoration: none;
    font-size: 22px;
    line-height: 2.35;
    font-weight: 200;
    width: 100%;
  }
    .header.menu-opened {
    height: 100%;
    background-color: #000;
    transition: all 0.3s ease-in, background 0.5s ease-in;
    transition-delay: 0.25s;
  }
    .header.menu-opened .burger-container {
    transform: rotate(90deg);
  }
    .header.menu-opened .burger-container #burger .bar {
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.2s;
  }
    .header.menu-opened .burger-container #burger .bar.topBar {
    transform: translateY(4px) rotate(45deg);
  }
    .header.menu-opened .burger-container #burger .bar.btmBar {
    transform: translateY(3px) rotate(-45deg);
  }
    .header.menu-opened ul.menu li.menu-item {
    transform: scale(1) translateY(0px);
    opacity: 1;
    visibility: visible;
  }
    .header.menu-opened ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.27s;
  }
    .header.menu-opened ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.34s;
  }
    .header.menu-opened ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.41s;
  }
    .header.menu-opened ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.48s;
  }
    .header.menu-opened ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.55s;
  }
    .header.menu-opened ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.62s;
  }
    .header.menu-opened ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.69s;
  }
    .header.menu-opened .icon.icon-bag {
    transform: translateX(75px);
    transition-delay: 0.3s;
  }
    .content {
    font-family: "Ek Mukta", sans-serif;
    padding: 67px 4% 0;
    text-align: justify;
    max-height: 100%;
  }
    .content::-webkit-scrollbar {
    display: none;
  }
    .content h2 {
    margin-bottom: 0px;
    letter-spacing: 1px;
  }
    .content img {
    width: 95%;
    position: relative;
    display: block;
    margin: 75px auto 75px;
  }
    .content img:nth-of-type(2) {
    margin: 75px auto;
  }
  .logo-xs {
    position: absolute;
    top: 10px;
    /* right: 24px; */
    left: 24px;
  }
  .logo-xs img {
    height: 50px;
  }
@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 1.12rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}
.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}
.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}
.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}
.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}
.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}
@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}
@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}
@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}
@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}
@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}
.affix {
    padding: 0;
    background-color: rgb(0 0 0 / 90%);
    z-index: 99999;
}
.btn-get-start {
    display: block;
    margin: 20px 0;
    min-height: 50px;
    padding: 13px 24px;
    font-size: 1rem;
    line-height: 20px;
    font-family: "Poppins-Medium";
    text-align: center;
    border: none;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    background-position: top center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    transition-property: background, color;
    position: relative;
    display: block;
    color: #FE3DCE;
    border-radius: 26px;
    box-sizing: border-box;
    border: 2px solid transparent;
    background-color: #0e0e30;
    background-clip: padding-box;
    overflow: hidden;
    z-index: 1;
  }
  .btn-get-start::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 2px solid transparent;
    background-image: linear-gradient(#0e0e30, #0e0e30), linear-gradient(90deg, #FE3DCE, #26AFE6);
    background-clip: padding-box, border-box;
    background-repeat: repeat-x;
    background-size: calc(100% + 2px * 2) calc(100% + 2px * 2);
    background-position: center;
    border-radius: 26px;
    z-index: -1;
    transition: border-color 0.2s;
  }
  .btn-get-start::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70vmax;
    height: 70vmax;
    border-radius: 50%;
    background-image: linear-gradient(90deg, #008cff, #6942ef);
    transform-origin: center;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
  }
  .btn-get-start:hover {
    color: var(--textColor2);
  }
  .btn-get-start:hover::after {
    transform: translate(-50%, -50%) scale(1);
  }
  .btn-get-start:active {
    color: #c3c4d5;
  }
  .btn-get-start:focus {
    color: white;
  }
  .btn-get-start:focus::before {
    border-color: #00b8d9;
  }
  @keyframes gradientRotate {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: 100% 100%;
    }
}
@media screen and (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem !important; 
        text-align: center;
        text-align: center;
    }
    .hero h4 {
        font-size: 1.2rem !important;
        text-align: center;
    }
    .hero-line {
        margin: 35px auto 18px auto !important;
    }
    .hero-more {
        margin: 40px auto 0 auto;
    }
    /* .hero-stars, .hero-twinkling {
        display: none !important;
    } */
}
@media screen and (max-width: 991px) {
    nav.nav {
        display: none;
    }
    .modal.modal-download .modal-dialog {
        -webkit-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }
    .modal.modal-download .modal-dialog {
        position: fixed;
        margin: auto;
        width: 100%;
        max-width: 100%;
        height: 100%;
    }
    .modal.modal-download .modal-content {
        height: 60%;
        overflow-y: auto;
    }
    .modal.modal-download .modal-body {
        padding: 15px 15px;
        position: relative;
    }
    .modal.modal-download.fade .modal-dialog {
        bottom: -100%;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
        -o-transition: opacity 0.3s linear, right 0.3s ease-out;
        transition: opacity 0.3s linear, right 0.3s ease-out;
    }
    .modal.modal-download.fade.show .modal-dialog {
        bottom: 0;
    }
    .modal.modal-download.fade .modal-dialog {
        bottom: -100%;
    }
    .modal.modal-download .modal-dialog {
        -webkit-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }
    .modal.modal-download .modal-dialog {
        position: fixed;
        margin: auto;
        width: 100%;
        max-width: 100%;
        height: 370px;
    }
    .modal.modal-download .modal-content {
        height: 320px;
        overflow-y: auto;
    }
    .modal.modal-download .modal-body {
        padding: 15px 0;
    }
    .modal.modal-download.fade .modal-dialog {
        bottom: -100%;
        -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
        -o-transition: opacity 0.3s linear, left 0.3s ease-out;
        transition: opacity 0.3s linear, left 0.3s ease-out;
    }
    .modal.modal-download.fade.show .modal-dialog {
        bottom: 0;
    }
    .modal.modal-download.fade .modal-dialog {
        bottom: -100%;
    }
    .modal-download {
        z-index: 99999;
    }
}
@media screen and (min-width: 992px) {
    .header {
        display: none;
    }
}

/* Footer */
footer {
    background-image: url(../images/footer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}
.footer-aarka img {
    width: 250px;
}
.footer-aarka p {
    font-family: "Poppins-Medium";
    color: var(--white);
    font-size: 1.125rem;
    width: 70%;
    margin: 30px 0;
}
.footer-aarka span {
    font-family: "Poppins-Light";
    color: var(--white);
    font-size: 1.125rem;
    width: 70%;
    margin: 30px 0;
}
.footer-links {
    margin-top: 27px;
}
.footer-links h4 {
    font-family: "Poppins-SemiBold";
    font-size: 1.375rem;
    color: var(--white);
}
.footer-links ul {
    padding-left: 0;
    list-style: none;
}
.footer-links ul li a {
    font-family: "Poppins-Medium";
    font-size: 1.125rem;
    color: var(--white);
    opacity: .7;
    text-decoration: none;
    margin-top: 20px;
    display: block;
    transition: all .3s;
}
.footer-links ul li a:hover {
    opacity: 1;
}

.social-links {
    list-style-type: none;
    padding: 0;
}

.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.social-links a {
    font-size: 2rem !important;
    border-radius: 50%;
    overflow: hidden;
}

/* back to top */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	content: '';
    background-image: url(../images/icons/top.png);
    background-repeat: no-repeat;
    background-position: center;
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: var(--grey);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	content: '';
    background-image: url(../images/icons/top.png);
    background-repeat: no-repeat;
    background-position: center;
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--bs-orange);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
body.light .progress-wrap {
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
}
body.light .progress-wrap::after {
	color: var(--black-blue);
}
body.light .progress-wrap svg.progress-circle path {
	stroke: var(--black-blue);
}
.switch,
.circle {
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
} 
.switch {
	width: 80px;
	height: 4px;
	border-radius: 27px;
	background-image: linear-gradient(298deg, var(--red), var(--yellow));
	position: fixed;
	right: 50px;
	top: 75px;
	display: block;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
  z-index: 33333;
    transition: all 300ms linear;
}
.circle {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--black-blue-light-3);
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	animation: border-transform 10s linear infinite alternate forwards;
}
.circle:hover {
	box-shadow: 0 8px 8px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
}
.circle:before {
	position: absolute;
	font-family: 'unicons';
	content: '\eac1';
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	height: 40px;
	opacity: 1;
	color: var(--grey);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.circle:after {
	position: absolute;
	font-family: 'unicons';
	content: '\eb8f';
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	height: 40px;
	color: var(--yellow);
	opacity: 0;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.switched .circle {
	left: 45px;
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	background: var(--black-blue);
}
.switched .circle:hover {
	box-shadow: 0 8px 8px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
}
.switched .circle:before {
	opacity: 0;
}
.switched .circle:after {
	opacity: 1;
}
@media screen and (max-width: 669px) {
    .social-side {
        display: none;
    }
    #scroll-down {
        right: 32px !important;
    }
}
@media screen and (max-width: 1399px) and (min-width: 670px) {
    .social-side {
        right: 5px;
    }
    #scroll-down {
        right: 32px !important;
    }
}
@media screen and (max-width: 991px) {
    footer {
        height: auto;
        padding-top: 100px;
        padding-bottom: 30px;
    }
    footer .container .row .col-lg-5 {
        margin-bottom: 50px;
    }
}
@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        margin: auto !important;
    }
}
.modal-dialog {
    padding-top: 15%;
}
.modal .modal-content {
    background: rgba(255, 255, 255, 0.37);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.6px);
    -webkit-backdrop-filter: blur(8.6px);
}
.modal-title {
    color: #fff;
    font-family: "Poppins-Bold";
}
.modal-body {
    display: block;
    padding: 11px 11px;
}
.glow-on-hover {
    width: 100%;
    max-width: 350px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff !important;
    margin: 22px auto;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding-top: 12px;
    text-decoration: none;
}
.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, var(--pink), var(--blue), var(--pink), var(--blue));
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}
.glow-on-hover:active {
    color: #000
}
.glow-on-hover:active:after {
    background: transparent;
}
.glow-on-hover:hover:before {
    opacity: 1;
}
.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-bg);
    left: 0;
    top: 0;
    border-radius: 10px;
}
.close-button {
    vertical-align: middle;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    overflow: hidden;
    border:1px solid #333;
    transition: all 0.4s ease-in-out 0s;
    cursor: pointer;
}
.close-arrow,.close-arrow:after, .close-button:after, .close-button:before {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #000;
    transition: all 0.4s ease-in-out 0s;
}
.close-arrow:after, .close-button:after, .close-button:before { 
    content: '';
 }
.close-arrow:after { 
    transform: translate(1px, -92px);
 } 
.close-button:before { 
    transform: translate(-50%, -50%) rotate(-45deg); 
 }
.close-button:after {
     transform: translate(-60px, -75px) rotate(-45deg); 
}
.close-button:focus, .close-button:focus .close-arrow:focus {
    outline: none;
}
.close-button:hover:after { 
    transform: translate(-2px, -11px) rotate(-45deg);
}
.close-button:hover:before {
    transform: translate(60px, 45px) rotate(-45deg);
}
.close-button:hover .close-arrow {
  transform: translate(-61px, 45px) rotate(45deg); 
}
.close-button:hover:after,
.close-button:hover .close-arrow:after,
.close-button.focus:focus:after,
.close-button.focus:focus .close-arrow:after,
.close-button.active:after,
.close-button.active .close-arrow:after
{
    background-color: #fff;
}
.close-button:hover { 
    background-color: var(--blue); border-color: var(--blue); 
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
.btn-close {
    filter: brightness(0) invert(1);
}
@media screen and (max-width: 490px) {
    .modal-body {
        display: grid;
    }
    .glow-on-hover {
        margin: auto;
    }
    .glow-on-hover-low {
        margin-top: 18px !important;
    }
}
