@font-face { font-family: "Bizmo"; src: url("../../../../assets/fonts/Bizmo/BizmoMedium.ttf"); }
@font-face { font-family: "BizmoMedium"; src: url("../../../../assets/fonts/Bizmo/BizmoMedium.ttf"); }
@font-face { font-family: "BizmoLight"; src: url("../../../../assets/fonts/Bizmo/BizmoLight.ttf"); }
@font-face { font-family: "BizmoBold"; src: url("../../../../assets/fonts/Bizmo/BizmoBold.ttf"); }
@font-face { font-family: "BizmoBlack"; src: url("../../../../assets/fonts/Bizmo/BizmoBlack.ttf"); }

:root {
    --h1size: 50px;
    --h2size: 35px;
    --h3size: 24px;
    --h4size: 20px;
    --h5size: 18px;
    --h6size: 15px;
    --bodysize: 16px;
    --rweight: 400;
    --mweight: 500;
    --sweight: 600;
    --bweight: 700;
    --eweight: 800;
    --bcweight: 900;
    --pfamily: 'Bizmo', sans-serif;
    --sfamily: 'Bizmo', sans-serif;
    
    --light: #fff;
    --blue: #003CFF;
    --blue-dark: #004188;
    --dark: #16151a;
    --red: #003CFF;
    --grey: #636e72;
    
    --border: #e8e8e8;
    --deep-heading: #220044
}

* {
    margin: 0;
    padding: 0;
    outline: 0
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== Scrollbar ===== */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--blue) var(--light);
  }

  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: var(--light);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 15px;
    border: 0px none var(--dark);
  }
/* ===== Fin Scrollbar ===== */

img {
    vertical-align: middle
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none
}

ul,
ol {
    list-style: none;
    margin-bottom: 0;
    display: inline-block
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-size: 15px;
    letter-spacing: .3px
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-size: 15px;
    letter-spacing: .3px
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    font-size: 15px;
    letter-spacing: .3px
}

input::placeholder,
textarea::placeholder {
    font-size: 15px;
    letter-spacing: .3px
}

button:focus {
    outline: none
}

html,
body {
    scroll-behavior: smooth
}

body {
    line-height: 28px;
    color: var(--dark);
    font-size: var(--bodysize);
    font-weight: var(--rweight);
    font-family: var(--pfamily);
    background-color: var(--light)
}

p {
    margin-bottom: 0
}

li[aria-current="page"] {
    color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--light);
    margin-bottom: 0;
    font-family: "BizmoBold";
}

h1 {
    line-height: 58px;
    text-transform: uppercase;
    color: var(--light);
    font-size: var(--h1size);
    font-weight: var(--bcweight);
    text-shadow: var(--h1-tshadow)
}

h2 {
    font-size: var(--h2size);
    font-weight: var(--bweight);
    letter-spacing: -.8px;
    line-height: 43px
}

h3 {
    font-size: var(--h3size);
    font-weight: var(--sweight);
    line-height: 32px
}

h4 {
    font-size: var(--h4size);
    font-weight: var(--mweight);
    line-height: 30px
}

h5 {
    color: var(--blue);
    font-size: var(--h5size);
    font-weight: var(--mweight)
}

h6 {
    color: var(--dark);
    font-size: var(--h6size);
    font-weight: var(--rweight)
}

.back2top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    display: none
}

.back2top-btn a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 25px;
    color: var(--dark);
    background: var(--blue);
    -webkit-box-shadow: 5px 5px 50px 5px rgba(0,60,255,0.98); 
    box-shadow: 5px 5px 50px 5px rgba(0,60,255,0.98);
    -webkit-animation: b2top 2.5s linear infinite;
    animation: b2top 2.5s linear infinite
}

@-webkit-keyframes b2top {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}

@keyframes b2top {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}

.navbar-dropdown {
    position: relative
}

.navbar-dropdown:hover .dropdown-list {
    visibility: visible;
    opacity: 1;
    top: 78px
}

.navbar-fixed .navbar-dropdown:hover .dropdown-list {
    visibility: visible;
    opacity: 1;
    top: 84px
}

.dropdown-list {
    position: absolute;
    top: 120px;
    left: 0;
    z-index: 2;
    width: 240px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    border-radius: 10px;
    background: var(--light);
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0/50%);
    box-shadow: 0 0 20px 0 rgb(0 0 0/50%);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.dropdown-list li {
    border-bottom: 2px dashed var(--light);
}

.dropdown-list li:last-child {
    border-bottom: none
}

.dropdown-link {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 25px;
    color: var(--dark);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.dropdown-link:hover {
    color: var(--light);
    background: var(--blue)
}

.dropdown-link.active {
    color: var(--light);
    background: var(--blue)
}

@media(max-width:1270px) {
    .navbar-dropdown {
        position: inherit
    }
    .dropdown-list {
        position: inherit;
        visibility: visible;
        opacity: 1;
        width: 100%;
        display: none
    }
}

.player {
    background: url('../../../assets/Fond_embleme_Futuradios_Petite-min.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 8px solid var(--light);
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
}

.player-btn {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgb(0, 60, 255, .7);
    -webkit-animation: btn-ani 2s linear infinite;
    animation: btn-ani 2s linear infinite
}

.player-btn i {
    font-size: 30px;
    color: var(--light);
    text-shadow: 5px 5px 0 rgba(0, 0, 0, .3)
}

@-webkit-keyframes btn-ani {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgb(0, 60, 255, .7), 0 0 0 0 rgb(0, 60, 255, .7);
        box-shadow: 0 0 0 0 rgb(0, 60, 255, .7), 0 0 0 0 rgb(0, 60, 255, .7)
    }
    30% {
        -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(0, 60, 255, .7);
        box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(0, 60, 255, .7)
    }
    60% {
        -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent;
        box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent;
        box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent
    }
}

@keyframes btn-ani {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgb(0, 60, 255, .7), 0 0 0 0 rgb(0, 60, 255, .7);
        box-shadow: 0 0 0 0 rgb(0, 60, 255, .7), 0 0 0 0 rgb(0, 60, 255, .7)
    }
    30% {
        -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(0, 60, 255, .7);
        box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(0, 60, 255, .7)
    }
    60% {
        -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent;
        box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent;
        box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent
    }
}

.btn {
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 8px 25px 0 rgba(72, 69, 90, .1);
    box-shadow: 0 8px 25px 0 rgba(72, 69, 90, .1);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.btn i {
    margin-right: 0px;
    margin-top: -1px;
    font-size: 16px
}

.btn-inline {
    color: var(--dark);
    background: var(--blue);
    border: 2px solid var(--blue)
}

.btn-inline:hover {
    color: var(--dark);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    background: var(--light);
    border-color: var(--light);
    -webkit-box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1)
}

.btn-outline {
    color: var(--blue);
    border: 2px solid var(--blue)
}

.btn-outline:hover {
    color: var(--light);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    background: var(--blue);
    border-color: var(--blue);
    -webkit-box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1)
}

