@charset "UTF-8";
/*-------------   Color Variable  --------------*/
/*------------------- Responsive --------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap");
@keyframes a-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes a-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes a-moveup {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(4px);
  }
}
/*-------------   Color Variable  --------------*/
/* 1. Theme default css */
body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #447ff5;
  margin-top: 0px;
  font-style: normal;
  font-weight: 500;
  text-transform: normal;
}

p {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: normal;
}

.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a {
  color: #635c5c;
}

a:hover {
  color: #fff;
}

a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
  text-decoration: none;
}

a,
button {
  color: #000;
  outline: medium none;
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.capitalize {
  text-transform: capitalize;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #1c63f1 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 11px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #1c63f1;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #447ff5;
}

.bg-cinza {
  background-color: #eeee;
}

.header-btns .btn-one {
  padding: 15px 20px;
}

.btn-one {
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 15px;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  background-color: #1c63f1;
  transition: 0.4s ease-in-out;
}
.btn-one:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(38, 38, 38, 0.15);
  background-color: #447ff5;
}
.btn-one::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s ease-in-out;
  background-color: #1c63f1;
}
.btn-one:hover::after {
  transform: scaleX(1.2) scaleY(1.35);
  opacity: 0;
}
.btn-one i {
  margin-right: 10px;
  font-size: 18px;
  font-weight: 600;
  transform: rotate(-5deg);
}

.btn-two {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  background-color: #1c63f1;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  z-index: 1;
}
.btn-two:hover {
  transform: scale(1.02);
}
.btn-two:hover::before {
  left: 120%;
}
.btn-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: left 0.3s ease-in-out;
}

.btn-three {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  color: #f5f5f5;
  background-color: #447ff5;
  box-shadow: 2px 1px 20px -5px rgba(0, 0, 0, 0.4);
  border: none;
  outline: none;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.btn-three:hover {
  background-color: #f5f5f5;
  color: #447ff5;
  transform: scale(1.02) translateY(-3px);
}
.btn-three:hover::before {
  transform: translate(-50%, -50%) scale(20);
  opacity: 0;
}
.btn-three::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f5f5f5;
  opacity: 0.8;
  transition: all 0.5s ease-in-out;
}
.btn-three.bg2:hover {
  background-color: #447ff5;
  color: #fff;
}
.btn-three.bg2::before {
  background: #505050;
}

.header-btn {
  padding: 20px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-btn {
    padding: 20px 20px;
  }
}

.btn-radius {
  border-radius: 50%;
  background: #447ff5;
  color: #fff;
  font-size: 35px;
  padding: 12px 25px;
  margin-top: 20px;
}

/* scrollUp */
#scrollUp,
#back-top {
  background: #1c63f1;
  height: 50px;
  width: 50px;
  right: 31px;
  bottom: 18px;
  position: fixed;
  z-index: 10;
  font-size: 20px;
  text-align: center;
  border-radius: 10%;
  line-height: 48px;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
}
@media (max-width: 575px) {
  #scrollUp,
#back-top {
    right: 16px;
  }
}
#scrollUp a i,
#back-top a i {
  display: block;
  line-height: 50px;
  color: #fff;
}
#scrollUp a i:hover,
#back-top a i:hover {
  color: #000;
  transition: 0.8s;
}

#scrollUp:hover {
  color: #fff;
}

/* Sticky*/
.sticky-bar {
  left: 0;
  margin: auto;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  z-index: 5;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  background: #fff;
}

