@font-face {
    font-family: Prompt-Regular;
    src: url('../fonts/prompt/Prompt-Regular.ttf'); 
  }
  
  @font-face {
    font-family: Prompt-Medium;
    src: url('../fonts/prompt/Prompt-Medium.ttf'); 
  }
  
  @font-face {
    font-family: Prompt-ExtraBold;
    src: url('../fonts/prompt/Prompt-ExtraBold.ttf'); 
  }
  
  @font-face {
    font-family: Prompt-Bold;
    src: url('../fonts/prompt/Prompt-Bold.ttf'); 
  }
  
  @font-face {
    font-family: Prompt-SemiBold;
    src: url('../fonts/prompt/Prompt-SemiBold.ttf'); 
  }
  
  @font-face {
    font-family: Prompt-Light;
    src: url('../fonts/prompt/Prompt-Light.ttf'); 
  }
  
  @font-face {
    font-family: Prompt-ExtraLight;
    src: url('../fonts/prompt/Prompt-ExtraLight.ttf'); 
 }
  


body {
    margin: 0;
   background-color: #f4f4f4;
   animation: appear 2s ease-out forwards;
   overflow-x: hidden;
   transition: .5s;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

.noBg {
  position:fixed;
	z-index: 50;
		width:100%;
    background-color: none;
}

.yesBg {
  position:fixed;
	z-index: 50;
		width:100%;
    background-color: #0056b3;
}

  .wrapper {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    height: 100vh;
    width: 100%;
    background:#f4f4f4 ;
    /* box-shadow: 0 30px 50px #dbdbdb; */
    overflow-x: hidden !important;
  }

  .wrapper .slide .item{
width: 200px;
height: 300px;
position: absolute;
top: 50%;
transform: translate(0, -50%);
border-radius: 20px;
/* box-shadow: 0 30px 50px #505050; */
background-position: 50% 50%;
background-size: cover;
display: inline-block;
transition: 0.5s;
z-index: 2;
 }

 @media only screen and (max-width:992px) {
  
  .wrapper {
    overflow-x: hidden;
  }
  
  .wrapper .slide .item{
    width: 200px;
    height: 150px;
    position: absolute;
    top: 75%;
    transform: translate(-50%, -50%); 
  }

  .wrapper .slide .item .content .title h1 {
    font-size: 2.8rem !important;
  }

  .wrapper .slide .item .content .des p {
    font-size: 1rem !important;
  }

  .wrapper .slide .item .content {
    transform: translate(0, -50%); 
    width: 70%;
    top: 40%;
  }
  
  .wrapper .slide .office-item{
    background-position-x: 400px;
  }
 }

 @media only screen and (max-width:768px) {
  .wrapper .slide .item .content .title h1 {
    font-size: 2rem !important;
  }

  .wrapper .slide .item .content .des p {
    font-size: .9rem !important;
  }
  
  .wrapper .slide .item .content {
    transform: translate(0, -50%); 
    width: 90%;
    top: 40%;
  }

  .wrapper .slide .office-item{
    background-position-x: 430px;
  }

  .logo img {
    width: 100px !important;
  }

 }

 /* @media only screen and (max-width:596px) {
  .wrapper .slide .item .content .title h1 {
    font-size: 1.3rem !important;
  }

  .wrapper .slide .item .content .des p {
    font-size: .6rem !important;
  }
  
  .wrapper .slide .item .content {
    transform: translate(0, -50%); 
    width: 90%;
    top: 40%;
  }
 } */

 .wrapper .slide .item

 .slide .item:nth-child(1),
 .slide .item:nth-child(2) {
  top:0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.slide .item:nth-child(3) {
  left: 50%;
}

.slide .item:nth-child(4) {
  left: calc(50% + 220px);
}

.slide .item:nth-child(5) {
  left: calc(50% + 440px);
}

.slide .item:nth-child(n + 6) {
  left: calc(50% + 660px);
  opacity: 0;
}

.item .content {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 25%;
  text-align: left;
  color: #fff;
  transform: translate(0, -50%);
  font-family: Prompt-Light;
  display: none;
}

.slide .item:nth-child(2) .content {
  display: block;
}

.content .title {
  text-transform: uppercase;
  font-weight: bold;
  font-family: Helvetica, sans-serif;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.wrapper .slide .item .content .title h1 {
  font-size: 2.3rem;

}

.content .des p {
  font-size: .9rem;
  margin-top: 0.8em;
  margin-bottom: 1em;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
  padding: .8em 1.05em;
  font-size: .8rem;
  font-family: Prompt-Bold;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
  background-color: red !important;
  margin-top: 1em;
}

.button {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 30px;
  z-index: 2;
}

.button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s;
  background-color: #f4f4f4 !important;
  color: #111111;
}

.button button:hover {
  background: #ababab;
  color: #fff;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
filter: blur(33px);
  }

  to {
opacity: 1;
transform: translate(0);
filter: blur(0);
  }
}

  @keyframes appear {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

 
  .hero .title {
  }
  
  .hero .title h1 {
    font-family: 'Helvetica', sans-serif;
    font-size:4rem;
    line-height: 1.2;
    font-weight: 700;
    animation: slide 1.4s ease;
    -webkit-animation: slide 1.4s ease;
    -moz-animation: slide 1.4s ease;
    -o-animation: slide 1.4s ease;
    -moz-animation: slide 1.4s ease;
  }
  
  .hero .title p {
    margin-top: 2em;
    -webkit-animation: slide 2.1s ease;
    -moz-animation: slide 2.1s ease;
    -o-animation: slide 2.1s ease;
    -moz-animation: slide 2.1s ease;
    animation: slide 2.1s ease;
    font-family: Prompt-Light;
    font-size: .9rem;
  }
  
  .hero .title button {
    padding: 1em 1.3em;
    margin-top: 1em;
    border: none;
    background: red;
    font-weight: bold;
    -webkit-animation: slide 2.4s ease;
    -moz-animation: slide 2.4s ease;
    -o-animation: slide 2.4s ease;
    -moz-animation: slide 2.4s ease;
    animation: slide 2.4s ease;
    animation: slide 2.4s ease;
    color: #fff !important;
  }
  
  @keyframes slide {
    0% {
      transform: translateY(250px);
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


.slider-sm {
  width: 100%;
  height: 100vh;
}

.slides-sm {
  width: 500%;
  height: 100vh;
  display: flex;
}

.slides-sm img {
  width: 100%;
  height: 90vh;
  object-fit:cover;
}


  
  #qualities {
    position: relative;
    margin-top: 8em;
    z-index: 10;
    }
  
  .forFlex {
    gap: 20px;
  }
  
  #qualities .container .card .card-top img {
    max-width: 50px;
  }
  
  #qualities .container .card .card-top {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
  }
  
  #qualities .container .card {
    padding: 1em;
    border-radius: 50px;
    border: none;
    background-color: #398fea15;
    margin-bottom: 2em;
  }
  
  
  #qualities .container .card.coffee {
    background-color: #0056b3;
  }
  
  #qualities .container .card.coffee .card-top h5 {
    color: #fff !important;
  }
  
  #qualities .container .card .card-body p {
    font-family: Prompt-Light;
    font-size: .95rem;
  }

  #qualities .container .card.coffee .card-body p {
    color: #fff !important;
  }

  #booking {
    margin-top: 8em;
    position: relative;
    padding-top: 5em;
    padding-bottom: 2em;
    background-color: #56a8ff09;
  }
  
  #booking .container div {
    margin-bottom: 5em;
  }
  
  #booking .container div h2 {
    text-align: center;
    font-size: 2.5rem;
    max-width: 80%;
    margin: auto;
  }
  
  .book {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition:.5s;
    transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    padding: .8em 1.7em;
    margin-top: 1em;
    border: 3px solid red;
    background: transparent;
    font-weight: bold;
    color: #111;
    box-shadow: 2px 3px 3px #aaa;
    transition: .5s;
  }
  
  .book:hover {
    background: red;
    color: #fff;
    }
  
  .story {
    margin-top: 1em;
    font-family: Prompt-Light;
    font-size: .9rem;
}
  
  #booking .container .img-container {
      min-width: 55%;
  }
  
  #booking .container .img-container:hover img {
    transition: 1s;
    scale: 1.1;
    box-shadow:1px 1px 10px #ccc ;   
  }
  
  #booking .container .img-container img {
      width: 98%;
      margin: auto;
      object-fit: cover;
      border-radius: 30px; 
  }

  .reverse {
    flex-direction: row-reverse;
  }


 #internet {
    margin-top: 8em;
  }
  
  #internet .internetSpeed .inner
  {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background-color:#0056b3;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* padding-top: 1em; */
  }
  
  #internet .internetSpeed .inner h1,
  #internet .affiliates .inner h1 {
    font-size: 8rem;
    font-family: Prompt-Bold;
  }
  
  /* #internet .affiliates h1 {
    font-size: 15rem;
  } */
  
  #internet .internetSpeed h1,
  #internet .internetSpeed p {
    color: #fff ;
  }
  
  #internet .affiliates .inner {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background-color:red;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  }
  
  #internet .affiliates h1,
  #internet .affiliates p {
    color: #fff;
  
  }
  
  .mbps {
    margin-top: .2em;
  }

  footer {
    /* background-color:#001b38; */
    background: url('../img/workstation-4.jpg') no-repeat;
    background-position-y: -50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 8em;
    padding-top: 5em;
    min-height: 50vh;
    position: relative;
  }

  footer:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0,0,0,.8);
  }

  footer .container-fluid {
    position: relative;
    z-index: 2;
  }
  
  .logo {
    margin-bottom: 2em;
  }
  
  .logo img {
    width: 120px;
  }
  
  .about, .follow, .contact {
    margin-bottom: 3em;
  }
  
  .about h3, 
  .about p
   {
    color: #fff;
  }

  .follow {
    margin-top: 2em;
  }
  
  .footer-story {
    font-family: Prompt-ExtraLight;
    font-size: 1.1rem;
  }

  .follow .icons img {
    width: 20px;
  }
  
  .follow h3,
  .contact h3 {
    color: #fff;
  }
  
  .contact div a {
    text-decoration: none;
    color: #fff;
  }
  
  .copyright {
  font-size: .8rem;
  margin-top: 3em;
  text-align: center;
  position: relative;
  z-index: 2;
  }

  @media only screen and (max-width:760px) {
    .hero .title h1 {
        width: 100%;
        font-family: 'Helvetica', sans-serif;
        font-size:3.2rem;
    }

    .hero .title p {
        margin-top: 2em;
        width: 90%;
        font-size: .8rem;
    }

    .hero .title button {
        padding: .8em 1.1em;
    }
    
  }