:root {
  --swiper-pagination-bullet-width: 40px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-color: #ddae04;
}

.swiper {
  padding-bottom: 20px !important;
}

.swiper-pagination-bullet {
  border-radius: 7.5px !important;
}


section.intro {
  background-color: #f5f5f5;
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section.intro .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 99%;
  height: 99%;
  background-color: #2a2828;
  border-radius: 30px;
}

section.intro .logo {
  width: 700px;
  z-index: 2;
}

section.intro #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

section.intro .subtitle span {
  color: #ddae04;
}

section.intro .btn-contact {
  position: absolute;
  bottom: 20px;
  background-color: #f5f5f5;
  padding: 7.5px 50px;
  color: #2a2828;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 900;
}

.form-control.is-invalid {
  border: 1px solid #dc3545;
}

section.intro .btn-scroll {
  display: block;
  position: absolute;
  background-color: transparent;
  /* border: 1px solid #f5f5f5; */
  color: #f5f5f5;
  bottom: 40px;
  width: 65px;
  height: 65px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  animation: float 6s ease-in-out infinite;
  border-radius: 50%;
}

section.about-us {
  background-color: #f5f5f5;
  padding: 120px 0;
}

section.about-us .title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #ddae04;
  padding-left: 15px;
}

section.partners {
  background-color: #f5f5f5;
  padding: 80px 0;
  overflow-x: hidden;
}

section.partners .title {
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #ddae04;
  padding-left: 15px;
}

section.partners .companies {

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap !important;
  flex-shrink: 0 !important;
  margin-top: 30px;
  width: 100%;
}

section.partners .companies .item {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  /* border: 1px solid rgba(155, 155, 155, 0.2); */
}

section.partners .companies .item img {
  min-width: 150px;
}

section.partners .companies .swiper-slide {
  max-width: 300px;
}

section.holding {
  background-color: #2a2828;
  padding: 80px 0;
}

section.holding .title {
  font-weight: 900;
  color: #f5f5f5;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #ddae04;
  padding-left: 15px;
}

section.holding .companies-container {
  /* display: flex;
  flex-direction: row;
  padding-bottom: 20px;
  justify-content: space-between;
  flex-wrap: wrap; */
}

section.holding .companies-container .item {
  position: relative;
  width: 23%;
  overflow: hidden;
  min-width: 300px;
  max-width: 400px;
  flex-shrink: 0;
  user-select: none;
  margin: 20px 10px;
  text-align: center;
}

section.holding .companies-container .item .img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12.5px;
}

section.holding .companies-container .item h5.name {
  color: #f5f5f5;
  text-transform: uppercase;
  font-size: 26px;
  margin: 20px 0;
  font-weight: 900;
}

section.holding .companies-container .item p.desc {
  color: #f5f5f5;
  margin-top: 15px;
}

section.holding .companies-container .item img.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all ease 0.75s;

}

section.holding .companies-container .item .btn-next {
  background-color: #d4af37;
  color: #2a2828;
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translateX(10px);
  opacity: 0;
  transition: all ease 0.75s;
}

section.holding .companies-container .item:hover>.img-wrapper img.overlay {
  opacity: 0;
  transform: scale(1.1);
}

section.holding .companies-container .item:hover>.img-wrapper .btn-next {
  opacity: 1;
  transform: translateX(0px);
}

section.holding .company {
  background-color: #f5f5f5;
  width: 90%;
  margin: 10px auto;
  -webkit-box-shadow: -5px 8px 34px -11px rgba(156, 156, 156, 0.92);
  box-shadow: -5px 8px 34px -11px rgba(156, 156, 156, 0.92);
  padding: 20px;
  padding-bottom: 10px;
  cursor: pointer;
  border-radius: 2.5px;
}

section.holding .company img.logo {
  /* width: 70%; */
}

section.holding .company .name {
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  margin: 10px 0;
  color: #2a2828;
}

section.holding .company .arrow-down {
  font-size: 28px;
  text-align: center;
  color: #2a2828;
  transition: all ease 0.5s;
}

section.holding .company .desc {
  font-size: 14px;
  display: none;
  text-align: justify;
}