/* Sticky end */
/*--- Margin & Padding --*/
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-260 {
  padding-top: 260px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.mob-top {
  position: relative;
  margin-top: 132px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .mob-top {
    margin-top: 132px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mob-top {
    margin-top: 141px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mob-top {
    margin-top: 111px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mob-top {
    top: -7px;
  }
}
@media (max-width: 575px) {
  .mob-top {
    top: -55px;
    padding-top: 36px;
  }
}

.filter {
  filter: brightness(0);
}

.invert {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.header-area .main-header {
  padding: 10px 150px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header-area .main-header {
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .main-header {
    padding: 15px 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .main-header {
    padding: 18px 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-area .main-header {
    padding: 20px 70px;
  }
}
@media (max-width: 575px) {
  .header-area .main-header {
    padding: 18px 16px;
  }
}
.header-area .menu-wrapper {
  display: flex;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.header-area .menu-wrapper .main-menu ul li {
  display: inline-block;
  position: relative;
  z-index: 1;
  list-style-type: none;
  display: inline-block;
  margin: 5px 8px;
}
.header-area .menu-wrapper .main-menu ul li a {
  color: #1a1a1a;
  font-weight: 500;
  padding: 15px 15px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .menu-wrapper .main-menu ul li a {
    padding: 10px 8px;
  }
}
.header-area .menu-wrapper .main-menu ul li a::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 40%;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
}
.header-area .menu-wrapper .main-menu ul li a:hover::after, .header-area .menu-wrapper .main-menu ul li a.active-nav::after {
  width: 40%;
  height: 3px;
  border-radius: 30px;
  background: #1c63f1;
}
.header-area .menu-wrapper .main-menu ul li:hover > ul.submenu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.header-area .menu-wrapper .main-menu ul ul.submenu {
  position: absolute;
  width: 250px;
  background: white;
  border-top: 3px solid #447ff5;
  left: 0;
  top: 90%;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding: 5px 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.header-area .menu-wrapper .main-menu ul ul.submenu > li {
  margin-left: 7px;
  display: block;
}
.header-area .menu-wrapper .main-menu ul ul.submenu > li > a {
  padding: 6px 10px !important;
  font-size: 12px;
  color: #505050;
  font-weight: 500;
}
.header-area .menu-wrapper .main-menu ul ul.submenu > li > a::after {
  content: none;
}
.header-area .menu-wrapper .main-menu ul ul.submenu > li > a:hover {
  color: #447ff5;
  background: none;
  padding-left: 13px !important;
}

.header-sticky.sticky-bar {
  background: rgba(244, 244, 244, 0.95);
  backdrop-filter: blur(2px);
  margin: 0 auto;
  width: 98%;
  left: 1%;
  top: 1%;
  border-radius: 0 0 5px 5px;
  border-bottom: 1px solid #1c63f1;
  box-shadow: 1px 4px 15px -2px #00000063;
  padding: 10px 20px;
  transition: 0.5s ease;
  animation: menu-anime 0.6s ease-in-out forwards;
}
@keyframes menu-anime {
  0% {
    opacity: 0.3;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.header-sticky.sticky-bar.sticky .main-menu ul li a {
  padding: 20px 20px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-sticky.sticky-bar.sticky {
    padding: 15px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-sticky.sticky-bar.sticky {
    padding: 15px 0px;
  }
}
@media (max-width: 575px) {
  .header-sticky.sticky-bar.sticky {
    padding: 15px 0px;
  }
}

.mobile_menu {
  position: absolute;
  right: 0px;
  width: 100%;
  z-index: 99;
}
.mobile_menu .slicknav_menu {
  background: transparent;
  margin-top: 0px !important;
}
.mobile_menu .slicknav_menu .slicknav_btn {
  top: -58px;
  right: 40px;
}
.mobile_menu .slicknav_menu .slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}
.mobile_menu .slicknav_menu .slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(2) {
  transform: translateX(-20px);
  opacity: 0;
}
.mobile_menu .slicknav_menu .slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}
.mobile_menu .slicknav_menu .slicknav_btn .slicknav_icon-bar {
  background-color: #1c63f1 !important;
  height: 4px;
  width: 40px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.mobile_menu .slicknav_menu .slicknav_nav {
  margin-top: 15px !important;
  box-shadow: 0 0 10px 3px rgba(141, 140, 140, 0.5);
  border-top: 3px solid #447ff5;
  padding: 10px;
}
.mobile_menu .slicknav_menu .slicknav_nav a:hover {
  background: transparent;
  color: #1c63f1;
}
.mobile_menu .slicknav_menu .slicknav_nav a {
  font-size: 14px;
  padding: 7px 10px;
  color: #000;
  text-transform: none;
}
.mobile_menu .slicknav_menu .slicknav_nav .slicknav_item a {
  padding: 0 !important;
}

.top_menu {
  border-bottom: 1px solid #767676;
  background-color: #505050;
  padding: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top_menu {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .top_menu {
    display: none;
  }
}
@media (max-width: 575px) {
  .top_menu {
    display: none;
  }
}
.top_menu .dn_btn {
  display: inline-block;
  font-size: 13px;
  margin-right: 40px;
  font-weight: normal;
  color: #fff;
  transition: all 300ms linear 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top_menu .dn_btn {
    margin-right: 10px;
  }
}
.top_menu .dn_btn:hover {
  color: #447ff5;
}
.top_menu .header-social a {
  color: #fff;
}
.top_menu .header-social a:hover {
  color: #022366;
}
.top_menu .header-social a i {
  margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top_menu .header-social a i {
    margin-right: 6px;
  }
}
.top_menu .contact-menu a {
  display: inline-block !important;
  font-size: 12px;
}

.logo {
  width: 200px;
}
.logo a img {
  width: 100%;
}

.txt-car {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.txt-car p {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 50px;
  text-align: left;
}
.txt-car span {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txt-car p {
    font-size: 45px;
    line-height: 45px;
  }
  .txt-car span {
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .txt-car p {
    font-size: 40px;
    line-height: 45px;
  }
  .txt-car span {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .txt-car p {
    font-size: 45px;
    margin-left: 0px;
    line-height: 45px;
  }
  .txt-car span {
    font-size: 30px;
    margin-left: 0px;
  }
}
@media (max-width: 575px) {
  .txt-car p {
    font-size: 30px;
    margin-left: 0px;
    line-height: 45px;
  }
  .txt-car span {
    font-size: 20px;
    margin-left: 0px;
  }
}

.footer-area {
  background: #f5f5f5;
  padding: 65px 0 0;
}
.footer-area .footer-top {
  border-bottom: 1px solid #447ff5;
}
.footer-area .footer-top .single-footer-caption .footer-logo {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 300px;
}
.footer-area .footer-top .single-footer-caption .footer-logo img {
  width: 60%;
  height: 100%;
}
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-tittle span {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 38px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
  color: #000;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a {
  color: #868c98;
  font-weight: 300;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a:hover {
  color: #1c63f1;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap {
  margin-bottom: 30px;
}
.footer-area .footer-top .single-footer-caption .footer-cap span {
  color: #1c63f1;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap p {
  color: #000;
  font-size: 16px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap a:hover {
  color: #447ff5;
  padding-left: 5px;
}
.footer-area .footer-bottom {
  padding-bottom: 50px;
  padding-top: 30px;
}
.footer-area .footer-bottom .footer-copy-right p {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
}
.footer-area .footer-bottom .footer-copy-right p i {
  color: #1c63f1;
}
.footer-area .footer-bottom .footer-copy-right p a {
  color: #1c63f1;
}
.socail_links {
  margin-top: 47px;
}
@media (max-width: 767px) {
  .socail_links {
    margin-top: 30px;
  }
}
.socail_links ul li {
  display: inline-block;
}
.socail_links ul li a {
  font-size: 18px;
  color: #C3B2F0;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background: #565656;
  border-radius: 50%;
  line-height: 40px !important;
  margin-right: 7px;
  color: #fff;
  line-height: 41px !important;
}
.socail_links ul li a:hover {
  color: #fff !important;
  background: #447ff5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mob-center {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mob-center {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .mob-center {
    text-align: center;
  }
}

.cta-2 {
  background: #1c63f1;
  position: relative;
  z-index: 1;
  padding: 70px 0;
  overflow: hidden;
}
.cta-2 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-2 .title {
    text-align: center;
  }
}
.cta-2 .title h2, .cta-2 .title h3 {
  color: #fff;
  font-size: 48px;
  line-height: 60px;
  padding: 0;
  margin: 0;
  font-weight: 700;
}
.cta-2 .title p {
  color: #fff;
  margin-top: 20px;
}
.cta-2 .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.cta-2 .socials .icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 10px;
  border-radius: 50%;
}
.cta-2 .socials .icon:hover {
  background-color: #505050;
}
.cta-2 .socials .icon:hover i {
  color: #fff;
}
.cta-2 .socials .icon i {
  font-size: 40px;
  color: #1c63f1;
}
.cta-2 .btn-two {
  background-color: #022366;
}

.carousel {
  overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
  margin: 0px;
  z-index: 5;
  opacity: 1;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .carousel-control-prev,
.carousel-control-next {
    margin-top: 0px;
  }
}
@media (max-width: 575px) {
  .carousel-control-prev,
.carousel-control-next {
    margin-top: 0px;
  }
}
.carousel-control-prev .s-icon,
.carousel-control-next .s-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 163px;
  z-index: 1;
  transition: 0.2s ease-in;
}
.carousel-control-prev .s-icon.s-bg1,
.carousel-control-next .s-icon.s-bg1 {
  position: relative;
}
.carousel-control-prev .s-icon.s-bg1::before,
.carousel-control-next .s-icon.s-bg1::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: -2px;
  background-image: url("../img/elements/bg-arow-left.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.carousel-control-prev .s-icon.s-bg2,
.carousel-control-next .s-icon.s-bg2 {
  position: relative;
}
.carousel-control-prev .s-icon.s-bg2::before,
.carousel-control-next .s-icon.s-bg2::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  right: -2px;
  background-image: url("../img/elements/bg-arow-right.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.carousel-control-prev .s-icon i,
.carousel-control-next .s-icon i {
  border-radius: 50%;
  color: #1c63f1;
  font-size: 24px;
  transition: 0.2s ease;
  opacity: 0.8;
}
.carousel-control-prev:hover .s-icon,
.carousel-control-next:hover .s-icon {
  transform: scale(1.1);
}
.carousel-control-prev:hover .s-icon i,
.carousel-control-next:hover .s-icon i {
  color: #447ff5;
  transform: scale(1.1);
  opacity: 1;
}

.carousel-control-prev {
  left: -2px;
  width: 45px;
}

.carousel-control-next {
  right: -2px;
  width: 45px;
}

.carousel-controls a:hover {
  color: #505050;
  z-index: 10;
}

.scroll-btn {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll-btn {
    bottom: 70px;
  }
}
.scroll-btn .icon {
  position: relative;
}
.scroll-btn .icon-scroll-down {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  bottom: 0px;
  left: 0;
  margin: 0 auto;
  position: relative;
  right: 0;
  width: 30px;
  height: 45px;
  animation: scrollmove 1s infinite alternate;
}
.scroll-btn .icon-scroll-down span {
  position: relative;
}
.scroll-btn .icon-scroll-down span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -55px;
  left: -2px;
  width: 10px;
  transform: rotate(-45deg);
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.6);
}
.scroll-btn .icon-scroll-down span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -55px;
  width: 10px;
  right: -1px;
  transform: rotate(45deg);
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.6);
}
.scroll-btn .icon-scroll-down::before {
  animation: scrollDownAnimation 2s infinite;
  background-color: #fff;
  border-radius: 50px;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 7px;
  width: 6px;
  height: 8px;
}
@keyframes scrollmove {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(2px);
  }
}
@keyframes scrollDownAnimation {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 0;
  }
}

#carouselExampleIndicators {
  border-radius: 5px;
}
#carouselExampleIndicators .carousel-indicators .dots {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#carouselExampleIndicators .carousel-indicators .dots .dot {
  background-color: transparent;
  height: 7px;
  width: 7px;
  margin: 0 5px;
  border: 0;
  border-radius: 100px;
  transition: 0.4s ease;
  outline: 1px solid #1c63f1;
  outline-offset: 2px;
  opacity: 0.8;
}
#carouselExampleIndicators .carousel-indicators .dots .dot.active {
  width: 20px;
  height: 7px;
  outline: 0;
  border-radius: 20px !important;
  outline: 1px solid #1c63f1;
  outline-offset: 2px;
  background-color: #1c63f1;
  opacity: 1;
}

.section-padding {
  padding: 50px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0;
  }
}

.section-about {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}
.section-about .box-about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-about .box-about .about-content .box-title .title-sub {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: #1c63f1;
  max-width: 300px;
  margin-left: 0px;
}
.section-about .box-about .about-content .box-title .title-sub i {
  color: #447ff5;
  font-size: 30px;
  margin-right: 10px;
}
.section-about .box-about .about-content .box-title .title-sub::before {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -105px;
  display: block;
  width: 230px;
  height: 230px;
  background-image: url(../img/elements/empilhadeira.png);
  background-position: center bottom;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.08;
  filter: grayscale(1);
}
.section-about .box-about .about-content .box-title .title {
  font-size: 38px;
  font-weight: 800;
  padding: 2px 0;
  color: #447ff5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .box-about .about-content .box-title .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-about .box-about .about-content .box-title .title {
    font-size: 28px;
  }
}
.section-about .box-about .about-content .desc {
  width: 98%;
}
.section-about .box-about .about-content .desc p {
  font-size: 16px;
}
.section-about .box-about .about-content .desc h2, .section-about .box-about .about-content .desc h3 {
  color: #447ff5;
  font-size: 18px;
  font-weight: 700;
}
.section-about .box-about .about-content .desc i {
  color: #447ff5;
  font-size: 20px;
  margin-right: 10px;
}
.section-about .box-about .about-content .desc ul li {
  margin: 10px 0;
  font-size: 16px;
}
.section-about .box-about .about-img {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
  position: relative;
  width: 100%;
  height: 515px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .box-about .about-img {
    height: 375px;
    margin-top: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .box-about .about-img {
    height: 375px;
    margin-top: 45px;
  }
}
@media (max-width: 575px) {
  .section-about .box-about .about-img {
    height: 375px;
    margin-top: 30px;
  }
}
.section-about .box-about .about-img::after {
  position: absolute;
  content: "";
  height: 120%;
  width: 55%;
  right: -20px;
  bottom: 50%;
  left: 50%;
  transform: translateY(50%) translateX(-50%) skewX(350deg);
  background-color: #447ff5;
  border-radius: 10px;
  z-index: -2;
}
.section-about .box-about .about-img::before {
  content: "";
  position: absolute;
  height: 105%;
  width: 105%;
  bottom: -44px;
  left: 24px;
  background-image: repeating-linear-gradient(45deg, #dcdcdc 0, #dcdcdc 7px, transparent 0, transparent 50%);
  background-size: 25px 25px;
  background-color: rgba(71, 212, 255, 0);
  z-index: -2;
  border-radius: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .box-about .about-img::before {
    left: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .box-about .about-img::before {
    left: -22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .box-about .about-img::before {
    left: 0;
  }
}
@media (max-width: 575px) {
  .section-about .box-about .about-img::before {
    bottom: -35px;
    left: -5px;
  }
}
.section-about .box-about .about-img img {
  width: 95%;
  float: right;
  height: 100%;
  object-fit: cover;
  border-radius: 60px 5px 60px 5px;
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.5);
  filter: grayscale(0);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .box-about .about-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .box-about .about-img img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-about .box-about .about-img img {
    width: 98%;
  }
}

.section-title {
  position: relative;
  padding: 10px 0;
  text-align: left;
  z-index: 1;
}
@media (max-width: 575px) {
  .section-title {
    padding: 0px 0;
    margin: 15px 0;
  }
}
.section-title .sub-bg {
  font-size: 80px;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #323232;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 700;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .sub-bg {
    font-size: 70px;
    top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .sub-bg {
    font-size: 65px;
    top: 10px;
  }
}
@media (max-width: 575px) {
  .section-title .sub-bg {
    font-size: 65px;
    top: 10px;
  }
}
.section-title .subtitle {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c63f1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .subtitle {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .section-title .subtitle {
    font-size: 14px;
  }
}
.section-title .title {
  text-transform: uppercase;
  margin-bottom: 5px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .section-title .title {
    font-size: 40px;
  }
}

.bg-dots {
  background-image: url("../img/elements/bg-dots.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-product {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-product .products-content p {
    font-size: 14px;
  }
}
.section-product .card-prod {
  overflow: hidden;
  margin: 10px 0;
  border-radius: 6px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.section-product .card-prod:hover {
  transform: translateY(-5px);
}
.section-product .card-prod:hover .card-prod-content {
  background-image: linear-gradient(60deg, #1c63f1 0%, #447ff5 99%);
}
.section-product .card-prod:hover .card-prod-content::before {
  background-color: #fff;
  height: 70px;
}
.section-product .card-prod:hover .cart-img img {
  transform: scale(1.02);
}
.section-product .card-prod:hover .btn-a {
  background-color: #fff;
}
.section-product .card-prod:hover .btn-a i {
  color: #505050;
}
.section-product .card-prod .cart-img {
  overflow: hidden;
  width: 100%;
  height: 270px;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-product .card-prod .cart-img {
    height: 210px;
  }
}
@media (max-width: 575px) {
  .section-product .card-prod .cart-img {
    height: 200px;
  }
}
@media (max-width: 320px) {
  .section-product .card-prod .cart-img {
    height: 200px;
  }
}
.section-product .card-prod .cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.section-product .card-prod .card-prod-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(90deg, #447ff5 0%, #1c63f1 99%);
  position: relative;
  padding: 30px 43px 35px;
  transition: 0.5s ease;
  height: 120px;
}
.section-product .card-prod .card-prod-content::before {
  position: absolute;
  height: 60px;
  width: 6px;
  background: #022366;
  content: "";
  left: 0;
  transition: 0.3s;
}
.section-product .card-prod .card-prod-content h2, .section-product .card-prod .card-prod-content h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
  transition: 0.3s ease;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-product .card-prod .card-prod-content h2, .section-product .card-prod .card-prod-content h3 {
    font-size: 18px;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .section-product .card-prod .card-prod-content h2, .section-product .card-prod .card-prod-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .section-product .card-prod .card-prod-content h2, .section-product .card-prod .card-prod-content h3 {
    font-size: 16px;
  }
}
.section-product .card-prod .card-prod-content .btn-a {
  height: 55px;
  width: 55px;
  border: 2px solid #ececec;
  line-height: 55px;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 575px) {
  .section-product .card-prod .card-prod-content .btn-a {
    height: 45px;
    width: 45px;
  }
}

.section-servicos .section-title .sub-bg {
  left: 50%;
  transform: translateX(-50%);
}
.section-servicos .card-servicos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  border-radius: 5px;
  overflow: hidden;
  cursor: default;
  background-image: url("../img/about/about.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: 0.3s ease;
  height: 100%;
  min-height: 245px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-servicos .card-servicos {
    min-height: 315px;
  }
}
.section-servicos .card-servicos::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1c63f1;
  opacity: 0.8;
  z-index: -1;
}
.section-servicos .card-servicos .content-hover {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #505050;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  transform: translateY(350px);
}
.section-servicos .card-servicos .content-hover p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #eee;
}
.section-servicos .card-servicos:hover {
  background: #505050;
  color: #fff;
  transform: scale(1.01);
}
.section-servicos .card-servicos:hover .content-hover {
  transform: translateY(0px);
}
.section-servicos .card-servicos:hover i {
  color: #fff;
}
.section-servicos .card-servicos:hover h2 {
  color: #fff;
}
.section-servicos .card-servicos:hover p {
  color: #fff;
}
.section-servicos .card-servicos i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
}
.section-servicos .card-servicos h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}
.section-servicos .card-servicos p {
  color: #fff;
  font-size: 14px;
}
.section-servicos .card-servicos.active {
  background-color: #447ff5;
}
.section-servicos .card-servicos.active:hover {
  background-color: #505050;
}
.section-servicos .card-servicos.active i {
  color: #fff;
}
.section-servicos .card-servicos.active h2 {
  color: #fff;
}
.section-servicos .card-servicos.active p {
  color: #fff;
}

.bg-slide {
  position: relative;
}
.bg-slide::before {
  position: absolute;
  content: "";
  display: block;
  width: 90%;
  height: 130%;
  right: -70px;
  transform: translateY(55%);
  bottom: 50%;
  border-radius: 70px 0 0px 0px;
  background: linear-gradient(120deg, #083691 30%, #03215d 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-slide::before {
    width: 110%;
    height: 100%;
    right: -29px;
    transform: translateY(50%);
    border-radius: 55px 55px 0px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bg-slide::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .bg-slide::before {
    display: none;
  }
}

.slide-one {
  padding: 15px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-one {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-one {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .slide-one {
    padding: 15px;
  }
}
.slide-one .slick-list {
  padding: 30px 0px;
}
.slide-one .slick-slide {
  margin: 0 10px;
}
.slide-one .custom-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2%;
  height: 50px;
  width: 50px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #1c63f1;
  color: #1c63f1;
  z-index: 1;
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease;
}
.slide-one .custom-arrows:hover {
  transform: scale(1.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide-one .custom-arrows {
    top: -2%;
    height: 45px;
    width: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-one .custom-arrows {
    top: 43%;
    height: 50px;
    width: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-one .custom-arrows {
    top: 43%;
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 575px) {
  .slide-one .custom-arrows {
    top: 43%;
    height: 35px;
    width: 35px;
  }
}
.slide-one .slick-arrow-prev {
  left: 84%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide-one .slick-arrow-prev {
    left: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-one .slick-arrow-prev {
    left: 0%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-one .slick-arrow-prev {
    left: 0%;
  }
}
@media (max-width: 575px) {
  .slide-one .slick-arrow-prev {
    left: 0%;
  }
}
.slide-one .slick-arrow-next {
  right: 3%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide-one .slick-arrow-next {
    right: 3%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-one .slick-arrow-next {
    right: 0%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-one .slick-arrow-next {
    right: 1%;
  }
}
@media (max-width: 575px) {
  .slide-one .slick-arrow-next {
    right: 0;
  }
}
.slide-one .slick-dots {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slide-one .slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slide-one .slick-dots li button {
  display: none;
}
.slide-one .slick-dots li:before {
  top: 1px;
  transition: all 0.5s;
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 3px;
  border-radius: 50px;
  background-color: #646464;
  position: absolute;
}
.slide-one .slick-dots li.slick-active:before {
  top: 0;
  height: 10px;
  width: 16px;
  margin: 0 auto;
  background-color: #1c63f1;
}

.section-parceiros {
  padding: 35px 0;
}
.section-parceiros .title-section {
  margin: 20px 0;
}
.section-parceiros .parceiros .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  padding: 5px;
}
.section-parceiros .parceiros .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-brand {
  padding: 10px 5px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-brand {
    padding: 5px 10px;
  }
}
@media (max-width: 575px) {
  .slide-brand {
    padding: 5px 10px;
  }
}
.slide-brand .slick-list {
  padding: 15px 0;
}
.slide-brand .slick-slide {
  margin: 0 5px;
}
.slide-brand .custom-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 42%;
  height: 30px;
  width: 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #1c63f1;
  color: #1c63f1;
  z-index: 1;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
}
.slide-brand .custom-arrows:hover {
  transform: scale(1.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide-brand .custom-arrows {
    top: 42%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-brand .custom-arrows {
    top: 43%;
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 575px) {
  .slide-brand .custom-arrows {
    top: 43%;
    height: 35px;
    width: 35px;
  }
}
.slide-brand .slick-arrow-prev {
  left: -3%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide-brand .slick-arrow-prev {
    left: -1%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-brand .slick-arrow-prev {
    left: -1%;
  }
}
@media (max-width: 575px) {
  .slide-brand .slick-arrow-prev {
    left: 0%;
  }
}
.slide-brand .slick-arrow-next {
  right: -3%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide-brand .slick-arrow-next {
    right: -1%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-brand .slick-arrow-next {
    right: -1%;
  }
}
@media (max-width: 575px) {
  .slide-brand .slick-arrow-next {
    right: 0;
  }
}
.slide-brand .slick-dots {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slide-brand .slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slide-brand .slick-dots li button {
  display: none;
}
.slide-brand .slick-dots li:before {
  top: 1px;
  transition: all 0.5s;
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 3px;
  border-radius: 50px;
  background-color: #646464;
  position: absolute;
}
.slide-brand .slick-dots li.slick-active:before {
  top: 0;
  height: 10px;
  width: 16px;
  margin: 0 auto;
  background-color: #1c63f1;
}

.contact-form {
  padding-bottom: 50px;
  background: linear-gradient(270deg, #0a3696, #e2b93242, #0a3696);
}
.contact-form .form-wrapper {
  margin-top: -160px;
  background: #fff;
  padding: 73px 106px 69px 122px;
  border-radius: 20px;
  box-shadow: 0px 8px 10px 1px #00000087;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .contact-form .form-wrapper {
    padding: 73px 106px 69px 106px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-form .form-wrapper {
    padding: 62px 26px 41px 29px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form .form-wrapper {
    padding: 62px 26px 41px 29px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form .form-wrapper {
    padding: 45px 26px 41px 29px;
  }
}
@media (max-width: 575px) {
  .contact-form .form-wrapper {
    padding: 45px 26px 41px 29px;
  }
}

/*=================== contact banner start ====================*/
.dropdown .dropdown-menu {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.contact-info {
  margin-bottom: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
}
.contact-info__icon {
  margin-right: 20px;
}
.contact-info__icon i, .contact-info__icon span {
  color: #8f9195;
  font-size: 27px;
}
.contact-info .media-body h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-size: 16px;
  color: #2a2a2a;
}
.contact-info .media-body h3 a:hover {
  color: #447ff5;
}
.contact-info .media-body p {
  color: #8a8a8a;
}

/*=================== contact banner end ====================*/
/*=================== contact form start ====================*/
.contact-full {
  background: #f6f6f6;
  border-radius: 35px;
  padding: 10px;
}
.contact-full .contact-title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1c63f1;
}
.contact-full .box-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #f5f5f5;
  border-radius: 35px;
  height: 100%;
  width: 100%;
}
.contact-full .box-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  height: 100%;
  width: 100%;
  background: linear-gradient(140deg, #1c63f1 30%, #022366 100%);
  border-radius: 35px;
}
.contact-full .box-contact-info .contact-info:last-child {
  margin-bottom: 0;
}
.contact-full .box-contact-info .contact-info .media-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ebebeb;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-full .box-contact-info .contact-info .media-body h3 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .contact-full .box-contact-info .contact-info .media-body h3 {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .contact-full .box-contact-info .contact-info .media-body h3 {
    font-size: 12px;
    word-break: break-word;
  }
}
.contact-full .box-contact-info .contact-info .media-body h3 a:hover {
  color: #447ff5;
}
.contact-full .box-contact-info .contact-info .media-body p {
  color: #dbdbdb;
  font-weight: 500;
  margin: 0;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-full .box-contact-info .contact-info .media-body p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .contact-full .box-contact-info .contact-info .media-body p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 320px) {
  .contact-full .box-contact-info .contact-info .media-body p {
    font-size: 11px;
    line-height: 20px;
  }
}
.contact-full .box-contact-info .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 25px;
  background-color: #447ff5;
  margin-right: 20px;
  border-radius: 50px;
}
.contact-full .box-contact-info .icon i, .contact-full .box-contact-info .icon span {
  color: #fff;
  font-size: 25px;
}
.contact-full .form-contact label {
  font-size: 14px;
}
.contact-full .form-contact .form-group {
  margin-bottom: 30px;
}
.contact-full .form-contact .form-control {
  border: 1px solid #d6d6d6;
  border-radius: 0px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background-color: #fff;
  box-shadow: 1px 1px 10px -5px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.contact-full .form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.contact-full .form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}
.contact-full .form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
}

.box-map {
  background: #eee;
  border-radius: 20px;
  height: 400px;
  padding: 0;
  margin: 35px 0;
  overflow: hidden;
  box-shadow: 2px 2px 15px -3px rgba(0, 0, 0, 0.2);
}
.box-map iframe {
  width: 100%;
  height: 100%;
}

.contact-title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 30px;
}
.form-contact .form-control {
  border: 1px solid #e5e6e9;
  border-radius: 0px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
}

/*=================== contact form end ====================*/
/* Contact Success and error Area css
============================================================================================ */
.modal-message .modal-dialog {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) !important;
  margin: 0px;
  max-width: 500px;
  width: 100%;
}
.modal-message .modal-dialog .modal-content .modal-header {
  text-align: center;
  display: block;
  border-bottom: none;
  padding-top: 50px;
  padding-bottom: 50px;
}
.modal-message .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  right: -15px;
  top: -15px;
  padding: 0px;
  color: #fff;
  opacity: 1;
  cursor: pointer;
}
.modal-message .modal-dialog .modal-content .modal-header h2 {
  display: block;
  text-align: center;
  padding-bottom: 10px;
}
.modal-message .modal-dialog .modal-content .modal-header p {
  display: block;
}

.contact-section {
  padding: 75px 0 0px;
}
@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact-section {
    padding: 80px 0 0px;
  }
}
.contact-section .btn_2 {
  background-color: #191d34;
  padding: 18px 60px;
  border-radius: 50px;
  margin-top: 0;
}
.contact-section .btn_2:hover {
  background-color: #447ff5;
}

.boxed-btn {
  background: #fff;
  color: #505050 !important;
  display: inline-block;
  padding: 18px 44px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  border: 1px solid #505050;
  letter-spacing: 3px;
  text-align: center;
  color: #505050;
  text-transform: uppercase;
  cursor: pointer;
}
.boxed-btn:hover {
  background: #505050;
  color: #fff !important;
  border: 1px solid #505050;
}
.boxed-btn:focus {
  outline: none;
}
.boxed-btn.large-width {
  width: 220px;
}

.slider-height2 {
  height: 275px;
  background-size: cover;
}

.header-transparent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
}

.hero-overly {
  position: relative;
  z-index: 1;
}
.hero-overly::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.slider-area2 {
  background-image: url(../img/about/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  margin-top: 135px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area2 {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area2 {
    margin-top: 120px;
  }
}
@media (max-width: 575px) {
  .slider-area2 {
    margin-top: 120px;
  }
}
.slider-area2 .hero-cap h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area2 .hero-cap h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area2 .hero-cap h1 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .slider-area2 .hero-cap h1 {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  .slider-area2 .hero-cap h1 {
    font-size: 24px;
  }
}
.slider-area2 .hero-cap .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.slider-area2 .hero-cap .breadcrumb a {
  color: #dcdcdc;
  font-size: 18px;
  text-transform: capitalize;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area2 .hero-cap .breadcrumb a {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .slider-area2 .hero-cap .breadcrumb a {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .slider-area2 .hero-cap .breadcrumb a {
    font-size: 13px;
  }
}
.slider-area2 .hero-cap .breadcrumb-item + .breadcrumb-item::before {
  color: #dcdcdc;
}

.ajust-padding {
  padding-top: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ajust-padding {
    padding-top: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ajust-padding {
    padding-top: 0px;
  }
}
@media (max-width: 575px) {
  .ajust-padding {
    padding-top: 0px;
  }
}

.ajust-link {
  color: #fff;
}
.ajust-link:hover {
  color: #1c63f1;
}

.color-w {
  color: #fff;
}

/* animaçãozinha */
@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=============*/
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 75px;
  right: 28px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  animation: sweep 1.5s ease-in-out;
}

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

/* posição no mobile */
@media (max-width: 600px) {
  .whatsapp {
    right: 12px;
    bottom: 73px;
  }
}
/* ================== */
.politica-de-privacidade h2 {
  margin-top: 15px;
}

.lgpd {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 95%;
  margin: 0 2.5%;
  z-index: 7886392056514347007;
  display: none;
}
.lgpd .lgpd-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.lgpd .lgpd-container .lgpd-msg {
  font-size: 13px;
  width: 90%;
}
.lgpd .lgpd-container .lgpd-msg a {
  color: #fff;
  text-decoration: underline;
}
.lgpd .lgpd-container .lgpd-button-container {
  width: 10%;
}
.lgpd .lgpd-container .lgpd-button-container .lgpd-btn {
  background: #eab934;
  border: 0;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.card-prod2 {
  position: relative;
  width: 100%;
  height: 100%;
  height: 400px;
  color: #2e2d31;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 1px 1px 26px -5px rgba(0, 0, 0, 0.3);
  border-top: 3px solid #505050;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-prod2 {
    height: 390px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-prod2 {
    height: 385px;
  }
}
.card-prod2:hover .card_content {
  transform: translateY(200px);
}
.card-prod2:hover .card_description p {
  opacity: 1;
  transition-delay: 0.25s;
  padding: 5px 0;
}
.card-prod2 .card-img {
  width: 100%;
  height: 295px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-prod2 .card-img {
    height: 230px;
  }
}
.card-prod2 .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-prod2 .box-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 130px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-prod2 .box-title {
    min-height: 135px;
  }
}
.card-prod2 .card_title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.card-prod2 .card_subtitle {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
.card-prod2 .card_description {
  width: 100%;
  height: 100%;
}
.card-prod2 .card_description p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s;
}
.card-prod2 .card_content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  background: #1c63f1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: translateY(210px);
  transition: transform 0.25s;
}
.card-prod2 .card_content::before {
  content: "";
  display: none;
  position: absolute;
  top: -48px;
  right: -45px;
  width: 100px;
  height: 100px;
  transform: rotate(-175deg);
  border-radius: 50%;
  box-shadow: inset 48px 48px #1c63f1;
  z-index: -1;
}

.btn-card-one {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  padding: 3px 25px;
  background: #f5f5f5;
  color: #447ff5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  -moz-user-select: none;
  letter-spacing: 1px;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s ease;
}
.btn-card-one::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-card-one:hover {
  color: #022366;
  transform: scale(1.02);
}
.btn-card-one:hover:after {
  left: 0;
  width: 100%;
}
.btn-card-one:active {
  top: 2px;
}

.bg-cinza {
  background-color: #fff;
}

.politica-de-privacidade h2 {
  color: #000;
}

.map-link a {
  color: #000;
}
.map-link a:hover {
  color: #447ff5;
  padding-left: 5px;
}

.accordion .card-header:after {
  font-family: "FontAwesome";
  content: "";
  float: right;
}

.accordion .card-header.collapsed:after {
  /* symbol for "collapsed" panels */
  content: "";
}

/*fancybox*/
.demo {
  width: 100%;
  margin: 20px auto;
}

#lightSlider {
  list-style: none outside none;
  padding-left: 0;
  margin-bottom: 0;
}

.lSSlideOuter .lSPager.lSGallery li {
  opacity: 0.5;
}

.lSSlideOuter .lSPager.lSGallery li.active {
  opacity: 1;
}

lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li {
  border-radius: 0;
}

lSSlideOuter .lSPager.lSGallery li.active:hover, .lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 0;
}

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: 64px !important;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

.galeriaimg {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card {
  margin-bottom: 20px;
}
.card a {
  text-align: center;
}

.galeriacard {
  zoom: 1;
  opacity: 0.87;
}
.galeriacard:hover {
  opacity: 1;
}

.img-fluid2 {
  width: 600px;
  height: 400px;
  object-fit: contain;
}

.img-gallary {
  width: 280px;
  height: 370px;
  object-fit: cover;
}

.imgcard-fluid {
  width: 298px;
  height: 200px;
  object-fit: contain;
}

.imgcard-cover {
  width: 298px;
  height: 200px;
  object-fit: cover;
}

.card-fluid {
  width: 298px;
  height: 215px;
  object-fit: revert;
}

.textthumb {
  font-size: 13px;
}

.txtprod ul {
  line-height: 30px;
  margin-left: 15px;
  margin-bottom: 15px;
}
.txtprod ul li {
  list-style: disc;
  color: #000;
  margin-left: 15px;
}
.txtprod ol {
  line-height: 30px;
  margin-bottom: 15px;
}
.txtprod ol li {
  list-style: decimal;
}
.txtprod a:hover {
  color: #c4c4c4;
}
.txtprod span {
  color: #5f68ae;
}

.icontxt {
  line-height: 12px;
  font-size: 9px !important;
  font-weight: 400;
}

.txtprodcard p {
  line-height: 19px;
  font-size: 14px;
  padding-top: 0px;
  font-weight: 400;
}

.obstxt {
  font-size: 12px !important;
  color: #777777;
}

.nav-pills {
  border-bottom: 1px solid #1c63f1;
  z-index: 10;
}

.button-regiao {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 5px 12px;
  background: #02020203;
  color: #000;
  font-size: 14px;
  margin: 3px 0 0;
  text-align: center;
  border-bottom: 1px solid #1c63f1;
}
.button-regiao:hover {
  background: #1c63f1;
  color: #fff;
}

.button-regiao.active {
  background: #447ff5 !important;
  color: #fff;
}

.nav-two {
  float: left;
  width: 10%;
  margin: 2px 5px;
  list-style: none !important;
  margin-left: 0px !important;
}

@media (max-width: 425px) {
  .nav-two {
    float: left;
    width: 100%;
    margin: 2px 5px;
  }
}
.regioes h2 {
  font-size: 1.2rem;
}

.txtli {
  padding: 10px 3px 4px;
}

.regiaobg {
  background: #f9f9f9b8;
  width: 86%;
}

@media (max-width: 425px) {
  .regiaobg {
    background: #f9f9f9b8;
    width: 100%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .regiaobg {
    background: #f9f9f9b8;
    width: 88%;
  }
}
.prodinterno h2 {
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
}
.prodinterno h3 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.iconBar {
  width: 100%;
  background-color: transparent;
}

.iconBar {
  border: 1px solid #00000014;
  border-radius: 10px;
}

.iconBar a {
  display: block;
  text-align: center;
  padding: 15px;
  transition: all 0.5s ease;
  color: #011126;
  font-size: 20px;
  border-bottom: 1px solid #00000014;
  border-radius: 10px;
}

.iconBar h2 {
  display: block;
  text-align: center;
  padding: 15px;
  transition: all 0.5s ease;
  color: #011126;
  font-size: 26px;
}

.iconBar a:hover {
  color: #fd7302;
}

.iconBar .active {
  background-color: #fd7302;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .iconBar a {
    display: block;
    text-align: center;
    padding: 15px;
    transition: all 0.5s ease;
    color: #011126;
    font-size: 14px;
    border-bottom: 1px solid #00000014;
    border-radius: 10px;
  }

  .iconBar h2 {
    display: block;
    text-align: center;
    padding: 15px;
    transition: all 0.5s ease;
    color: #011126;
    font-size: 16px;
  }
}
.top-prod {
  margin-top: 4rem;
}

.mascote {
  position: fixed;
  width: 130px;
  height: 70px;
  bottom: 75px;
  left: 14px;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  /* animation: sweep 1.5s ease-in-out; */
  animation: shake-animation 5s 2s ease infinite;
}

.contrate {
  color: #1c63f1;
  font-weight: 600;
}

/* contrato cards */
.contrato-card {
  background: #f1f1f1;
}

.header {
  background: #fafafa;
  border: 1px solid #cacaca;
  width: 150px;
  height: 150px;
  margin: 15px auto;
  border-radius: 100%;
}

.header .price {
  font-size: 24px;
  padding-top: 5px;
}

.header.headerprice h3 {
  color: #1c63f1;
  display: block;
  margin-top: 30px;
  margin-left: 50px;
}

.header.headersilver h3 {
  color: #1c63f1;
  display: block;
  margin-top: 60px;
  margin-left: 35px;
}

.header.headergold h3 {
  color: #1c63f1;
  display: block;
  margin-top: 60px;
  margin-left: 40px;
}

.header span {
  display: block;
  margin-left: 30px;
}

.pt-popover {
  color: #000;
  border-bottom: 1px dashed #000;
  position: relative;
}

.card-texto li {
  padding: 12px 0px;
  font-size: 13px;
  line-height: 18px;
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #f8f8f8;
  color: #333333;
}

/* Gray Buttons */
.btn-gray {
  color: #fff;
  background-color: #666666;
  border-color: #666666;
}

.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active,
.btn-gray.active,
.open .dropdown-toggle.btn-gray {
  color: #ffffff !important;
  background-color: #1c63f1;
  border-color: #1c63f1;
}

/* */
.bt3 h2 {
  font-family: "Montserrat", sans-serif;
  color: #022366;
  margin-top: 0px;
  font-style: normal;
  font-weight: 500;
  text-transform: normal;
}

p {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: normal;
}

.popover-title {
  background: #1c63f1 !important;
  color: #fff !important;
  text-align: center;
}

.col3 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

@media (min-width: 320px) and (max-width: 576px) {
  .col3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .col3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
  }
}
@media (min-width: 1200px) {
  .col3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.pl4 {
  padding-left: 1.5rem;
}

.academias h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ba822c;
}
.academias h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ba822c;
}

.recomendacoes-tecnicas p span {
  text-decoration: underline;
  font-weight: 600;
}

.feature-section {
  background: url(../img/banner/pattern_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0;
}

@media (max-width: 767px) {
  .feature-section {
    padding: 60px 0 30px;
  }
}
.card-feature {
  padding: 40px 35px;
  border: 0;
  border-radius: 0;
  background: #fff;
  transition: all 300ms linear 0s;
}

@media (max-width: 1200px) {
  .card-feature {
    padding: 30px 20px;
  }
}
@media (max-width: 1200px) {
  .card-feature {
    margin-bottom: 30px;
  }
}
.card-feature__icon {
  margin-bottom: 12px;
  display: inline-block;
  transform: translateY(4px);
}

.card-feature__icon i {
  color: #1c63f1;
  font-size: 26px;
  margin-right: 15px;
}

@media (max-width: 991px) {
  .card-feature__icon {
    display: block;
  }
}
.card-feature__title {
  font-size: 20px;
  font-weight: 600;
  color: #020a21;
}

@media (max-width: 1200px) {
  .card-feature__title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .card-feature__title {
    font-size: 16px;
  }
}
.card-feature__subtitle {
  margin-bottom: 0;
  color: #797979;
  list-style: disc;
}

.card-feature:hover {
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(33, 20, 106, 0.1);
}

.thead-color {
  background: #447ff5 !important;
  color: #fff;
}

.table {
  vertical-align: middle;
}

.tr-color {
  background: linear-gradient(130deg, #20375e 0%, #4042a2 100%) !important;
  color: #fff;
}

.area-heading li {
  list-style: disc;
  font-family: "Outfit", sans-serif;
  color: #000;
  font-size: 16px;
  padding-left: 10px;
}

.topicos li {
  list-style: disc;
  margin-left: 15px;
}

.w-120 {
  min-width: 120px;
  max-width: 220px;
  width: 100% !important;
}

.content-text ul li {
  list-style: disc;
  margin-left: 15px;
}

.btn-ctt {
  background: #1c63f1;
  color: white;
  font-family: inherit;
  padding: 0.3em;
  padding-left: 1.2em;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  max-width: 240px;
}
.btn-ctt .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 2em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #1c63f1;
  right: 0.3em;
  transition: all 0.3s;
}
.btn-ctt .icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s;
  color: #1c63f1;
}
.btn-ctt:hover .icon {
  width: calc(100% - 0.6em);
}
.btn-ctt:hover .icon i {
  transform: translateX(0.1em);
}
.btn-ctt:active .icon {
  transform: scale(0.95);
}

/*# sourceMappingURL=style.css.map */