.icon i {
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.icon-inline i {
    color: var(--blue);
    background: var(--light)
}

.icon-inline i:hover {
    color: var(--dark);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    background: var(--blue);
    -webkit-box-shadow: 0 5px 15px 0 rgba(72, 69, 90, .3);
    box-shadow: 0 5px 15px 0 rgba(72, 69, 90, .3)
}

.section {
    padding: 115px 0 0
}

.section-heading {
    text-align: right;
    margin-bottom: 60px;
}

.section-heading h2 {
    color: var(--blue);
    position: relative;
    text-align: left;
}

.section-heading h2::before {
    position: absolute;
    content: "";
    left: 25%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50%;
    height: 8px;
    border-radius: 30px;
    background: var(--blue)
}

@media(max-width:575px) {
    .section {
        padding: 60px 0 0
    }
    .section-heading h2 {
        font-size: 30px;
        line-height: 38px
    }
}

@media(min-width:576px) and (max-width:767px) {
    .section {
        padding: 80px 0 0
    }
}

.header-logo img {
    width: 400px;
    margin-top: 40px;
    text-align: left;
}

.header-content {
    text-align: center;
    margin-top: 18px
}

.header-content h3 {
    font-size: 28px
}

.header-btn {
    text-align: right;
    margin-top: 6px
}

.header-part {
    padding: 20px 0;
    background: var(--blue);
}

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

.header-top-part {
    background-color: var(--blue-dark);
    padding: 8px 0
}

.header-top-part .header-top-social a {
    color: var(--light);
    margin-right: 10px;
    font-size: 16px
}

.header-top-part .header-top-social a:hover {
    color: var(--blue)
}

.header-top-part .header-top-right a:hover {
    color: var(--blue)
}

.navbar-bg {
    background: var(--light)
}

.navbar-logo,
.navbar-toggle,
.slide-head {
    display: none
}

.navbar-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.nav-link {
    font-weight: 500;
    padding: 25px 0;
    color: var(--dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.nav-link:hover {
    color: var(--dark);
}

.nav-link:hover i {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg)
}

.nav-link i {
    margin-right: 5px;
    margin-top: -2px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.nav-link small {
    margin-left: 5px;
    font-size: 10px
}

.nav-item.active {
    z-index: 1
}

.nav-item.active .nav-link {
    color: var(--light)
}

.navbar-player {
    position: relative;
    margin: 0 150px
}

.navbar-player .player {
    position: absolute;
    top: -110px;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15)
}

.navbar-player.home-3 .player {
    top: -70px;
    border: unset
}

.navbar-player.home-3 .player-btn {
    border-radius: 20px
}

.navbar-fixed .navbar-player.home-3 .player {
    top: -10px;
    width: 100px;
    height: 100px;
    border-radius: 20px
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: var(--dark);
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15)
}

.navbar-fixed .nav-link {
    padding: 28px 0
}

.navbar-fixed .player {
    top: -30px;
    width: 130px;
    height: 130px;
    margin-bottom: -100px
}

.navbar-fixed .player .player-btn i {
    font-size: 35px
}

.navbar-btn {
    display: none
}

@media(max-width:991px) {
    .navbar-content {
        padding: 10px 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .navbar-logo {
        display: block
    }
    .navbar-logo img {
        width: 160px
    }
    .navbar-toggle {
        border: none;
        display: none;
        background: 0 0;
        display: block
    }
    .navbar-toggle i {
        color: var(--dark);
        font-size: 18px;
        width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 50%;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s
    }
    .navbar-toggle ii:hover {
        color: var(--dark);
        background: var(--secondary)
    }
    .slide-head {
        width: 100%;
        padding: 30px 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .slide-head a img {
        width: 150px
    }
    .slide-head button {
        border: none;
        outline: none;
        background: 0 0
    }
    .slide-head button i {
        width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 50%;
        font-size: 16px;
        color: var(--light);
        background: var(--blue);
        -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2);
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s
    }
    .slide-head button i:hover {
        color: var(--dark);
        background: var(--primary-gdnt)
    }
    .navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        visibility: hidden;
        opacity: 0;
        background: rgba(0, 0, 0, .7);
        -webkit-transition: all linear .1s;
        transition: all linear .1s;
        z-index: 3
    }
    .navbar-overlay.active {
        visibility: visible;
        opacity: 1
    }
    .navbar-overlay.active .navbar-slide {
        left: 0
    }
    .navbar-slide {
        position: fixed;
        top: 0;
        left: -270px;
        z-index: 3;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
        background: var(--light);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-shadow: 8px 0 12px 0 rgba(0, 0, 0, .15);
        box-shadow: 8px 0 12px 0 rgba(0, 0, 0, .15);
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
        width:90%;
    }
    .navbar-list {
        width: 100%;
        display: block;
        margin-bottom: 30px
    }
    .navbar-slide .nav-item.active .nav-link {
        color: var(--blue)
    }
    .navbar-slide .nav-link:hover {
        color: var(--dark)
    }
    .navbar-list li {
        border-bottom: 1px dashed var(--dark);
    }
    .nav-link {
        width: 100%;
        padding: 12px 15px;
        margin-right: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .navbar-player {
        display: none
    }
    .navbar-btn {
        display: block;
        text-align: center
    }
    .navbar-fixed {
        border-radius: 0 0 10px 10px
    }
    .navbar-fixed .nav-link {
        padding: 12px 15px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .navbar-player {
        margin: 0 120px
    }
}

.footer-part {
    position: relative;
    padding: 30px 10px;
    /*background: var(--dark);*/
    background: url(../../../../assets/wallpaper.jpg);
    background-size: cover;
    background-position: center center;
    color: var(--light);
}

.footer-gape {
    margin-top: 120px
}

.footer-logo {
    text-align: center;
    margin-bottom: 35px
}

.footer-logo a img {
    width: 350px;
    margin-bottom: 40px;
    margin-top:30px;
}

.footer-logo ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer-logo ul li {
    margin: 0 10px
}

.footer-logo .icon-inline i {
    color: var(--blue);
    background: var(--light);
    font-size: 18px
}

.news-form {
    width: 650px;
    margin: 0 auto 80px;
    position: relative;
    -webkit-box-shadow: 0 15px 35px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, .1)
}

.news-form input {
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    border-radius: 50px;
    background: var(--light);
    padding: 0 195px 0 20px
}

.news-form .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    padding: 12px 35px
}

.footer-heading h3::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--blue);
    border-radius: 10px;
    top: 34px
}

.footer-heading h3::after {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--blue);
    border-radius: 50px;
    top: 33.2px;
    left: 48px
}

.footer-heading h3 {
    position: relative;
    color: var(--light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-heading p {
    color: var(--light);
    margin-bottom: 10px
}

.footer-address li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 10px 0;
    color: var(--light);
}

.footer-address li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.footer-address li i {
    color: var(--light);
    font-size: 25px;
    margin-right: 15px
}

.footer-address li p {
    color: var(--light);
}

.footer-link li {
    padding: 6px 0
}

.footer-link li:first-child {
    padding-top: 0
}

.footer-link li:last-child {
    padding-bottom: 0;
    border-bottom: none
}

.footer-link li a {
    color: var(--light);
}

.footer-link li a:hover {
    color: var(--light)
}

.footer-link li a i {
    margin-right: 10px
}

.footer-link ul li a i {
    color: var(--dark);
    font-size: 16px;
    margin-right: 10px
}

.footer-link ul li a:hover {
    text-decoration: underline
}

.download-part {
    margin-top: 25px
}

.download-part h5 {
    color: var(--dark);
    margin-bottom: 10px;
}

.download-part a img {
    width: 140px;
    margin: 8px 10px 8px 0
}

@media(max-width:767px) {
    .footer-gape {
        margin-top: 60px
    }
    .footer-logo {
        margin-bottom: 50px
    }
    .footer-logo ul li {
        margin: 0 8px
    }
    .footer-logo .icon i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 16px
    }
    .news-form {
        width: 100%
    }
    .footer-address,
    .footer-link {
        margin-bottom: 50px
    }
    .footer-heading,
    .footer-address,
    .footer-link,
    .download-part {
        margin-left: 25px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .footer-address,
    .footer-link {
        margin-bottom: 50px
    }
    .download-part ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .download-part ul li {
        margin-right: 25px
    }
}

.copy-part {
    background: var(--light);
    padding: 26px 0
}

.copy-part p {
    color: var(--dark);
    text-align: center
}

.copy-part p i {
    color: var(--blue);
}

@media(max-width:575px) {
    .copy-part ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .copy-part ul li {
        border: none;
        padding: 6px 0
    }
}

.bottom-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
    -webkit-box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, .1);
    display: none
}

