body {
    background: #fff;
    color: #2f3138;
    font-family: "Roboto";
}

.cf {
    clear: both;
}

a {
    color: #fff;
    transition: 0.5s;
}

.h1,
h1 {
    font-size: 3.5rem;
}

a:hover,
a:active,
a:focus {
    color: #d1ac5c;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    /* margin: 0 0 30px 0; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 0px 0;
    padding: 0;
}

.main-page {
    margin-top: 70px;
}

.logo-responsive {
    display: none;
}

.wow {
    visibility: hidden;
}

/* Prelaoder */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #3c332c;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s ease-in-out;
}

.back-to-top i {
    font-size: 24px;
    padding-top: 6px;
}

.back-to-top:focus {
    background: #3c332c;
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: #bba264;
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 70px;
    padding: 5px 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    /* background: rgba(25, 26, 32, 0.98); */
    background: transparent;
}

#header.header-scrolled,
#header.header-fixed {
    background: rgba(8, 8, 9, 0.98);
    height: 75px;
    padding: 10px 0;
    transition: all 0.5s;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo img {
    padding: 0;
    margin: 0;
    height: 40px;
    margin-top: 10px;

}

#logo {
    float: left;
    margin: 0;
    padding: 0;
    height: auto;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
    display: block;
}

.sfHover ul li a {
    color: black;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 8px;
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    margin-top: 10px;
    font-family: "Archivo";
}

.nav-menu .menu-active a,
.nav-menu a:hover {
    color: #eec56c;
}

.nav-menu>li {
    margin-left: 1.2em;
}

.nav-menu>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #eec56c;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .menu-active>a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu li.signup-btn a {

    color: #fff;
    background: #c5aa61;
    padding: 9px 17px;
    border-radius: 25px;
    border: 1px solid #c5aa61;
    transition: all ease-in-out 0.3s;
    margin-right: 40px;
    font-weight: normal;
    margin-top: 10px;
    line-height: 1;
    font-size: 13px;
    text-transform: uppercase;

}

.nav-menu li.signup-btn a:hover {
    background: none;
    color: #fff;
}

.nav-menu li.signup-btn:hover a:before,
.nav-menu li.signup-btn.menu-active a:before {
    visibility: hidden;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
    border-radius: 3px;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #060c22;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
    border-radius: 3px;
}

.nav-menu ul li:hover>a {
    background: rgb(11, 11, 12, 0.98);

}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 15px 15px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgb(61, 53, 46);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 17px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    text-transform: uppercase;
}

#mobile-nav ul li a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #645a41;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

#mobile-nav a:hover::before {
    visibility: visible;
    width: 100%;
}

#mobile-nav ul li a:hover {
    color: #f82249;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: rgba(5, 5, 5, 0.98);

}

#mobile-nav ul .menu-item-active {
    color: rgb(61, 53, 46);
}


#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(61, 37, 16, 0.8);
    display: none;
}


/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

#webcoderskull {
    position: absolute;
    left: 0;
    top: 20%;
    padding: 0 20px;
    width: 100%;
    text-align: left;
}

canvas {
    height: 90vh;
    background-color: #16a085 transparent;
}

