@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --base: "Poppins", sans-serif;
    --white-color: #fff;
    --black-color: #000;
    --text-color: #555252;
    --theme-color: #0099b2;
    --theme-dark: #0c6573;
    --bg-color: #171a21;

    --bd-shadow-color: rgba(0, 153, 170, 0.5);
    --bd-shadow: var(--bd-shadow-colored);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    color: var(--white-color);
    font-family: var(--base);
    margin: 0;
    padding: 0;
    letter-spacing: 0.8px;
    background: var(--bg-color);
    font-weight: 200;
}

a {
    color: inherit;
    text-decoration: none;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-family: var(--base);
    font-weight: 200;
}

.title {
    color: var(--bg-color);
    font-size: 48px;
    /* line-height: 38px; */
    margin: 0;
    font-weight: 400;
}

.cover-gradient-2 {
    background: linear-gradient(169.4deg, rgba(57, 132, 244, .1) -6.01%, rgba(12, 211, 255, .1) 36.87%, rgba(47, 124, 240, .1) 78.04%, rgba(14, 101, 232, .1) 103.77%);
}

.btn1 {
    border-radius: 5rem;
    padding: 1rem 2rem !important;
    color: var(--white-color) !important;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(0, 153, 178, 1) 0%, rgba(12, 101, 115, 1) 100%);
    outline: none;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    min-width: 40px;
    text-align: center;
    font-size: 15px;
    transition: all 0.25s ease-in-out;
    border: 0;
}

.btn2 {
    border-radius: 5rem;
    padding: 1rem 2rem !important;
    color: var(--theme-color) !important;
    border: 1px solid var(--theme-color);
    font-weight: 500;
    background: transparent;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    min-width: 40px;
    text-align: center;
    font-size: 15px;
    transition: all 0.25s ease-in-out;
}

.btn1:hover,
.btn2:hover {
    box-shadow: 0 4px 6px -1px var(--bd-shadow-color), 0 2px 4px -2px var(--bd-shadow-color);
}