.bottom-player .player {
    width: 82px;
    height: 82px;
    margin: -120px 10px 10px;
    border: 8px solid var(--light);
    -webkit-box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, .1)
}

.bottom-player .player-btn i {
    font-size: 24px
}

@media(max-width:991px) {
    .bottom-player {
        display: block;
    }
}

.nav {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.nav-tabs li {
    width: 100%
}

.nav-tabs li .nav-link {
    border: none;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--light);
    border-bottom: 3px solid transparent;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0/50%);
    box-shadow: 0 0 20px 0 rgb(0 0 0/50%)
}

.nav-tabs li .nav-link:hover {
    border-color: transparent
}

.nav-tabs li .active {
    color: var(--blue) !important;
    border-color: var(--blue) !important;
    border-radius: 10px
}

.nav-tabs {
    background: var(--dark);
    border-radius: 10px
}

.tab-pane {
    padding: 30px 0 0;
    display: none
}

.tab-pane.active {
    display: block
}

.nextarrow,
.prevarrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--blue);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.nextarrow {
    right: -15px
}

.prevarrow {
    left: -15px
}

.slider-arrow:hover .nextarrow,
.slider-arrow:hover .prevarrow {
    visibility: visible;
    opacity: 1;
    color: var(--light);
}

@media(min-width:576px) and (max-width:1199px) {
    .nextarrow {
        right: 0
    }
    .prevarrow {
        left: 0
    }
}

.show-card {
    margin-bottom: 0px;
    background-color: var(--light);
    padding: 10px 0px;
    border-radius: 10px
}

.show-card:hover .show-overlay {
    background: rgba(26, 80, 255, .4)
}

.show-card:hover .show-bg img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.show-content {
    position: relative;
    margin-bottom: 0px;
}

.show-bg {
    overflow: hidden;
    border-radius: 10px
}

.show-bg img {
    width: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    border: solid 5px var(--dark);
}

.show-active {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 45px;
    height: 45px;
    padding: 5px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--dark)
}

.show-active img {
    width: 100%
}

.show-time {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.show-time p {
    color: var(--light);
    font-size: 20px;
    margin-bottom: 7px;
    font-family: var(--sfamily)
}

.show-time h4 {
    color: var(--light);
    font-weight: var(--mweight)
}

.show-host {
    position: absolute;
    bottom: -30px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.show-host li:nth-child(2),
.show-host li:nth-child(3) {
    margin-left: -25px
}

.show-host li a img {
    width: 60px;
    border-radius: 50%;
    border: 5px solid var(--dark)
}

.show-meta {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.team-card:hover .team-overlay {
    opacity: 1;
    height: 100%;
    visibility: visible;
    background: rgba(26, 80, 255, .6)
}

.team-card:hover .team-icon {
    bottom: 30px
}

.team-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

.team-img img {
    width: 100%;
    border-radius: 10px;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.team-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.team-icon li {
    margin: 0 5px
}

.team-icon .icon i {
    width: 45px;
    height: 45px;
    line-height: 45px
}

.team-meta {
    text-align: center
}

.team-meta h4 {
    font-weight: 600;
    font-size: 20px
}

.team-part {
    /*padding-top: 120px*/
}

.team-gape {
    margin-bottom: 30px;
    background: var(--dark);
    padding: 10px;
    border-radius: 10px
}

.team-btn {
    text-align: center;
    margin-top: 20px
}

@media(max-width:575px) {
    .team-part .col-6 {
        padding: 0 5px
    }
    .team-icon .icon i {
        width: 40px;
        height: 40px;
        line-height: 40px
    }
}

@media(max-width:767px) {
    .team-part {
        padding: 60px 0
    }
}

@media(min-width:768px) and (max-width:991px) {
    .team-part {
        padding: 80px 0
    }
}

.video-img {
    position: relative;
    margin-bottom: 15px
}

.video-img img {
    width: 100%;
    border-radius: 10px
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: var(--video-oly)
}

.video-overlay .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.video-overlay .icon i {
    font-size: 14px
}

.video-overlay .icon-inline i {
    background: var(--blue);
    color: var(--dark)
}

.video-content {
    padding: 0 10px
}

.video-content h5 {
    margin-bottom: 5px
}

.video-content p {
    font-size: 15px;
    line-height: 24px
}

.video-part {
    padding-top: 120px
}

.video-gape {
    margin-bottom: 30px;
    background: var(--dark);
    padding: 10px;
    border-radius: 10px
}

.video-part h5 {
    font-size: 25px;
    color: var(--light);
}

.video-part p {
    color: var(--light);
}

.video-btn {
    text-align: center;
    margin-top: 20px
}

@media(max-width:767px) {
    .video-part {
        padding: 60px 0
    }
}

@media(min-width:768px) and (max-width:991px) {
    .video-part {
        padding: 80px 0
    }
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.blog-card:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08)
}

.blog-card:hover .blog-overlay {
    background: rgba(0, 60, 255, .3)
}

.blog-card:hover .blog-overlay .btn-outline {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--light)
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 30px;
}

.blog-overlay p {
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 200px;
    color: var(--light);
}

.blog-overlay h3 {
    position: absolute;
    bottom: 100px;
    left: 25px;
    right: 25px;
    width: 90%;
    color: var(--light);
}

.blog-overlay h3 a {
    color: var(--light)
}

.blog-overlay .btn {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 25px;
    position: absolute;
    bottom: 30px;
    left: 25px
}

.blog-overlay .btn-outline {
    color: var(--light);
    border-color: var(--dark);
    background-color: var(--dark)
}

.blog-src {
    position: relative;
    margin-bottom: 45px
}

.blog-src input {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    padding: 0 60px 0 20px;
    border: 2px solid var(--blue);
    background: 0 0;
    color: var(--blue)
}

.blog-src button {
    border: none;
    outline: none;
    background: 0 0;
    position: absolute;
    top: 6px;
    right: 6px
}

.blog-src button i {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    color: var(--dark);
    background: var(--blue);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    transition: all .5s ease-in-out
}

.blog-src button i:hover {
    background: var(--light);
    color: var(--blue)
}

.blog-filter {
    margin-bottom: 50px;
    background: var(--light);
    border-radius: 10px;
    padding: 20px
}

.blog-filter h3 {
    margin-bottom: 48px;
    position: relative;
}

.blog-filter a {
    color: var(--dark);
}

.blog-filter h3::before {
    position: absolute;
    content: "";
    top: 45px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background: var(--blue)
}

.blog-filter h3::after {
    position: absolute;
    content: "";
    top: 44.5px;
    left: 45px;
    width: 4px;
    height: 4px;
    border-radius: 30px;
    background: var(--blue)
}

.blog-suggest {
    margin-bottom: 10px
}

.blog-suggest li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px dashed var(--light);
}

.blog-suggest li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.suggest-img {
    margin-right: 15px
}

.suggest-img a img {
    width: 100px;
    border-radius: 8px
}

.suggest-title {
    margin-bottom: 20px
}

.suggest-title h4 {
    font-size: 18px;
    line-height: 26px
}

.suggest-title h4 a {
    color: var(--dark);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.suggest-title h4 a:hover {
    color: var(--blue)
}

.suggest-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.suggest-date {
    margin-right: 30px
}

.suggest-date,
.suggest-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.suggest-date i,
.suggest-comment i {
    font-size: 16px;
    margin-right: 8px;
    margin-top: -1px;
    color: var(--dark)
}

.suggest-date p,
.suggest-comment p {
    font-size: 15px;
    line-height: 18px;
    color: var(--dark)
}

.blog-cate {
    display: block
}

.blog-cate li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px dashed var(--light);
    margin-bottom: 10px;
    padding-bottom: 10px
}

.blog-cate li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.blog-cate li:hover h5 a {
    color: var(--blue)
}

.blog-cate li:hover p {
    color: var(--blue)
}

.blog-cate li h5 {
    font-weight: 500
}

.blog-cate li h5 a {
    color: var(--dark);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.blog-cate li p {
    font-size: 18px;
    font-weight: 500;
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    border-radius: 50%;
    color: var(--dark);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1)
}

.blog-tag li {
    display: inline-block;
    margin: 0 8px 12px 0
}

.blog-tag li a {
    color: var(--dark);
    font-size: 14px;
    padding: 2px 15px;
    border-radius: 30px;
    border: 1px solid var(--dark);
    transition: all .5s ease-in-out
}

.blog-tag li a:hover {
    color: var(--dark);
    background: var(--blue);
    border: 1px solid var(--blue)
}

.blog-icon {
    margin-bottom: 10px
}

.blog-icon li {
    display: inline-block;
    margin-right: 8px
}

.blog-icon li a i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 10px;
    color: var(--blue);
    background: var(--dark);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1)
}