.pinkBg {
    background-color: #dc114b;
    background-image: linear-gradient(90deg, #dc114b, #dc114b);
    background: url(../images/network.png)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: 100% 100%;
    position: relative;
    border: 1px solid transparent;
}

.intro-banner-vdo-play-btn {

    height: 350px;
    width: 350px;
    position: absolute;
    display: block;
    top: 1%;
    left: 8%;
    text-align: center;
    margin: 20px 0 0 -30px;
    border-radius: 50%;
    z-index: 1;

}

.intro-banner-vdo-play-btn i {
    line-height: 56px;
    font-size: 30px
}

.intro-banner-vdo-play-btn .ripple {
    position: absolute;
    width: 492px;
    height: 492px;
    z-index: -1;
    left: 1%;
    top: 1%;
    opacity: 0;
    margin: -80px 0 0 -80px;
    border-radius: 50%;
    -webkit-animation: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
    animation-delay: 0s;
    box-sizing: border-box;
    border: 9px solid #fff;
}

@-webkit-keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.intro-banner-vdo-play-btn .ripple:nth-child(2) {
    animation-delay: .3s;
    -webkit-animation-delay: .3s
}

.intro-banner-vdo-play-btn .ripple:nth-child(3) {
    animation-delay: .6s;
    -webkit-animation-delay: .6s
}


.main-round {
    position: relative;
}

.right-mobile {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 784px;
    height: 609px;
    right: -33%;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

.main-layout {
    background: url(../images/main-banner.png)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: 100% 100%;
    position: relative;
    height: 57em;
}

.banner-text {
    padding: 0em 0 0em 1em;
    margin: 0;
    font-size: 30px;
    margin-top: 10px;
    display: block;
    font-weight: 500;

    text-transform: uppercase;
    color: #00acd7;
    text-align-last: right;
    margin-right: 1em;

}

.text-white {
    color: #fff;
    margin-top: 14px;
    font-size: 22px;
    line-height: 30px;
}

.banner-slogan {
    font-size: 55px;
    color: #fff;
    text-transform: capitalize;
    padding: 0em 0 0em 0em;

}

.ban-buttons {
    margin-top: 0px;
}

.text-banner {
    color: #fff;
    padding: 0em 0 0em 0em;
    font-size: 4em;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

.ban-buttons a {
    border-radius: 5px;
    background: #fff transparent;
    padding: 8px 17px;
    font-size: 13px;
    color: #ff4c4c transparent;
    display: inline-block;
    border: #fff;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-transform: capitalize;
}

.btn-outline-rounded {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 25px;
    text-align: left;
    margin-right: 15px;

}

.btn.red {
    background-color: #c5aa61;
    border: 1px solid #c5aa61;
    color: #fff;
    font-size: 18px;
    border-radius: 25px;
}

.btn.red:hover {
    background-color: #c5aa61;
    border: 1px solid #f5f5f5;
    color: #ffffff;

}

.btn.white {
    background-color: #00acd7 transparent;
    border: 1px solid #96999d;
    color: #fff;
    font-size: 18px;
}

.btn.white:hover {
    background-color: #db144d;
    border: 1px solid #f5f5f5;
    color: #ffffff;

}

.ban-buttons a.active,
.ban-buttons a:hover {

    background: #03ab6a transparent;
}

a.btn.active {
    background: #03ab6a transparent;
    color: #fff;
    border: #10adfb;
}

.shadow {
    -webkit-box-shadow: 0px 25px 24px 0px rgba(226, 226, 226, 0.5);
    -moz-box-shadow: 0px 25px 24px 0px rgba(226, 226, 226, 0.1);
    box-shadow: 0px 25px 24px 0px rgba(226, 226, 226, 0.5);
}

/*-- //banner --*/
.banner-info {
    padding: 8em 0 0em 2.2em;
    width: 100%;
}

.banner-grids {
    padding: 0 0em;
}

.banner-image {
    margin: 10em 0 0 0;
    border-radius: 7px;
}


.social-icon {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.main-icon ul {
    margin: 0;
    padding: 0;
}

.main-icon li {
    display: inline-block;
    margin: 0;
    padding: 0;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about_content {
    margin-left: 0em;
    text-align: right;
}

/* .about_main{ padding-top: 50px;} */
.about_main>h2 {
    font-size: 30px;
    /* margin:40px 0 15px; */
    color: #d1ac5c;
    text-transform: uppercase;
    text-align: left;
    /* margin: 0; */
    padding: 15px 0;
}

.about_content>h2 {
    margin-left: 0em;
    text-align: right;
    color: #d1ac5c;
    font-size: 30px;
    text-transform: uppercase;
    padding: 15px 0;

}

.about_content>.text_info {
    margin-bottom: 18px;
    padding-top: 7px;
    color: #828282;
    font-size: 16px;
    text-align: right;
}

.innovation-banner {
    position: relative;
}

.innovation-text {
    position: absolute;
    top: 20%;
    color: #3c332c;
    font-size: 28px;
    letter-spacing: 7px;
    text-transform: uppercase;
    padding: 0 0;
}

.text-awards {

    color: #d1ac5c;
    font-size: 20px;
}

.text-black {
    color: #828282;
    font-size: 16px;

}

.about_banner {
    margin: 0px 0 60px;
}

.about_content .btnwhite.know_btn {
    margin: 13px 0 60px;
    display: inline-block;
}

.btnwhite.know_btn {
    border: 1px solid #d1ac5c;
    border-radius: 0px;
    color: #d1ac5c;
    font-size: 14px;
    padding: 9px 30px;
    text-transform: uppercase;
    display: inline-block;

}

/*services section css*/
.services {
    background: #3c332c;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: 100% 100%;
    position: relative;
}

.tittle {
    color: #d1ac5c;
    font-size: 18.8px;
}

p.sub-tittle {
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 33px;
    color: #eadbb3;
}

.text-categories:hover h4 {
    color: #d6be84 !important;
}

.text-categories.card {
    border: 0;
    border-radius: 0px;
    -webkit-box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08);
    transition: all .3s ease-in-out;
    position: relative;
    background: #3a383a;
    /* background: #b9a163; */
    font-size: 22px;
    padding: 1.25rem;
    height: 100%;

}

.text-categories.card:hover {
    transition: all .3s ease-in-out;
    position: relative;
    background: #3e362f;


}


.card-header {
    background: transparent;
    border-bottom: transparent;
    padding: .75rem 0.25rem;
}

.card-block {
    font-size: 15px;
}

.card-text {
    font-size: 16px;
}

.text-categories.card:hover::after {
    width: 100%;
    background: #3e362f transparent;
}

.text-categories.card::after,
.service-active::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 0%;
    height: 9px;
    background-color: #bba264;
    transition: 0.5s;
}

.service-active,
.service-active .card-header,
.service-active {
    background: #3e362f;
}

.text-business.card {
    border: 0;
    border-radius: 0px;
    -webkit-box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08);
    transition: all .3s ease-in-out;
    position: relative;
    background: #b8a061;

    font-size: 22.8px;
    padding: 1.25rem;
}

.text-gray {
    color: #d6be84;
    font-size: smaller;
    text-align: left;
}

.text-categories.card:hover::after {
    width: 100%;
    background: #3e362f transparent;

}

.text-business.card::after,
.service-active::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 0;
    width: 0%;
    height: 9px;
    background-color: #3c342d transparent;
    transition: 0.5s;
}

.text-business.card:hover::after {
    width: 100%;
    background: #3e362f;
}

.row-eq {
    display: flex;
}

.col-eq {
    margin: 1em auto;
}

.mt-30 {
    margin-top: 30px;
}

.about_bg {
    background: url(../images/glb-bg.jpg)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: 100% 100%;
    position: relative;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Footer Bar */
.footer_bar {
    background: #000000;
    padding: 17px 0;

}

.footer_bar .copy-right {
    font-size: 15.8px;
    color: #ffffff;
    float: left;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .footer_bar .copy-right {
        text-align: center;
        width: 100%;
    }
}

.footer_bar .copy-right p {
    margin: 0 0;
    width: 100%;
}

.footer_bar .footer-nav {
    margin-top: 20px;
}

@media only screen and (max-width: 991px) {
    .footer_bar .footer-nav {
        float: right;
    }
}

@media only screen and (max-width: 767px) {
    .footer_bar .footer-nav {
        margin: 26px 0 0;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer_bar .footer-nav ul {
        text-align: center;
    }
}

.footer_bar .footer-nav ul li {
    display: inline-block;
    margin: 0 0 0 15px;
}

@media only screen and (max-width: 767px) {
    .footer_bar .footer-nav ul li:first-child {
        margin: 0 0;
    }
}

.footer_bar .footer-nav ul li a {
    font-size: 15px;
    color: #b89f61;
}

.footer_bar .footer-nav ul li a:focus,
.footer_bar .footer-nav ul li a:hover {
    color: #fff;
}

.footer_bar .footer-social {
    float: right;
    margin-top: 20px;
}

@media only screen and (max-width: 991px) {
    .footer_bar .footer-social {
        width: 100%;
        text-align: center;
        margin: 30px 0 0;
    }
}

.footer_bar .footer-social a {
    margin: 0 0 0 20px;
}

.footer_bar .footer-social a:first-child {
    margin: 0 0;
}

.action-modal .modal-footer button.btn {
    width: 125px;
    height: 46px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 46px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 5px;
    border-color: #645a41;
    background: rgba(47, 42, 37, 0.98);
    color: #ffffff;
}

.action-modal .modal-footer button.btn-close {
    background: transparent;
    color: #645a41;
    border-color: #645a41;
}

.modal-header {
    display: -ms-flexbox;
    display: block;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

/*contact page css*/
#contact {
    background: url(../images/contact-bg-main.png)no-repeat center;
    position: relative;
}


.mt150 {
    margin-top: 150px;
}

.colored {
    color: #645a41;
}

.mt100 {
    margin-top: 100px;
}

b,
strong {
    font-weight: bolder;
}

.mt30 {
    margin-top: 30px;
}

.frm-field {
    border-radius: 0;
    border-color: #645a41;
    padding: 10px;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(3.0rem + 2px);
}

.btn_blue:hover {
    background-color: #3c342d;
    color: #fff;
    text-decoration: none;
    border: 1px solid #3c342d;
}

.btn_blue {
    background: #645a41;
    border: 1px solid #645a41;
    padding: 9px 30px;
    color: #fff;
}

.text-center.text-small {
    font-size: 30px;
    color: #d1ac5c;
}

.text-mid {
    font-size: 30px;
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/

#subscribe {
    padding: 60px;
    background: url(../images/malaysia.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    height: 35em;
    border-top: 4px solid #b8a061;
    border-bottom: 4px solid #b8a061;
    margin-top: 40px;
}

.text-edition {
    color: #241f1a;
    font-size: 17.8px;
    text-transform: capitalize;
    display: inline-block;
}

#subscribe:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#subscribe .section-header h2,
#subscribe p {
    color: #fff;
}

#subscribe input {
    background: #fff;
    color: #060c22;
    border: 0;
    outline: none;
    margin: 0;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 14px;
}

#subscribe button {
    border: 0;
    padding: 10px 40px;
    cursor: pointer;
    background: #ddc073;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
    font-size: 18.8px;
    border-radius: 50px;
}

#subscribe button:hover {
    background: #eacf86;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-50 {
    margin-top: 50px;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
    color: #b8a061;
}

