/* Reset */
* {
  box-sizing: border-box;
}

html {
  margin: 0.5rem 1.5rem;
}

/* Typography */
h1,
h2,
h4,
h5,
h6 {
  font-family: "Open Sans";
  font-family: "Roboto";
  font-weight: 800;
  line-height: normal;
  color: black;
  text-shadow: 2px 2px 4px grey;
}

h3{
  color: black;
  text-shadow: 2px 2px 4px grey;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

p {
  font-family: "Open Sans";
  font-weight: 300;
  line-height: normal;
}

a:link,
a:visited {
  font-family: "Open Sans";
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

li {
  font-size: inherit;
}

/* grid */
.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

.col-1 {
  width: 8.33%;
}
.col-2 {
  width: 16.66%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 32.33%;
}
.col-5 {
  width: 41.66%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33%;
}
.col-8 {
  width: 66.66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.66%;
}
.col-12 {
  width: 100%;
}

/*  special */
.col-sp1 {
  width: 16.74729799%;
}
.col-sp2 {
  width: 23.58208955%;
}
.col-sp3 {
  width: 18.51775605%;
}
.col-sp4 {
  width: 24.95110654%;
}
.col-sp5 {
  width: 16.20174987%;
}

.col-sp1b {
  width: 44.4345701%;
}
.col-sp2b {
  width: 28.94171666%;
}
.col-sp3b {
  width: 26.62371325%;
}

.col-sp10 {
  width: 50.71060244%;
}
.col-sp20 {
  width: 20%;
}
.col-sp30 {
  width: 29.20387373%;
}

.row {
  max-width: 1800px;
  margin: 0 auto;
}

.btn-1 {
  height: auto;
  padding: 1rem 3rem;
  background-color: rgb(71, 90, 170);
  border-radius: 7%;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.btn-1:hover {
  background-color: rgb(99, 126, 236);
}

.btn-2 {
  height: auto;
  padding: 0.7rem 2.5rem;
  background-color: rgba(240, 240, 240, 0);
  border: solid 5px rgba(71, 90, 170, 1);
  border-radius: 7%;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.btn-2:hover {
  background-color: rgb(71, 90, 170);
  border-color: rgb(71, 90, 170);
  color: #fff;
}

.btn-carousel {
  height: auto;
  padding: 0.7rem 2.5rem;
  border: solid 5px rgb(93, 120, 230);
  border-radius: 7%;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.25);
}

.btn-carousel:hover {
  background-color: rgb(93, 120, 230);
  border-color: rgb(93, 120, 230);
  color: #fff;
}

.active {
  background-color: rgb(99, 126, 236);
  border-color: rgb(99, 126, 236);
  color: #fff;
}

/* Night Vision Button */
.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 27px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: rgb(93, 120, 230);
}

input:focus + .slider {
  box-shadow: 0 0 1px rgb(93, 120, 230);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* JS Color Toogle */
.dark {
  background-color: rgb(36, 51, 112);
  color: #fff;
}

#background .dark i {
  color: #fff;
}

.dark2 {
  background-color: rgb(146, 172, 255);
  color: #fff;
}

.pink {
  background-color: #ffd4e4;
}
.pink h1,
.pink h2,
.pink h3,
.pink h4,
.pink h5 {
  color: #000;
}

.pink a i,
#background .pink i {
  color: #000;
}

.pink2 {
  background-color: #ffe3e3;
}

/* ----------------------------------------------------------- Index  -----------------------------------------------------------*/
/* Logo & Navbar */

#header {
  padding: 1rem 3rem;
}

#header .logo {
  display: flex;
  width: 100%;
}

#header .logo img {
  height: 3rem;
  margin-top: 0.5rem;
}

#header .logo h3 {
  padding-left: 2rem;
}

#header .burger-menu {
  display: none;
}

#header .navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

#header .navbar li {
  display: block;
  padding-left: 1rem;
}

#header .navbar li a {
  color: rgb(255, 255, 255);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.45);
  text-decoration: underline;
  font-family: "Open Sans";
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

/* Section a */
.section-a {
  height: 750px;
}

.section-a .heading {
  display: block;
  max-height: 700px;
  margin: 18rem 3rem;
}

.section-a h1 {
  width: 100%;
  margin: 0;
}

.section-a .btn-1 {
  margin-right: 1rem;
}

.pink .section-a .btn-2 {
  color: #000;
}

.pink .section-a .btn-2:hover {
  color: #fff;
}

.section-a .heading a {
  text-decoration: none;
  color: #fff;
}

.section-a .col-6:nth-child(2) {
  padding: 0;
}

.section-a .img-container {
  height: 750px;
}

.section-a .row .col-6:first-child {
  padding-right: 0;
}

.section-a .img-container img {
  width: 100%;
  position: relative;
  top: 100px;
}