.blog-icon li a i:hover {
    color: var(--dark);
    background: var(--blue)
}

.blog-banner a img {
    width: 100%;
    border-radius: 10px
}

.blog-part a {
    color: var(--dark);
}

.blog-part b {
    color: var(--light);
}

.blog-part ul {
    list-style: none;
}

.blog-part {
    padding-top: 120px
}

.blog-card {
    margin-bottom: 20px
}

.pagination {
    margin-top: 30px
}

@media(max-width:991px) {
    .content-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .pagination {
        margin: 20px 0 50px
    }
}

@media(max-width:767px) {
    .blog-part {
        padding: 60px 0
    }
}

@media(min-width:380px) and (max-width:575px) {
    .blog-card {
        width: 380px;
        margin: 0 auto 30px
    }
}

@media(min-width:576px) and (max-width:767px) {
    .content-reverse .col-sm-6 {
        padding: 0 8px
    }
    .blog-overlay h3 {
        font-size: 21px;
        line-height: 27px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .blog-part {
        padding: 80px 0
    }
    .blog-banner {
        text-align: center
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .suggest-img a img {
        width: 95px
    }
    .blog-banner {
        display: none
    }
}

.blog-det-part {
    padding-top: 120px
}

.blog-det-part .container {
    max-width: 1000px
}

.blog-det-banner {
    position: relative;
    border-radius: 10px;
    margin-bottom: 10px
}

.blog-det-banner img {
    width: 100%;
    border-radius: 10px
}

.blog-det-content {
    padding: 20px 0
}

.blog-det-title {
    margin-bottom: 20px
}

.blog-det-title h2 a {
    color: var(--dark)
}

.blog-det-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.blog-det-meta li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 18px;
    border-right: 1px solid var(--blue)
}

.blog-det-meta li:first-child {
    padding-left: 0
}

.blog-det-meta li:last-child {
    padding-right: 0;
    border-right: none
}

.blog-det-meta li i {
    font-size: 14px;
    margin-right: 8px;
    margin-top: -2px;
    color: var(--light)
}

.blog-det-meta li p {
    font-size: 14px;
    color: var(--dark);
    text-transform: uppercase
}

.blog-part p {
    color: var(--light);
    font-size: 20px;
}

.blog-det-descrip p {
    margin-bottom: 35px;
    color: var(--dark)
}

.blog-det-descrip p span {
    display: block;
    margin-top: 25px
}

.blog-det-subtitle {
    margin-bottom: 35px
}

.blog-det-subtitle h3 {
    margin-bottom: 15px;
    color: var(--dark)
}

.blog-det-subtitle p {
    color: var(--dark)
}

.blog-det-quote {
    padding: 50px;
    background: var(--blue-dark);
    border-left: 5px solid var(--blue);
    margin-bottom: 45px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.blog-det-quote p {
    font-size: 22px;
    font-style: italic;
    line-height: 35px;
    margin-bottom: 35px;
    color: var(--light)
}

.blog-det-quote span {
    font-weight: 500;
    -ms-flex-item-align: start;
    align-self: flex-start;
    color: var(--blue);
    position: relative;
    margin-left: 40px
}

.blog-det-quote span::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 3px;
    left: -40px;
    top: 12px;
    border-radius: 30px;
    background: var(--light)
}

.blog-det-list {
    list-style: disc;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--light);
}

.blog-det-list li {
    margin-bottom: 30px
}

.blog-det-list li:last-child {
    margin-bottom: 0
}

.blog-det-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 45px 0
}

.blog-det-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.blog-det-tag li {
    margin-right: 8px
}

.blog-det-tag li h4 {
    font-weight: 700;
    margin-right: 5px;
    color: var(--dark)
}

.blog-det-tag li a {
    color: var(--dark);
    font-size: 14px;
    padding: 2px 16px;
    border-radius: 30px;
    border: 1px solid var(--dark)
}

.blog-det-tag li a:hover {
    color: var(--dark);
    background: var(--blue);
    border-color: var(--blue)
}

.blog-det-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.blog-det-share li {
    margin-right: 8px
}

.blog-det-share li h4 {
    font-weight: 700;
    margin-right: 5px;
    color: var(--dark)
}

.blog-det-share li a i {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    color: var(--blue);
    background: var(--dark);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1)
}

.blog-det-share li a i:hover {
    color: var(--dark);
    background: var(--blue)
}

.blog-det-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 45px;
    margin-bottom: 50px;
    border-radius: 10px;
    background: var(--light)
}

.author-img {
    margin-right: 30px
}

.author-img a img {
    width: 100px;
    border-radius: 50%
}

.author-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 15px
}

.author-social li {
    margin: 0 3px
}

.author-social li a i {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--dark);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1)
}

.author-social li a i:hover {
    color: var(--dark);
    background: var(--blue)
}

.author-content h4 {
    margin-bottom: 10px;
    color: var(--dark)
}

.author-content h4 a {
    display: block;
    font-size: 14px;
    color: var(--blue);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.author-content h4 a:hover {
    color: var(--dark);
}

.blog-det-navigate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-bottom: 60px;
    position: relative
}

.blog-det-author p {
    color: var(--dark)
}

.navigate-post {
    width: 320px;
    border-radius: 10px;
    position: relative;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .25)
}

.navigate-post::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 0, 255, 0.1)), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(to bottom, rgba(128, 0, 255, 0.1), rgba(0, 0, 0, 0.8))
}

.navigate-post img {
    width: 100%;
    border-radius: 10px
}

.navigate-post h4 {
    position: absolute;
    bottom: 12px;
    left: 0;
    padding: 0 30px;
    line-height: 28px
}

.navigate-post h4 a {
    color: var(--light)
}

.prev-arrow,
.next-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 22px;
    border-radius: 10px;
    padding: 9px 20px;
    color: var(--blue);
    background: var(--light);
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15)
}

.prev-arrow:hover,
.next-arrow:hover {
    color: var(--dark);
    background: var(--blue)
}

.prev-arrow {
    left: 0
}

.prev-arrow i {
    margin-right: 8px
}

.next-arrow {
    right: 0
}

.next-arrow i {
    margin-left: 8px
}

.blog-det-comment {
    margin-bottom: 30px
}

.blog-det-comment h3 {
    margin-bottom: 30px;
    color: var(--dark)
}

.comment-list li ul {
    margin-left: 100px
}

.comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 45px 0;
    position: relative
}

.comment-img {
    margin-right: 30px
}

.comment-img a img {
    width: 100px;
    border-radius: 50%
}

