/*===========================================================
 Custom Font CSS
============================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: #fff;
    --preloaderBg: #160e33;

}

/*===========================================================
 Common CSS
============================================================*/

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #8290b0;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    /* overflow-y: hidden; */
}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}



/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 15px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu ul li {
    list-style: none;
    display: inline-block;
}

.navbar-light .navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-fixed {
    padding: 20px 0;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: .3s;
    background-color: rgba(22, 14, 51, 0);
}

.navbar-fixed.active {
    background-color: rgba(22, 14, 51, 1);
}

.navbar-fixed a {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 50px;
    letter-spacing: normal;
    color: #f2f2f2;
}

.navbar-expand-lg .btn-crt img {
    margin-left: 10px;
}

.navbar-expand-lg .btn-crt {
    text-decoration: none;
    margin-left: 30px;
    padding: 0 18px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    border: solid 1px #8aacfe;
    color: #8aacfe;
}

.navbar-expand-lg .btn-crt:first-child {
    margin-left: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-right a,
button {
    transition: .3s;
}

.footer-right a:hover,
button[type='submit']:hover,
.btn:hover {
    opacity: 0.8;
}

.navbar-expand-lg .btn-crt:hover {
    opacity: 0.6;
}

/*===========================================================
 Hamberger
===========================================================*/


.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--hamBg);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.navbar-toggler[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}


body {
    background-color: #160e33;

}


/*===========================================================
 Banner
===========================================================*/
.banner-area {
    background-image: url("../img/banner-bg.png");
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 170px;
    padding-bottom: 100px;
}

.banner-left h2 {
    font-size: 60px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: #fff;
    text-transform: uppercase;
}

.banner-left input {
    padding: 4px 4px 4px 14px;
    border-radius: 16px;
    background-color: #fff;
    width: 100%;
    border: 0;
}

