:root {
  --primary-color: #ff6519;
  --light-color: #f2f2e9;
  --white: #fff;
  --black: #000529;
  --primary-font: "Mulish", sans-serif;
  --secondary-font: "DM Serif Display", serif;
  --custom-ease: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  --shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  --gradient-color: linear-gradient(90deg, rgb(5 17 124) 0%, rgb(17 84 180) 100%);
}

.eliminar {
  list-style-type: none;
  padding: 2px;
  /* Elimina el estilo de la lista */
}

.eliminar li {
  padding: 4px;
  /* Elimina el estilo de la lista */
}


/* =================animate css starts here================= */

.animate-child>* {
  -webkit-transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 0;
  will-change: transform, opacity;
}

.animate-child.trigger>* {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.animate-child.trigger>:nth-child(2),
.animate-child.trigger>.delay2 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.animate-child.trigger>:nth-child(3),
.animate-child.trigger>.delay3 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.animate-child.trigger>:nth-child(4),
.animate-child.trigger>.delay4 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.animate-child.trigger>:nth-child(5),
.animate-child.trigger>.delay5 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.animate-child.trigger>:nth-child(6),
.animate-child.trigger>.delay6 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.animate-child.trigger>:nth-child(7),
.animate-child.trigger>.delay7 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.animate-child.trigger>:nth-child(8),
.animate-child.trigger>.delay8 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.animate-child.trigger>:nth-child(9),
.animate-child.trigger>.delay9 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.animate-child.trigger>:nth-child(10),
.animate-child.trigger>.delay10 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.animate-child.trigger>:nth-child(11),
.animate-child.trigger>.delay11 {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.animate-child.trigger>:nth-child(12),
.animate-child.trigger>.delay12 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.animate-child.trigger>:nth-child(13),
.animate-child.trigger>.delay13 {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

.animate-child.trigger>:nth-child(14),
.animate-child.trigger>.delay14 {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.animate-child.trigger>:nth-child(15),
.animate-child.trigger>.delay15 {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.animate-child.trigger>:nth-child(16),
.animate-child.trigger>.delay16 {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.animate-child.trigger>:nth-child(17),
.animate-child.trigger>.delay17 {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

.animate-child.trigger>:nth-child(18),
.animate-child.trigger>.delay18 {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.animate-child.trigger>:nth-child(19),
.animate-child.trigger>.delay19 {
  -webkit-transition-delay: 1.9s;
  transition-delay: 1.9s;
}

.animate-child.trigger>:nth-child(20),
.animate-child.trigger>.delay20 {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}


/* =================animate css ends here================= */


/* =================reset css starts here=================  */

* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
body,
html,
form,
fieldset {
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
}

a {
  text-decoration: none;
  border: 0;
  outline: 0;
}

ul {
  list-style: none;
}

a:focus,
input:focus,
textarea:focus,
*:focus {
  outline: 0!important;
}


/* =================reset css ends here================= */


/* =================core css starts here================= */

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--primary-font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

#section-wrapper {
  width: 100%;
  padding: 10px;
}

#box-wrapper {
  position: relative;
  display: table;
  width: 1100px;
  margin: auto;
  margin-top: 35px;
  border-radius: 30px;
}

.info-wrap {
  width: 90%;
  height: 450px;
  padding: 40px;
  float: right;
  display: block;
  border-radius: 30px 30px 30px 30px;
  background: linear-gradient(144deg, rgba(126, 39, 156, 1)0%, rgba(49, 39, 157, 1)25%);
  color: #fff;
}

.info-title {
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.5px;
}

.info-sub-title {
  font-size: 30px;
  text-align: center;
  font-weight: 300;
  margin-top: 17px;
  letter-spacing: 0.5px;
  line-height: 26px;
}

.info-details {
  list-style: none;
  margin: 60px 0px;
}

.info-details li {
  margin-top: 25px;
  font-size: 18px;
  color: #fff;
}

.info-details li i {
  background-color: #F44770;
  padding: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

.info-details li a {
  color: #fff;
  text-decoration: none;
}

.info-details li a:hover {
  color: #F44770;
}

.social-icons {
  list-style: none;
  text-align: center;
  margin: 20px 0px;
}

.social-icons li {
  display: inline-block;
}

.social-icons li i {
  display: inline-block;
  background-color: #F44770;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  border-radius: 22%;
  margin: 0px 5px;
  cursor: pointer;
}

.social-icons li i:hover {
  background: #fff;
  color: #000;
}

.form-wrap {
  width: 65%;
  float: right;
  padding: 40px 25px 35px 25px;
  border-radius: 0px 30px 30px 0px;
  background: white;
}

.form-title {
  text-align: left;
  margin-left: 23px;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.form-fields {
  display: table;
  width: 100%;
  padding: 15px 5px 5px 5px 5px;
}

.form-fields input,
.form-fields textarea {
  border: none;
  outline: none;
  background: none;
  font-size: 18px;
  color: #555;
  padding: 20px 10px 20px 5px;
  width: 100%;
}

.form-fields textarea {
  height: 150px;
  resize: none;
}

.form-group {
  width: 46%;
  float: left;
  padding: 0px 20px;
  margin: 14px 12px;
  border-radius: 25px;
  box-shadow: inset 8px 8px 8px #cbc3d1, inset -8px -8px 8px #ffffff;
}

.form-fields .form-group:last-child {
  width: 96%;
}

@media only screen and (max-width: 767px) {
  .box-wrapper {
      width: 100%;
  }
  .info-wrap,
  .form-wrap {
      width: 100%;
      height: inherit;
      float: none;
  }
  .info-wrap {
      border-radius: 30px 30px 0px 0px;
  }
  .form-wrap {
      border-radius: 0px 0px 30px 30px;
  }
  .form-group {
      width: 100%;
      float: none;
      margin: 25px 0px;
  }
  .form-fields .form-group:last-child,
  .submit-button {
      width: 100%;
  }
  .submit-button {
      margin: 10px 0px;
  }
}

@media only screen and (max-width: 1062px) {
  .box-wrapper {
      width: 100%;
  }
  .info-wrap,
  .form-wrap {
      width: 100%;
      height: inherit;
      float: none;
  }
  .info-wrap {
      border-radius: 30px 30px 0px 0px;
  }
  .form-wrap {
      border-radius: 0px 0px 30px 30px;
  }
  .form-group {
      width: 100%;
      float: none;
      margin: 25px 0px;
  }
  .form-fields .form-group:last-child,
  .submit-button {
      width: 100%;
  }
  .submit-button {
      margin: 10px 0px;
  }
}

#services-section {
  background: #f1f1f1;
  padding: 20px 0px;
  min-height: 90vh;
  background-image: url("https://res.cloudinary.com/jerrick/image/upload/v1627943514/6108725ad9e5c6001f1338aa.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.contener-boton {
  background-color: #2e6329;
  border: 1px solid #fff;
  position: fixed;
  z-index: 999;
  border-radius: 50%;
  bottom: 20px;
  right: 25px;
  padding: 25px;
  transition: ease 0.3s;
  animation: efecto 1.2s infinite;
}

.contener-boton:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.boton {
  width: 50px;
  transition: ease 1s;
}

@keyframes efecto {
  0% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
  }
  100% {
      box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

.section-title {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
}

.section-title span {
  color: red;
}

.service-wrap {
  position: relative;
  background: white;
  overflow: hidden;
  padding: 67px 40px 64px;
  margin: 10px 5px;
  z-index: 1;
  cursor: pointer;
}

.service-wrap::after {
  content: "";
  position: absolute;
  background: red;
  width: 100%;
  height: 100%;
  left: 0;
  top: -100%;
  z-index: -1;
  transition: all 0.35s;
}

.service-wrap:hover::after {
  top: 0px;
}

.service-wrap i {
  position: relative;
  background: red;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: white;
  font-size: 60px;
  line-height: 100px;
  margin-bottom: 30px;
  z-index: 1;
  transition: all 0.35s;
}

.service-wrap i::after {
  content: "";
  position: absolute;
  border: 2px solid red;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  left: -10px;
  top: -10px;
  transition: all 0.35s;
}

.service-wrap i,
.service-wrap h4,
.service-wrap p {
  transition: all 0.35s;
}

.service-wrap:hover i,
.service-wrap:hover h4,
.service-wrap:hover p {
  color: white;
}

.service-wrap:hover i::after {
  border-color: white;
}

.service-wrap:hover i {
  background-color: white;
  color: red;
}

.service-wrap p {
  margin: 0px;
}

body,
input,
textarea a {
  font-family: 'Roboto', sans-serif;
}

.container {
  width: calc(100% - 36px);
  max-width: 1224px;
}

.submit-button {
  width: 96%;
  height: 60px;
  margin: 0px 12px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  outline: none;
  border: none;
  cursor: pointer;
  color: #fff;
  text-align: center;
  background: #F44770;
  box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
  transition: .5s;
}

.submit-button:hover {
  background: #31279d;
}

a,
input,
button {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

a img {
  border: 0px none;
}

a:hover {
  outline: none;
  color: var(--primary-color);
  text-decoration: none;
}

a:active {
  outline: none;
  text-decoration: none;
}

a:focus {
  outline: none;
  outline-offset: 0px;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 20;
  border: 0;
  height: auto;
}

.parallax-img img {
  width: 100%;
  height: 100%!important;
  object-fit: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 900;
  font-weight: 1000;
  color: inherit;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.375rem;
}

p {
  margin: 0px;
  padding: 0px;
  margin-bottom: 1.5rem;
}

strong {
  font-weight: 900;
}

b {
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

.btn {
  border-radius: 30px;
  font-weight: 1000;
  padding: 15px 50px;
  min-width: 140px;
  font-size: 1.125rem;
  line-height: 20px;
  z-index: 1;
  border: 0;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  background: transparent!important;
  position: relative;
  flex-shrink: 0;
}

.btn:before {
  content: "";
  width: 100%;
  height: 100%;
  transition: var(--custom-ease);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--primary-color);
  border-radius: 50px;
}

.btn:after {
  content: "";
  width: 100%;
  height: 80%;
  transition: var(--custom-ease);
  position: absolute;
  left: 0;
  top: 30%;
  z-index: -2;
  background: var(--primary-color);
  border-radius: 50px;
  filter: blur(10px);
  opacity: 0.7;
}

.btn:hover {
  padding-left: 25px;
  padding-right: 75px;
}

.btn:hover:after {
  filter: blur(0px);
  top: 0;
  height: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--white);
}

.btn.btn-primary:before,
.btn.btn-primary:after {
  background: var(--primary-color);
}

.btn.btn-secondary:before,
.btn.btn-secondary:after {
  background: var(--gradient-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--white);
}

.btn.btn-light:before {
  background: var(--light-color);
}

.btn.btn-light:after {
  background: var(--black);
  opacity: 0.2;
}

.btn.btn-light .btn-arrow {
  filter: brightness(0);
}

.btn-light:hover,
.btn-light:focus {
  color: var(--black);
}

.btn.btn-dark:before,
.btn.btn-dark:after {
  background: var(--black);
}

.btn-dark:hover,
.btn-dark:focus {
  color: var(--white);
}

.btn-arrow {
  display: inline-block;
  transition: var(--custom-ease);
  width: 40px;
  height: 40px;
  background: url(../images/white-arrow.svg) no-repeat center/50% auto;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
  transform: rotate(0) scale(0);
}

.btn:hover .btn-arrow {
  transform: rotate(0) scale(1);
}

.btn.down-arrow .btn-arrow {
  transform: rotate(90deg) scale(0);
}

.btn.up-arrow .btn-arrow {
  transform: rotate(-90deg) scale(0);
}

.btn.left-arrow .btn-arrow {
  transform: rotate(-180deg) scale(0);
  right: auto;
  left: 5px;
}

.btn.right-arrow .btn-arrow {
  transform: rotate(0deg) scale(0);
}

.btn.down-arrow:hover .btn-arrow {
  transform: rotate(90deg) scale(1);
}

.btn.up-arrow:hover .btn-arrow {
  transform: rotate(-90deg) scale(1);
}

.btn.left-arrow:hover .btn-arrow {
  transform: rotate(-180deg) scale(1);
}

.btn.right-arrow:hover .btn-arrow {
  transform: rotate(0deg) scale(1);
}

.btn.left-arrow:hover {
  padding-right: 25px;
  padding-left: 75px;
}

.btn.btn-block {
  min-width: 100%;
}

.link {
  font-weight: 1000;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 25px;
  padding: 0;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.link:hover {
  color: var(--primary-color);
  text-decoration: none!important;
}

.link .link-arrow {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 20px;
  height: 20px;
  background: url(../images/color-arrow.svg) no-repeat center right/100% auto;
  vertical-align: middle;
  margin-left: 15px;
  flex-shrink: 0;
  position: relative;
}

.link:hover .link-arrow,
.link-inside:hover .link-arrow {
  margin-left: 10px;
}

.btn+.btn,
.btn+.link,
.link+.btn {
  margin-left: 25px;
}

.primary-bg {
  background: var(--primary-color);
  color: var(--white);
}

.light-bg {
  background: var(--light-color);
  color: var(--black);
}

.gradient-bg {
  background: var(--gradient-color);
  color: var(--white);
}

.gradient-text {
  background: var(--gradient-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.outline {
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
}

.outline-shadow {
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
  text-shadow: 4px 4px 0 rgba(255, 101, 25, 0.08);
}

hr {
  border-top-color: var(--black);
  margin: 80px 0;
  opacity: 0.15;
}

.text-white {
  color: var(--white);
}

.text-black {
  color: var(--black);
}

ul:not([class]) {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}

ul:not([class])>li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 18px;
}

ul:not([class])>li:last-child {
  margin-bottom: 0;
}

ul:not([class])>li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 9px;
  background: var(--black);
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

ol:not([class]) {
  margin-bottom: 24px;
  text-align: left;
  list-style-position: outside;
  margin-left: 18px;
  padding: 0;
}

ol:not([class])>li {
  position: relative;
  margin-bottom: 18px;
}

ol:not([class])>li:last-child {
  margin-bottom: 0;
}

#smooth-wrapper {
  overflow-x: hidden!important;
}

.view-all-cta {
  margin-top: 100px;
  position: relative;
  z-index: 9;
}


/* =================core css ends here================= */


/* ================= Header Start ================= */

#header {
  color: var(--black);
  background: transparent;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding: 0;
  z-index: 9999;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  align-items: center;
}

.fixed #header {
  background: var(--white);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0;
  width: 100%;
  height: 100px;
}

.navbar-brand {
  width: 100px;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 999;
}

.navbar-brand img {
  width: 200px;
}

.navbar-brand,
.logo img {
  width: 300px;
}

.navbar-expand-xl .navbar-nav .nav-item {
  margin: 0 30px;
}

.navbar-expand-xl .navbar-nav .nav-link {
  font-size: 0.875rem;
  line-height: 100px;
  font-weight: 1000;
  color: inherit;
  padding: 0;
  margin: 0;
  position: relative;
  text-transform: uppercase;
}

.navbar-expand-xl .navbar-nav .nav-item:hover .nav-link,
.navbar-expand-xl .navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
}

.dropdown-toggle::after {
  display: none;
}

.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
  display: none;
}

.nav-inside {
  width: 100%;
  padding: 0;
}

.nav-inside-content {
  padding: 30px 0;
}

@media only screen and (min-width:1200px) {
  .navbar-nav>li>.dropdown-menu {
      display: block!important;
      top: 100%!important;
      left: -15px;
      margin-top: 10px!important;
      opacity: 0;
      visibility: hidden;
      background: var(--white);
      color: var(--black);
      min-width: 200px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
      border: 0;
      border-radius: 5px;
      transition: all 0.1s ease-in;
      -moz-transition: all 0.1s ease-in;
      -webkit-transition: all 0.1s ease-in;
  }
  .fixed .navbar-nav>li>.dropdown-menu {
      border-radius: 0 0 5px 5px;
  }
  .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      margin-top: 0px!important;
      transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
      -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
      -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .dropdown-item {
      color: var(--black);
      padding: 10px 15px;
      font-weight: 800;
      font-size: 0.875rem;
  }
  .dropdown-item:focus,
  .dropdown-item:hover {
      color: var(--primary-color);
      background: transparent;
  }
  .navbar-expand-xl .navbar-nav .nav-link:after {
      content: "";
      position: absolute;
      left: 50%;
      right: 0;
      top: 50%;
      margin-top: 15px;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      border-radius: 30px;
      transform: translateX(-50%);
      transition: 0.3s;
  }
  .navbar-expand-xl .navbar-nav .nav-item:hover .nav-link:after,
  .navbar-expand-xl .navbar-nav .nav-item.active .nav-link:after {
      width: 100%;
  }
  .dropdown-toggle {
      display: none;
  }
  .dropdown-item:focus,
  .dropdown-item:hover,
  .dropdown-item.active {
      color: var(--primary-color);
      background: transparent;
  }
}

.nav-item .dropdown-toggle {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 26px;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
}

.nav-item .dropdown-toggle:before {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.nav-item .dropdown-toggle.show:before {
  content: "\f068";
}


/* ================= Header End ================= */


/* ================= Footer Start ================= */

#footer {
  position: relative;
  background: var(--gradient-color);
  color: #fff;
}

.footer-upper {
  padding: 100px 0;
}

.footer-content h4 {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.quick-contact+.quick-contact {
  margin-top: 50px;
}

.quick-contact-box {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 1000;
}

.quick-contact-box+.quick-contact-box {
  margin-top: 10px;
}

.social-links {
  font-size: 1.5rem;
  line-height: 1;
}

.social-links li {
  margin-right: 20px;
}

.social-links li a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  font-size: 0.875rem;
  line-height: 1.2;
}

.footer-bottom-upper {
  padding: 20px 0;
}

.footer-bottom-lower {
  padding: 20px 0;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

.footer-logo {
  width: 80px;
}

.footer-logo img {
  width: 100%;
}


/* ============================= Home Page Start ============================ */


/* ============================= Common Sections Start ============================ */

.content-container {
  padding: 200px 0;

}

.diagonal {
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
  -webkit-clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
}


/* Marquee Text start */

.text-marquee {
  width: 100vw;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  transform: rotate(-3deg);
  opacity: 0.2;
}

.text-marquee-wrapper {
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  will-change: transform;
}

.text {
  padding: 0;
  font-size: 3rem;
  display: inline-block;
  margin-right: 5vw;
  font-weight: 1000;
  -webkit-text-stroke: 1px var(--black);
}

.text-marquee.top {
  top: -30px;
}

.text-marquee.bottom {
  bottom: 30px;
}


/* Marquee Text end */


/* Heading start */

.heading {
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.heading-large {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
}

.heading h2 {
  font-size: 8rem;
  line-height: 0.9;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: -1;
  opacity: 0.05;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.heading h3 {
  font-size: 4rem;
  line-height: 1;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.heading h3:before {
  content: "";
  width: 80px;
  height: 6px;
  background: var(--gradient-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.sub-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 10px;
}


/* Heading start */


/* Inner Hero start */

.inner-hero-container {
  padding: 140px 0 0;
  position: relative;
}

.inner-hero-container .container {
  position: relative;
  z-index: 9;
}

.inner-hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  transform: rotate(180deg);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
}

.inner-hero-text {
  position: relative;
  z-index: 9;
  width: 100%;
  margin-top: px;
  padding-bottom: 5dvb;
}

.inner-hero-text h1 {
  font-size: 4.5rem;
  color: var(--primary-color);
}

.inner-hero-text h6 {
  font-size: 1.25rem;
}

.inner-hero-box {
  width: 100%;
  position: relative;
}

.inner-hero-image {
  width: 100%;
}

.inner-hero-image img {
  width: 100%;
}

.inner-hero-container .text-marquee {
  z-index: 2;
}

.default-hero .inner-hero-text {
  padding: 50px 0 200px;
}


/* Inner Hero end */


/* pagination start */

.pagination-container {
  position: relative;
  margin-top: 100px;
}

.pagination {
  margin: 0px auto;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.pagination .page-item {
  padding: 0 10px;
  position: relative;
}

.pagination .page-link {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 800;
  color: var(--black);
  text-decoration: none!important;
  border: 0;
  padding: 0 10px;
  opacity: 0.7;
}

.pagination .disabled .page-link {
  opacity: 0.1;
}

.pagination .page-link.current,
.pagination .page-link:hover {
  color: var(--black);
  font-weight: 1000;
  opacity: 1;
  background: var(--gradient-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* pagination end */


/* ============================= Common Sections End ============================ */


/* ============================= Home Page End ============================ */

.hero-container {
  padding: 150px 0 100px;
  position: relative;
}

.hero-container .container {
  position: relative;
  z-index: 9;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  transform: rotate(180deg);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
}

.hero-text {
  position: relative;
  z-index: 9;
  padding-bottom: 20px;
  width: 100%;
}

.hero-text h1 {
  font-size: 4.5rem;
  color: var(--primary-color);
}

.hero-text h2 {
  font-size: 1.5rem;
}

.hero-text h6 {
  font-size: 1.25rem;
}

.hero-availability {
  width: 34%;
  position: absolute;
  top: 0;
  right: -9%;
  z-index: -1;
  animation-duration: 40s!important;
}

.hero-box {
  width: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
}

.hero-info-list {
  margin-top: 50px;
}

.hero-info-item:not(:last-child) {
  padding-right: 40px;
}

.hero-info-box h3 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0;
}

.hero-info-box h6 {
  margin-left: 15px;
  padding-left: 15px;
  margin-bottom: 0;
  border-left: solid 1px var(--primary-color);
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.7;
}

.bg-shape {
  position: absolute;
  width: 110%;
  left: 10%;
  top: -8%;
  z-index: -1;
  overflow: hidden;
}

.bg-shape svg {
  width: 100%;
  fill: #c5c4d7;
}

.bg-shape.fa-spin {
  animation-duration: 50s!important;
}

.hero-container .text-marquee {
  z-index: 2;
}

.project-list-item {
  width: 100%;
  margin-bottom: 50px;
}

.project-list-item+.project-list-item {
  margin-top: 200px;
}

.project-box {
  position: relative;
  width: 100%;
}

.project-box-left {
  width: 50%;
  position: relative;
}

.project-img {
  width: 100%;
  height: 0;
  padding-bottom: 110%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  margin-left: 0;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.project-title {
  width: 100%;
  position: absolute;
  top: -55px;
  left: 100%;
  margin-left: -80px;
  z-index: -1;
  padding-right: 20%;
}

.project-title h4 {
  font-size: 3rem;
}

.project-img .project-title {
  z-index: 9;
}

.project-img .project-title h4 {
  color: #fff;
}

.project-details {
  position: absolute;
  bottom: -40px;
  width: 400px;
  left: -40px;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 100%;
}

.project-details-list {
  font-size: 0.8rem;
  font-weight: 700;
}

.project-details-item+.project-details-item {
  margin-top: 15px;
}

.project-details-left {
  width: 117px;
  text-transform: uppercase;
  font-weight: 800;
}

.project-details-right {
  width: calc(100% - 117px);
  padding-left: 10px;
  opacity: 0.5;
}

.project-box-right {
  width: 50%;
  position: relative;
  padding-left: 15%;
}

.project-list-item:nth-child(even) .project-box {
  flex-direction: row-reverse;
}

.project-list-item:nth-child(even) .project-box-right {
  padding-left: 0;
  padding-right: 15%;
}

.project-list-item:nth-child(even) .project-details {
  right: -40px;
  left: auto;
}

.project-list-item:nth-child(even) .project-title {
  right: 100%;
  left: auto;
  margin-left: 0;
  margin-right: -80px;
  padding-left: 20%;
  padding-right: 0;
}

.project-list-item:nth-child(even) .project-title h4 {
  text-align: right;
}

.service-list-outer {
  margin-left: -20px;
  width: calc(100% + 20px);
}

.service-list-wrapper {
  width: 33.333%;
  padding: 0 0 0 20px;
}

.service-item {
  width: 100%;
}

.service-item+.service-item {
  margin-top: 20px;
}

.service-box {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-box h4 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.service-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
}

.service-box-content {
  font-size: 0.75rem;
  min-height: 56px;
  display: flex;
  align-items: flex-end;
}

.cta-content {
  padding: 80px;
  border-radius: 20px;
}

.cta-content-2 {
  padding: 80px;
  border-radius: 20px;
  margin-top: -830px;
}

@media only screen and (max-width: 1206px) {
  .cta-content-2 {
      margin-top: -50px;
  }
}

.stats-list {
  margin-left: -12px;
  width: calc(100% + 24px);
}

.stats-list-item {
  padding: 0 12px;
  width: 20%;
}

.stat-box {
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.stat-box h3 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-box h6 {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
}

.stat-box-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-item {
  width: calc(100vw - 70px);
  max-width: 720px;
  cursor: pointer;
}

.testimonial-box {
  border-radius: 20px;
  background: var(--white);
  height: 70%;
  padding: 60px;
  position: relative;
  transform: scale(0.85);
  transition: var(--custom-ease);
}

.testimonial-box:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
  background: var(--white);
  z-index: -1;
  box-shadow: var(--shadow);
}

.testimonial-box:after {
  content: "";
  width: 94%;
  height: 100%;
  position: absolute;
  left: 3%;
  top: 0;
  border-radius: 20px;
  background: var(--gradient-color);
  transform: rotate(0deg);
  z-index: -2;
  opacity: 0;
  transition: var(--custom-ease);
}

.testimonial-list::-webkit-scrollbar {
  display: none;
}

.testimonial-box blockquote {
  margin: 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  font-family: var(--secondary-font);
}

.quote-by {
  font-size: 1rem;
  line-height: 1.2;
  padding-top: 60px;
}

.quote-by a {
  color: var(--primary-color);
}

.quote-by a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.single-testimonial .testimonial-box {
  padding: 0;
  width: 100%;
  background: transparent;
}

.blog-list {
  margin-bottom: -100px;
}

.blog-item {
  width: 40%;
  margin-bottom: 100px;
}

.blog-box {
  height: 100%;
}

.blog-img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.blog-content {
  padding: 40px 0 0 20px;
}

.blog-cta {
  padding: 30px 0 0 20px;
}

.blog-cat {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.3;
  text-transform: uppercase;
}

.testimonial-box * {
  opacity: 0.3;
}

.swiper-slide-active .testimonial-box {
  transform: scale(1);
}

.swiper-slide-active .testimonial-box * {
  opacity: 1;
  transition: var(--custom-ease);
}

.swiper-slide-active .testimonial-box:after {
  transform: rotate(-5deg);
  opacity: 1;
  transition-delay: 0.5s;
}

.visible-slider.swiper {
  overflow: visible;
}

.full-height-slider.swiper .swiper-slide {
  height: auto;
}


/* ================================================================ */


/* *********************** HOME PAGE START ************************ */


/* ================================================================ */


/* ================================================================ */


/* ********************* PORTFOLIO PAGE START ********************* */


/* ================================================================ */

.portfolio-hero-container {
  padding: 150px 0 100px;
  position: relative;
}

.portfolio-hero-container .container {
  position: relative;
  z-index: 9;
}

.portfolio-hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  transform: rotate(180deg);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
}

.portfolio-hero-text {
  position: relative;
  z-index: 9;
  padding: 0 80px 20px 0;
}

.portfolio-hero-text h1 {
  font-size: 4rem;
  color: var(--primary-color);
}

.portfolio-hero-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.portfolio-hero-image-outer {
  margin-bottom: -80px;
  padding-right: 20%;
}

.portfolio-hero-box {
  width: 100%;
}

.portfolio-hero-box.porfolio-hero-medium {
  width: 40%;
  position: absolute;
  top: 60%;
  right: 0;
}

.portfolio-hero-box.porfolio-hero-small {
  width: 25%;
  position: absolute;
  top: 10%;
  left: -10%;
}

.portfolio-hero-image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.portfolio-hero-image-hold {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--white);
}

.portfolio-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-hero-box.porfolio-hero-large .portfolio-hero-image {
  padding-bottom: 120%;
}

.portfolio-hero-box.porfolio-hero-small .portfolio-hero-image-hold {
  padding: 20px;
}

.portfolio-hero-box.porfolio-hero-small .portfolio-hero-image img {
  object-fit: contain;
}

.portfolio-hero-container .text-marquee {
  z-index: 2;
}

.preview-box {
  width: 100%;
  position: relative;
}

.desktop-device {
  width: 100%;
}

.desktop-preview {
  position: absolute;
  left: 1.6%;
  top: 2%;
  right: 1.6%;
  bottom: 24.9%;
  background: #333;
  z-index: 1;
  overflow: hidden;
}

.desktop-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tablet-device {
  width: 100%;
}

.tablet-preview {
  position: absolute;
  left: 8.65%;
  top: 4.6%;
  right: 8.35%;
  bottom: 3.9%;
  background: #333;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.tablet-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-preview-box {
  max-width: 300px;
  margin: 0 auto;
}

.mobile-device {
  width: 100%;
}

.mobile-preview {
  position: absolute;
  left: 3%;
  top: 1%;
  right: 3%;
  bottom: 1.5%;
  background: #ff6a6a;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
}

.mobile-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-wrapper+.project-image-wrapper {
  margin-top: 80px;
}

.project-image-container {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: solid 4px var(--white);
}

.project-image-hold {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  background: #d1d1d1;
}

.project-image-hold img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-container.half {
  width: 47%;
}

.portfolio-stats-list {
  margin-left: -12px;
  width: calc(100% + 24px);
  margin-bottom: -60px;
}

.portfolio-stats-list-item {
  padding: 0 12px;
  width: 25%;
  margin-bottom: 60px;
}

.portfolio-stat-box {
  width: 100%;
  height: 100%;
  padding: 50px 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.portfolio-stat-box h3 {
  font-size: 4rem;
  margin-bottom: 5px;
}

.portfolio-stat-box h6 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.portfolio-stat-box-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
}


/* ================================================================ */


/* ******************* PORTFOLIO PAGE END ************************* */


/* ================================================================ */


/* ================================================================ */


/* ******************** SERVICE PAGE START ************************ */


/* ================================================================ */

.service-details-container {
  height: calc(100vh - 99px);
  background: var(--light-color);
  overflow: hidden;
}

.service-detail-image-hold {
  background: var(--black);
  width: 50%;
  height: 80%;
  position: absolute;
  top: 0;
  overflow: hidden;
  z-index: 2;
}

.image-left .service-detail-image-hold {
  left: 0;
}

.image-right .service-detail-image-hold {
  left: 50%;
}

.image-left .service-details-box {
  padding-left: 80px;
}

.image-right .service-details-box {
  padding-right: 80px;
}

.services-list {
  margin-bottom: -20px;
}

.services-list li {
  font-weight: 800;
  padding-right: 10px;
  margin-bottom: 15px;
  width: 50%;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
  line-height: 1.1;
}

.services-list li:before {
  content: '\f560';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}


/* ================================================================ */


/* ********************* SERVICE PAGE END ************************* */


/* ================================================================ */


/* ================================================================ */


/* ********************* BLOG PAGE START ************************** */


/* ================================================================ */

.blog-hero-container {
  padding: 200px 0 0;
  position: relative;
}

.blog-hero-container .container {
  position: relative;
  z-index: 9;
}

.blog-hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  transform: rotate(180deg);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
}

.post-tag {
  padding: 0 12px;
  font-size: inherit;
  font-weight: 400;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 0.8rem;
  line-height: 2rem;
  z-index: 2;
  background: transparent;
  border-radius: 5px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.post-title {
  font-size: 4.5rem;
}

.post-date {
  font-size: 1rem;
  font-weight: 800;
}

.post-date span {
  opacity: 0.5;
}

.post-feature-img-container {
  width: 100%;
  border-radius: 20px;
  background: var(--yellow);
  overflow: hidden;
  padding-bottom: 60%;
  position: relative;
  margin-bottom: -60px;
}

.post-feature-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.post-feature-img img {
  width: 100%;
}

.post-share-container,
.post-nav-container {
  margin-top: 80px;
}

.post-nav .all-link {
  font-weight: 800;
  text-decoration: none;
}

.post-nav .all-link:hover {
  text-decoration: underline;
}

.single-post-content:is(h1,
h2,
h3,
h4,
h5,
h6) {
  padding-top: 10px;
}

.single-post-content img {
  width: 100%;
  margin: 2rem 0 3.5rem;
}

.single-post-content iframe {
  width: 100%;
  margin: 2rem 0 3.5rem;
  border: 0;
  height: auto;
  aspect-ratio: 16/9;
}

blockquote {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  font-family: var(--secondary-font);
}


/* ================================================================ */


/* ********************** BLOG PAGE END *************************** */


/* ================================================================ */


/* ================================================================ */


/* ********************** CONTACT PAGE START ********************** */


/* ================================================================ */

.form-control,
.form-select {
  color: var(--black);
  border: solid 1px rgb(0 5 41 / 20%);
}

textarea.form-control,
.form-floating textarea.form-control {
  height: 180px;
  resize: none;
}

.form-control:focus,
.form-select:focus {
  color: var(--black);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgb(255 101 25 / 25%);
}


/* ================================================================ */


/* ********************** CONTACT PAGE END ************************ */


/* ================================================================ */


/* ==========================================
! Large devices (desktops, less than 1400px)
=========================================== */

@media (max-width:1399.98px) {}


/* ==========================================
! Large devices (desktops, less than 1200px)
=========================================== */

@media (max-width:1199.98px) {
  h1 {
      font-size: 3.5rem;
  }
  h2 {
      font-size: 2.75rem;
  }
  h3 {
      font-size: 2.25rem;
  }
  h4 {
      font-size: 1.75rem;
  }
  h5 {
      font-size: 1.5rem;
  }
  h6 {
      font-size: 1.25rem;
  }
  .navbar {
      height: 80px;
  }
  .navbar-toggler {
      width: 94px;
      height: 40px;
      height: 60px;
      border-radius: 0;
      cursor: pointer;
      text-decoration: none;
      padding: 0;
      border: 0;
      background: transparent;
      margin: 0;
      position: absolute;
      right: 0;
      top: 50%;
      z-index: 999;
      transform: translateY(-50%);
  }
  .navbar-default .navbar-toggler:hover,
  .navbar-default .navbar-toggler:focus {
      background: transparent;
  }
  .navbar-toggler:not([class="collapsed"]),
  .navbar-toggler:not([class="collapsed"]):focus,
  .navbar-toggler:not([class="collapsed"]):hover {
      background: transparent;
      box-shadow: none;
  }
  .navbar-toggler.collapsed,
  .navbar-toggler.collapsed:focus,
  .navbar-toggler.collapsed:hover {
      background: transparent;
  }
  .home .navbar-toggler.collapsed,
  .home .navbar-toggler.collapsed:focus,
  .home .navbar-toggler.collapsed:hover {
      background: transparent;
  }
  .navbar-toggler .navbar-toggler-icon {
      position: relative;
      display: inline-block;
      width: 30px;
      height: 3px;
      color: #243238;
      text-indent: -55px;
      margin-top: 0;
      background: transparent!important;
      transition: var(--custom-ease);
      -webkit-transition: var(--custom-ease);
      vertical-align: middle;
  }
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
      content: "";
      width: 30px;
      height: 3px;
      background: #003145;
      position: absolute;
      left: 0;
      transition: var(--custom-ease);
  }
  .navbar-toggler.collapsed .navbar-toggler-icon {
      background: #003145!important;
  }
  .navbar-toggler.collapsed .navbar-toggler-icon:before,
  .navbar-toggler.collapsed .navbar-toggler-icon:after {
      background: #003145;
  }
  .navbar-toggler.collapsed .navbar-toggler-icon:before {
      top: -10px;
      -webkit-transform: rotateZ(0deg);
      -moz-transform: rotateZ(0deg);
      -ms-transform: rotateZ(0deg);
      -o-transform: rotateZ(0deg);
      transform: rotateZ(0deg);
  }
  .navbar-toggler .navbar-toggler-icon:before {
      top: 0;
      -webkit-transform: rotateZ(45deg);
      -moz-transform: rotateZ(45deg);
      -ms-transform: rotateZ(45deg);
      -o-transform: rotateZ(45deg);
      transform: rotateZ(45deg);
  }
  .navbar-toggler.collapsed .navbar-toggler-icon:after {
      bottom: -10px;
      -webkit-transform: rotateZ(0deg);
      -moz-transform: rotateZ(0deg);
      -ms-transform: rotateZ(0deg);
      -o-transform: rotateZ(0deg);
      transform: rotateZ(0deg);
  }
  .navbar-toggler .navbar-toggler-icon:after {
      bottom: 0;
      -webkit-transform: rotateZ(-45deg);
      -moz-transform: rotateZ(-45deg);
      -ms-transform: rotateZ(-45deg);
      -o-transform: rotateZ(-45deg);
      transform: rotateZ(-45deg);
  }
  .navbar-collapse,
  .navbar-collapse.collapsing {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 100%;
      background: var(--white);
      padding: 0;
      z-index: 99;
      margin: 0;
      border: 0;
      overflow-y: auto;
      display: block!important;
      transition: var(--custom-ease);
      padding-top: 80px;
  }
  .navbar .collapse.show {
      left: 0;
  }
  .navbar-inside {
      height: 100%;
      padding: 0;
      overflow: hidden;
      overflow-y: auto;
      display: flex;
      flex-flow: column;
  }
  .navbar-expand-xl .navbar-nav .nav-item {
      padding: 0 30px;
      margin: 0;
      margin-top: 30px;
      transform: translateX(10px);
      opacity: 0;
      transition: var(--custom-ease);
  }
  .navbar-expand-xl .navbar-nav .nav-link {
      font-size: 28px;
      line-height: 1.3;
      padding: 0;
      position: relative;
      color: var(--black);
      font-weight: 1000;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item {
      transform: translateX(0px);
      opacity: 1;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(1) {
      transition-delay: 0.3s;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(2) {
      transition-delay: 0.4s;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(3) {
      transition-delay: 0.5s;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(4) {
      transition-delay: 0.6s;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(5) {
      transition-delay: 0.7s;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(6) {
      transition-delay: 0.8s;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(7) {
      transition-delay: 0.9s;
  }
  .navbar-expand-xl .show .navbar-nav .nav-item:nth-child(8) {
      transition-delay: 1s;
  }
  .dropdown-menu {
      background: transparent;
      border: 0;
      padding: 20px 0;
      margin: 0!important;
  }
  .dropdown-item {
      padding: 12px 20px 12px 40px;
      font-size: 20px;
      line-height: 1.4;
      font-weight: 1000;
  }
  .dropdown-item:focus,
  .dropdown-item:hover,
  .dropdown-item.active {
      color: var(--primary-color);
      background: transparent;
  }
  .navbar-bottom {
      padding: 40px 30px;
  }
  .navbar-bottom {
      opacity: 0;
      visibility: hidden;
      position: relative;
      top: -5px;
  }
  .navbar-expand-xl .show .navbar-bottom {
      opacity: 1;
      visibility: visible;
      top: 0;
      transition: var(--custom-ease);
      transition-delay: 1s;
  }
  .header-right {
      position: relative;
      z-index: 999;
      margin-right: 50px;
  }
  .project-details {
      left: -20px;
      padding: 30px;
  }
  .project-list-item:nth-child(even) .project-details {
      right: -20px;
  }
  .cta-content {
      padding: 80px 40px;
  }
  .content-container {
      padding: 160px 0;
  }
  .service-details-container {
      height: calc(100vh - 79px);
  }
  .image-left .service-details-box {
      padding-left: 40px;
  }
  .image-right .service-details-box {
      padding-right: 40px;
  }
}


/*==========================================
! Medium devices (tablets, less than 992px)
========================================== */

@media (max-width:991.98px) {
  .content-container {
      padding: 120px 0;
  }
  .hero-text {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
      padding-bottom: 50px;
  }
  .hero-availability {
      right: auto;
      left: 18%;
  }
  .hero-info-list {
      justify-content: center;
  }
  .text-marquee.top {
      top: -12px;
  }
  .text-marquee.bottom {
      bottom: -12px;
  }
  .heading {
      margin-bottom: 100px;
  }
  .heading h2 {
      font-size: 90px;
      white-space: normal;
  }
  .heading h3 {
      font-size: 50px;
  }
  .project-box-right {
      padding-left: 40px;
  }
  .project-list-item:nth-child(even) .project-box-right {
      padding-right: 40px;
  }
  .project-title h4 {
      font-size: 40px;
  }
  .stat-box {
      padding: 20px;
      min-height: 240px;
  }
  .stat-box-icon {
      font-size: 2.5rem;
  }
  .cta-content {
      flex-flow: column;
      text-align: center;
      padding: 60px 30px;
  }
  .cta-content .cta-box {
      padding-top: 30px;
  }
  .quick-contact-box {
      font-size: 1.5rem;
  }
  .inner-hero-image {
      width: 70%;
      max-width: 384px;
      margin: 0 auto;
  }
  .inner-hero-text {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
      padding-bottom: 50px;
  }
  .portfolio-hero-text {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 0;
      padding-bottom: 50px;
  }
  .portfolio-stat-box h3 {
      font-size: 2.5rem;
  }
  .portfolio-hero-image-outer {
      width: 70%;
      max-width: 600px;
      margin: 0 auto;
      padding: 0;
  }
  .portfolio-hero-box.porfolio-hero-medium {
      right: -20%;
  }
  .blog-hero-container {
      padding: 160px 0 0;
  }
  .post-title {
      font-size: 3rem;
  }
  .services-list li {
      width: 100%;
  }
}


/* =================================================
! Small devices (landscape phones, less than 768px)
================================================= */

@media (max-width:767.98px) {
  .container {
      width: calc(100% - 16px);
  }
  h1 {
      font-size: 3rem;
  }
  h2 {
      font-size: 2.5rem;
  }
  h3 {
      font-size: 2rem;
  }
  h4 {
      font-size: 1.75rem;
  }
  h5 {
      font-size: 1.5rem;
  }
  h6 {
      font-size: 1.25rem;
  }
  .mob-pt-0 {
      padding-top: 0!important;
  }
  .mob-pb-0 {
      padding-bottom: 0!important;
  }
  .mob-mt-0 {
      margin-top: 0!important;
  }
  .mob-mb-0 {
      margin-bottom: 0!important;
  }
  .navbar-toggler {
      width: 74px;
  }
  .navbar-expand-xl .navbar-nav .nav-item {
      padding: 0 20px;
  }
  .nav-item .dropdown-toggle {
      right: 18px;
  }
  .parallax-img img {
      height: 100%!important;
  }
  .content-container {
      padding: 80px 0;
  }
  .diagonal {
      clip-path: polygon(0 0, 100% 10px, 100% 100%, 0 calc(100% - 10px));
      -webkit-clip-path: polygon(0 0, 100% 10px, 100% 100%, 0 calc(100% - 10px));
  }
  .heading {
      margin-bottom: 80px;
  }
  .heading h2 {
      font-size: 4rem;
  }
  .heading h3 {
      font-size: 2.5rem;
  }
  .heading-large {
      top: 0;
  }
  .hero-container {
      padding: 120px 0 60px;
  }
  .hero-bg {
      clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
      -webkit-clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  }
  .hero-text h1 {
      font-size: 3rem;
  }
  .hero-text h2 {
      font-size: 1.25rem;
  }
  .hero-info-list {
      margin-top: 30px;
  }
  .hero-info-box h6 {
      text-align: left;
      margin-left: 10px;
      padding-left: 10px;
      font-size: 0.75rem;
  }
  .hero-info-box h3 {
      font-size: 2rem;
  }
  .hero-info-item:not(:last-child) {
      padding-right: 20px;
  }
  .text {
      margin-right: 40px;
      font-size: 2rem;
  }
  .testimonial-box {
      padding: 40px;
  }
  .testimonial-box blockquote {
      font-size: 1.5rem;
  }
  .quote-by {
      padding-top: 40px;
  }
  .view-all-cta {
      margin-top: 60px;
  }
  .project-list-item+.project-list-item {
      margin-top: 50px;
  }
  .project-box-left {
      width: 100%;
  }
  .project-box-right {
      padding: 30px 0 0 0!important;
      width: 100%;
  }
  .project-img .project-title {
      display: none;
  }
  .project-title {
      position: relative;
      inset: auto!important;
      padding: 0!important;
      margin: 0!important;
  }
  .project-title h4 {
      text-align: left!important;
      font-size: 30px;
  }
  .project-img {
      width: calc(50% + 40px);
      margin-left: -20px;
      height: 0;
      padding-bottom: 110%;
      overflow: hidden;
      position: relative;
      border-radius: 0;
      margin-bottom: 50px;
  }
  .project-details {
      position: relative;
      inset: auto!important;
      padding: 0;
      background: transparent;
      box-shadow: none;
  }
  .stats-list {
      width: 100%;
      margin: 0;
  }
  .stat-box {
      min-height: 240px;
      padding: 30px;
  }
  .stat-box-icon {
      font-size: 4rem;
  }
  .stat-box h3 {
      font-size: 3rem;
  }
  .stat-box h6 br {
      display: none;
  }
  .blog-item {
      width: 100%;
  }
  .blog-content,
  .blog-cta {
      padding-left: 0;
  }
  .mobile-slider .swiper-slide {
      width: calc(100vw - 100px);
      max-width: 400px;
      padding: 0;
  }
  .footer-upper {
      padding: 80px 0 50px;
  }
  .footer-content {
      margin-bottom: 50px;
      max-width: 600px;
  }
  .footer-bottom-upper {
      padding: 0 0 40px 0;
  }
  .footer-bottom-lower {
      padding: 40px 0;
  }
  .footer-nav+.footer-nav {
      margin-top: 20px;
  }
  .footer-logo {
      margin-bottom: 20px;
  }
  .footer-nav {
      margin-bottom: -20px;
  }
  .footer-nav li {
      margin-bottom: 20px;
  }
  .service-list-outer {
      overflow-x: auto;
      margin-left: -20px;
      margin-bottom: -40px;
      width: calc(100% + 40px);
      -ms-overflow-style: none;
      scrollbar-width: none;
  }
  .service-list-outer::-webkit-scrollbar {
      display: none;
  }
  .service-list-wrapper {
      width: auto;
      padding: 0;
  }
  .service-item {
      width: 200px;
      margin-right: 20px;
      padding: 40px 0;
  }
  .service-item+.service-item {
      margin-top: 0;
  }
  .service-list-wrapper:first-child {
      margin-left: 20px;
  }
  .service-list-wrapper:last-child {
      margin-right: 0;
  }
  .cta-content {
      margin-left: -20px;
      margin-bottom: -20px;
      width: calc(100% + 40px);
      border-radius: 0;
      padding: 60px 30px 80px;
  }
  .inner-hero-container {
      padding: 120px 0 60px;
  }
  .inner-hero-bg {
      clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
      -webkit-clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  }
  .inner-hero-text h1 {
      font-size: 3rem;
  }
  .default-hero .inner-hero-text {
      padding: 50px 0;
  }
  .pagination-container {
      margin-top: 60px;
  }
  .pagination .page-link {
      font-size: 1rem;
      padding: 0 5px;
  }
  .portfolio-hero-container {
      padding: 120px 0 60px;
  }
  .portfolio-hero-bg {
      clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
      -webkit-clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  }
  .portfolio-hero-text h1 {
      font-size: 3rem;
  }
  .portfolio-hero-text h2 {
      font-size: 1.25rem;
  }
  .portfolio-stats-list {
      width: 100%;
      margin-left: 0;
  }
  .portfolio-hero-box.porfolio-hero-small .portfolio-hero-image-hold {
      padding: 10px;
  }
  .mobile-slider .swiper-slide.portfolio-stats-list-item {
      max-width: 270px;
  }
  .portfolio-hero-box.porfolio-hero-small {
      width: 30%;
      left: -15%;
  }
  .portfolio-hero-image {
      border-radius: 10px;
  }
  .project-image-container {
      border-radius: 10px;
  }
  .project-image-wrapper+.project-image-wrapper {
      margin-top: 20px;
  }
  .mobile-preview {
      border-radius: 10px;
  }
  .blog-hero-container {
      padding: 120px 0 0;
  }
  .post-title {
      font-size: 2rem;
  }
  .post-feature-img-container {
      border-radius: 10px;
  }
  .blog-hero-bg {
      clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
      -webkit-clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
  }
  .post-nav .btn {
      width: 100%;
      margin: 10px 0!important;
  }
  .service-details-container {
      height: auto;
  }
  .service-detail-image-hold {
      width: 100%;
      position: relative;
      inset: auto !important;
  }
  .service-details-box {
      padding: 20px 0 60px 0 !important;
  }
  .service-details-box:before {
      content: '';
      width: 50vw;
      position: absolute;
      right: calc(100% - 20px);
      bottom: 100%;
      margin-bottom: -1px;
      background: var(--light-color);
      height: 20px;
      z-index: 3;
      clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%);
  }
  .service-details-box:after {
      content: '';
      width: 100vw;
      position: absolute;
      left: 20px;
      bottom: 100%;
      margin-bottom: -1px;
      background: var(--light-color);
      height: 20px;
      z-index: 3;
      clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
  }
}


/* ======================================================
! Extra small devices (portrait phones, less than 576px)
====================================================== */

@media (max-width:575.98px) {
  .testimonial-box {
      padding: 30px;
  }
  .testimonial-box blockquote {
      font-size: 1.25rem;
  }
}

.letra {
  animation: zoom 5s infinite;
}

@keyframes zoom {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2);
  }
  100% {
      transform: scale(1);
  }
}

.margen {
  margin-top: 48px;
}


/*################################################################################################*/


/*----------------------------------------------------------------------------*/

.container__background-triangle {
  max-width: 1200px;
  height: 600px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.triangle {
  width: 300px;
  height: 300px;
  background: red;
  position: absolute;
}

.triangle1 {
  width: 250px;
  height: 250px;
  background: linear-gradient(to left, #0ea1e6, #1e67c7);
  right: 100px;
  top: 100px;
  animation: t1 8s ease infinite;
}

.triangle2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(to left, #ee8105, #c7371e);
  top: 350px;
  animation: t2 9s ease infinite;
}

.triangle3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(to left, #1b8fc5, #df0f8f);
  left: 200px;
  animation: t3 7s ease infinite;
}

@keyframes t1 {
  0% {
      transform: rotate(45deg) translateY(0px);
  }
  50% {
      transform: rotate(45deg) translateY(20px);
  }
  100% {
      transform: rotate(45deg) translateY(0px);
  }
}

@keyframes t2 {
  0% {
      transform: rotate(65deg) translateY(0px);
  }
  50% {
      transform: rotate(65deg) translateY(20px);
  }
  100% {
      transform: rotate(65deg) translateY(0px);
  }
}

@keyframes t3 {
  0% {
      transform: rotate(45deg) translateY(0px);
  }
  50% {
      transform: rotate(45deg) translateY(20px);
  }
  100% {
      transform: rotate(45deg) translateY(0px);
  }
}

.container__cards {
  /*  background-image: url("https://res.cloudinary.com/jerrick/image/upload/v1627943514/6108725ad9e5c6001f1338aa.jpg");*/
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 1065px;
  margin-bottom: -890px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 0px;
  min-height: 60vh;
}

.card {
  width: 350px;
  margin: 10px;
  padding: 20px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 300ms;
}

.card:hover {
  transform: translateY(-10px);
}

.card:hover .cover__card img {
  transform: scale(1.1);
}

.cover__card {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
}

.cover__card img {
  width: 110%;
  transition: all 300ms;
}

.card h2 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  color: orangered;
  text-align: center;
}

.card ul li {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: black;
  letter-spacing: 0.5px;
}

.card hr {
  margin-top: 30px;
  border: none;
  height: 0.2px;
  background: #41414138;
}

.footer__card {
  margin-top: 10px;
  display: flex;
  color: #fff;
  justify-content: space-between;
}

.footer__card h3 {
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width:1200px) {
  .container__cards {
      position: relative;
      top: 0;
      left: 0;
      transform: none;
      margin-top: 100px;
      padding-bottom: 993px;
  }
}

.more-services {
  padding-top: 10px;
}

.more-services .card {
  border: 0;
  padding: 70px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #3498db;
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
  color: #fff;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #3498db;
}

.features .icon-box:hover {
  background: #eef7fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.faq .faq-item i {
  color: #8bc4ea;
  font-size: 24px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 32px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.pricing .box h4 {
  font-size: 42px;
  color: #3498db;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #3498db;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #3498db;
  color: #3498db;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #3498db;
  color: #fff;
}

.pricing .recommended {
  border-color: #3498db;
}

.pricing .recommended .btn-buy {
  background: #3498db;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #2383c4;
  border-color: #2383c4;
}
.elim{
  list-style-type: none;
}