.comment-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark)
}

.comment-content h4 span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    color: var(--dark)
}

.comment-reply {
    position: absolute;
    top: 25px;
    right: 15px
}

.comment-reply a {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.comment-reply a:hover {
    color: var(--blue)
}

.comment-reply a i {
    margin-right: 8px
}

.blog-det-form .form-group {
    margin: 0;
    margin-bottom: 30px
}

.blog-det-form .form-btn {
    text-align: left
}

.blog-det-form .form-btn .btn:hover {
    background-color: var(--dark);
    color: var(--blue);
    border-color: var(--dark)
}

.blog-det-form h3 {
    margin-bottom: 30px;
    color: var(--dark)
}

@media(max-width:767px) {
    .blog-det-part {
        padding: 60px 0
    }
    .blog-det-banner {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 30px
    }
    .blog-det-banner::before {
        display: none
    }
    .blog-det-banner img {
        margin-bottom: 30px;
        -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .25);
        box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .25)
    }
    .blog-det-content {
        position: inherit;
        left: 0;
        bottom: 0;
        padding: 0
    }
    .blog-det-title {
        margin-bottom: 15px
    }
    .blog-det-title h2 {
        font-size: 28px;
        line-height: 36px
    }
    .blog-det-title h2 a {
        color: var(--blue)
    }
    .blog-det-meta {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .blog-det-meta li {
        border: none;
        padding: 2px 7px
    }
    .blog-det-meta li p,
    .blog-det-meta li i {
        color: var(--blue);
        font-size: 13px
    }
    .content-fluid {
        padding: 0
    }
    .blog-det-quote {
        padding: 35px 30px
    }
    .blog-det-quote p {
        font-size: 18px
    }
    .blog-det-list {
        padding-bottom: 30px
    }
    .blog-det-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 35px 0
    }
    .blog-det-tag {
        margin-bottom: 25px
    }
    .blog-det-author {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 35px
    }
    .author-img {
        margin: 0 0 15px
    }
    .blog-det-navigate {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .navigate-post {
        width: 100%;
        margin-bottom: 30px
    }
    .navigate-post h4 {
        bottom: 20px;
        padding: 0 25px;
        line-height: 28px
    }
    .next-arrow {
        top: 0
    }
    .prev-arrow {
        top: inherit;
        bottom: -15px
    }
    .comment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 30px 0
    }
    .comment-img {
        margin: 0 0 15px
    }
    .comment-content h4 {
        margin-bottom: 5px
    }
    .comment-reply {
        top: 45px
    }
    .comment-list li ul {
        margin-left: 60px
    }
}

@media(min-width:431px) and (max-width:767px) {
    .blog-det-navigate {
        width: 400px;
        margin: 0 auto 50px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .blog-det-part {
        padding: 80px 0
    }
    .navigate-post {
        width: 320px
    }
    .prev-arrow,
    .next-arrow {
        top: 0%
    }
}

.pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.page-item {
    margin: 0 6px
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 10px
}

.page-item .active {
    color: var(--light);
    background: var(--blue)
}

.page-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    border: none;
    padding: 0;
    background: var(--light)
}

.page-link:hover {
    background: var(--blue);
    color: var(--light)
}

.page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.banner-1 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden
}

.banner-2 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden
}

.banner-3 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden
}

.banner-oly {
    padding: 180px 0;
    background: linear-gradient(to top, rgba(0, 60, 255, 0.2), rgba(0, 0, 0, 0.1))
}

.banner-content {
    text-align: center
}

.banner-content h1 {
    margin-bottom: 12px
}

.banner-content p {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 45px
}

.banner-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 40px
}

.banner-slider .slick-dots li {
    display: inline-block
}

.banner-slider .slick-dots li button {
    font-size: 0;
    width: 30px;
    height: 6px;
    border-radius: 20px;
    border: 1px solid var(--dark);
    background: var(--dark);
    margin-left: 10px
}

.banner-slider .slick-active button {
    background: var(--blue) !important;
    border: 1px solid var(--blue) !important
}

.banner-slider .bannerprev {
    position: absolute;
    bottom: 31px;
    left: 210px;
    font-size: 20px;
    z-index: 1;
    color: var(--dark);
    cursor: pointer
}

.banner-slider .bannernext {
    position: absolute;
    bottom: 31px;
    left: 180px;
    font-size: 20px;
    z-index: 1;
    color: var(--dark);
    cursor: pointer
}

@media(max-width:991px) {
    .banner-content h1 {
        font-size: 42px;
        line-height: 46px
    }
}

@media(max-width:767px) {
    .banner-oly {
        padding: 60px 0
    }
    .banner-slider .slick-dots {
        bottom: 4px
    }
    .banner-slider .bannerprev {
        bottom: 14px
    }
    .banner-slider .bannernext {
        bottom: 14px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .banner-oly {
        padding: 80px 0
    }
}

.about-img {
    position: relative
}

.about-1 img {
    width: 100%;
}

.about-part p {
    color: var(--light);
}

.about-2 {
    position: absolute;
    bottom: 0;
    right: 40px;
    border-radius: 50%;
    border: 10px solid var(--dark);
    -webkit-box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1)
}

.about-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 68, 114, 0.2)), to(rgba(0, 60, 255, 0.3)));
    background: linear-gradient(rgba(91, 68, 114, 0.2), rgba(0, 60, 255, 0.3))
}

.about-2 img {
    width: 260px;
    height: 260px;
    border-radius: 50%
}

.about-content {
    margin-left: 50px
}

.about-content h2 {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 40px;
    color: var(--dark)
}

.about-content h5 {
    color: var(--blue)
}

.about-content h5::after {
    position: absolute;
    content: "";
    left: 150px;
    top: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    border-radius: 30px;
    background: var(--blue)
}

.about-content p {
    margin-bottom: 25px;
    color: var(--dark);
}

.about-content h2 {
    color: var(--blue);
}

.about-content h3 {
    position: relative;
    margin-left: 50px;
    color: var(--blue);
}

.about-content h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    border-radius: 30px;
    background: var(--blue)
}

@media(max-width:1199px) {
    .about-2 {
        right: 0
    }
}

@media(max-width:575px) {
    .about-img {
        width: 290px;
        margin: 0 auto 30px
    }
    .about-1 img {
        width: 80%
    }
    .about-2 {
        border: 6px solid var(--dark)
    }
    .about-2 img {
        width: 150px;
        height: 150px
    }
    .about-content {
        margin-left: 0
    }
    .about-content h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px
    }
    .about-content h2 span {
        font-size: 40px;
        line-height: 48px
    }
    .about-content h3 {
        display: inline-block
    }
}

@media(min-width:576px) and (max-width:991px) {
    .about-img {
        width: 500px;
        margin: 0 auto 30px
    }
    .about-content {
        margin-left: 0
    }
}

.show-btn {
    text-align: center;
    margin-top: 20px
}

@media(max-width:991px) {
    #show-menu {
        overflow-x: scroll
    }
    .nav {
        width: 800px
    }
    .nav-tabs li .nav-link {
        padding: 8px 0
    }
    #show-menu::-webkit-scrollbar {
        width: 12px;
        background-color: var(--dark)
    }
    #show-menu::-webkit-scrollbar-thumb {
        border-radius: 30px;
        background: var(--dark);
        border: 5px solid var(--dark)
    }
}

@media(min-width:351px) and (max-width:575px) {
    .show-part .container {
        max-width: 350px
    }
}

@media(min-width:768px) and (max-width:1199px) {
    .show-host li a img {
        width: 55px
    }
}

.team-slider .team-card {
    margin: 0 15px;
    background-color: var(--light);
    padding: 10px;
    border-radius: 10px
}