.banner-left p {
    max-width: 480px;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #b9c9ee;
    margin: 20px 0;
}
.banner-right{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copy form {
    position: relative;
    max-width: 575px;
}

.copy button {
    position: absolute;
    right: 5px;
    top: 4px;
    line-height: 24px;
    padding: 0 8px 0 8px;
    border-radius: 16px;
    background-color: #ff6939;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;

}

.banner-btn {
    margin: 50px 0;
}

.btn {
    width: 177px;
    line-height: 60px;
    padding: 0 28px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    border: solid 1px #acb5cb;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    margin-right: 45px;
}

.btn:last-child {
    margin-right: 0;
}

.btn-white {
    color: #5c6c92;
    background: #fff;
    border: solid 1px #acb5cb;
}

.btn-orange {
    border: solid 1px #ff6939;
    background-color: #ff6939;
    color: #fff;
}

.btn-orange:hover {
    color: #fff;
}

.banner-logo {
    display: flex;
    align-items: center;
}

.banner-logo img {
    margin-right: 45px;
}

.banner-logo img:last-child {
    margin-right: 0;
}

/*===========================================================

===========================================================*/
.about-area::before {
    /* position: absolute;
    background-color: #160e33;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%; */
}

.about-area {
    padding-top: 150px;
    position: relative;
    z-index: 10;
}

.title {
    position: relative;
}

.title h2 {
    text-transform: uppercase;
    position: absolute;
    font-size: 180px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -3.6px;
    color: rgba(255, 255, 255, 0.04);
    top: 0;
    left: -30px;
    z-index: 1;
    width: 100%;
}

.about-single p {

    color: #8290b0;
    margin-bottom: 30px;
}

.about-single span {
    display: block;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #fff;
    margin-bottom: 8px;
}

.about-single {
    position: relative;
    z-index: 10;
    max-width: 365px;
}

.title-2 h3,
.about-single h3 {
    font-size: 36px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: -0.72px;
    color: #fff;
    margin-bottom: 20px;
}

.title-padding {
    padding-top: 150px;
}

.sasa {
    background-color: #160e33;
}

.title-2 p {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #bfbfbf;

}

.title-2.text-center P,
.title-2.text-center h3 {
    margin-left: auto;
    margin-right: auto;
    max-width: 440px;
}

/* timeline-area */
.timeline-area {
    overflow: hidden;
    clear: both;
}

.timeline-bottom {
    display: flex;
    justify-content: center;
    padding-left: 160px;

}

.timeline-bottom {
    height: 420px;
}

.timeline-container {
    padding-top: 300px;
    position: relative;
    margin-top: 100px;
}

.timeline-border {
    position: absolute;
    bottom: 400px;
}

.tb-single {
    /* width: 400px; */
    position: relative;
    margin-left: -150px;
    padding-top: 180px;
}

.tt-content {
    margin-left: 150px;
}

.tb-inner p {
    text-align: right;
}

.tb-inner h3 {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #fff;
    text-align: right;
}

.tb-inner {
    transform: rotate(-90deg);
    /* transform-origin: 50 50; */
    transform-origin: center;
    /* position: absolute; */
    width: 330px;

}

.tb-1 {
    left: 0;
}

.tb-2 {
    left: 0;
}

.timeline-border {
    background-color: #91a3cf;
    height: 5px;
    width: 100%;
}

.tt-content {
    width: 180px;
}

.tb-single:nth-child(even) .tt-content {
    top: -150px;
}

.tb-single:nth-child(odd) .tt-content {
    top: -250px;
}

.tb-single:last-child .tt-content {
    right: 0;
}

.tt-content {
    position: absolute;
    top: 0;
    left: 0;
}

.tb-inner {
    position: relative;
}

.tb-single::before {
    border-radius: 50%;
    position: absolute;
    content: '';
    z-index: inherit;
    top: 5px;
    left: 140px;
    width: 27px;
    height: 27px;
    background-color: #91a3cf;
}

.tb-single:last-child:before {
    left: 160px;
}

.tt-content::before {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    content: '';
    z-index: inherit;
    bottom: -12px;
    left: 0;
}

.tt-content::after {
    width: 2px;
    height: 60px;
    background-color: #fff;
    position: absolute;
    content: '';
    z-index: inherit;
    bottom: -78px;
    left: 2px;
}

.tb-single:last-child .tt-content:before {
    left: 21px;
}

.tb-single:last-child .tt-content:after {
    left: 23px;
}

.tb-single:nth-child(odd) .tt-content:after {
    height: 155px;
    bottom: -175px;
}

.timeline-area {
    background-image: url('../img/bg-2.png');
    background-size: cover;
}

.tb-single .tt-content p {
    margin-left: -100px;
    max-width: 200px;
}

.tb-single:first-child .tt-content p {
    margin-left: 0;
}

/*===========================================================
 tokenomics
===========================================================*/
.tokenomics-area {
    background-image: url("../img/bg-token.jpg");
    position: relative;
    z-index: 1;
    background-position: left top;
    background-repeat: no-repeat;
    padding-top: 300px;
    top: -150px;

}

.title-2 h3 {
    padding-top: 130px;
    max-width: 380px;
}

.tokenomics {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 90px;
}

.tokenomics-single:nth-child(1),
.tokenomics-single:nth-child(3) {
    max-width: 350px;
}

.tokenomics-single:nth-child(2) {
    width: 510px;
}

.tokenomics-single-content {
    margin-bottom: 70px;
}

/*===========================================================
 contact-area
===========================================================*/
.contact-area {
    padding: 150px 0 190px 0;
}

.contact-area .contact-row {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
}

.contact-left a {
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #8290b0;
    display: inline-block;
    margin-bottom: 40px;
}

.contact-left span {
    display: block;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #353e54;
    margin-bottom: 5px;
}

.single-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #5c6c92;
    margin-bottom: 5px;
}

.single-form a {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #5c6c92;
    display: inline-block;
}

.single-form input {
    padding-left: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    border: solid 1px #acb5cb;
    background-color: #fff;
    line-height: 48px;
    width: 100%;
}

.single-form input[type='checkbox'] {
    width: auto;
    display: inline-block;
}

.single-form input[type='checkbox']+label {
    display: inline-block;
    padding-left: 10px;
}

.single-form {
    width: 100%;
    margin-bottom: 24px;
}

.single-form div {
    width: 100%;
}

.single-form.col-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.single-form.col-2 div {
    width: 47%;
}

