html {
  scroll-behavior: smooth;
}
* {
  font-family: "Titillium Web", sans-serif !important;
  padding: 0px;
  margin: 0px;
}
*::selection {
  background-color: #21b3d8;
  color: #fff;
}
.loader-container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  display: none;
  z-index: 1000;
}
.loader {
  width: 300px;
  min-height: 200px;
  background-color: #fff;
  margin: auto;
  margin-top: 100px;
}
.loader img {
  max-width: 100px;
}
.back-to-top {
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  padding: 5px;
  text-align: center;
  background-color: #00ccff;
  color: #fff;
  cursor: pointer;
  display: none;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0cf;
  border-radius: 10rem;
  z-index: -2;
}
.btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #666;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
}
.btn:hover:before {
  width: 100%;
}

/* Header*/
.login-bar {
  padding-right: 100px !important;
}
.login-bar .button {
  margin: auto 10px;
  background-color: #ddd;
  color: #666;
}
.login-bar .button:hover {
  background-color: #ccc;
}
.login-bar span {
  color: #666;
  margin: auto 20px;
  position: relative;
  top: 8px;
}
.nav-bar {
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  margin-bottom: 0;
  padding-right: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  transition: 0.3s;
}

.nav-bar li {
  display: inline-block;
  font-size: 1.2rem;
  margin: 10px 10px;
}
.nav-bar li a {
  color: #666;
  padding: 10px;
  transition: 0.2s;
  border-radius: 5px;
}
.nav-bar li a:hover {
  color: #666;
  background-color: rgb(230, 230, 230);
}
.nav-bar .login a {
  background-color: #ddd;
}

/*
.nav-bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: -72%;
  top: -6px;
  transform: skewX(-40deg);
} */
.logo {
  max-width: 80px;
  position: absolute;
  z-index: 1;
  left: 200px;
  top: 25px;
}
/* The typing effect */
@keyframes typing {
  0% {
    width: 0;
  }
  20% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #ccc;
  }
}
.main-text {
  padding-top: 100px;
  padding-right: 20px;
}
.main-text h1 {
  max-width: fit-content;
  display: inline-block;
  font-size: 5rem;
  font-weight: bold;
  color: #444;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.12em solid #00ccff; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: typing 6.5s steps(40, end) infinite,
    blink-caret 0.75s step-end infinite;
}
.main-text p {
  font-size: 1.8rem;
  color: #666;
}