.team-slider .nextarrow,
.team-slider .prevarrow {
    top: 38%
}

.team-btn {
    text-align: center;
    margin-top: 50px
}

@media(max-width:767px) {
    .team-slider .team-card {
        width: 240px;
        margin: 0 10px
    }
}

.video-slider .video-card {
    margin: 0 15px;
    background-color: var(--light);
    padding: 10px;
    border-radius: 10px
}

.video-slider .nextarrow {
    top: 33%
}

.video-slider .prevarrow {
    top: 33%
}

.video-btn {
    text-align: center;
    margin-top: 50px
}

@media(max-width:575px) {
    .video-slider .video-card {
        width: 250px;
        margin: 0 10px
    }
}

@media(min-width:576px) and (max-width:767px) {
    .video-slider .video-card {
        width: 300px;
        margin: 0 10px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .video-slider .video-card {
        width: 380px;
        margin: 0 10px
    }
}

.gallery-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.gallery-list {
    display: -ms-grid;
    display: grid;
    grid-gap: 25px;
    -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    -ms-grid-rows: 200px;
    grid-template-rows: 200px;
    grid-auto-flow: dense
}

.gallery-list li {
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.gallery-list li:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08)
}

.gallery-list li img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.verti-img {
    grid-row: span 2
}

.hori-img {
    grid-column: span 2
}

.big-img {
    grid-row: span 2;
    grid-column: span 2
}

.gallery-btn {
    text-align: center;
    margin-top: 50px
}

@media(max-width:575px) {
    .gallery-list {
        grid-gap: 15px
    }
}

.gallery-part {
    padding-top: 120px
}

.gallery-pt {
    padding-top: 220px
}

.gallery-img {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px
}

.gallery-img:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08)
}

.gallery-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 68, 114, 0.2)), to(rgba(0, 60, 255, 0.3)));
    background: linear-gradient(rgba(91, 68, 114, 0.2), rgba(0, 60, 255, 0.3))
}

.gallery-img img {
    width: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.gallery-gape {
    margin-top: -100px
}

@media(max-width:767px) {
    .gallery-part {
        padding: 60px 0
    }
    .gallery-gape {
        margin-top: 0
    }
    .gallery-btn {
        margin-top: 20px
    }
}

@media(min-width:351px) and (max-width:575px) {
    .gallery-img {
        width: 350px;
        margin: 0 auto 30px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .gallery-part {
        padding: 80px 0
    }
    .gallery-gape {
        margin-top: 0
    }
    .gallery-btn {
        margin-top: 20px
    }
}

.blog-slider .blog-card {
    margin: 0 15px
}

.blog-slider .nextarrow {
    top: 50%
}

.blog-slider .prevarrow {
    top: 50%
}

.blog-btn {
    text-align: center;
    margin-top: 50px
}

@media(max-width:575px) {
    .blog-slider .blog-card {
        width: 250px;
        margin: 0 10px
    }
    .blog-overlay h4 {
        left: 25px;
        right: 25px
    }
}

@media(min-width:576px) and (max-width:767px) {
    .blog-slider .blog-card {
        width: 325px
    }
}
.single-banner {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: -28px;
}

.single-banner-oly {
    background: rgba(0, 0, 0, .4);
    padding: 110px;
    height: 100%;
}

.single-content {
    text-align: center
}

.single-content h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--light);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1)
}

@media(max-width:991px) {
    .single-content h2 {
        font-size: 38px
    }
}

.breadcrumb {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
    background: 0 0;
    border-radius: 0
}

.breadcrumb-item {
}

.breadcrumb-item a {
    color: var(--light);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1)
}

.breadcrumb-item.active {
    color: var(--blue);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1)
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light)
}

.counter-part {
    background: url(../../../assets/banner-1.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    margin: 110px 0 0
}

.counter-oly {
    background: rgba(0, 0, 0, .6);
    padding: 40px 0
}

.counter-div {
    text-align: center
}

.counter-icon i {
    font-size: 60px;
    margin-bottom: 40px;
    color: var(--blue)
}

.counter-div h3 {
    font-size: 50px;
    font-weight: var(--bcweight);
    color: var(--light);
    letter-spacing: 1px;
    margin-bottom: 30px
}

.counter-div p {
    font-size: 18px;
    line-height: 25px;
    color: var(--light);
    width: 180px;
    margin: 0 auto
}

@media(max-width:991px) {
    .counter-part {
        margin: 60px 0 0
    }
    .counter-oly {
        padding: 60px 0 10px
    }
    .counter-div {
        margin-bottom: 50px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .counter-part {
        margin: 80px 0 0
    }
    .counter-oly {
        padding: 80px 0 20px
    }
}

.testi-card {
    background: var(--light);
    padding: 45px;
    border-radius: 10px;
    margin: 0 15px
}

.testi-quote {
    padding: 0 6px 22px;
    margin-bottom: 22px;
    border-bottom: 6px solid var(--blue);
    border-radius: 0 0 30px 30px
}

.testi-quote p {
    font-size: 20px
}

.testi-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.testi-img {
    margin-right: 18px
}

.testi-img a {
    border-radius: 50%;
    border: 2px solid var(--blue);
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15)
}

.testi-img a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--dark)
}

.testi-info h4 {
}

.testi-info p {
    font-size: 15px
}

@media(max-width:1199px) {
    .testi-meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .testi-quote {
        text-align: center
    }
    .testi-img {
        margin: 0
    }
    .testi-info {
        text-align: center
    }
}

@media(max-width:991px) {
    .testi-card {
        padding: 35px
    }
}

@media(max-width:767px) {
    .testi-card {
        width: 260px;
        margin: 0 8px
    }
    .testi-quote p {
        font-size: 18px
    }
}

.sponsor-slider {
    height: 300px;
}

.sponsor-slider a {
    margin: 0 15px;
}