section.holding .company .desc .more {
  margin-top: 10px;
  color: #f5f5f5;
  background-color: #2a2828;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  padding: 5px 20px;
  text-align: center;
}

section.team {
  background-color: #2a2828;
  padding: 80px 0;
}

section.team .title {
  font-weight: 900;
  color: #f5f5f5;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 40px;
  border-left: 4px solid #ddae04;
  padding-left: 15px;
}

section.team .member {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}

section.team .col-member {
  /* max-width: 20%; */
}



section.team .member .photo {
  width: 100%;
  /* height: 400px; */
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  object-fit: cover;
  transition: all ease 0.5s;
  border-radius: 15px;
}

section.team .member:hover>.photo {
  -webkit-filter: grayscale(20%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(20%);
}

section.team .member .name {
  color: #f5f5f5;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
}

section.team .member .role {
  color: #ccc;
  font-style: italic;
  margin-bottom: 0px;
  text-align: center;
}

section.team .member .link {
  color: #d4af37;
  font-weight: 500;
  text-decoration: none;
  font-size: 20px;
  margin: 0 2.5px;
}

section.team .row-team {
  justify-content: center;
}

section.contact {
  background-color: #f5f5f5;
  padding: 80px 0;
}

section.contact .title {
  font-weight: 900;
  color: #2a2828;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 40px;
  border-left: 4px solid #ddae04;
  padding-left: 15px;
}

section.contact form input,
section.contact form textarea {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 11px 10px 17px -5px rgb(0 0 0 / 19%);
  -moz-box-shadow: 11px 10px 17px -5px rgba(0, 0, 0, 0.19);
  box-shadow: 11px 10px 17px -5px rgb(0 0 0 / 19%);
  border: none;
  border-radius: 0;
  padding: 30px 12.5px;
  font-size: 18px;
}

section.contact form textarea {
  padding: 10px 12.5px;
}

section.contact form input:focus {
  outline: #ddae04 !important;
}

section.contact form label {
  font-size: 14px;
  margin-bottom: 2.5px;
}

section.contact form .btn-send {
  background-color: #2a2828;
  padding: 10px 80px;
  color: #f5f5f5;
  border-radius: 40px;
}

section.contact form .btn-send.loading {
  background-color: rgb(98 98 98);
  cursor: wait;
}

section.contact .company {
  font-weight: 900;
  font-size: 18px;
  color: #2a2828;
  margin-top: 20px;
}

section.contact .address {
  font-size: 18px;
  color: #2a2828;
}

section.contact .email {
  text-decoration: none;
  color: #d4af37;
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  section.intro .title {
    font-size: 28px;
  }

  section.intro .subtitle {
    color: #f5f5f5;
    font-size: 15px;
    letter-spacing: 9px;
    font-weight: 700;
  }

  section.intro {
    height: 60vh;
    min-height: 400px;
  }

  section.intro .btn-contact {
    padding: 5px 50px;

    border-radius: 20px;
    font-size: 14px;
    font-weight: 900;
  }

  section.about-us .title {
    font-size: 30px;
  }

  section.holding .title {
    font-size: 30px;
  }

  section.partners .title {
    font-size: 30px;
  }

  section.team .title {
    font-size: 30px;
  }

  section.contact .title {
    font-size: 30px;
  }

  section.holding .company {
    width: 80%;
  }

  section.partners .companies .item {
    max-width: 50%;
  }

  section.holding .companies-container .item {
    /* width: 40%; */
    width: 80%;
    /* margin: 10px; */
    margin: 10px auto;
    min-width: 150px;
  }

  section.holding .companies-container .item h5.name {
    font-size: 20px;
  }

  section.holding .companies-container .item p.desc {
    font-size: 14px;
  }

  section.holding .companies-container .item img.info {
    border: 1px solid;
  }

  section.holding .companies-container .item .btn-next {
    opacity: 1;
    font-size: 17px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  section.team .row {
    justify-content: center;
  }

  section.team .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-15px);
  }

  100% {
    transform: translatey(0px);
  }
}

/* Loader */

.lds-ring {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
  right: calc(50% - 26px);
  top: calc(50% - 21px);
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#partners .swiper-wrapper {
  align-items: center;
}

#partners .swiper-wrapper img {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}