#contact .contact-info {
    text-align: center;
}

#contact .contact-info h3 {
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #39312a;
    text-align: center;
}

.contact-address p {

    font-style: normal;
    line-height: 40px;
    color: #b8a061;
    font-size: 17.8px;

}

.text-mail {
    color: #b8a061;
    font-size: 16.8px;
    text-transform: lowercase;
}

.single-icon i {
    font-size: 30px;

    margin-bottom: 15px;
    color: #ddc073;
}

.text-phone {
    font-size: 17.8px;
}

/*category select page css*/
/*-- Home Search Wrap --*/
.home_content form.search_form {
    width: 100%;
    padding: 0 0 0vw;
}

.home_content .select-wrap span.icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.home_content .select-wrap select {
    height: 30px;
    background-color: #0089ce transparent;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    font-size: 18.8px;
    color: #241f1a;
    border: none;
    box-shadow: none;
    padding: 0 32px 0 25px;
}

/*=======================================================
Faqs
========================================================*/
#faqs {
    background: #fff;
    padding: 40px 0;
}

#faqs .faqs {
    margin-top: 50px;
}

.panel-heading {
    background: #332e29;
    ;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 5px 0;
}

.panel-heading p {
    color: #fff;
}

.panel-title {
    padding: 0 10px;
}