.sponsor-slider a img {
    /*width: 100%;*/
    height: 150px;
    border-radius: 10px;
    background-color: var(--light);
    transition: all linear .3s;
    padding: 10px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.sponsor-slider a img:hover {
    opacity: .5
}

@media(max-width:991px) {
    .sponsor-slider a {
        margin: 0 8px
    }
}

.sponsor-part {
    padding-top: 120px
}

.section-heading h2 {
    font-size: 50px;
    text-transform: uppercase
}

.section-heading h2::before {
    bottom: -25px
}

.section-heading h2::after {
    bottom: -32px
}

@media(max-width:767px) {
    .sponsor-part {
        padding: 60px 0
    }
    .section-heading h2 {
        font-size: 40px;
        line-height: 48px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .sponsor-part {
        padding: 80px 0
    }
}

.form-group {
    margin: 0 50px 50px;
    position: relative
}

.form-group:focus-within input,
.form-group:focus-within textarea {
    border: 2px solid var(--blue)
}

.form-group:focus-within i {
    background: var(--blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: 0 0;
    border: 2px solid var(--dark)
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase
}

.form-group input {
    height: 60px;
    padding-left: 20px;
    padding-right: 50px;
    border-radius: 10px;
    color: var(--dark)
}

.form-group textarea {
    height: 180px;
    padding-top: 14px;
    padding-left: 20px;
    padding-right: 50px;
    border-radius: 10px;
    color: var(--dark)
}

.form-group i {
    position: absolute;
    top: 21px;
    right: 20px;
    font-size: 18px;
    color: var(--dark);
}

.form-btn {
    text-align: center
}

b, strong {
    color: var(--blue);   
}

@media(max-width:767px) {
    .form-group {
        margin: 0 0 30px
    }
}

.intro-part {
    padding-top: 120px
}

.intro-content {
    text-align: center;
    background-color: var(--blue-dark);
    border-radius: 20px;
    margin: 0 14px;
    padding: 30px 0
}

.intro-content h1 {
    color: var(--dark);
    text-shadow: none;
    margin-bottom: 12px
}

.intro-content p {
    width: 95%;
    font-size: 20px;
    margin: 0 auto 30px;
    color: var(--light)
}

.intro-content .btn-inline {
    background-color: var(--dark);
    color: var(--blue)
}

@media(max-width:767px) {
    .intro-part {
        padding: 60px 0
    }
    .intro-content h1 {
        font-size: 38px;
        line-height: 46px
    }
    .intro-content p {
        width: 100%
    }
}

@media(min-width:768px) and (max-width:991px) {
    .intro-part {
        padding: 80px 0
    }
}

.preloader {
    background: var(--dark);
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0;
    text-align: left;
    margin: -25px 0 0 -25px
}

.loader span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--blue);
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite
}

.loader span:last-child {
    animation-delay: -.9s;
    -webkit-animation-delay: -.9s
}

@keyframes loader {
    0% {
        transform: scale(0, 0);
        opacity: .8
    }
    100% {
        transform: scale(1, 1);
        opacity: 0
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: .8
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0
    }
}

.faq-area {
    padding-top: 120px
}

.faq-area .btn-link {
    width: 100%;
    margin: 0;
    text-align: left;
    color: var(--blue);
    padding: 18px;
    box-shadow: unset;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px
}

.faq-area .faq-ques i {
    font-size: 26px;
    margin: auto 20px
}

.faq-area .card {
    border: 0;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    margin-bottom: 30px;
    border-left: 3px solid var(--blue);
    border-radius: 10px !important
}

.faq-area .card:last-child {
    margin-bottom: 0
}

.faq-area .card-body {
    border-top: 2px dashed var(--light);
}

.login {
    margin: 120px
}

.login .form-group {
    margin: 0;
    margin-bottom: 20px;
    color: var(--dark);
}

.login .login-box {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    padding: 20px 30px;
    border-top: 3px solid var(--blue);
    border-radius: 15px;
    background: var(--light)
}

.login .login-box h3 {
    font-weight: 700;
    color: var(--blue)
}

.login .login-box p {
    color: var(--dark);
}

.login .custom-control-label {
    color: var(--dark);
}

.login .login-box .login-form {
    margin-top: 20px
}

.login .login-box .login-form .form-control {
    height: 46px;
    border-radius: 10px
}

.login .login-box .login-form a {
    font-size: 14px;
    color: var(--blue)
}

.login .login-box .login-form a:hover {
    color: var(--blue);
}

.login .custom-control-input:checked~.custom-control-label::before {
    color: var(--dark);
    border-color: var(--blue);
    background-color: var(--blue)
}

.login .login-btn {
    padding: 12px 20px;
    border: 2px solid var(--blue);
    background-color: var(--blue);
    color: var(--dark);
    margin-top: 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    width: 100%;
    transition: all .5s ease-in-out
}

.login .login-btn:hover {
    background: var(--light);
    border-color: var(--light)
}

.login p a {
    color: var(--blue)
}

.login p a:hover {
    color: var(--blue);
}

.login .social-login {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between
}

.login .social-login a {
    color: var(--dark);
    padding: 6px 46px;
    font-size: 20px;
    border-radius: 10px;
    transition: all .5s ease-in-out
}

.login .social-login a:nth-child(1) {
    background: var(--blue);
}

.login .social-login a:nth-child(2) {
    background: var(--blue);
}

.login .social-login a:nth-child(3) {
    background: var(--blue);
}

.login .social-login a:hover {
    background: var(--blue);
}

.error-msg {
    padding-top: 200px
}

.error-msg .error-box h1 {
    font-size: 262px;
    color: var(--dark);;
    font-weight: 700
}

.error-msg .error-box h1 span {
    color: var(--blue);
    margin: 0 10px
}

.error-msg .error-box h3 {
    color: var(--dark);;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 100px
}

.error-msg .error-box p {
    font-size: 18px;
    color: var(--dark);;
    font-weight: 500;
    margin-bottom: 35px
}

.error-msg .error-box a {
    font-size: 16px;
    color: var(--dark);
    background: var(--blue);
    padding: 10px 30px;
    font-weight: 500;
    border: 1px solid var(--blue);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    display: inline-block;
    transition: all .5s ease-in-out
}

.error-msg .error-box a i {
    margin-right: 8px
}

.error-msg .error-box a:hover {
    background: var(--dark);
    color: var(--blue)
}

.term-condition {
    padding-top: 120px;
    color: var(--dark);
}

.term-condition h3 {
    color: var(--blue)
}

.term-condition ul li {
    color: var(--dark);
    font-size: 25px;
    margin-bottom: 15px;
}

.term-condition ul li i {
    color: var(--blue);
    font-size: 12px;
    margin-right: 5px
}

.term-condition a {
    color: var(--dark);
}

.contact-part {
    padding-top: 120px
}

.contact-info {
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 25px 10px;
    background: var(--dark);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08)
}

.contact-info i {
    font-size: 45px;
    margin-bottom: 25px;
    color: var(--blue)
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 40px;
    position: relative
}

.contact-info h3::before {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 30px;
    background: var(--blue)
}

.contact-info p span {
    display: block
}

.contact-form {
    border-radius: 10px;
    padding: 40px;
    background: var(--light);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08)
}

.contact-label {
    display: block;
    position: relative;
    margin-bottom: 25px
}

.contact-label:focus-within input,
.contact-label:focus-within textarea {
    border: 2px solid var(--blue)
}

.contact-label:focus-within i {
    color: var(--blue)
}

.contact-label input,
.contact-label textarea,
.contact-label select {
    border: none;
    outline: none;
    width: 100%;
    height: 50px;
    display: block;
    padding: 0 20px 0 50px;
    border: 2px solid var(--light);
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.contact-label textarea {
    height: 150px;
    padding: 10px 20px 0 50px;
    resize: none
}

.contact-label i {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.contact-form .btn {
    width: 100%
}

.contact-map {
    padding: 30px;
    border-radius: 10px;
    background: var(--light);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08)
}

.contact-map iframe {
    height: 528px
}

@media(max-width:991px) {
    .contact-part {
        padding: 60px 0
    }
    .contact-form {
        padding: 50px 15px 45px;
        margin-bottom: 30px
    }
    .contact-map {
        padding: 15px
    }
    .contact-map iframe {
        height: 300px
    }
}

@media(min-width:768px) and (max-width:991px) {
    .contact-part {
        padding: 80px 0
    }
}

.text-primary { color: var(--blue)!important; }
.bg-primary { color: var(--blue)!important; }

.dropdown-menu {
    background-color: var(--light)!important;   
}

.dropdown-menu .dropdown-item {
    background-color: var(--light)!important;
    color: var(--blue)!important;
    font-size: 18px!important;
    margin-top: 10px!important;
    margin-bottom: 10px!important;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--blue)!important;
    color: var(--light)!important;
}

.nav-link {
    white-space: nowrap!important;
    margin: 10px!important;
    color: var(--blue);
}

.card-titrage {
  width: 100%;
  height: 70px;
  background: var(--blue-dark);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: left;
  backdrop-filter: blur(10px);
  transition: 0.5s ease-in-out;
  margin-bottom: 10px;
  line-height: 15px;
}

.card-titrage:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.img-titrage {
  width: 50px;
  height: 50px;
  margin-left: 10px;
  border-radius: 10px;
}

.card-titrage:hover > .img-titrage {
  transition: 0.5s ease-in-out;
}

.textbox-titrage {
  width: calc(100% - 90px);
  margin-left: 10px;
  color: white;
  font-family: 'Bizmo';
}

