@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-style: "Roboto", sans-serif;
}

.container {
  margin: 0px auto;
  padding: 0;
}

.navbar {
  width: auto;
  height: 110px;
  background-color: #a8a8a8 !important;
}

.fixed-top {
  max-width: 1200px;
  margin: 10px auto;
  border-radius: 0 0 0 0;
  box-shadow: darkgreen;
}

.navbarTogglerDemo03 {
}

.navbar li a,
.navbar .navbar-brand {
  color: #000 !important;
}

/* .navbar-nav li a:hover {
  color: black !important;
  border: #fff;
   background-color: rgb(161, 208, 223) !important; 
  transition: 0.8s;
}  */

.navbar-default .navbar-toggle {
  border-color: transparent;
  color: #fff !important;
}

.nava-link {
  color: cornsilk !important;
  font-size: 0.9125em;
  transition: all 0.3s linear;
  border-bottom: 3px solid transparent;
}
.nava-link:hover {
  border-bottom: 3px solid #f7ce3e;
  text-decoration: none;
}
.nav-item {
  padding: 0 0.5em;
}

.sosial {
  margin-left: 2rem;
}

.navbar-brand img {
  width: auto;
  height: 30px;
  /* border-radius: 5px; */
}

/* video */

#myVideo {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay {
  height: 100vh;
}
.navbar-collapse {
  margin-left: auto;
  flex-grow: 0 !important;
}
@media only screen and (max-width: 992px) {
  .overlay {
    height: 60vh;
    margin-top: 130px;
  }
  .navbar-collapse {
    flex-grow: 0 !important;
    background-color: #f7f7f79f;
  }
}

.info {
  text-align: center;
  padding-right: 10px;
  margin-left: 10px;
}

.top-social-wrapper {
  width: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about {
  width: auto;
  min-height: 100vh;
}

#about h1 {
  text-align: center;
  padding-top: 140px;
  font-style: "Roboto", sans-serif;
}

#about img {
  margin-top: 150px;
  width: 100%;
  height: 50vh;
  border-radius: 3px;
}

.card {
  border: none;
  box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.1);
}

.card-text {
  color: #000;
}

.card-title {
  padding-top: 70px;
  text-align: center;
}

/* #services */

#services {
  background-color: #c5c1c0;
  width: auto;
  min-height: 700px;
  /* background-image: linear-gradient(to right, rgba(21, 96, 201, 0.8),rgba(88, 128, 202, 0.8) ); */
}

#services h1 {
  padding-top: 150px;
  font-family: arial;
  font-weight: 500;
}

#services img {
  width: 100%;
  max-height: 400px;
  border-radius: 3px;
  box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.4);
}
#services a {
  color: #0a1612 !important;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  #services a {
    font-size: 0.75em;
    margin-left: 10px;
  }
  .tab-pane-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* partnyor */
#partner {
  width: auto;
  min-height: 200px;
  background-color: #1a2930;
}
#partner h1 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  text-align: center;
  color: #fff;
}

.swiper-slide .title h5,
.swiper-slide .title p {
  color: #fff;
}
/* #partner img {
  z-index: -1;
  width: 100%;
  height: 600px;
  /* height: auto; 
  object-fit: cover;
} */
/* #partner img {  
  padding: 3rem 1rem;
  width: 100%;
  height: auto;
  transition: 0.5s;
  cursor: pointer;
} */
/* 
#partner img:hover {
  transform: scale(1.1);
  transition: 0.5s;
  box-shadow: 0 5px 0 0 #2a312d;
} */
/* footer */

#footer {
  width: auto;
  min-height: 300px;
  background-color: #0a1612;
}
#footer h4,
p {
  color: #fff;
}
#footer .col-sm-3 {
  margin-top: 20px;
}

.item-circle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-circle img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.top-social-wrapper-footer {
  width: 10%;
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
}
.middle {
  margin-left: 10px;
  text-align: center;
  /* transform: translateY(-50%); */
}
.btn {
  display: inline-block;
  /* width: 40px;
    height: 30px; */
  background: #000000;

  border-radius: 30%;
  box-shadow: 0 5px 15 -5px #ffffff70;
  color: #f7c73e;
  overflow: hidden;
  position: relative;
}
.btn i {
  line-height: 20px;
  font-size: 20px;
  transition: 0.2s linear;
}
.btn:hover i {
  transform: scale(1.3);
  color: #f1f1f1;
}
.btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #f7c73e;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
.btn:hover::before {
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}
@keyframes aaa {
  0% {
    top: -110%;
    left: 90%;
  }
  50% {
    top: -10%;
    left: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}
#copy {
  width: auto;
  height: 50px;
  background-color: #000;
}
.right {
  text-align: center;
  padding-top: 15px;
  line-height: 0em;
}

.active {
  background-color: #f7c73e !important ;
  border-radius: 3px;
}
.carousel-control-next,
.carousel-control-prev {
  top: 50%;
  transform: translateY(-70%);
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.45);
  bottom: 2px;
  left: 20%;
  right: 20%;
  border-radius: 15px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #000;
}

.swiper-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.swiper-slide {
  background: transparent;
}

.swiper-slide .title {
  position: absolute;
  bottom: 10%;
  background: rgba(0, 0, 0, 0.45);
  left: 20%;
  right: 20%;
  border-radius: 15px;
}
#partner .swiper-slide img {
  height: 80%;
  min-width: 60vw;
}