.panel-title {
    height: 50px;
    line-height: 50px;
}

.panel-default {
    margin-bottom: 10px;
}

.tittle h2 {
    color: #22b477 !important;
}

.tittle h2 {
    font-size: 30px;
    margin: 10px 0 20px 0;
    font-weight: 700;
    color: #241f1a !important;
}

.panel-body {
    border: 1px solid #ccc;
    border-top-color: rgb(204, 204, 204);
    border-top-style: solid;
    border-top-width: 1px;
    border-top: none;
    padding: 10px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.text-box {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    color: #fff;
    text-align: left;
    transform: translateY(-50%);

}

.image-slider {
    width: 100%;
}

.text-block {
    display: block;
}

.text-blockchain {
    color: #eec56c;
    font-size: 50px;
    margin-left: 7px;
}

.text-leadership {
    font-size: 45px;
    margin: 0;
}

#venue {
    padding: 60px;
    background: url(../images/hotel.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    height: 35em;

}

.venue1 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/jwm.jpg) center center no-repeat;
    height: 500px;
}

.pt-60 {
    padding-top: 60px;
}

#venuep {
    padding: 60px;

    background-size: cover;
    overflow: hidden;
    position: relative;
    height: 35em;

}

.studio-global {
    font-size: 30px;
}

.services-bg {
    background: #3a322a;
}