.textcontent-titrage {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.span {
  font-size: 10px;
}

.h1 {
  font-size: 16px;
  font-weight: bold;
}

.titrage {
  font-size: 12px;
  font-weight: lighter;
}

.team-part h5 {
    font-size: 25px;
}

.text-light { color: var(--light)!important; }
.text-blue { color: var(--blue)!important; }
.text-blue-dark { color: var(--blue-dark)!important; }
.text-dark { color: var(--dark)!important; }
.text-red { color: var(--blue)!important; }
.text-grey { color: var(--grey)!important; }

.btn-dark { background: var(--dark)!important; color: var(--light)!important; }
.btn-blue { background: var(--blue)!important; color: var(--light)!important; }
.btn-blue-dark { background: var(--blue-dark)!important; color: var(--light)!important; }
.btn-light { background: var(--light)!important; color: var(--blue)!important; }
.btn-red { background: var(--blue)!important; color: var(--dark)!important; }
.btn-grey { background: var(--grey)!important; color: var(--light)!important; }

.bg-dark { background: var(--dark)!important; color: var(--light)!important; }
.bg-blue { background: var(--blue)!important; color: var(--light)!important; }
.bg-blue-dark { background: var(--blue-dark)!important; color: var(--light)!important; }
.bg-light { background: var(--light)!important; color: var(--dark)!important; }
.bg-red { background: var(--blue)!important; color: var(--dark)!important; }
.bg-grey { background: var(--grey)!important; color: var(--light)!important; }

.badge-dark { background: var(--dark)!important; color: var(--light)!important; }
.badge-blue { background: var(--blue)!important; color: var(--dark)!important; }
.badge-dark { background: var(--blue-dark)!important; color: var(--light)!important; }
.badge-light { background: var(--light)!important; color: var(--dark)!important; }
.badge-red { background: var(--blue)!important; color: var(--dark)!important; }
.badge-grey { background: var(--grey)!important; color: var(--light)!important; }


#discordData,#discordInfo{
    display:flex;
    height:50px;
}
#callToAction,#callToAction-clicked{
    bottom:0;
    cursor:pointer;
    height:40px;
    left:0;
    min-height:32px;
    min-width:73px;
    position:relative;
    right:0;
    top:0;
    align-self:center;
    margin:0 0 0 10px;
    padding:2px 16px
}
#buttonText,#introText,#serverNameBox,#status{
    text-overflow:ellipsis;
    overflow:hidden
}
@font-face{
    font-family: 'gg sans';
    font-weight:300;
    src:url('https://discordapp.com(/assets/7f63813838e283aea62f1a68ef1732c2.woff2') format("woff2")
}
@font-face{
    font-family: 'gg sans';
    font-weight:400;
    src:url('https://discordapp.com(/assets/7f63813838e283aea62f1a68ef1732c2.woff2') format("woff2")
}
@font-face{
    font-family: 'gg sans';
    font-weight:500;
    src:url('https://discordapp.com(/assets/7f63813838e283aea62f1a68ef1732c2.woff2') format("woff2")
}
@font-face{
    font-family: 'gg sans';
    font-weight:600;
    src:url('https://discordapp.com(/assets/7f63813838e283aea62f1a68ef1732c2.woff2') format("woff2")
}
@font-face{
    font-family: 'gg sans';
    font-weight:700;
    src:url('https://discordapp.com(/assets/7f63813838e283aea62f1a68ef1732c2.woff2') format("woff2")
}
.noselect{
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}
#discordInviteBox{
    display:inline-block;
}
#discordInvite{
    text-align:left;
    box-sizing:border-box;
    color:#fff;
    background: var(--blue-dark);
    border-radius:10px;
    font:normal normal 400 normal 16px/16px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    margin:0;
    padding:20px;
    display:inline-block
}
#offlineInd,#onlineInd{
    height:8px;
    width:8px;
    border-radius:50%;
    margin:0 4px 0 0;
    display:block
}
#introText{
    color: var(--light);
    height:16px;
    letter-spacing:.5px;
    text-transform:uppercase;
    flex:1 1 0%;
    font:normal normal 600 normal 12px/16px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    margin:0 0 8px
}
#serverImg{
    background-position:50% 50%;
    bottom:0;
    cursor:pointer;
    height:50px;
    left:0;
    position:relative;
    right:0;
    top:0;
    width:50px;
    border-radius:15px;
    flex:0 0 auto;
    margin:0 10px 0 0
}
#discordInviteError{
    background-color:red;
    color:#fff
}
#discordInfo{
    align-items:stretch;
    justify-content:center;
    flex:1 1 auto;
    flex-flow:column nowrap
}
#callToAction,#statusIndicators{
    align-items:center;
    display:flex
}
#serverNameBox{
    color:var(--light);
    cursor:pointer;
    height:20px;
    font:normal normal 600 normal 16px/20px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    margin:0 0 4px
}
#serverNameBox:hover{
    text-decoration:underline;
}
#status,#statusIndicators{
    font:normal normal 600 normal 12px/16px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: var(--light);
    height:16px
}
#statusIndicators{
    justify-content:flex-start
}
#onlineInd{
    color: var(--light);
    column-rule-color: var(--light);
    background:#43b581;
    font:italic normal 600 normal 12px/16px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif
}
#numOnline{
    color: var(--light);
    display:block;
    height:16px;
    font:normal normal 600 normal 12px/16px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    margin:0 8px 0 0
}
#offlineInd{
    color: var(--light);
    background:#747f8d;
    font:italic normal 600 normal 12px/16px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif
}
#numTotal{
    color: var(--light);
    display:block;
    height:16px;
    font:normal normal 600 normal 12px/16px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif
}
#callToAction{
    color:#fff;
    border:0;
    justify-content:center;
    background:#43b581;
    border-radius:3px;
    font:normal normal 500 normal 14px/20px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    transition:background-color .17s ease 0s
}
#callToAction:hover{
    background-color:#3ca374
}
#callToAction-clicked{
    color: var(--light);
    display:flex;
    overflow-wrap:break-word;
    word-wrap:break-word;
    align-items:center;
    justify-content:center;
    user-select:none;
    background:rgba(0,0,0,0);
    border:1px solid rgba(114,118,126,.298);
    border-radius:3px;
    font:normal normal 500 normal 14px/20px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    transition:color .17s ease 0s,background-color .17s ease 0s,border-color .17s ease 0s
}
#discordPoly,#gDiscord{
    white-space:nowrap;
    word-wrap:break-word;
    column-rule-color:var(--light);
    user-select:none;
    fill:none;
    border:0 var(--light);
    overflow-wrap:break-word;
    cursor:pointer;
    text-align:center;
    font:normal normal 500 normal 14px/20px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif
}
#callToAction-clicked:hover{
    border-color:hsla(218,5%,47%,.6)
}
#discordSVG{
    color:var(--light);
    height:18px;
    width:18px;
    margin:0 0 0 8px
}
#gDiscord{
    fill-rule:evenodd
}
#discordPoly{
    text-decoration:none solid var(--light);
    fill-rule:evenodd;
    stroke:var(--light);
    stroke-width:2px;
    caret-color:var(--light);
    outline:#dcddde 0
}
#joinedDiscord{
    color:var(--light);
    cursor:pointer;
    display:flex;
    height:20px;
    overflow-wrap:break-word;
    text-align:center;
    font:normal normal 500 normal 14px/20px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    overflow:hidden
}
#buttonText{
    cursor:pointer;
    display:flex;
    height:20px;
    text-align:center;
    font:normal normal 500 normal 14px/20px 'gg sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
    margin:0 8.83px
}
.loadHidden{
    display:none
}
 
 .card-img, .card-img-bottom, .card-img-top {
    -ms-flex-negative: 0!important;
    flex-shrink: 0!important;
    width: 100%!important;
    background-position: center center!important;
}