/* -------------- font google --------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* ----------- global ---------------- */

body {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color: #4f504f;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

h1,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #38424d;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #747e74;
    margin: 0;
}

span {
    display: contents;
    color: #3871c1;
}

/* ------------ all button css ---------- */

.main-btn {
    display: inline-block;
    padding: 0 7px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 55px;
    border: 2px solid #0898ef;
    border-radius: 10px;
    background-color: #0898ef;
    color: #fff;
}

.main-btn:hover {
    background-color: rgba(8, 152, 231, .7);
    color: #fff;
    border-color: transparent;
}

.main-btn-nav {
    display: inline-block;
    padding-top: 0px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 55px;
    border: 2px solid #0898ef;
    border-radius: 10px;
    background-color: #0898ef;
    text-transform: uppercase;
    color: #fff;
}

.main-btn-nav:hover {
    background-color: rgba(8, 152, 231, .7);
    color: #fff;
    border-color: transparent;
}

/* ------------ all animation ---------- */

@keyframes video {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes bounceTop-1 {

    0%,
    100% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(0px);
    }
}

@keyframes animation-1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spinner-linspin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-easespin {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    78.5% {
        transform: rotate(945deg);
    }

    to {
        transform: rotate(1080);
    }
}

@keyframes spinner-left-spin {
    0% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(130deg);
    }
}

@keyframes spinner-right-spin {
    0% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }

    to {
        transform: rotate(-130deg);
    }
}

/* -------------- preloader css ---------- */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 99999;
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
}

.preloader .loader .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: spinner-linspin 1568ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spinner-easespin 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%;
}

.preloader .loader .spinner-right .spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: #eceff8;
    animation: spinner-right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;

}

.preloader .loader .spinner-left .spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: #eceff8;
    animation: spinner-left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.preloader .loader .spinner-circle {
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    border-color: #0898e7 #0898e7 #eceff8;
    border-radius: 50%;
    border-width: 6px;
}


/* ----------- navbar css----------- */

.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.sticky {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.navbar {
    position: relative;
    padding: 7px 0;
}


.navbar-brand .image {
    max-width: 125px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 5px 12px;
        background-color: #fff;
        box-shadow: 0 15px 20px 0 rgb(0 0 0 / 10%);
    }
}

.navbar-light .navbar-toggler {
    color: transparent;
    border-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 40px;
}

.nvItemBtn {
    margin-bottom: 12px;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 00;
    color: #38424d;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
    color: #3871c1;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 0;
    left: 50%;
    border-radius: 50%;
    background-color: #38424d;
    opacity: 0;
    transition: all .3 ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item .nav-link::before {
        position: relative;
    }
}

.navbar-nav .nav-item .nav-link.active::before,
.navbar-nav .nav-item .nav-link:hover::before {
    opacity: 1;
}


/* ----------- home css ---------- */

.header-hero {
    position: relative;
    top: 0;
    bottom: 50px;
    height: 100%;
    background-position: bottom center;
}

.header-hero .shape {
    position: absolute;
}

