@import url("https://fonts.googleapis.com/css?family=Raleway:100,300,400,500,700,900&display=swap");


:root {
    --primary-colour: linear-gradient(to right, #7B622F 7%, #9A8354 22%, #CBB382 45%, #B3924D 52%, #A38547 80%, #CCB482 90%, #7B622F 100%),
    radial-gradient(circle, #FFFFFF 0%, rgb(255, 255, 255, 0) 100%);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway";
    font-size: 0.9em;
    background-color: #000000;
}

.compact {
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
}


.header {
    min-height: calc(100vh - 69.59px);
}

/* font-size */

.fs-banner {
    font-size: 3em;
}

.fs-largest {
    font-size: 2.5em;
}

.fs-larger {
    font-size: 1.7em;
}

.fs-large {
    font-size: 1.2em;
}

.fs-normal {
    font-size: 1em;
}

.fs-small {
    font-size: 0.9em;
}

.fs-smaller {
    font-size: 0.8em;
}

.fs-smallest {
    font-size: 0.7em;
}


/* text */
.text-primary  {
    background: var(--primary-colour) !important;
    background-clip: text !important;
    color: transparent!important;
}
.text-primary-subtle {
    color: #C1A875 !important;
}


/* backgrounds */
.bg-primary {
    background: var(--primary-colour) !important;
}
.bg-secondary-subtle {
    background-color: #1E1E1E !important;
}
.bg-secondary {
    background-color: #080808 !important;
}
.gold-gradient {
    background: radial-gradient(circle at 50% 100%, rgba(181, 150, 77, 0.652) 0%, rgba(0, 0, 0, 1) 49%, rgba(0, 0, 0, 1) 100%);
}
.silver-gradient-mini {
    background: linear-gradient(134deg, rgba(176, 174, 170, 1) 0%, rgba(0, 0, 0, 1) 7%);
}
.silver-gradient {
    background: linear-gradient(90deg, #0F0F0F 4%, #3A3A3A7D 49%, #0F0F0F 100%);
}


/* button */

.button-gold {   
    border: 1px solid transparent;
    background:  linear-gradient(to right, #7B622F 7%, #9A8354 22%, #CBB382 45%, #B3924D 52%, #A38547 80%, #CCB482 90%, #7B622F 100%);
    background-clip: border-box;
}

.logo {
    width: 30px;
    height: auto;
}

.bg-black-subtle {
    background-color: #080808;
}


.rounded-lg {
    border-radius: var(--bs-border-radius-xxl) !important;
}  

img.img-circle {
    height: 40px;
    width: 40px;
    object-fit: cover;
}

img.mentor-img {
    height: 260px;
    object-fit: cover;
}

img.img-article {
    height: 260px;
    object-fit: cover;
}

img.img-top {
    object-position: top;
}


/* testimonial marqew */
.img-container {
    animation: slideImages 60s linear infinite !important;  
}
.img-container:hover {
    animation-play-state: paused !important;
}
.img-container:focus {
    animation-play-state: paused !important;
}

.testimonial {
    width: 320px !important;
    height: 200px !important;

}

div[id], section[id] {
    scroll-margin-top: 91px;
}

.swiper {
    width: auto;
    height: 600px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: unset;
    right: unset;
}

.swiper-button-next, .swiper-button-prev {
    position: unset;
    top: unset;
    width: unset;
    height: unset;
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: ' ';
}
.swiper-button-next:after, .swiper-rtl .swiper-button-next:after {
    content: ' ';
}

@keyframes slideImages {
    0% {
      transform: translateX(0);
      /* opacity: 0.5; */
    }
    100% {
      transform: translateX(-5700px);
      /* opacity: 1; */
  
    }
  }

@media (max-width: 400px) {
    .fs-banner {
        font-size: 2.5em;
    }
    .img-container {
        animation: slideImages 100s linear infinite !important;  
    }

    @keyframes slideImages {
        0% {
          transform: translateX(0);
          /* opacity: 0.5; */
        }
        100% {
          transform: translateX(-6700px);
          /* opacity: 1; */
      
        }
      }
    
}

@media (max-width: 750px) {
    .rounded-lg {
        border-radius: 0px !important;
    }    
    img.mentor-img {
        height: 300px;
        
    }

    .swiper {
        width: auto;
        height: 600px;
    }


    
}




