/**************************/
/*     General Styles     */
/**************************/
:root {
  --primary: #1c262f;
  --primary-light: #212d37;
  --pink: #fc45c9;
  --secondary: #9172ea;
  --tertiary: #2c9dfc;
  --white: #fff;
  --gradient: linear-gradient(
    90deg,
    rgba(252, 69, 201, 1) 0%,
    rgba(158, 109, 224, 1) 50%,
    rgba(44, 157, 252, 1) 100%
  );
}

html {
  scroll-padding-top: 90px; /* height of sticky header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka One", cursive;
}

h1 {
  font-size: 60px;
  font-weight: 500;
}

button {
  font-family: sans-serif;
}

p,
ul,
h4 {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
}

a {
  color: var(--pink);
  text-decoration: none;
}

a:hover {
  color: var(--tertiary);
}

li {
  list-style-type: none;
}

/* Section Background */
.home,
.about,
.services,
.plans,
.work,
.contact {
  position: relative;
}

.back {
  height: 90vh;
}

.services,
.work,
.testimonial,
.footer {
  background-color: var(--primary);
}

.contact {
  background-color: #ffffff;
margin-bottom:88px;
}

.cirle-gradient {
  width: 100%;
  height: 96%;
  background-image: url(../assets/images/circle-gradient.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 110px;
  right: 72px;
}

.box-icon {
  cursor: pointer;
}

section.information {
  background: var(--gradient);
}

.text-box {
  color: #fff;
  text-decoration: none;
}

.text-box:hover {
  color: #fff;
  text-decoration: none;
}

.text-center {
  font-size: 14px;
}

.about {
  background-color: #f2f2f2;
}

.company {
  background-color: #4b4a48;
}

.bottom {
  background-color: black;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
  cursor: pointer;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/**********************/
/*     Navigation     */
/**********************/
.navbar {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 0.875rem;
  background-color: var(--primary);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar .logo-image img {
  width: 20%;
}

.navbar .logo-text {
  color: #fff;
  font-weight: 500;
  line-height: 1rem;
  font-size: 1.575rem;
  text-decoration: none;
}

/****************/
/*     Home     */
/****************/
.home {
  background-image: url(../assets/images/Hero-3.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

.para {
  width: 50%;
}

.para-light {
  opacity: 0.7;
  display: flex;
  align-items: stretch;
  height: 80px;
}

.copy {
  font-size: 24px;
}

/******************/
/*     Button     */
/******************/
.btn {
  color: var(--secondary);
  border-radius: 32px;
  border-width: 2px;
  padding: 10px 30px;
  border-image-slice: 1;
  background-image: none;
  background: #fff;
  box-shadow: 5px 5px 0px 0px var(--tertiary);
  border: 4px solid var(--pink);
  position: relative;
}

.btn:hover {
  color: var(--secondary);
  box-shadow: none;
  border-radius: 0;
  padding: 10px 30px;
  transform: translate(5px, 5px);
  border-radius: 32px;
}

.btn-secondary:hover {
  color: black;
  padding: 10px 30px;
  background-image: var(--gradient);
}

.information-button {
  color: #fff;
}

.information-button:hover {
  color: #fff;
}

/********************/
/*     Services     */
/********************/
.services .card {
  padding: 20px;
  border-radius: 0;
  border: 2px solid white;
}

.services .card:hover {
  border: 10px solid;
  transform: scale(1.01);
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px #0ee951;
}

.modulo-items {
  margin-top: 40px;
}

.items-li {
  padding: 8px 0;
}

/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
  z-index: 99;
  left: 20px;
  width: 52px;
  height: 52px;
  bottom: 20px;
  border: none;
  outline: none;
  display: none;
  position: fixed;
  cursor: pointer;
  border-radius: 50%;
  background-color: #323137;
}

#myBtn:hover {
  background-color: #0f0f11;
}

#myBtn img {
  width: 18px;
  margin-left: 0.125rem;
  margin-bottom: 0.25rem;
}

.text-dark {
  color: black;
}

/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {
  .services,
  .work,
  .testimonial,
  .about,
  .contact,
  .plans {
    height: 100%;
  }
}

@media (min-width: 992px) {
  .slider-1 .swiper-container {
    width: 92%;
  }

  .slider-1 .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .slider-1 .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  /* Navigation */
  .navbar {
    box-shadow: none;
    transition: all 0.2s;
    padding-top: 1.75rem;
    background-color: transparent;
  }

  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #1d1d1dc4;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .navbar .dropdown-menu {
    padding-top: 0.75rem;
    padding-bottom: 0.875rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
  }

  .navbar .dropdown-divider {
    width: 90%;
  }

  .navbar .social-icons {
    margin-left: 0.5rem;
  }

  .navbar .fa-stack {
    margin-right: 0;
    margin-left: 0.25rem;
  }
}

@media only screen and (max-width: 768px) {
  .home {
    background-image: url(../assets/images/Hero-3.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    -webkit-background-size: cover;
  }
}

@media only screen and (max-width: 540px) {
  h1 {
    font-size: 30px;
  }

  .para {
    width: 100%;
  }

  .swiper-container {
    width: 92%;
  }

  .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .cirle-gradient {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background-image: url(../assets/images/circle-gradient.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 22px;
    right: 185px;
  }

  .navbar .logo-image img {
    width: 28%;
    padding-left: 24px;
  }

  .home {
    width: 100%;
    height: 80vh;
    background-image: url(../assets/images/Hero-3.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    -webkit-background-size: cover;
  }

  section.s-scroll {
    width: 100vw;
    height: auto;
  }

  .container.text-light.py-5.aos-init.aos-animate {
    margin-top: 90px;
  }
  .copy {
    font-size: 18px;
  }
  .footer-social {
    display: inline-flex;
    align-items: center;
  }
  .fab {
    padding: 0 4px;
  }
  .hidden {
    display: none !important;
  }
}

/* Whatsapp icon */

.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 72px;
  right: 16px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}

.whatsapp:hover {
  background-color: #189a48;
  color: #fff;
}

.whatsapp-icon {
  margin-top: 13px;
}

/* Form */

.principal {
  display: block;
  margin: 0 auto;
  width: 510px;
  color: #666666;
  font-family: Arial;
}

input,
textarea {
  width: 320px;
  background: #666666;
  border: 2px solid #f6f6f6;
  padding: 10px;
  margin-top: 5px;
  font-size: 10px;
  color: #ffffff;
}

textarea {
  height: 150px;
}

#submit {
  width: 85px;
  height: 35px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}

.contact-form {
  position: relative;
  z-index: 10;
  height: 350px;
}

button.btn.btn-white.mt-md-5.mt-4.mr-sm-2 {
  margin-top: 0px !important;
}

:target:before {
  content: "";
  display: block;
  height: 90px; /* fixed header height*/
  margin: -90px 0 0; /* negative fixed header height */
}

.arrow-information{
  margin-top: 32px;
  transition: transform 0.3s ease-in-out;
}

.arrow-information:hover {
  transform: translateY(-5px);
}