/*---Theme---*/
@font-face {
    font-family: "AROneSans";
    src: url("../fonts/AROneSans/AROneSans-VariableFont_ARRR,wght.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik/Rubik-VariableFont_wght.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  /*---Abstracts---*/
  /*---Base common style---*/
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Rubik";
  }
  
  p, span {
    font-size: 16px;
    color: #F8F8F8;
    line-height: 1.5rem;
  }
  
  h1 {
    color: #F8F8F8;
    font-size: 38px;
  }
  
  h2 {
    color: #F8F8F8;
    font-size: 28px;
  }
  
  h3 {
    color: #F8F8F8;
    font-size: 22px;
  }
  
  .primary-text {
    color: #F8F8F8;
  }
  
  .secondary-text {
    color: #000;
  }
  
  .accent-text {
    color: #505050;
  }
  
  .primary-background {
    background-color: #000;
  }
  
  .secondary-background {
    background-color: #f8f8f8;
  }
  
  .accent-background {
    background-color: #F4D03d;
  }
  
  .primary-item-background {
    background-color: #141414;
  }
  
  .secondary-item-background {
    background-color: #ffffff;
  }
  
  .shadow-on-text-primary {
    text-shadow: 1px 1px 2px #F8F8F8;
  }
  
  .shadow-on-text-secondary {
    text-shadow: 1px 1px 2px #000;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  @media (min-width: 1921px) {
    .container {
      max-width: 80% !important;
    }
  }
  @media (max-width: 1000px) {
    p, span {
      font-size: 16px;
      letter-spacing: 0.05rem !important;
    }
    h1 {
      font-size: 32px;
    }
    h2 {
      font-size: 26px;
    }
    h3 {
      font-size: 18px;
    }
    .container {
      width: 90%;
      margin: auto;
    }
  }
  /*---Components---*/
  .btn-ex-one-primary, .btn-ex-one-accent, .btn-ex-one-secondary {
    padding: 0.8rem 1rem;
    border: 0.15rem solid #F4D03F;
    text-transform: uppercase;
    font-family: "Rubik";
    background: #000;
    cursor: pointer;
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #F8F8F8;
    z-index: 1;
    letter-spacing: 0.05rem;
  }
  .btn-ex-one-primary:after, .btn-ex-one-accent:after, .btn-ex-one-secondary:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    direction: rtl;
    z-index: -1;
    background: #F4D03F;
    transition: all 0.3s ease;
  }
  .btn-ex-one-primary:hover, .btn-ex-one-accent:hover, .btn-ex-one-secondary:hover {
    color: #000;
  }
  .btn-ex-one-primary:hover:after, .btn-ex-one-accent:hover:after, .btn-ex-one-secondary:hover:after {
    left: auto;
    right: 0;
    width: 100%;
  }
  .btn-ex-one-primary:active, .btn-ex-one-accent:active, .btn-ex-one-secondary:active {
    top: 2px;
  }
  
  .btn-ex-one-secondary {
    border: 0.15rem solid #F4D03F;
    background: #F8F8F8;
    color: #000;
  }
  .btn-ex-one-secondary:after {
    background: #F4D03F;
  }
  .btn-ex-one-secondary:hover {
    color: #F8F8F8;
  }
  
  .btn-ex-one-accent {
    border: 0.15rem solid #000;
    background: #000;
    color: #F8F8F8;
  }
  .btn-ex-one-accent:after {
    background: #F8F8F8;
  }
  .btn-ex-one-accent:hover {
    color: #000;
  }
  
  .btn-ex-two-primary, .btn-ex-two-secondary {
    padding: 1rem 0 1rem 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    font-family: "Rubik";
    color: #F8F8F8;
    letter-spacing: 0.1rem;
  }
  .btn-ex-two-primary::after, .btn-ex-two-secondary::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.075rem;
    background-image: linear-gradient(to right, transparent 1%, #F8F8F8 20%, #F8F8F8 80%, transparent);
  }
  .btn-ex-two-primary:hover::after, .btn-ex-two-secondary:hover::after {
    bottom: 0.6rem;
    transition: all 0.2s ease;
  }
  .btn-ex-two-primary:active::after, .btn-ex-two-secondary:active::after {
    bottom: 0;
    transition: all 0.1s ease;
  }
  
  .btn-ex-two-secondary {
    color: #000;
  }
  .btn-ex-two-secondary::after {
    background-image: linear-gradient(to right, transparent 1%, #000 20%, #000 80%, transparent);
  }
  
  .btn-ex-three-primary, .btn-ex-three-secondary {
    padding: 1rem;
    border: 0.15rem solid #000;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-ex-three-primary:hover, .btn-ex-three-secondary:hover {
    background: #000;
    color: #F8F8F8;
  }
  
  .btn-ex-three-secondary {
    border: 0.15rem solid #F8F8F8;
    color: #F8F8F8;
  }
  .btn-ex-three-secondary:hover {
    background: #F8F8F8;
    color: #000;
  }
  
  .btn-ex-four-primary, .btn-ex-four-secondary {
    padding: 1rem 0 1rem 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    font-family: "Rubik";
    color: #F8F8F8;
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
  }
  .btn-ex-four-primary::after, .btn-ex-four-secondary::after {
    content: "";
    display: block;
    left: 50%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 0;
    width: 1.5rem;
    height: 0.15rem;
    background: #F4D03F;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    -webkit-transition: 0.3s transform ease, 0.3s visibility ease, 0.3s opacity ease, 0.3s -webkit-transform ease;
    transition: 0.3s transform ease, 0.3s visibility ease, 0.3s opacity ease, 0.3s -webkit-transform ease;
  }
  .btn-ex-four-primary:hover::after, .btn-ex-four-secondary:hover::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
  }
  
  .btn-ex-four-secondary {
    color: #000;
  }
  .btn-ex-four-secondary::after {
    background: #F4D03F;
  }
  
  .btn-ex-five-primary, .btn-ex-five-secondary {
    padding: 1rem 0 1rem 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    font-family: "Rubik";
    color: #F8F8F8;
    letter-spacing: 0.1rem;
  }
  .btn-ex-five-primary::after, .btn-ex-five-secondary::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.075rem;
    background-image: linear-gradient(to right, #F8F8F8 0%, #F8F8F8 100%);
  }
  .btn-ex-five-primary:hover::after, .btn-ex-five-secondary:hover::after {
    bottom: 0.6rem;
    transition: all 0.2s ease;
  }
  .btn-ex-five-primary:active::after, .btn-ex-five-secondary:active::after {
    bottom: 0;
    transition: all 0.1s ease;
  }
  
  .btn-ex-five-secondary {
    color: #000;
  }
  .btn-ex-five-secondary::after {
    background-image: linear-gradient(to right, #000 0%, #000 100%);
  }
  
  .scroll-down-primary, .scroll-down-secondary {
    position: absolute;
    left: 0;
    right: 0;
    margin: 1rem auto;
    bottom: 10px;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    width: 13px;
    height: 13px;
    border-bottom: 2px solid #F8F8F8;
    border-right: 2px solid #F8F8F8;
    z-index: 9;
    cursor: pointer;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 4s ease-in-out infinite;
    -moz-animation: fade_move_down 4s ease-in-out infinite;
    animation: fade_move_down 4s ease-in-out infinite;
  }
  
  .scroll-down-secondary {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
  }
  
  /*animated scroll arrow animation*/
  @-webkit-keyframes fade_move_down {
    0% {
      -webkit-transform: translate(0, -5px) rotate(45deg);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(0, 5px) rotate(45deg);
      opacity: 0;
    }
  }
  @-moz-keyframes fade_move_down {
    0% {
      -moz-transform: translate(0, -5px) rotate(45deg);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -moz-transform: translate(0, 5px) rotate(45deg);
      opacity: 0;
    }
  }
  @keyframes fade_move_down {
    0% {
      transform: translate(0, -5px) rotate(45deg);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translate(0, 5px) rotate(45deg);
      opacity: 0;
    }
  }
  .left-right-btns button {
    margin: 1rem;
  }
  .left-right-btns button:first-child {
    float: left;
  }
  .left-right-btns button:last-child {
    float: right;
  }
  
  @media (max-width: 1000px) {
    .left-right-btns {
      text-align: center;
    }
    .left-right-btns button {
      float: none !important;
    }
  }
  .darken {
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hover-3d, .hover-3d-light {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    /* Scale up the box */
    /* Fade in the pseudo-element with the bigger shadow */
  }
  .hover-3d::after, .hover-3d-light::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease-in-out;
  }
  .hover-3d:hover, .hover-3d-light:hover {
    transform: scale(1.1, 1.1);
  }
  .hover-3d:hover::after, .hover-3d-light:hover::after {
    opacity: 1;
  }
  
  .hover-3d-light {
    box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.15) !important;
    /* Scale up the box */
  }
  .hover-3d-light::after {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3) !important;
  }
  .hover-3d-light:hover {
    transform: scale(1.05, 1.05) !important;
  }
  
  .shadow-effect-primary {
    box-shadow: rgba(0, 17, 34, 0.3) 0px 19px 38px, rgba(0, 17, 34, 0.22) 0px 15px 12px;
  }

  .shadow-effect-primary-lite {
    -webkit-box-shadow: 5px 5px 13px 2px rgba(179,179,179,1);
    -moz-box-shadow: 5px 5px 13px 2px rgba(179,179,179,1);
    box-shadow: 5px 5px 13px 2px rgba(179,179,179,1);    
  }
  
  .shadow-effect-secondary {
    box-shadow: rgba(248, 248, 248, 0.3) 0px 19px 38px, rgba(248, 248, 248, 0.22) 0px 15px 12px;
  }
  
  .input-ex-one-primary, .input-ex-one-secondary {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    color: #F8F8F8;
    border-bottom: 0.15rem solid black;
    transition: all 0.3s;
  }
  .input-ex-one-primary:focus, .input-ex-one-secondary:focus {
    border-bottom: 0.15rem solid black;
  }
  
  .input-ex-one-secondary {
    color: #000;
    border-bottom: 0.15rem solid #797979;
  }
  .input-ex-one-secondary:focus {
    border-bottom: 0.15rem solid #dfdfdf;
  }
  
  .textarea-ex-one-primary, .textarea-ex-one-secondary {
    width: 100%;
    min-height: 100px;
    margin-bottom: 1rem;
    padding: 1rem;
    box-sizing: border-box;
    background: none;
    outline: none;
    color: #F8F8F8;
    border: 0.15rem solid black;
    transition: all 0.3s;
  }
  .textarea-ex-one-primary:focus, .textarea-ex-one-secondary:focus {
    border: 0.15rem solid black;
  }
  
  .textarea-ex-one-secondary {
    color: #000;
    border: 0.15rem solid #797979;
  }
  .textarea-ex-one-secondary:focus {
    border: 0.15rem solid #dfdfdf;
  }
  
  .horizontal-divider-ex-two-primary, .horizontal-divider-ex-two-secondary {
    display: block;
    border: none;
    background: #F4D03F;
    height: 2px;
    width: 50px;
  }
  
  .horizontal-divider-ex-two-secondary {
    background: #000;
  }
  
  .horizontal-divider-primary, .desktop-divider-primary, .mobile-divider-primary, .horizontal-divider-secondary, .desktop-divider-secondary, .mobile-divider-secondary {
    display: block;
    border: none;
    background: linear-gradient(to right, transparent, #F8F8F8, #F8F8F8, #F8F8F8, transparent);
    height: 1px;
    width: 100%;
  }
  
  .horizontal-divider-secondary, .desktop-divider-secondary, .mobile-divider-secondary {
    background: linear-gradient(to right, transparent, #000, #000, #000, transparent) !important;
  }
  
  .horizontal-divider-solid-primary, .horizontal-divider-solid-secondary {
    display: block;
    border: none;
    background: linear-gradient(to right, #F8F8F8, #F8F8F8, #F8F8F8);
    height: 2px;
    width: 100%;
  }
  
  .horizontal-divider-solid-secondary {
    background: linear-gradient(to right, #000, #000, #000) !important;
  }
  
  .mobile-divider-primary {
    display: none;
  }
  
  .mobile-divider-secondary {
    display: none;
  }

  .no-margin {
    margin: 0;
  }
  
  .no-margin-top {
    margin-top: 0;
  }
  
  .no-margin-bottom {
    margin-bottom: 0;
  }
  
  @media (max-width: 1000px) {
    .mobile-divider-primary, .mobile-divider-secondary {
      display: block;
    }
  }
  .desktop-divider-primary {
    display: block;
  }
  
  .desktop-divider-secondary {
    display: block;
  }
  
  @media (max-width: 1000px) {
    .desktop-divider-primary, .desktop-divider-secondary {
      display: none;
    }
  }
  /*---Layouts---*/
  .grid-50-50 {
    display: grid;
    grid-template-columns: minmax(auto, 50%) minmax(auto, 50%);
    grid-gap: 10px;
  }
  
  @media (max-width: 1000px) {
    .grid-50-50 {
      grid-template-columns: 100%;
    }
  }
  .grid-33, .grid-33-to-100 {
    display: grid;
    grid-template-columns: minmax(auto, 33.3%) minmax(auto, 33.3%) minmax(auto, 33.3%);
    grid-gap: 10px;
  }
  
  @media (max-width: 1200px) {
    .grid-33, .grid-33-to-100 {
      grid-template-columns: 50% 50%;
    }
  }
  @media (max-width: 700px) {
    .grid-33, .grid-33-to-100 {
      grid-template-columns: 100%;
    }
  }
  .grid-33-to-100 {
    grid-template-columns: minmax(auto, 33.3%) minmax(auto, 33.3%) minmax(auto, 33.3%);
    grid-gap: 0px;
  }
  
  @media (max-width: 1000px) {
    .grid-33-to-100 {
      grid-template-columns: 100% !important;
    }
  }
  .grid-35-65 {
    display: grid;
    grid-template-columns: minmax(auto, 33%) minmax(auto, 63%);
    grid-gap: 2%;
  }
  
  .grid-65-35 {
    display: grid;
    grid-template-columns: minmax(auto, 62%) minmax(auto, 32%);
    grid-gap: 3%;
  }
  
  @media (max-width: 1200px) {
    .grid-35-65 {
      grid-template-columns: minmax(auto, 48%) minmax(auto, 48%);
      grid-gap: 2%;
    }
    .grid-65-35 {
      grid-template-columns: minmax(auto, 48%) minmax(auto, 48%);
      grid-gap: 2%;
    }
  }
  @media (max-width: 700px) {
    .grid-35-65 {
      grid-template-columns: minmax(auto, 100%);
    }
    .grid-65-35 {
      grid-template-columns: minmax(auto, 100%);
    }
  }
  /*---Utilities---*/
  @keyframes slidein {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  .animated-slidein {
    animation: slidein 0.5s forwards;
  }
  
  @keyframes opacity {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .animated-opacity {
    animation: opacity 0.8s forwards;
  }
  
  
  @keyframes left-to-right {
    from {
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
      opacity: 0;
    }
    to {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
      opacity: 1;
    }
  }
  .animated-right-to-left {
    animation: right-to-left 0.8s forwards;
  }
  
  @keyframes right-to-left {
    from {
      -webkit-transform: translateX(100px);
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
      opacity: 1;
    }
  }
  .animated-left-to-right {
    animation: left-to-right 0.8s forwards;
  }
  
  @keyframes top-to-bottom {
    from {
      -webkit-transform: translateY(-100px);
      transform: translateY(-100px);
      opacity: 0;
    }
    to {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
      opacity: 1;
    }
  }
  .animated-top-to-bottom {
    animation: top-to-bottom 0.8s forwards;
  }
  
  .uppercase {
    text-transform: uppercase;
  }
  
  .sticky-nav {
    background-color: #000 !important;
  } 
  
  .header, .header-mobile {
    width: 100%;
    position: fixed;
    background: transparent;
    z-index: 99;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
    padding: 1.5rem 0;
  }
  .header a, .header-mobile a {
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #F8F8F8;
    margin: 0 1rem;
    font-size: 18px;
    letter-spacing: 0.1rem;
    position: relative;
    display: inline-block;
  }
  .header a:before, .header-mobile a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #F4D03F;
    bottom: -5%;
    animation: out 0.4s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
  }
  .header a:hover:before, .header-mobile a:hover:before {
    animation: in 0.4s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
  }
  .header img, .header-mobile img {
    width: 50px;
    height: auto;
    margin: 0 2rem;
  }
  
  .mobile-container {
    display: none;
    width: 100%;
    margin: auto;
  }
  
  .header-mobile {
    padding: 0;
    background: #000;
  }
  .header-mobile a {
    display: block;
    margin: 1rem 0;
  }
  .header-mobile a:before {
    content: none;
  }
  .header-mobile .header-logo-with-control {
    display: flex;
    align-items: center;
  }
  .header-mobile .icon {
    display: inline;
    margin-right: 1rem;
    color: #F4D03F;
    width: 100%;
  }
  .header-mobile .icon i {
    float: right;font-size:24px;
  }
  .header-mobile img {
    float: left;
    margin-left: 1rem;
  }
  
  .header-mobile #mobileNavbarLinks {
    display: none;
  }
  
  /* @media (max-width: 1400px) {
    .header {
      margin-top: 2rem !important;
    }
  } */
  
  @keyframes in {
    0% {
      width: 0;
      left: 0;
      right: auto;
    }
    100% {
      left: 0;
      right: auto;
      width: 100%;
    }
  }
  @keyframes out {
    0% {
      width: 100%;
      left: auto;
      right: 0;
    }
    100% {
      width: 0;
      left: auto;
      right: 0;
    }
  }
  @media (max-width: 1000px) {
    .header, .header-mobile {
      display: none;
    }
    .header-mobile, .mobile-container {
      display: block;
    }
  }

  
footer {
    width: 100%;
    height: auto;
  }
  
  .footer-info {
    padding: 3rem;
    max-width: 1500px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
  }
  .footer-info hr {
    float: left;
    margin: 0;
  }
  .footer-info h2 {
    letter-spacing: 0.1rem;
    font-weight: 400;
  }
  .footer-info .social-media-links .social-media-imgs {
    width: 100%;
    display: inline-block;
  }
  .footer-info .social-media-links .social-media-imgs img {
    width: 40px;
    height: 40px;
    margin: 1rem;
    margin-left: 0 !important;
  }
  .footer-info .social-media-links .social-media-imgs img:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: 0.3s -webkit-transform ease;
    transition: 0.3s transform ease, 0.3s -webkit-transform ease;
  }
  
  .footer-info .to-left {
    text-align: start;
  }
  .footer-info .to-left hr {
    float: left;
    margin: 0;
  }
  
  .footer-info .center {
    text-align: center;
  }
  .footer-info .center hr {
    float: none;
    margin: auto;
  }
  
  .footer-info .to-right {
    text-align: end;
  }
  .footer-info .to-right hr {
    float: right;
    margin: 0;
  }
  
  .link-item {
    margin: 0;
    padding: 1rem 0 0 0;
    color: #F8F8F8;
  }
  .link-item a {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px transparent;
  }
  .link-item a:hover {
    border-bottom: 1px solid #F8F8F8;
  }
  .link-item:hover {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-transition: 0.3s -webkit-transform ease;
    transition: 0.3s transform ease, 0.3s -webkit-transform ease;
  }
  
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright p {
    padding-bottom: 1.5rem !important;
    margin-bottom: 0;
  }
  .footer-copyright p a {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px transparent;
  }
  .footer-copyright p a:hover {
    border-bottom: 1px solid #F8F8F8;
  }
  
  @media (max-width: 1200px) {
    .footer-info .to-left, .footer-info .center, .footer-info .to-right {
      text-align: center !important;
      padding: 3rem 0 !important;
      box-sizing: border-box;
    }
    .footer-info hr {
      margin: auto !important;
      float: none !important;
    }
    .footer-info h2 {
      margin-top: 2rem;
    }
  }
  