.bg-theme-gradient,
.text-gradient {
    background: linear-gradient(136.91deg, #0099b2 -12.5%, #0c6573 107.5%);
}

.text-gradient {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-dark2{
    background: var(--black-color);
}

/* banner panel */
/* ===================================== */
main {
    height: 100vh;
    position: relative;
}

/* Navabr */
/* ================================================ */
.navbar {
    position: absolute;
    background: transparent;
    /* backdrop-filter: blur(5px); */
    /* box-shadow: 3px 3px 30px rgba(2, 2, 2, 0.055); */
    z-index: 999;
    top: 1rem;
}

.navbar .navbar-brand>img {
    height: 40px;
}

.navbar .nav-link {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 15px 0 !important;
    margin: 0 1rem;
    color: var(--white-color);
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 1px;
    background-color: var(--theme-color);
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--theme-color);
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--bg-color);
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* .scroll-on .nav-link {
    color: #121212;
} */

.navbar .navbar-toggler i {
    color: var(--white-color);
}

.scroll-on .navbar-toggler i {
    color: var(--white-color);
}


/* Banner Content */
/* ================================== */
.bannerPanel {
    position: relative;
    padding-top: 6rem;
}

.bannerPanel h1 {
    font-size: 3.75rem;
}

.text-header-gradient {
    background: #3984f4;
    background: linear-gradient(169.4deg, #3984f4 -6.01%, #0cd3ff 36.87%, #2f7cf0 78.04%, #0e65e8 103.77%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}


/* Buy and Sell Panel */
/* ====================================== */
.buysellPanel {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.inputBox {
    border: 1px solid var(--theme-color);
    padding: 0.75rem 1rem;
    position: relative;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}

.inputBox span {
    padding-right: 0.75rem;
    padding-left: 0.5rem;
    border-right: 1px solid var(--theme-color);
    color: var(--theme-color);
}

.inputBox input {
    background: transparent;
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 400;
    text-align: right;
    border: 0;
    outline: none;
    width: 100%;
}

.buysellPanel .dropdown-menu {
    border: 1px solid var(--theme-color);
    background: var(--bg-color);
    color: var(--white-color);
}

.buysellPanel .dropdown-item {
    background: transparent;
    color: var(--white-color);
}


/* Partners */
/* ================================== */
.partners {
    position: relative;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 2rem;
    background: var(--black-color);
}
.content ol li{
    margin-bottom: 1rem;
    color: var(--theme-color);
}
.content ul{
    margin-top: 0.5rem;
}
.content ul li{
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--white-color);
    opacity: 0.8;
}
.content ul li:before{
    position: absolute;
    content: "\ea6b";
    font-family: "remixicon";
    left: 0;
    top: 0;
}

/* Trading Tool */
/* ================================== */
.tradingtool,
.stepguide {
    position: relative;
    padding: 3rem;
    background: var(--black-color);
    border-radius: 2rem;
}

.stepMain {
    position: relative;
}

.stepMain .item {
    width: 25%;
    position: relative;
}

.stepMain .item img {
    margin-bottom: 2rem;
}

.stepMain .item p {
    opacity: 0.75;
}

.stepMain .item:before {
    position: absolute;
    content: '';
    right: -150px;
    top: 30%;
    width: 200px;
    height: 13px;
    background: url(../images/arrow.png) top left no-repeat;
}

.stepMain .item:last-child:before {
    display: none;
}


/* Footer */
/* =================================== */
footer {
    padding: 3rem 0;
    position: relative;
    color: var(--white-color);
    font-weight: 300;
    background: var(--black-color);
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

footer h4 {
    font-weight: 400;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

footer ul li a {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.7;
    display: block;
    padding-top: 0.5rem;
}

footer ul li a:hover {
    opacity: 1;
}


.innerBanner {
    position: relative;
    padding-top: 10rem;
}

/* Contact Us */
/* ========================================= */
.contact-form {
    overflow: hidden;
}

.contact-form .heading-des {
    font-size: 16px;
}

.contact-detail {
    padding-top: 20px;
}

.contact-detail li {
    font-size: 16px;
    display: flex;
    width: 100%;
    padding-bottom: 25px;
    align-items: center;
}

.contact-detail li:last-child {
    padding-bottom: 0;
}

.contact-detail li a,
.contact-detail li span {
    width: calc(100% - 44px);
    float: left;
    padding-left: 15px;
}

.contact-detail li i {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    float: left;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form .blog-comment-heading {
    font-size: 35px;
}

.contact-map #map {
    width: 100%;
    height: 500px;
}

.contact-form .form-control {
    background-color: transparent;
    border-color: var(--white-color);
    color: var(--white-color);
}

.form-floating>.form-control:not(:placeholder-shown)~label::after {
    background: transparent;
}

.work-box {
    position: relative;
}

.work-box-bg {
    background: url(../images/work-petern.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: ripple 5s infinite;
    transition: all 400ms ease;
}

.work-box img {
    position: relative;
}

.rotation-img {
    -webkit-animation: rotation 15s infinite linear;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.8);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}
.faqMain{
    position: relative;
    padding: 3rem;
    background: var(--black-color);
    border-radius: 2rem;
}
.faqMain .accordion-item {
    border: 1px solid #343434;
    background: transparent;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
}

.faqMain .accordion-flush .accordion-item:first-child,
.faqMain .accordion-flush .accordion-item:last-child {
    border: 1px solid #343434;
}

.faqMain .accordion-collapse {
    border: 0;
}

.faqMain .accordion-button {
    padding: 0px;
    font-weight: 500;
    color: var(--theme-color);
    font-size: 18px;
    padding-left: 45px;
    min-height: 30px;
    background: transparent;
}

.faqMain .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faqMain .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.faqMain .accordion-body {
    padding: 10px;
    padding-left: 45px;
    font-size: 0.9rem;
    color: var(--white-color);
}

.faqMain .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    content: "+";
    font-size: 26px;
    background: transparent;
    text-align: center;
    font-weight: 500;
    color: var(--font-color);
    position: absolute;
    left: 0;
    border-radius: 50%;
    border: 1px solid #343434;
    /* transform: translateY(-4px); */
}

.faqMain .accordion-button::after {
    display: none;
}

.faqMain .accordion-button:not(.collapsed)::before {
    width: 30px;
    height: 30px;
    background: #343434;
    color: var(--white-color);
    content: "-";
    font-size: 30px;
    line-height: 28px;
}

/* Opportunity */
/* ==================================== */

.services-box {
	position: relative;
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

.services-box .frontend, .services-box .backend {
	z-index: 1;
	border-radius: inherit;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: inherit;
	perspective: inherit;
	-webkit-transition: transform 0.8s cubic-bezier(0.5,0.2,0.2,0.8);
	-moz-transition: transform 0.8s cubic-bezier(0.5,0.2,0.2,0.8);
	transition: transform 0.8s cubic-bezier(0.5,0.2,0.2,0.8);
	min-height: 170px;
}

.services-box .frontend {
	background: var(--theme-dark);
    padding: 20px;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.services-box:hover .frontend {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: transform 1.5s cubic-bezier(0.3,1,0.6,1);
	-moz-transition: transform 1.5s cubic-bezier(0.3,1,0.6,1);
	transition: transform 1.5s cubic-bezier(0.3,1,0.6,1);
}

.services-box .backend {
	background: var(--theme-color);
    padding: 15px;
    position: absolute;
    top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.services-box:hover .backend {
	-webkit-transform: rotateY(0);
	-moz-transform: rotateY(0);
	-o-transform: rotateY(0);
	transform: rotateY(0);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: transform 1.5s cubic-bezier(0.3,1,0.6,1);
	-moz-transition: transform 1.5s cubic-bezier(0.3,1,0.6,1);
	transition: transform 1.5s cubic-bezier(0.3,1,0.6,1);
}

.services-box .backend .services-detail {
	-webkit-transform: translateZ(70px) scale(0.86);
	-moz-transform: translateZ(70px) scale(0.86);
	-o-transform: translateZ(70px) scale(0.86);
	transform: translateZ(70px) scale(0.86);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* .frontend .services-detail {
    margin-left: 72px;
} */

.services-icon  {
	display: inline-block;
	float: left;
	color: #737373;
	height: 52px;
	width: 52px;
}

.services-box .ser-title {
	font-size: 15px;
	margin-top: 5px;
	margin-bottom: 5px;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.services-box .ser-subtitle {
	max-width: 350px;
	display: inline-block;
    font-size: 13px;
}

/* Team Section */
/* ============================================ */
.team-part {
    padding: 4rem 0;
	background: url(../images/team-bg.png) no-repeat scroll center center var(--bg-color);
}

.team-box {
	background: var(--theme-color);
	padding: 45px 25px;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	text-align: center;
}

.team-box:hover {
	background: var(--theme-color);
}

.team-thumb {
	border: 5px solid var(--theme-dark);
	display: inline-block;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.team-box .team-thumb img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  	filter: grayscale(100%);
}

.team-box:hover .team-thumb img {
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  	filter: grayscale(0%);
}

.team-detail {
	margin-top: 18px;
}
.member-name {
	color: var(--white-color);
	font-size: 18px;
	margin-bottom: 5px;
	line-height: 26px;
}
.member-designation {
	display: inline-block;
	/* margin-bottom: 25px; */
}

.team-box .social-media ul li a i.fa {
	color: #784cf2;
	transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	font-size: 20px;
}

.team-box .social-media ul li a:hover i.fa {
	color: #fff;
}


/* login */
/* ================================= */
.loginPnl{
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}
.logBox{
    width: 100%;
    /* max-width: 450px; */
    padding: 2rem 3rem;
    position: relative;
    background: var(--black-color);
    color: var(--white-color);
}
.logBox .form-control, .logBox .form-select{
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--theme-color);
    box-shadow: none;
}
.logBox .form-floating > .form-control:-webkit-autofill ~ label {
    color: rgba(255,255,255,0.7);
}

/* Partner */
/* ================================= */
.infor_tech{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.infor_tech .leftPt{
    width: 50%;
}
.infor_tech .rightpt{
    width: 50%;
    padding: 3rem;
    position: relative;
}
.overallVision{
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.leftPt_img{
    position: absolute;
    width: 500px;
    right: 0;
    top: 0;
}


/* Programs */
/* ======================================= */
.programs .card {
    background-color: #ffffff11;
    backdrop-filter: blur(10px);
    color: var(--white-color);
    padding: 15px;
    transition: all 4s;
}

.programs .card .card-text {
    color: #dbdbdb;
}

.programs .card .card-img-top {
    height: 220px;
    object-fit: cover;
    object-position: top;
    transition: all 4s;
    width: 100%;
}

.programs .card:hover .card-img-top {
    transform: scale(1.15);
}

.programs .card .card-title {
    color: var(--secondary-color);
    font-size: 22px;
}

.socialMain {
    background: #111111;
    border-radius: 1rem;
    padding: 20px 15px;
    /* box-shadow: 0 0 25px 4px rgba(19, 66, 135, .2); */
}

.socialList {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.socialList a {
    flex: 1;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    border: 1px dotted #4b4b4b;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    background: var(--black-color);
    color: var(--font-color);
    box-shadow: 0 0 15px 4px rgba(19, 66, 135, .1);
}

.socialList a:hover {
    box-shadow: 0 0 15px 4px rgba(19, 66, 135, .2);
    border-color: var(--theme-color);
}



/* RESPONSIVE PANEL */
/* =============================================== */
@media(max-width:800px){
    .navbar{
        background: var(--bg-color);
        top: 0;
    }
    .bannerPanel h1{
        font-size: 2rem;
    }
    .tradingtool, .stepguide, .faqMain, .partners, .logBox{
        padding: 2rem;
    }
    .stepMain{
        flex-direction: column;
    }
    .stepMain .item{
        width: 100%;
    }
    .stepMain .item::before{
        display: none;
    }
    .overallVision{
        padding-bottom: 0;
    }
    .work-box{
        overflow: hidden;
    }
    .work-box img{
        width: 85%;
    }
    .leftPt_img{
        width: auto;
        position: relative;
    }
    .infor_tech{
        flex-direction: column;
    }
    .infor_tech .leftPt{
        width: 100%;
    }
    .infor_tech .rightpt{
        width: 100%;
        padding: 2rem;
    }
    section .reverse_tech{
        flex-direction: column-reverse;
    }

    .socialList{
        flex-wrap: wrap;
    }
    .socialList a{
        margin: 0.25rem;
    }
}