.mt60 {
    margin-top: 60px;
}

.event-section {
    border-bottom: 1px solid #ddc073;
    width: 100%;
}

.text-event {
    margin: 0;
    padding: 0;
}

.text-dinner {
    color: #191615;
    font-size: 33.8px;
}

.event-border {
    border-bottom: 1px solid #ddc073;
    width: 100%;
}

.tittle {
    color: #d1ac5c;
    font-size: 20px;
}

.text-reg {
    font-size: 20.8px;
    color: #030303;
}

.last-event:last-child {
    border-bottom: 0;
}

.mt-60 {
    margin-top: 60px;
}

.mt-20 {
    margin-top: 20px !important;
}

/*team section css page*/
.team_bg {
    background: #fff;
    /* margin-top: 50px; */
}

h4 {
    margin-bottom: 15px;
    color: #030303;
}

.our-team {
    padding: 42px 0 10px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.our-team .pic {
    display: inline-block;
    width: 148px;
    height: 148px;
    margin-bottom: 34px;
    background-color: #eb1768 transparent;
    position: relative;
    z-index: 1;
}

.our-team .team-content {
    margin-bottom: 30px;
    color: #1d2b39;
    font-size: 22px;

}

.our-team .post {
    display: block;
    font-size: 18px;
    color: #6e6e6e;
    text-transform: capitalize;

}

/*supported bt css page*/
.centerimg {
    margin: 0 auto;
    border-radius: 5px;
}

.media-bg {

    background: #fff;
    margin-bottom: 40px;

}

/* Clients Section
*/
.clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 5px 0;
}

.awardslider h5 {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}

.awardslider p {
    text-align: center;
    font-size: 14px;
}

.client {

    margin-bottom: 10px;
    text-align: center;
    margin-top: 50px;
    border-radius: 0px;
    border: 1px solid #e3e3e3;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.res-global {
    font-size: 20px;
}

.text-global {
    font-size: 20px;
}

/* Client Img Border Effect */
.agileits_service_grid_btm_left1 {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    z-index: 1;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(220, 220, 220, 0.75) transparent;
    -moz-box-shadow: 0px 0px 6px 0px rgba(220, 220, 220, 0.75) transparent;
    box-shadow: 0px 0px 6px 0px rgba(220, 220, 220, 0.75) transparent;
}

.agileits_service_grid_btm_left1:before {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #3a322a;
    border-right: 1px solid #d1ac5c;
}

.agileits_service_grid_btm_left1:after,
.agileits_service_grid_btm_left1:before {
    content: '';
    z-index: 2;
    width: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 800ms ease-in-out;
    -moz-transition: all 800ms ease-in-out;
    -ms-transition: all 800ms ease-in-out;
    -o-transition: all 800ms ease-in-out;
    transition: all 800ms ease-in-out;
}

.agileits_service_grid_btm_left1:after {
    top: 0;
    left: 0;
    border-top: 1px solid #3a322a;
    border-left: 1px solid #d1ac5c;

}

.agileits_service_grid_btm_left1:hover:after,
.agileits_service_grid_btm_left1:hover:before {
    width: 100%;
    height: 100%;
    visibility: visible;

}

/* Products Category CSS */

.product-category {

    margin-top: 20px;
}

.product-category .section_title {
    margin: 0 0 58px;
}

.product-category .section_title h2 {
    font-size: 34.8px;
    color: #ffffff;
    text-transform: capitalize;
    line-height: normal;
    margin: 0 0 6px;
}

@media only screen and (max-width: 767px) {
    .white-color {
        color: #fff;
    }

    .product-category .section_title h2 {
        font-size: 26.8px;
    }
}

.product-category .section_title p {
    font-size: 18.8px;
    color: #ffffff;
    margin: 0 0;
    opacity: 0.48;
}

.product-category .category {
    margin: 0 0 33px;
}

.product-category .icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 58px;
}