/* About Us*/
.about {
  min-height: 700px;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-top: 100px;
  background-color: #ccc;
  overflow: hidden;
}
.about video {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100% !important;
  height: 100% !important;

  z-index: 1;
  object-fit: cover;
}
.about .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  background-color: #000;
  z-index: 2;
  opacity: 0.7;
}
.about h1 {
  font-weight: bold;
  border-bottom: 5px solid #00ccff;
  display: inline-block;
}
.about h1,
.about p {
  position: relative;
  z-index: 5;
  color: #fff;
  margin: 10px auto;
}
.about p {
  font-size: 1.2rem;
}
.about img {
  position: relative;
  z-index: 5;
  cursor: pointer;
  max-width: 500px;
  margin: 20px auto;
}
/* Services*/
.services {
  min-height: 600px;
  background-color: #f7f7f7;
}
.services .swing img {
  max-width: 300px;
  margin: auto;
  /* animation: swing ease-in-out 1s infinite alternate; */
  position: relative;
  top: -5px;
  margin-bottom: 100px;
}
@keyframes swing {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
.services .s {
  max-width: 300px;
  text-align: center;
  color: #666;
  margin: auto;
}
.services .s h3 {
  color: #333;
  font-weight: bold;
}
.services .s img {
  max-width: 250px;
  transition: 0.2s;
}
.services .s img:hover {
  transform: scale(1.2);
}
/* Why Ship With Us? */
.why {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 30px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.why h1 {
  display: inline-block;
  border-bottom: 3px solid #00ccff;
  color: #666;
  position: relative;
  z-index: 5;
  margin: 30px auto 120px auto;
}
.why .gif {
  border-radius: 5px;
  -webkit-box-shadow: 3px 0px 56px -7px rgba(189, 189, 189, 1);
  -moz-box-shadow: 3px 0px 56px -7px rgba(189, 189, 189, 1);
  box-shadow: 3px 0px 56px -7px rgba(189, 189, 189, 1);
}
.why li {
  list-style: none;
  color: #666;
}
.why li:before {
  content: "- ";
  text-indent: -5px;
}
/* FAQ*/
.faq {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 30px;
  min-height: 600px;
  background-color: #333;
  position: relative;
  overflow: hidden;
}

.faq h1 {
  display: inline-block;
  border-bottom: 3px solid #00ccff;
  color: #fff;
  position: relative;
  z-index: 5;
}
.acord {
  position: relative;
  margin-top: 50px;
  z-index: 2;
  -webkit-box-shadow: 3px 0px 56px -7px rgba(189, 189, 189, 1);
  -moz-box-shadow: 3px 0px 56px -7px rgba(189, 189, 189, 1);
  box-shadow: 3px 0px 56px -7px rgba(189, 189, 189, 1);
}
.acord .item {
  list-style: none;
  text-align: left;
  background-color: #fff;
}
.acord .title {
  width: 100%;
  min-height: 30px;
  background-color: #00ccff;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #444;
  transition: 0.3s;
}
.acord .title:hover {
  padding-left: 30px;
}
.acord .title::after {
  content: "\002B";
  position: absolute;
  right: 10px;
  top: -5px;
  font-size: 30px;
}
.acord .content {
  padding: 10px;
  color: #666;
  display: none;
  background-color: #f7f7f7;
}

/* Gallery */
.gallery {
  padding: 100px 0;
}
.gallery h1 {
  display: inline-block;
  border-bottom: 3px solid #00ccff;
  margin-bottom: 50px;
}
.gallery img {
  width: 100%;
  cursor: pointer;
  transition: 0.9s;
}
.gallery img:hover {
  transform: scale(1.1);
}
.gallery .large-3 {
  overflow: hidden;
}
/**/
.online {
  margin-top: 100px;
  margin-bottom: 100px;
  color: #666;
}
.online h1 {
  display: inline-block;
  border-bottom: 3px solid #00ccff;
  margin-bottom: 40px;
}
.online img {
  box-shadow: 3px 0px 10px #ccc;
  border-radius: 5px;
}
/* Footer */
footer {
  padding-top: 50px;
  padding-bottom: 100px;
  min-height: 200px;
  background-color: #f7f7f7;
  color: #666;
}
footer li {
  list-style: none;
}
footer a {
  color: #666;
}
footer h4 {
  color: #333;
}
/* Contact Us*/
.contact {
  min-height: 500px;
  padding-top: 50px;
  padding-bottom: 100px;
}
.contact p {
  margin: 0;
}
.contact h3 {
  font-weight: bold;
  font-size: 22px;
}
.contact h1 {
  display: inline-block;
  border-bottom: 3px solid #00ccff;
  margin-bottom: 50px;
}
.contact form {
  background-color: #f7f7f7;
  padding: 20px;
  box-shadow: 3px 0px 10px #ccc;
}
#nav-toggle {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 20px;
  display: none;
}
#nav-toggle div {
  width: 30px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
}
.toggled-nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  margin: 0px;
  padding: 0px !important;
  transition: 0.3s;
}
.toggled-nav ul {
  width: 90%;
  position: relative;
  z-index: 1001;
  display: block !important;
  top: 100px;
}
.toggled-nav li {
  display: block;
  margin: 0px;
  text-align: left;
}
.toggled-nav a {
  display: block;
  width: 100%;
}
.toggled-nav .login a {
  background-color: #fff;
}
.scroll-lock {
  margin: 0;
  height: 100%;
  overflow: hidden;
}
/* Responsive  */
@media only screen and (max-width: 1700px) {
  .nav-bar a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1500px) {
  .nav-bar a {
    font-size: 0.9rem;
  }
  .logo {
    left: 50px;
  }
  .main-text {
    padding: 20px;
  }
  .main-text h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1250px) {
  .nav-bar {
    min-height: 60px;
  }
  .nav-bar ul {
    display: none;
  }
  #nav-toggle {
    display: inline-block;
  }
  .about img {
    max-width: 90%;
  }
  .modal-content {
    width: 99% !important;
  }
}

.video-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2001;
  display: none;
}
.video-modal iframe {
  display: block;
  margin: auto;
  max-width: 100%;
  margin-top: 100px;
}
.video-modal .close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
}
.video-modal .close:hover {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #ddd;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.callout {
  display: none;
}

/* Areas*/

.toronto {
  background-image: url("/images/toronto.jpg");
  min-height: 300px;
  background-size: 100% 100%;
}
.vancouver {
  background-image: url("/images/vancouver.jpg");
  min-height: 300px;
  background-size: 100% 100%;
}
.montreal {
  background-image: url("/images/montreal.jpg");
  min-height: 300px;
  background-size: 100% 100%;
}
.area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.areas h1 {
  color: #fff;
  text-align: center;
  font-weight: bold;
  z-index: 3;
  cursor: pointer;
  transition: 0.3s;
}
.areas h1:hover {
  transform: scale(1.3);
}
.area .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 2;
}