/* Section B */
.section-b {
  height: 800px;
  background-color: rgb(255, 255, 255);
}

.section-b .carousel {
  text-align: center;
  padding-top: 3rem;
}

.section-b .carousel .row-2,
.section-b .carousel .row-3 {
  display: none;
}

.section-b .carousel h1 {
  color: #000;
}

.section-b .carousel .carousel-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 3rem;
}

.section-b .carousel .carousel-btn .btn1,
.section-b .carousel .carousel-btn .btn2,
.section-b .carousel .carousel-btn .btn3 {
  margin-right: 0.5rem;
  cursor: pointer;
}

.section-b .carousel .carousel-btn h3 {
  padding: 0;
  margin: 0;
  color: #000;
}

.section-b .carousel .btn-carousel:hover h3 {
  color: #fff;
}

.section-b .carousel .carousel-btn .active h3 {
  color: #fff;
}

.section-b h2 {
  margin: 1rem auto;
  color: rgb(0, 0, 0);
}

.section-b .row-1 h3 {
  color: #000;
}

.section-b h3 {
  margin: 1rem auto;
}

.section-b .icons .row {
  display: flex;
  flex-direction: row;
  width: 20rem;
}

.section-b .icons .row .small-box {
  display: block;
  padding: 0;
  margin: 0 auto;
  height: 100px;
  width: 90px;
  border-radius: 10%;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.45);
}

.section-b .icons img {
  display: block;
  width: 40%;
  padding-top: 1rem;
  margin: 0 auto;
}

.section-b .icons h4 {
  color: #000;
  text-align: center;
}

.section-b .index-gallery .row {
  width: 400px;
}

.section-b .index-gallery .col-6 {
  padding: 0;
  margin: 0 auto;
}

.section-b .index-gallery img {
  min-height: 100px;
  height: 200px;
  width: 200px;
  border-radius: 50px;
}

/* Row 2 */
.section-b .row-2 img {
  width: 300px;
  height: 200px;
  border-radius: 50px;
}

.section-b .row-2 h3 {
  margin: 1.4rem;
  color: #000;
}

/* Row 3 */
.section-b .row-3 .single-picture img {
  width: 600px;
  height: 400px;
  border-radius: 50px;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.45);
}

.section-b .row-3 h3 {
  color: #000;
}

/* Section C */
.section-c {
  height: 800px;
}

.section-c .join {
  padding: 17rem 0;
  margin: 0 5rem;
  width: 100%;
}

.section-c .join h1 {
  line-height: 0.5;
}

.section-c span {
  color: rgb(82, 106, 202);
}

.section-c form {
  display: block;
  background-color: #ffe3e3;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.45);
  height: 27rem;
  width: 25rem;
  border-radius: 10%;
  margin: 10rem auto;
}

.section-c .input {
  padding-top: 3rem;
  margin-left: 4rem;
}

.section-c input {
  border: none;
  width: 80%;
  height: 8%;
  border-radius: 50px;
  font-size: 10px;
  font-family: "Open Sans";
  font-weight: 600;
  padding: 0 1.4rem;
}

.section-c button {
  border-radius: 50px;
  display: block;
  margin: 2rem auto;
  width: 150px;
  padding: 1rem;
  font-family: sans-serif;
  font-weight: 700;
  color: #fff;
}

.section-c h4 {
  line-height: 0;
  color: #000;
}

/* Section D */
.section-d {
  background-color: #fff;
  height: 1200px;
  padding: 10rem 0;
}

.section-d .row .imgbreak {
  background-image: url("/img/diego-jaramillo-bJlZg69x5lg-unsplash.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  height: 100%;
  width: 100%;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.55);
}

.section-d .btns {
  margin-top: 50rem;
  margin-left: 0rem;
  width: 30rem;
}

.section-d .btns a:nth-child(1) {
  margin: 2rem;
}

/* ------------------------------------- About ------------------------ */
/* About a */
.about-a {
  height: 750px;
}

.about-a .row {
  text-align: center;
  margin: -2rem auto;
}

.about-a .text {
  display: block;
  padding-top: 10rem;
  width: 30rem;
  margin: 0 auto;
}

/* About B */
.about-b {
  background-color: #fff;
  text-align: center;
  padding: 6rem 0;
  height: 800px;
}

.about-b h2 {
  color: #000;
}

.about-b .row {
  width: 56rem;
}

.about-b .box {
  height: 13rem;
  width: 10rem;
  border-radius: 50px;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.45);
}

.about-b .box i {
  padding-top: 3.5rem;
  color: #000;
}

.about-b .pink,
.about-b .pink h3 {
  color: #000;
}

.about-b .row {
  display: block;
  margin: 0 auto;
}