.product-category .caption {
    /* display: block; */
    width: 100%;
    font-size: 12px;
    color: #d3bf89;
    margin: 40px 0 0;
}

.product-category a.all-categories {
    font-size: 17.8px;
    text-transform: capitalize;
    color: #ffffff;
    margin: 33px 0 0;
    display: inline-block;
}

.product-category a.all-categories i {
    margin: 0 0 0 5px;
}

@media only screen and (min-width: 992px) {
    .product-category .category {
        max-width: 12%;
    }
}

.btn.signup-btn.res-register {
    display: none;
}

.btn.res-contact.res-mainreg {
    display: none;
}

.res-contact1 {
    display: none;
}

.error {
    color: red !important;
}

.terms-bg {
    background: rgba(255, 255, 255, 1);
}

.mt-70 {
    margin-top: 70px;
}

.text-set {
    color: #bcbcbc;
    font-size: 35px;
    margin-top: 20px;
    color: #d1ac5c;
}

.text-crypto {
    color: #4f4f4f;
    font-size: 15px;
    padding-top: 10px;
    text-align: justify;
}

.text-participation {
    margin: 0;
    padding: 0;
}

.text-participation li {
    display: inline-block;
    list-style: none;
    color: #d1ac5c;
}

.text-team {
    margin-bottom: 15px;
    color: #d1ac5c;
    font-size: 18.8px;
    text-align: center;
    text-transform: uppercase;

}

/*news css globla*/
.text-countryname {
    font-size: 16px;
    padding-top: 10px;
    text-transform: initial;
    margin-bottom: 34px;
}

.text-present {
    padding: 15px 0;
}

.text-present h1 {
    font-size: 20px;
}

.main-width {
    width: 100%;
}

.globla-banner {
    border-bottom: transparent;
    margin: 0;
}

.btnwhite.get_btn {
    background: #050505 none repeat scroll 0 0;
    color: #fff;
    font-size: 14px;
    padding: 12px 40px;
    text-transform: uppercase;
    margin-top: 20px;
}


.btnwhite.now_btn {
    background: #bc9139 none repeat scroll 0 0;
    border: 1px solid #bc9139;
    border-radius: 25px;
    color: #fff;
    font-size: 14.8px;
    padding: 9px 40px;
    text-transform: uppercase;
    margin-top: 20px;

    box-shadow: 2px 6px 4px 0px rgb(223, 223, 223, 1);

}

.btnwhite.know_btn:hover {

    border: 1px solid rgba(25, 26, 32, 0.98);
}

/* edition section */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    color: #d1ac5c;
}

#edition .main-edition .details {
    background: rgba(58, 56, 58, 1);
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 10px;
    text-align: left;
    padding-top: 13px;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
}

#edition {
    margin: 20px 0 30px 0;
}

#edition .main-edition {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

#edition .main-edition .details {
    background: transparent;
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 10px;
    text-align: left;
    padding-top: 13px;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
}


#edition .main-edition .detailsmain {
    /* background: rgba(58, 56, 58, 1); */
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 10px;
    text-align: left;
    padding-top: 52px;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
}

#edition .main-edition .right-detail {
    text-align: right;
}

#edition .main-edition .details h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    margin-left: 17px;
}

#edition .main-edition .details a {
    color: #fff;
}

/* #edition .speaker .details a:hover {
color: #f82249;
}
*/

#edition-details {
    padding: 60px 0;
}

#edition-details .details h2 {
    color: #112363;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rightarrow {

    font-size: 30px;
    float: right;
    margin-right: 17px;
    display: none;

}

.text-announced {
    float: right;
    margin-right: 17px;
    font-size: 20px;
    color: #656465;
}

.countryname {
    position: absolute;
    color: #fff;
    top: 5%;
    font-size: 25px;
    margin-left: 17px;
}

/* contry list css page*/
.countrylist {
    margin: 0;
    padding: 0;
}

.countrylist li {
    list-style: none;
    display: inline-block;
    margin-top: 30px;
}

.countrylist li a {
    color: #484648;
    text-align: center;
    font-size: 16px;
    letter-spacing: 4px;
}

.wrap {
    display: flex;
    background: white;
    padding: 1rem 1rem 1rem 1rem;
    box-shadow: 7px 7px 30px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0rem;
}