.single-form textarea {
    width: 100%;
    height: 128px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    border: solid 1px #acb5cb;
    background-color: #fff;
}

.single-form button {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    border: solid 1px #ff7b52;
    background-color: #ff7b52;
    line-height: 48px;
    padding: 0 20px;
    display: block;
    width: 100%;
    cursor: pointer;
}

/*===========================================================
 Footer
===========================================================*/
.fotoer {
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 130px;
    border-top: 1px solid #c1c7d8;
}

.footer-right a {
    display: inline-block;
    margin-left: 24px;
}

.footer-right a:first-child {
    margin-left: 0;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 100px;
    }

    .dropdown-menu {
        padding-top: 0;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1400px) and (min-width: 1300px) {
    .container {
        max-width: 1270px;
    }
}

@media (max-width: 1400px) {
    .timeline-border {
        width: calc(100% - 80px);
        margin-left: 40px;
    }

    .tb-single {
        left: -30px;
    }

    .tb-inner {
        width: 290px;
    }

    .tb-single {
        margin-left: -128px;
    }

    .tt-content p {
        margin-left: -70px;
        max-width: 200px;
    }

    /* .tokenomics-single:nth-child(3),
    .tokenomics-single:nth-child(1){
        max-width: 300px;
    }
    .tokenomics-single:nth-child(2){
        display: flex;
        align-items: center;
        max-width: 450px;
    }
    .tokenomics-single-content{
    margin-bottom: 40px;
    }
     */
}

