* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-white: #FEFEFE;
  --color-pure-white: #FFFFFF;
  --color-dark-red: #641020;
  --color-red: #C11529;
  --color-blue: #344B72;
  --color-black: #070C14;
  --color-light-gray: #EDEDEE;
    --color-gray: #D4D4D4;
    --color-text: #121212;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed header height */
}

body {
    font-family: var(--font-albert-sans, 'Albert Sans', sans-serif), sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-pure-white);
  color: var(--color-black);
}

a {
  color: inherit;
  text-decoration: none;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (min-width: 1500px) {
    .container {
        min-width: 85%;
        margin: auto;
    }
}

/* Typography */

h1 {
  font-size: 64px;
  line-height: 120%;
  font-weight: 500;
  margin: 0;
}

h2 {
  font-size: 48px;
  line-height: 120%;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-size: 64px;
  line-height: 120%;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-size: 36px;
  line-height: 120%;
  font-weight: 600;
  margin: 0;
}

h3{
    font-size: 24px;
    line-height: 120%;
    font-weight: 700;
}

.sub-header {
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  margin: 0;
}

.sub-title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  margin: 0;
}

p, .body {
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  margin: 0;
}

button, .button {
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  cursor: pointer;
}

ul{
    padding-left: unset;
    margin-bottom: unset;
    li{
        list-style: none;
    }
}

.pt-100{
    padding-top: 100px;
    @media(max-width: 767px){
        padding-top: 80px;
    }
}

.pb-100{
    padding-bottom: 100px;
    @media(max-width: 767px){
        padding-bottom: 80px;
    }
}

.pt-140{
    padding-top: 140px;
    @media(max-width: 767px){
        padding-top: 80px;
    }
}

.pb-140{
    padding-bottom: 140px;
    @media(max-width: 767px){
        padding-bottom: 80px;
    }
}

.pt-120{
    padding-top: 120px;
    @media(max-width: 767px){
        padding-top: 80px;
    }
}

.pb-120{
    padding-bottom: 120px;
    @media(max-width: 767px){
        padding-bottom: 80px;
    }
}

.pb-40{
    padding-bottom: 40px;
    @media(max-width: 767px){
        padding-bottom: 30px;
    }
}

.pt-40{
    padding-top: 40px;
    @media(max-width: 767px){
        padding-top: 30px;
    }
}

#smooth-content {
    will-change: transform;
}


.scroll-down .main-menu {
    transform: translate3d(0, -100%, 0);
}
.scroll-up .main-menu {
    transform: translate3d(0, 0, 0);
}

.main-menu{
    transition: all 0.5s ease-in-out;
}

.no-scroll{
    overflow: hidden;
}

form {

    .form-control {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        background-color: transparent !important;
        padding: 0 0 15px 0;
        margin-bottom: 40px;
        outline: none;
        color: #ffffff !important;
        box-shadow: none;
        border-radius: 0;
        &::placeholder {
            color: rgba(255, 255, 255, 0.5) !important;
        }

        &:focus {
            border-color: rgba(255, 255, 255, 0.5);
            outline: none;
            box-shadow: none;
        }
    }

    textarea {
        min-height: 80px;
        max-height: 80px;
        background-color: transparent;
        min-width: 100%;;
        max-width:100%;
        border-radius: 0;
        border:none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: none;
        outline:none;
        color: #fff;
        &::placeholder{
            color: rgba(255, 255, 255, 0.5) !important;
        }
        &:focus {
            border-color: #FFF;
        }
    }
    .form-col{
        display: flex ;
        width: 100%;
        justify-content: space-between;
        .from-group{
            width: calc(50% - 20px);
            margin-bottom: 0 !important;
        }
    }
}


/*team popup*/
  .team-modal {
      background-color: #25292C;
      height: 100vh;
      z-index: 999999999;
      overflow: hidden !important;
      width: 45%;
      right: 0;
      left: auto;
      padding: 0px 70px 30px 70px !important;

      .team-modal__close {
          height: 37px;
          width: 37px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          background-color: transparent;
          border: 1px solid #ffffff;
          border-radius: 50%;
          position: absolute;
          right: -10px;
          top: -60px;
          transition: .3s ease;

          &:hover {
              background-color: var(--color-red);
          }
      }

      .modal-dialog {
          height: 100vh;
          background-color: transparent;
          min-width: 100%;
          margin: 0;
      }

      .modal-body {
          height: 100vh;
      }

      .modal-content {
          background-color: transparent;
          margin: 100px 0;
      /*overflow: scroll;*/
      /*height: calc(100vh - 120px);*/
          border: none;

          .team-modal__content {
              h4 {
                  color: #f5f5f5;
                  font-size: 20px;
                  font-weight: 600;
                  margin-top: 24px;
              /*border-top: 1px solid rgba(245, 245, 245, 0.2);*/
                  margin-bottom: 5px;
              }

              .img-wrapper{
                  position: relative;
                  height: 350px;
                  width: 270px;
                  img{
                      position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                  }
              }

              h5 {
                  color: rgba(245, 245, 245, 0.5);
                  font-size: 16px;
                  margin-bottom: 20px;
              }

              .social-media{
                  display: flex;
                  gap: 10px;
                  align-items: center;
                  span{
                      color: rgba(245, 245, 245, 0.5);
                  }
              }


              p {
                  color: #f5f5f5;
                  margin-bottom: 20px;
                  margin-top: 20px;
              }

              ul {
                  display: flex;
                  margin-top: 20px;
                  margin-bottom: 20px;

                  li {
                      &:not(:nth-last-child(1)) {
                          margin-right: 20px;
                      }

                      a {
                          transition: opacity .5s ease;

                          &:hover {
                          /*// rect {*/
                          /*//   fill: ${text}*/
                          /*// }*/
                          /*//*/
                          /*// path {*/
                          /*//   fill: ${White}*/
                          /*// }*/
                              opacity: .7;
                          }
                      }

                  }
              }
          }
      }

      @media (max-width: 767px) {
          width: 100%;
          padding: 0 20px 10px 20px !important;
          .close-button {
              right: 20px;
              position: fixed;
          }

          .modal-content {
          /*//padding-top: 80px;*/

              .container {
              /*//height: calc(100vh - 100px);*/
              /*//overflow: scroll;*/

                  h3 {
                      margin-top: 30px;
                      font-size: 28px;
                      line-height: 35px;
                  }
              }
          }

      /*//overflow: scroll !important;*/

      }
  }


.simplebar-scrollbar {
    background: transparent;
}

.simplebar-scrollbar::before {
    background: var(--color-red, #C11529) !important;
    border-radius: 10px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.simplebar-scrollbar:hover::before {
    opacity: 0;
}

.simplebar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.simplebar-track.simplebar-vertical {
    width: 10px;
}

.Toastify__toast-container {
    z-index: 99999999;
}