.maincontact {
    background: #141d25;
    margin: 20px 60px;
    padding: 10 0;
}

.maincontact1 {
    background: #323032;
    margin: 20px 60px;
    padding: 9px 0;
}

.maincontact2 {
    background: #323032;
    margin: 20px 60px;
    padding: 9px 0;
}

.ico-wrap {
    margin: 0 auto;
}

.mbr-iconfont {

    color: #313131;

}

.mbr-justify-content-center {
    display: block;
}

.vcenter {
    margin: auto;
}

.mbr-section-title3 {
    text-align: left;
}

.display-5 {
    color: #fff;
    font-size: 15px;
}

.mbr-text {
    color: #ffff;
    font-size: 24px;
}

.mbr-iconfont {
    color: #1f2c37;
}

/*asoia country list */
.icon_title {
    font-size: 14px;
    color: #d1ac5c;
}

.icon_title_p {
    font-size: 14px;
    color: #d1ac5c;
}

.strip {
    width: 100%;
}

.main_icon {
    display: block;
    width: 100%;
    font-size: 12px;
    color: rgb(131, 130, 130) !important;
    margin: 0px;

}

.bg_product {
    background: #fff;
    padding: 4vw 0 4.5vw;

}

.category>span>img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: 0.5s ease-in-out;

}

.category>span>img:hover {
    -webkit-filter: grayscale(10%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(10%);

}

/* Ior partners Css*/
h2 {
    text-align: center;
    padding: 20px;
}

/* Slider */

.slick-slide {
    margin: 0px 10px;
}

.slick-slide img {
    width: 100%;
}

.slide>h5 {
    font-weight: bold
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    border: 1px solid #e3e3e3;
    padding: 0 7px;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* nomination criteria  css*/
.process {
    display: flex;
    width: 100%;
    position: relative;
}

.process:before {
    top: 60px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 90%;
    height: 1px;
    background-color: #ccc;
}

.btn-bg {
    background: #d1ac5c;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s;
    box-sizing: border-box;
}

.btn-bg:hover {
    background: #050505;
}

.process-step {
    display: table-cell;

    /* text-align: center; */

}

.ft-16 {
    font-size: 16px;
}

.box-kyc {

    width: 261px;
    height: 130px;
    border-radius: 7px;
    padding: 32px 30px;
    text-align: center;
    margin: 0 auto;

}

.text-like {
    color: #000;
}

.ft-14 {
    font-size: 14px;
}






/* hightlight css page */

.hightlight {
    margin: 0;
    padding: 0;
}

.hightlight li {
    list-style: none;
}

.btn-submit {
    border: 1px solid #d1ac5c;
    border-radius: 0px;
    color: #d1ac5c;
    font-size: 15px;
    padding: 11px 30px;
    text-transform: uppercase;
    display: inline-block;
}

.btn-nomination {
    border: 1px solid #d1ac5c;
    border-radius: 0px;
    color: #d1ac5c;
    font-size: 15px;
    padding: 11px 30px;
    text-transform: uppercase;
    display: inline-block;
    background: transparent;
}

.btn-nomination:hover {
    border: 1px solid rgba(25, 26, 32, 0.98);
}

.btn-submit:hover {
    border: 1px solid rgba(25, 26, 32, 0.98);
}

/* nomination criteria  css*/
.processmain {
    display: flex;
    width: 100%;
    position: relative;
}

.processmain:before {
    top: 60px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 80%;
    height: 1px;
    background-color: #ccc;
}

.nomination-bg {
    background: #d1ac5c;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s;
    box-sizing: border-box;
}

.nomination-bg:hover {
    background: #050505;
}

.main-step {
    display: table-cell;

    /* text-align: center; */

}

.process-kyc {

    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 47px 0;
    text-align: center;
    margin: 0 auto;
}

.circle:hover {
    border-radius: 0;
    cursor: pointer;
    background: rgba(8, 8, 9, 0.98);
}

.agenda {
    border: 1px solid #dddddd;
    height: 220px;
    padding: 0 10px;
    margin: 0 0 40px 0px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.judgeslogo img {
    padding: 10px 0;

}

.venue i {
    font-size: 22px;
}

.contact {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
    display: none;
}

h1,
h2 {
    font-family: "Archivo";
    line-height: 29px;
    font-weight: 800;
}