@media (max-width: 1299px) {
    .tt-content {
        position: relative;
        top: unset;
        left: unset;
    }

    .tb-single {
        margin-left: unset;
        padding: 0;
        left: unset;
        display: flex;
        flex-direction: column-reverse;
    }

    .timeline-bottom {
        padding-left: 0;
        height: auto;
    }

    .timeline-bottom {
        flex-direction: column;
    }

    .tb-single:nth-child(odd) .tt-content,
    .tb-single:nth-child(even) .tt-content {
        top: unset;
        margin: 0;
    }

    .timeline-bottom {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .tb-inner {
        transform: rotate(0);
        transform-origin: center;
        width: 300px;
    }

    .tb-single .tt-content p {
        max-width: 300px;
    }

    .tb-single:nth-child(odd) {
        padding-left: 400px;
    }

    .tb-single .tt-content p {
        margin-left: 0;
    }

    .tb-single .tb-inner h3,
    .tb-single .tb-inner p {
        text-align: left;
    }

    .tb-single:nth-child(even) {
        text-align: right;
    }

    .timeline-border {
        width: 2px;
        height: 100%;
        position: absolute;
        left: 50%;
        margin-left: -1px;
        top: 6px;
    }

    .tb-single::before {
        width: 17px;
        height: 17px;
    }

    .timeline-container {
        padding-top: 0;
    }

    .tb-single:nth-child(even) .tb-inner h3,
    .tb-single:nth-child(even) .tb-inner p {
        text-align: right;
    }

    .tb-single:nth-child(even) .tt-content p {
        margin-left: auto;
    }

    .tb-single:nth-child(even) .tt-content:after,
    .tb-single:nth-child(odd) .tt-content:after {
        height: 10px;
        display: none;
    }

    .tb-single::before {
        left: 50%;
        margin-left: -9px;
    }

    .tt-content {
        width: auto;
        max-width: 300px;
    }

    .tt-content::before {
        display: none;
    }

    .tb-single::after {
        position: absolute;
        content: '';
        top: 12px;
        left: 50%;
        width: 40px;
        z-index: 1;
        background: #91a3cf;
        height: 2px;
    }

    .tb-single:nth-child(even)::after {
        margin-left: -40px;

    }

    .tb-single:last-child:before {
        left: 50%;
    }

    .tt-content {
        margin-top: 10px !important;
    }

    /* .tb-single:nth-child(odd) .tb-inner h3,
    .tb-single:nth-child(odd) .tb-inner p{
        text-align: left;
    }
    .tb-single:nth-child(even) .tt-content{
        margin-left: auto;
        text-align: left;
    } */
    .tokenomics-single:nth-child(1),
    .tokenomics-single:nth-child(3) {
        max-width: 250px;
    }

    .tokenomics-single:nth-child(2) {
        display: flex;
        align-items: center;
        /* width: 300px; */
    }

    .tokenomics-single-content:last-child {
        margin-bottom: 0;
    }
    .title h2{
        font-size: 160px;
    }
}

@media (max-width: 1199px) {
    .tokenomics-single:nth-child(2){
        width: 400px;
    }
    .tokenomics-single:nth-child(1), .tokenomics-single:nth-child(3){
        max-width: 230px;
    }
    .banner-left h2 {
        font-size: 50px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }

    .title h2 {
        font-size: 140px;
    }
}

@media (max-width: 991px) {
    .navbar-fixed {
        background-color: rgba(22, 14, 51, 1);
        padding-top: 0;
        padding-bottom: 0;
    }
    .title h2{
        font-size: 100px;
    }
    .tokenomics-single:nth-child(2){
        width: 100%;
        text-align: center;
    }
    .tokenomics-single:nth-child(2) img{
        margin-left: auto;
        margin-right: auto;
    }
    .tokenomics-single-content{
        margin-bottom: 30px;
    }
    .tokenomics-single:nth-child(1), .tokenomics-single:nth-child(3){
        max-width: 100%;
        width: 100%;
    }
    .banner-area {
        padding-bottom: 0;
    }

    .about-area {
        padding-top: 100px;
    }

    .banner-left {
        /* margin-bottom: -100px; */
    }
.banner-right{
    margin-top: 50px;
}
    .banner-area {
        background-position: top right;
        padding-top: 140px;
    }
    .tokenomics-area{
        padding-top: 50px;
        top: 0;
    }
    .title-2 h3{
        padding-top: 50px;
    }
    .tokenomics{
        margin-top: 30px;
    }
    .tokenomics-area{
        padding-bottom: 50px;
    }
    .timeline-area{
        padding-top:50px;
    }
    .contact-area{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .title h2{
        font-size: 70px;
    }
    .title-padding {
        padding-top: 50px;
    }
    .timeline-bottom {
        padding-left: 40px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .tb-single{
        margin-bottom: 30px;
    }
    .tb-single:nth-child(odd) {
        padding-left: 0;
    }
    .tb-single::before {
        left: -40px;
        margin-left: 0;
    }
    .tb-single:nth-child(even) {
        text-align: left;
    }
    .tb-single:nth-child(even) .tb-inner h3, .tb-single:nth-child(even) .tb-inner p {
        text-align: left;
    }
    .tt-content {
        width: auto;
        max-width: 100%;
    }
    .tb-single .tt-content p {
        max-width: 100%;
    }
    .timeline-border {
        width: 2px;
        left: 7px;
        margin-left: 0;
        top: 6px;
    }
    .tb-single:last-child:before {
        left: -40px;
    }
    .tb-single::after {
        top: 12px;
        left: 0;
        width: 20px !important;
        height: 2px;
        margin-left: -30px !important;
    }
    .banner-logo img{

    }
    .banner-logo img{
        margin-right: 15px;
    }
    .fotoer{
        padding-bottom: 100px;
    }
    .timeline-container{
        margin-top: 50px;
    }
    .navbar form{
        flex-direction: column;
    }
    .navbar-expand-lg .btn-crt{
        max-width: 210px;
        margin-left: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    
    .banner-left h2{
        font-size: 34px;
    }
}
@media (max-width: 575px) {
    .single-form.col-2{
        flex-direction: column;
    }
    .single-form.col-2 div{
        width: 100%;
    }
    .single-form.col-2 div:first-child{
        margin-bottom: 24px;
    }
    .fotoer{
        padding-bottom: 30px;
        padding-top: 30px;
        flex-direction: column;
    }
    .footer-left{
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-right{
        display: flex;
        justify-content: center;
    }
    .banner-logo {
        padding-right: 15px;
    }
    .banner-logo img{
        margin-right: 0;
        width: 33%;
    }
    .btn{
        margin-right: 15px;
    }
    .btn {
        width: auto;
        line-height: 53px;
        padding: 0 35px;
        font-size: 16px;
    }
    .title h2{
        font-size: 50px;
        left: 0;
    }
}