.header-hero .shape.shape-1 {
    position: relative;
    width: 75px;
    height: 75px;
    left: 130px;
    top: 20%;
    border-radius: 50%;
    background: #637ae4;
    animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-2 {
    width: 39px;
    height: 39px;
    left: 150px;
    bottom: 40px;
    border-radius: 50%;
    background: #0898e7;
    animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-3 {
    width: 19px;
    height: 19px;
    left: 26px;
    bottom: 25%;
    border-radius: 50%;
    background: #3871c1;
    animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-4 {
    width: 39px;
    height: 39px;
    left: 40%;
    top: 175px;
    border-radius: 50%;
    background: #4ebaf5;
    animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-5 {
    width: 19px;
    height: 19px;
    left: 50%;
    bottom: 20%;
    border-radius: 50%;
    background: #ff5b56;
    animation: animation-1 2s linear infinite;
}

.header-hero .shape.shape-6 {
    width: 14px;
    height: 14px;
    left: 45%;
    bottom: 70%;
    border-radius: 50%;
    background: #4ebaf5;
    animation: animation-1 2s linear infinite;
}

.header-hero-content {
    position: relative;
    margin-top: 28%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .header-hero-content {
        margin-top: 40%;
    }
}

.header-hero-content .header-title {
    font-size: 32px;
    color: #38424d;
}

.header-hero-content .hero-badge {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    background-color: rgba(0, 250, 0, 0.3);
    padding: 5px;
    border-radius: 15px;
    margin: 5px;
    text-align: center;
}

.header-hero-content .text {
    margin-top: 30px;
}

.header-hero-content ul {
    margin-top: 30px;
}

.header-hero-content ul li .header-video {
    margin-left: 50px;
}

.header-hero-content .header-video {
    position: relative;
    margin-top: 6px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    background-color: #0898ef;
    color: #fff;
}

.header-hero-content .header-video::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(8, 152, 231, .8);
    z-index: -9;
    animation: video 2s linear infinite;
}

.header-image {
    position: relative;
    padding-top: 80px;
    animation: bounceTop-1 3s ease infinite;
}

.section_title {
    margin-top: 20px;
    z-index: 9999;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .header-image img {
        height: 0;
    }
    .header-hero-content .header-title {
        font-size: 28px;
        color: #38424d;
    }
    .section_title {
        margin-top: -10px;
    }
}

.header-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* SVG file removed — using gradient fallback */
    background-image: none;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.header-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.vbox-close {
    color: #fff;
    background: transparent;
    font-size: 40px;
    right: 12%;
}


/* CASINO PARTNERS */

.casino-slider-container {
    padding-top: 50px;
    padding-bottom: 40px;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: calc(230px * 20); /* Ajusté pour le nombre total de logos (10x2) */
    animation: scroll 40s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.casino-logo {
    height: 80px;
    width: 200px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa; /* Fond solide pour contraste maximum avec le blanc */
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.casino-logo:hover {
    background: #ffffff;
    border-color: #D4A017;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.casino-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(30%) drop-shadow(0 0 1px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.casino-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-230px * 10)); /* Déplacement de la moitié des logos (10) */
    }
}


/* CASINO PARTNERS */


/* OUR OFFERS */

.sgs-container {
    padding-top: 10px;
    padding-bottom: 0px;
}

.sgs-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.sgs-header__title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.sgs-header__divider {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
    margin-top: 15px;
}

.sgs-header__subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sgs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.sgs-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition-property: transform, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    position: relative;
    z-index: 1;
    border: 1px solid #ecf0f1;
}

.sgs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #e74c3c;
}

.sgs-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    z-index: 2;
}

.sgs-card__content {
    padding: 30px;
    position: relative;
}

.sgs-card__icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.sgs-card:hover .sgs-card__icon {
    transform: rotate(10deg) scale(1.1);
}

.sgs-card__title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.sgs-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.sgs-card:hover .sgs-card__title::after {
    width: 80px;
}

.sgs-card__highlight {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.sgs-card__description {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.sgs-card__action {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition-property: transform, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.sgs-card__action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Animations personnalisées */
@keyframes sgsFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.sgs-card {
    opacity: 0;
    animation-name: sgsFadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.sgs-card--delay-1 { animation-delay: 0.1s; }
.sgs-card--delay-2 { animation-delay: 0.2s; }
.sgs-card--delay-3 { animation-delay: 0.3s; }
.sgs-card--delay-4 { animation-delay: 0.4s; }
.sgs-card--delay-5 { animation-delay: 0.5s; }
.sgs-card--delay-6 { animation-delay: 0.6s; }
.sgs-card--delay-7 { animation-delay: 0.7s; }

/* Responsive avec breakpoints précis */
@media screen and (max-width: 1024px) {
    .sgs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .sgs-header__title {
        font-size: 2rem;
    }
    
    .sgs-card__content {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .sgs-grid {
        grid-template-columns: 1fr;
    }
    
    .sgs-header__title {
        font-size: 1.8rem;
    }
}

/* OUR OFFERS */


/* TESTIMONIALS */


.section--testimonial-carousel {
  padding: 70px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section--testimonial-carousel__title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222831;
  position: relative;
}

.carousel-container__outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1300px;
  margin: auto;
}

.carousel-track__inner-wrapper {
  display: flex;
  gap: 30px;
  animation: slideLeftInfinite 35s linear infinite;
  width: max-content;
}

.testimonial-card--slide {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 30px;
  width: 320px;
  min-width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card--slide:hover {
  transform: translateY(-5px);
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
}

.testimonial-card__meta {
  font-size: 0.9rem;
  color: #777;
}

@keyframes slideLeftInfinite {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track__inner-wrapper {
    animation-duration: 60s;
    gap: 20px;
  }

  .testimonial-card--slide {
    width: 260px;
    min-width: 260px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .section--testimonial-carousel__title {
    font-size: 1.6rem;
  }
}


/* TESTIMONIALS */


/* BENEFITS */

.betscribe-benefits {
  padding-top: 20px;
}
    

.benefit-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  background: linear-gradient(135deg, #1e1e1e, #171717);
  border-left: 5px solid #00ffc8;
  border-radius: 16px;
  margin-bottom: 40px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.benefit-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 255, 200, 0.1);
}

.benefit-icon {
  background: #00ffc810;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border: 2px solid #00ffc8;
}

.benefit-icon svg {
  stroke: #00ffc8;
  width: 36px;
  height: 36px;
}

.benefit-content h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: #ffffff;
}

.benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.benefit-content p.bold {
  font-weight: 700;
  color: #ffd700;
}

@media (max-width: 768px) {
  .benefit-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefit-icon {
    margin: auto;
    margin-bottom: 15px;
  }

  .benefit-content p {
    text-align: left;
  }
}

/* BENEFITS */


/* --------- feature css ---------- */

.feature-section .single-feature {
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 6px 7px rgba(154, 154, 154, 0.3);
    border-radius: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .feature-section .single-feature {
        box-shadow: none;
    }
}

.feature-section .single-feature .icon {
    position: relative;
    width: 75px;
    height: 75px;
    display: flex;
    margin: 0 auto 30px;
    background-color: #487cff;
    color: #fff;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.feature-section .single-feature .icon.color-2 {
    background-color: #ffb260;
}

.feature-section .single-feature .icon.color-3 {
    background-color: #ff92a5;
}

.feature-section .single-feature .icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: inherit;
    top: -8px;
    right: -8px;
    z-index: -1;
    opacity: .2;
    transition: all .3s ease-out 0s;
}

.feature-section .single-feature:hover .icon::after {
    top: 8px;
    right: 8px;
}

.feature-section .single-feature .content h3 {
    font-weight: 600;
    margin-bottom: 25px;
}



/* ABOUT */

.bsq-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bsq-header {
    text-align: center;
    margin-bottom: 60px;
}

.bsq-header__title {
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bsq-header__divider {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    margin-top: 20px;
    border-radius: 2px;
}

.bsq-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

.bsq-about__content {
    padding-right: 30px;
}

.bsq-about__text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.bsq-about__highlight {
    font-weight: 600;
    color: #2c3e50;
}

.bsq-team__title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.bsq-team__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
}

.bsq-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.bsq-team__photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.bsq-team__photo:hover {
    transform: scale(1.02);
}

.bsq-testimonials {
    background-color: #f8fafc;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.bsq-testimonial {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.bsq-testimonial:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bsq-testimonial__content {
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.bsq-testimonial__content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #3498db;
    opacity: 0.2;
    font-family: serif;
}

.bsq-testimonial__author {
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.bsq-testimonial__role {
    color: #718096;
    font-size: 0.9rem;
}

.bsq-cta {
    text-align: center;
    margin-top: 50px;
}

.bsq-cta__text {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.bsq-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.bsq-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.bsq-cta__button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.bsq-cta__button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .bsq-about {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bsq-about__content {
        padding-right: 0;
    }
    
    .bsq-team__photo {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .bsq-header__title {
        font-size: 2.3rem;
    }
    
    .bsq-testimonials {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .bsq-header__title {
        font-size: 2rem;
    }
    
    .bsq-team__photo {
        height: 300px;
    }
    
    .bsq-testimonials {
        padding: 20px;
    }
    
    .bsq-cta__button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

.bte-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bte-header {
    text-align: center;
    margin-bottom: 60px;
}

.bte-header__title {
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bte-header__divider {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    margin-top: 20px;
    border-radius: 2px;
}

/* Slider d'équipe - Layout 3 colonnes avec Animation Continue */
.bte-team-slider {
    position: relative;
    margin: 40px auto 70px;
    max-width: 1400px;
    overflow: hidden;
    padding: 20px 0;
}

.bte-slider__track {
    display: flex;
    width: max-content;
    gap: 20px;
}

.bte-slider__slide {
    width: 400px; /* Largeur fixe pour le marquee */
    flex-shrink: 0;
    box-sizing: border-box;
}

.bte-slide__card {
    background: #f8faff;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2ff;
}

.bte-slide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    background: white;
}

.bte-slide__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    position: relative;
}



.bte-slide__avatar-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.bte-slide__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bte-slide__info {
    display: flex;
    flex-direction: column;
}

.bte-slide__name {
    font-size: 1.15rem;
    color: #222538;
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1.3;
}

.bte-slide__role {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.bte-slide__body {
    flex-grow: 1;
}

.bte-slide__text {
    font-style: italic;
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.bte-slider__nav {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.bte-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bte-slider__dot--active {
    background: #222538;
    width: 25px;
    border-radius: 10px;
}

.bte-slider__arrows {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.bte-slider__arrow {
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: #222538;
    border: 1px solid #f1f5f9;
}

.bte-slider__arrow:hover {
    background: #222538;
    color: white;
    transform: scale(1.1);
    border-color: #222538;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .bte-slider__slide {
        width: 320px;
    }
}

/* Section CTA */
.bte-cta {
    text-align: center;
    margin-top: 70px;
}

.bte-cta__text {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.bte-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.bte-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.bte-cta__button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.bte-cta__button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .bte-slide__content {
        grid-template-columns: 1fr;
    }
    
    .bte-slide__image-container {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .bte-header__title {
        font-size: 2.3rem;
    }
    
    .bte-slide__text {
        padding: 30px;
    }
    
    .bte-slider__arrow {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .bte-header__title {
        font-size: 2rem;
    }
    
    .bte-slide__name {
        font-size: 1.5rem;
    }
    
    .bte-cta__button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ABOUT */


/* TARIFS */

.tpc-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.tpc-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.tpc-header__title {
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tpc-header__divider {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    margin-top: 20px;
    border-radius: 2px;
}

.tpc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tpc-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    z-index: 1;
    border: 1px solid #e0e6ed;
}

.tpc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.tpc-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tpc-card__content {
    padding: 35px;
    position: relative;
}

.tpc-card__title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.tpc-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    transition: width 0.4s ease;
}

.tpc-card:hover .tpc-card__title::after {
    width: 80px;
}

.tpc-card__price {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 800;
    display: block;
}

.tpc-card__description {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.tpc-card__features {
    margin-bottom: 30px;
}

.tpc-card__feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.tpc-card__feature-icon {
    margin-right: 12px;
    color: #3498db;
    font-size: 1.2rem;
    min-width: 24px;
    margin-top: 2px;
}

.tpc-card__feature-text {
    flex: 1;
}

.tpc-card__ideal {
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #3498db;
}

.tpc-card__ideal-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    display: block;
}

.tpc-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #D4A017;
    color: #222538;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.tpc-card__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.tpc-card__action i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tpc-card__action:hover i {
    transform: translateX(3px);
}

/* Animations avancées */
@keyframes tpcFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.tpc-card {
    opacity: 0;
    animation-name: tpcFadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.tpc-card--delay-1 { animation-delay: 0.1s; }
.tpc-card--delay-2 { animation-delay: 0.3s; }
.tpc-card--delay-3 { animation-delay: 0.5s; }
.tpc-card--delay-4 { animation-delay: 0.7s; }

/* Responsive avec points de rupture stratégiques */
@media screen and (max-width: 1024px) {
    .tpc-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .tpc-header__title {
        font-size: 2.3rem;
    }

    .tpc-card__content {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .tpc-header__title {
        font-size: 2rem;
    }

    .tpc-grid {
        grid-template-columns: 1fr;
    }
}

/* TARIFS */



.pricing-section {
  padding: 80px 20px;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  color: #00ffc8;
  text-shadow: 0 0 8px #00ffc855;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease forwards;
  text-align: start;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: linear-gradient(135deg, #1d1d1d, #171717);
  border: 2px solid #00ffc820;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, border 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #00ffc8;
}

.pricing-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  gap: 10px;
}

.pricing-card p {
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.6;
  margin: 8px 0;
}

.pricing-card ul {
  margin: 15px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card ul li::before {
  content: "✔";
  color: #00ffc8;
  font-weight: bold;
}


.pricing-card .tpc-card__ideal {
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.pricing-card .tpc-card__ideal-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    display: block;
}

.pricing-card .btn {
  margin-top: 20px;
  background: #00ffc8;
  color: #000;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.pricing-card .btn:hover {
  background: #00caa0;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .pricing-section h2 {
    font-size: 1.8rem;
  }
}


/* ------- about css -------- */

.about-area {
    overflow: hidden;
}

.about-image {
    display: inline-block;
    position: relative;
    text-align: center;
    margin-left: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-image .about-shape {
    position: relative;
    width: 394px;
    height: 394px;
    background-color: #0898e7;
    border-radius: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .about-image .about-shape {
        width: 380px;
        height: 380px;
    }
}

.about-image .about-shape::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid #0898e7;
    border-top-color: transparent;
    border-right-color: transparent;
    transform: scale(1.1) rotate(25deg);
}

.about-image .app {
    max-width: 280px;
    position: absolute;
    top: 100px;
    left: 95px;
    transform: rotate(-25deg) translateY(-15%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .about-image .app {
        max-width: 250px;
    }
}

.title {
    font-size: 35px;
    font-weight: 600;
}

.text {
    margin-top: 20px;
}

.about-content .main-btn {
    margin-top: 40px;
}

/* --------- Testimonial css ---------- */

.testimonial-section {
    padding: 100px 0;
    background-color: #a3bdff;
}

.testimonial-section .tns-controls {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
}

.testimonial-section .tns-controls button {
    border: none;
    background: 0 0;
}

.testimonial-section .tns-controls button svg {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 8%;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .13);
    color: #fff;
    z-index: 22;
}

.testimonial-section .tns-controls button svg:hover {
    background-color: #fff;
    color: #487cff;
}

.testimonial-section .tns-controls button .fa-angle-left {
    left: 10%;
}

.testimonial-section .tns-controls button .fa-angle-right {
    right: 10%;
}

.testimonial-section .testimonial-active-wrapper {
    position: relative;
}

.testimonial-section .testimonial-wrapper {
    padding: 40px;
}

.testimonial-section .single-testimonial {
    position: relative;
    padding: 45px 50px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 9;
}

.testimonial-section .single-testimonial::before {
    top: -20px;
    right: -20px;
    opacity: .26;
    z-index: -1;
}

.testimonial-section .single-testimonial::after {
    top: -40px;
    right: -40px;
    opacity: .13;
    z-index: -2;
}

.testimonial-section .single-testimonial::before,
.testimonial-section .single-testimonial::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: inherit;
}

.testimonial-section .single-testimonial .info .image-2 {
    width: 100%;
    max-width: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-section .single-testimonial .info h4 {
    margin-bottom: 8px;
}

.testimonial-section .single-testimonial .info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-section .single-testimonial .quote {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 80px;
    line-height: 1;
    color: rgba(72, 124, 255, .5);
}

/* ------ pricing css --------- */

.single-pricing {
    padding: 25px 30px 30px;
    box-shadow: 0 0 11px 0 rgb(154 154 154 / 16%);
}

.single-pricing .pricing-title .title {
    font-size: 25px;
    font-weight: 500;
}

.single-pricing .pricing-price {
    margin-top: 30px;
}

.single-pricing .pricing-price .pricing {
    font-size: 35px;
    font-weight: 600;
    color: #38424d;
    line-height: 35px;
}

.single-pricing .pricing-price .text {
    font-size: 18px;
    margin-top: 18px;
}


.single-pricing .pricing-list {
    margin-top: 30px;
}

.single-pricing .pricing-list li {
    line-height: 39px;
}

.single-pricing .pricing-btn {
    margin-top: 28px;
}

.single-pricing .pricing-btn .main-btn.main-btn-2 {
    background-color: transparent;
    color: #525a63;
    border-color: #0898e7;
}

.single-pricing .pricing-btn .main-btn.main-btn-2:hover {
    background-color: rgba(8, 125, 231, .7);
    color: #fff;
    border-color: transparent;
}

/* --------- faq css ---------- */

.faq-section .accordion-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(142, 142, 142, .16);
}

.faq-section .accordion-item button {
    position: relative;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    background-color: #fff;
    color: #1d2a5d;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/accordion.svg);
}

.accordion-button:focus {
    box-shadow: none;
}

/* --------- download css ---------- */

.download-area {
    overflow: hidden;
}

.download-area .download-image .download-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #b3d7ff;
    border-radius: 50%;
    z-index: -1;
}

.download-area .download-image .image-3 {
    position: relative;
    max-width: 350px;
    padding-top: 65px;
    padding-left: 60px;
    padding-bottom: 60px;
}

.download-content ul {
    margin-top: 35px;
}

.download-content ul li {
    display: inline-block;
    margin-top: 15px;
}

.download-content ul li a {
    width: 210px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: -15px 10px 30px 0 rgb(0 0 0 / 30%);
}

.download-content ul li a.app-store {
    margin-right: 28px;
    background-color: #0898e7;
}

.download-content ul li a.play-store {
    background-color: #525a63;
}

/* ----------- footer css --------- */

.footer-area {
    position: relative;
    overflow: hidden;
}

.footer-area .footer-shape {
    position: absolute;
}

.footer-area .footer-shape.shape-1 {
    width: 75px;
    height: 75px;
    left: 70px;
    background-color: #3871c1;
    border-radius: 50%;
    opacity: .55;
    animation: animation-1 2s linear infinite;

}

.footer-area .footer-shape.shape-2 {
    width: 39px;
    height: 39px;
    left: 15%;
    bottom: 40px;
    background-color: #33c8c1;
    border-radius: 50%;
    opacity: .55;
    animation: animation-1 2s linear infinite;

}

.footer-area .footer-shape.shape-3 {
    width: 20px;
    height: 20px;
    left: 35%;
    top: 40px;
    background-color: #361cc1;
    border-radius: 50%;
    opacity: .55;
    animation: animation-1 2s linear infinite;

}

.footer-area .footer-shape.shape-4 {
    width: 15px;
    height: 15px;
    left: 50%;
    bottom: 5px;
    background-color: #eba31a;
    border-radius: 50%;
    opacity: .55;
    animation: animation-1 2s linear infinite;

}

.footer-area .footer-shape.shape-5 {
    width: 39px;
    height: 39px;
    right: 37%;
    top: 0px;
    background-color: #e29e19;
    border-radius: 50%;
    opacity: .55;
    animation: animation-1 2s linear infinite;

}

.footer-area .footer-shape.shape-6 {
    width: 15px;
    height: 15px;
    right: 15%;
    top: 125px;
    background-color: #b60d81;
    border-radius: 50%;
    opacity: .55;
    animation: animation-1 2s linear infinite;

}

.footer-area .logo {
    max-width: 200px;
}

.footer-about {
    max-width: 320px;
}

.footer-about .text {
    margin-top: 30px;
}

.footer-about .social {
    margin-top: 30px;
}

.footer-about .social li {
    display: inline-block;
    margin-right: 25px;
}

.footer-about .social li a {
    font-size: 20px;
    color: #747e88;
    transition: all .3s ease-out 0s;
}

.footer-about .social li a:hover {
    color: #0898e7;
}

.footer-link-wrapper {
    width: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .footer-link {
        padding-top: 30px;
    }
}

.footer-link .link {
    padding-top: 10px;
}

.footer-link .link li {
    margin-top: 10px;
}

.footer-link .link li a {
    text-decoration: none;
    font-size: 18px;
    color: #747e88;
    transition: all .3s ease-out 0s;
}

.footer-link .link li a:hover {
    color: #0898e7;
}

.footer-title .title {
    font-size: 20px;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .footer-contact {
        padding-top: 30px;
    }
}

.footer-contact .contact-list li .contact-info .info-content .text a {
    color: #747e88;
    transition: all .3s ease-out 0s;
}

.footer-contact .contact-list li .contact-info .info-content .text a:hover {
    color: #0898ef;
}

.footer-copyright .copyright {
    border-top: 2px solid #747e88;
    padding-top: 10px;
    padding-bottom: 25px;
}

.footer-copyright .copyright .copyright-text .text a {
    color: #747e88;
}