.about-b .col-3 {
  padding: 2rem;
  width: auto;
}

/* About C  */
.about-c {
  height: 800px;
}

.about-c h2 {
  text-align: center;
  padding-top: 5rem;
  margin: 0;
}

.about-c .customer-1,
.about-c .customer-2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.about-c .customer-1 img,
.about-c .customer-2 img {
  width: 12rem;
  border-radius: 50%;
  border: 5px #fff solid;
  margin-top: 3rem;
}

.about-c .customer-1 h3,
.about-c .customer-2 h3 {
  width: 55rem;
  margin: auto 2rem;
}

.about-c .customer-1 h4,
.about-c .customer-2 h4 {
  margin-top: 11.5rem;
  text-decoration: underline;
}

#background hr {
  width: 100%;
  border: 2px solid #000;
}

/* ----------------------------------- Pricing ------------------------- */
/* Pricing a */
.pricing-a {
  height: 600px;
  margin-top: -3rem;
}

.pricing-a h1 {
  padding: 10rem 0 0 0;
  text-align: center;
}

.pricing-a h3 {
  text-align: center;
  width: 30rem;
  margin: 0 auto;
}

/* Pricing b */
.pricing-b {
  height: auto;
  padding: 5rem 0rem;
  background-color: #fff;
}

.pricing-b .row {
  margin: 0 auto;
}

.pricing-b .card {
  height: 40rem;
  width: 19rem;
  border-radius: 55px;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.45);
  margin: auto;
}

.pricing-b .col-4 {
  padding: 0;
}

.pricing-b h2 {
  padding: 4rem 0 0 1rem;
  text-align: center;
}

.pricing-b ul {
  text-align: center;
  list-style: none;
  padding: 0;
  height: 5rem;
}

.pricing-b h3 {
  text-align: center;
  display: block;
  padding: 0.7rem;
  width: auto;
}

.pricing-b .price {
  margin-top: 14rem;
}

.pricing-b span {
  font-size: 5rem;
}

/* Hover effect */

/* ----------------------------------- Gallery ------------------------- */
/* Gallery a */
.gallery-a {
  height: 100%;
}

.gallery-a .bg-video {
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0.9;
  object-fit: cover;
}

.gallery-a .text-container {
  position: relative;
  color: #f1f1f1;
  width: 90%;
  background-color: #ffd4e477;
  transform: skew(-10deg);
}

.gallery-a h1 {
  text-align: center;
  margin-top: -40rem;
}

.gallery-a h3 {
  text-align: center;
  width: 35rem;
  margin: 0 auto;
}

/* Gallery b */
.gallery-b {
  background-color: #fff;
  padding: 8rem 0;
}

.gallery-b .row {
  margin: 0 auto;
  max-width: 1555px;
}

.gallery-b .row [class*="col-"] {
  padding: 1rem;
}

.gallery-b img {
  width: 100%;
  transition: ease all 0.5s;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.45);
}

.gallery-b img:hover {
  transform: scale(1.1);
  z-index: 1;
}

/* ----------------------------------- Contact ------------------------ */
/* contact A */
.contact-a {
  height: 600px;
  margin-top: -2.8rem;
  text-align: center;
}

.contact-a .text-container {
  width: 40rem;
  margin: 0 auto;
}

.contact-a .text-container h1 {
  padding: 10rem 0 0 0;
  line-height: 1;
}

.contact-a .text-container h2 {
  padding: 3rem 0 0 0;
}

/* Contact B */
.contact-b {
  background-color: #fff;
  text-align: center;
}

.contact-b .input {
  display: block;
  box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.45);
  height: 40rem;
  width: 500px;
  border-radius: 10%;
  margin: 10rem auto;
  padding-top: 2rem;
}

.contact-b input {
  border: none;
  width: 80%;
  height: 8%;
  border-radius: 50px;
  font-size: 24px;
  font-family: "Open Sans";
  font-weight: 600;
  padding: 0 1.4rem;
  border: 1px rgba(248, 164, 195, 1) solid;
}

.contact-b #message {
  height: 30%;
}

.contact-b button {
  border-radius: 50px;
  margin: 2rem auto;
  width: 300px;
  padding: 1rem;
  font-family: sans-serif;
  font-weight: 700;
  color: #fff;
}

.contact-b h4 {
  line-height: 0;
  color: #000;
}

/* FOOTER */

footer {
  height: 18rem;
  text-align: center;
}

footer ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 1rem;
}

footer ul li {
  color: #000;
  list-style: none;
}

footer ul li a {
  display: flex;
  padding-left: 1rem;
  color: #fff;
}

footer ul li a h3 {
  padding-left: 0.5rem;
}

footer ul li img {
  width: 50px;
  height: 50px;
}

footer hr {
  width: 80%;
  border: 2px solid #fff;
}
