/* Variables */
/* ==========
General
========== */
a {
  text-decoration: none;
}
img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
/* ==========
AOS
========== */
@media screen and (max-width: 1199px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* ==========
Section G
========== */
.section-header {
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: 45px;
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: -2px -2px 0 #d03a3b, 2px -2px 0 #d03a3b, -2px 2px 0 #d03a3b, 2px 2px 0 #d03a3b;
}
@media (max-width: 576px) {
  .section-header {
    margin-bottom: 10px;
  }
  .section-header h2 {
    font-size: 40px;
  }
  .section-header p {
    font-size: 28px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .section-header {
    margin-bottom: 10px;
  }
  .section-header h2 {
    font-size: 45px;
  }
  .section-header p {
    font-size: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-header {
    margin-bottom: 10px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 38px;
  }
}
/* ==========
Up button
========== */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #047465;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 1px solid #FFFFFF;
}
.scroll-top i {
  font-size: 24px;
  color: #FFFFFF;
  line-height: 0;
}
.scroll-top:hover {
  background: #f7e300;
  color: #047465;
}
.scroll-top:hover i {
  color: #047465;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* ==========
Header
========== */
.header {
  max-width: 1920px;
  padding: 0 2%;
  margin: auto;
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
}
.header .logo img {
  max-height: 45px;
  margin-right: 6px;
}
.sticked {
  background: #FFFFFF;
}
section {
  scroll-margin-top: 100px;
}
@media (max-width: 576px) {
  .header {
    height: 60px;
  }
  .header .logo img {
    max-height: 25px;
  }
}
/* ==========
Desktop Nav
========== */
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 20px;
    font-weight: 600;
    color: #0c4190;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 20px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #d03a3b;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #d03a3b;
  }
}
@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
/* ==========
Mobile Nav
========== */
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #047465;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 2px solid #047465;
    font-size: 26px;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 26px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover,
  .navbar li:hover > a {
    color: #f7e300;
  }
  .navbar .active,
  .navbar .active:focus {
    color: #f7e300;
    border-color: #f7e300;
  }
  .mobile-nav-show {
    color: #d03a3b;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }
  .mobile-nav-hide {
    color: #d03a3b;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}
/* ==========
Hero
========== */
.hero {
  width: 100%;
  padding: 10px 1%;
  margin-top: 70px;
}
.hero .hero-int {
  max-width: 1920px;
  margin: auto;
  position: relative;
  max-height: 920px;
  background: url("../img/bg/BG-home.jpg") center center;
  background-size: cover;
  border-radius: 25px;
  padding: 60px 0;
}
.hero .hero-int h2 {
  text-align: right;
  font-size: 4em;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 0 40px 0 0;
  text-shadow: -3px -3px 0 #d03a3b, 3px -3px 0 #d03a3b, -3px 3px 0 #d03a3b, 3px 3px 0 #d03a3b;
}
.hero .hero-int h2 span {
  font-size: 2.4rem;
}
.hero .hero-int p {
  text-align: right;
  padding: 0 40px 0 0;
  color: #FFFFFF;
  font-size: 2.1em;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 650px;
  margin: 0 0 0 auto;
}
.hero .hero-int .btns {
  padding: 0 40px 0 0;
}
.hero .hero-int .btns .draw-border {
  box-shadow: inset 0 0 0 4px #FFFFFF;
  color: #047465;
  transition: color 0.25s 0.08333333s;
  position: relative;
}
.hero .hero-int .btns .draw-border::before {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-bottom-width: 4px;
  border-left-width: 4px;
}
.hero .hero-int .btns .draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-top-width: 4px;
  border-right-width: 4px;
}
.hero .hero-int .btns .draw-border:hover {
  color: #d03a3b;
  background: #FFFFFF;
}
.hero .hero-int .btns .draw-border:hover::before {
  border-color: #d03a3b;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
  transition-delay: 0s, 0s, 0.25s;
}
.hero .hero-int .btns .draw-border:hover::after {
  border-color: #d03a3b;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
  transition-delay: 0s, 0.25s, 0s;
}
.hero .hero-int .btns .btn {
  margin-top: 20px;
  background: white;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font: 700 1rem "Roboto Slab", sans-serif;
  padding: 0.8em 3em;
  letter-spacing: 0.05rem;
}
.hero .hero-int .btns .btn:focus {
  outline: 2px dotted #FFFFFF;
}
.hero .hero-int .btns .btn:first-child {
  margin-right: 10px;
}
@media (max-width: 576px) {
  .hero .hero-int {
    max-height: 920px;
    background: url("../img/bg/BG-home.png") center center;
    background-size: cover;
    padding: 60px 0 60px;
  }
  .hero .hero-int h2 {
    text-align: center;
    font-size: 2.4em;
    margin: 20px auto;
    padding: 0 2px;
  }
  .hero .hero-int h2 span {
    font-size: 2rem;
  }
  .hero .hero-int p {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .hero .hero-int .btns {
    padding: 0 10px;
  }
  .hero .hero-int .btns .btn {
    padding: 0.8em 2.2em;
    margin-top: 10px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .hero .hero-int {
    max-height: 1320px;
    background: url("../img/bg/BG-home.png") center center;
    background-size: cover;
    padding: 80px 0;
  }
  .hero .hero-int h2 {
    text-align: center;
    font-size: 3.6em;
    margin: 20px auto;
    padding: 0 20px;
  }
  .hero .hero-int h2 span {
    font-size: 2.2rem;
  }
  .hero .hero-int p {
    text-align: center;
    color: #FFFFFF;
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0 20px;
    margin: auto;
  }
  .hero .hero-int .campania {
    text-align: center;
  }
  .hero .hero-int .campania img {
    max-height: 660px;
  }
  .hero .hero-int .btns {
    padding: 0 10px;
  }
  .hero .hero-int .btns .btn {
    margin-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero .hero-int h2 {
    font-size: 2.5em;
    margin: 0 auto 20px;
  }
  .hero .hero-int h2 span {
    font-size: 1.9rem;
  }
  .hero .hero-int p {
    font-size: 1.3em;
    margin-bottom: 30px;
  }
}
/*=============
Brands
=============*/
.brands {
  padding: 0 2%;
}
.brands .brand-cont {
  max-width: 1920px;
  overflow: hidden;
  margin: 20px auto;
  border-radius: 35px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.45);
}
.brands .swiper {
  padding: 0;
}
.brands .swiper-wrapper {
  height: auto;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.brands .swiper-slide {
  text-align: center;
  padding: 15px;
}
.brands .swiper-slide img {
  margin: auto;
  transition: 0.3s;
  padding: 0 10px;
  height: 70px;
}
.brands .swiper-slide img:hover {
  transform: scale(1.1);
}
/* ==========
Dinamica
========== */
.dinamic {
  width: 100%;
  padding: 10px 2%;
}
.dinamic .dinamic-cont {
  padding: 20px 0 80px;
  max-width: 1920px;
  background: url("../img/bg/BG-pasos.png") center center;
  background-size: cover;
  margin: 40px auto 20px;
  border-radius: 35px;
}
.dinamic .pil1 {
  width: 95%;
  min-height: 460px;
  margin: 20px auto;
  padding: 20px 20px 40px;
  text-align: center;
  border-radius: 35px;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 6px solid #d03a3b;
}
.dinamic .pil1 .iconp {
  align-content: center;
  margin: 0px auto;
}
.dinamic .pil1 .iconp img {
  height: 260px;
}
.dinamic .pil1 a {
  color: #047465;
}
.dinamic .pil1 h4 {
  margin-top: 20px;
  font-size: 2.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d03a3b;
  margin-bottom: 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.dinamic .pil1 p {
  width: 80%;
  margin: 5px auto;
  font-weight: 600;
  font-size: 1.2em;
  color: #1C282C;
}
.dinamic .pil1 .wm-b {
  width: 80%;
  margin: 20px auto 0;
}
.dinamic .pil1 .wm-b img {
  height: 60px;
}
.dinamic .bg-a1 {
  background: #FFFFFF;
}
@media (max-width: 576px) {
  .dinamic {
    padding: 0px 0 20px;
  }
  .dinamic .pil1 {
    min-height: 200px;
    margin: 10px auto;
    padding: 40px 10px;
  }
  .dinamic .pil1 .iconp img {
    height: 160px;
    aspect-ratio: 1/1;
  }
  .dinamic .pil1 h4 {
    margin-top: 10px;
    font-size: 2.4em;
  }
  .dinamic .pil1 p {
    margin: 5px auto;
    font-size: 1.2em;
  }
  .dinamic .back-exp {
    background-size: cover;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .dinamic {
    padding: 0px 0 20px;
  }
  .dinamic .pil1 {
    min-height: 400px;
    margin: 10px auto;
    padding: 80px 10px;
  }
  .dinamic .pil1 .iconp {
    width: 120px;
    height: 120px;
  }
  .dinamic .pil1 .iconp img {
    height: 120px;
    aspect-ratio: 1/1;
  }
  .dinamic .pil1 h4 {
    margin-top: 10px;
    font-size: 2em;
  }
  .dinamic .pil1 p {
    margin: 5px auto;
    font-size: 1.4em;
  }
  .dinamic .pil1 .wm-b {
    width: 80%;
    margin: 5px auto 0;
  }
  .dinamic .pil1 .wm-b img {
    height: 60px;
  }
  .dinamic .back-exp {
    background-size: cover;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dinamic {
    padding: 90px 0 20px;
  }
  .dinamic .pil1 {
    min-height: 400px;
    margin: 10px auto;
    padding: 80px 10px;
  }
  .dinamic .pil1 .iconp {
    width: 120px;
    height: 120px;
  }
  .dinamic .pil1 .iconp img {
    height: 120px;
    aspect-ratio: 1/1;
  }
  .dinamic .pil1 h4 {
    margin-top: 10px;
    font-size: 2em;
  }
  .dinamic .pil1 p {
    margin: 5px auto;
    font-size: 1.4em;
  }
  .dinamic .pil1 .wm-b {
    width: 80%;
    margin: 5px auto 0;
  }
  .dinamic .pil1 .wm-b img {
    height: 60px;
  }
  .dinamic .back-exp {
    background-size: cover;
  }
}
/* ==========
Premios
========== */
.awwards {
  width: 100%;
  padding: 10px 2%;
}
.awwards .awd-cont {
  padding: 60px 0;
  max-width: 1920px;
  background: url("../img/bg/bg-premios.png") center center;
  background-size: cover;
  margin: 40px auto 20px;
  border-radius: 35px;
}
.awwards .awd-cont .awrd-int {
  max-width: 95%;
  margin: auto;
}
.awwards .awd-cont .awrd-int .awd-title {
  margin-bottom: 40px;
}
.awwards .awd-cont .awrd-int .awd-title h2 {
  font-size: 45px;
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: -2px -2px 0 #3a669c, 2px -2px 0 #3a669c, -2px 2px 0 #3a669c, 2px 2px 0 #d03a3b;
}
.awwards .awd-cont .awrd-int button {
  text-align: left;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 36px;
}
.awwards .awd-cont .awrd-int span {
  color: #FFFFFF;
  font-size: 28px;
  text-transform: none;
}
.awwards .awd-cont .awrd-int .active {
  color: #f7e300;
  background: transparent;
}
.awwards .awd-cont .awrd-int .diver {
  padding: 20px 0;
  border-left: 6px solid #FFFFFF;
  border-top: none;
  margin-top: 0px;
}
.awwards .awd-cont .awrd-int .ext {
  padding-left: 40px;
}
@media (max-width: 576px) {
  .awwards .awd-cont .awrd-int .awd-title h2 {
    font-size: 32px;
  }
  .awwards .awd-cont .awrd-int button {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .awwards .awd-cont .awrd-int span {
    font-size: 22px;
  }
  .awwards .awd-cont .awrd-int .diver {
    padding: 20px 0;
    border-left: none;
    border-top: 3px solid #FFFFFF;
    margin-top: 20px;
  }
  .awwards .awd-cont .awrd-int .ext {
    padding-left: 40px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .awwards .awd-cont .awrd-int .awd-title h2 {
    font-size: 42px;
  }
  .awwards .awd-cont .awrd-int button {
    margin-bottom: 20px;
    font-size: 38px;
  }
  .awwards .awd-cont .awrd-int span {
    font-size: 26px;
  }
}
/* ==========
Buy
========== */
#buy .cont-w {
  padding-top: 80px;
  padding-bottom: 80px;
}
#buy .btn {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 90px;
  border-radius: 12px;
  transition: 0.5s;
  margin-top: 10px;
  text-decoration: none;
  color: #FFFFFF;
  background: -webkit-linear-gradient(to top, #93291E, #ED213A);
  background: linear-gradient(to top, #93291E, #ED213A);
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#buy .btn:hover {
  background: #047465;
}
#buy .product-inf {
  text-align: center;
  margin: 0px auto 20px auto;
}
#buy .product-inf .product {
  background: #FFFFFF;
  width: 100%;
  padding: 15px 10px;
  border-radius: 15px;
  margin: 0 auto;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#buy .product-inf .product img {
  max-width: 80%;
}
#buy .product-inf .product p {
  text-align: center;
  color: #000;
  font-size: 14px;
  line-height: 1em;
  margin: 5px 0 0 0;
  font-weight: 600;
  height: 49px;
  padding: 5px 5px 8px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1C282C;
}
#buy .product-inf .product i {
  vertical-align: middle;
}
#buy .product-inf .product .btns {
  background: #3a669c;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 5px;
  border-radius: 12px;
  transition: 0.5s;
  text-decoration: none;
  text-align: left;
  width: 100%;
  color: #FFFFFF;
  margin-top: 5px;
}
#buy .product-inf .product .btns a {
  color: #FFFFFF;
  text-decoration: none;
}
#buy .product-inf .product .btns a:hover {
  color: #FFFFFF;
}
#buy .product-inf .product .btns:hover {
  background: #047465;
}
#buy .product-inf .product:hover {
  transform: scale(1.03);
}
#buy .product-inf .info {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #buy .buyall {
    margin-top: 70px;
  }
  #buy .cont-w {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 988px) {
  #buy .product-inf {
    margin-bottom: 90px;
    padding: 0 4%;
    margin-top: 0px;
  }
  #buy .logo-prin {
    text-align: center !important;
  }
  #buy .logo-prin img {
    margin-left: 0px !important;
  }
}
@media (max-width: 992px) {
  #buy .info {
    width: 100% !important;
    margin: 0 auto;
  }
}
@media (min-width: 500px) {
  .product p {
    font-size: 16px;
    line-height: 1em;
    margin: 15px 0 0 0;
    font-weight: 600;
    height: 50px;
    padding: 5px 15px 0 15px !important;
    padding-bottom: 8px;
    text-align: center;
  }
  .product .btns {
    font-weight: 600;
    font-size: 18px !important;
    padding: 6px 15px !important;
    border-radius: 12px;
    transition: 0.5s;
    text-decoration: none;
    text-align: left;
    width: 80% !important;
  }
  .product .btns a {
    text-decoration: none;
    color: #FFFFFF;
  }
  .product .btns a:hover {
    color: #d03a3b;
  }
  .product .btns:hover {
    color: #d03a3b;
  }
}
/* ==========
Footer
========== */
#footer {
  background-color: #047465;
  border-top: 2px solid #FFFFFF;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  width: 95%;
  margin: auto;
  background: #047465;
  padding: 30px 0 10px 0;
}
#footer .footer-top .footer-info {
  /*margin: ;*/
}
#footer .footer-top .footer-info p {
  font-size: 18px;
  margin: 0 auto;
  font-family: sans-serif;
  color: #fff;
  width: auto;
}
#footer .footer-top .footer-info span {
  font-size: 22px;
  line-height: 1.4em;
}
#footer .footer-newsletter .logo-1 {
  width: auto;
  height: 60px;
  margin-right: 10px;
}
#footer .footer-newsletter .logo-2 {
  width: 100px;
  height: auto;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
/* ==========
Modal
========== */
.modal-content {
  background: #FFFFFF;
  border-radius: 15px;
  border: 2px solid #d03a3b;
}
.modal-content .modal-body {
  background-color: transparent;
  border: none;
  padding-top: 10px;
  padding-bottom: 20px;
}
.modal-content .modal-body .register1 .container {
  max-width: 560px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.modal-content .modal-body .register1 .steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.modal-content .modal-body .register1 .steps div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #047465;
  border: 1px solid #047465;
}
.modal-content .modal-body .register1 .steps .active {
  color: #FFFFFF;
  background: #047465;
}
.modal-content .modal-body .register1 h2 {
  font-size: 26px;
  color: #128c7e;
  font-weight: 400;
  margin-top: 40px;
}
.modal-content .modal-body .register1 span {
  font-weight: 700;
}
.modal-content .modal-body .register1 p {
  font-size: 16px;
  color: #1C282C;
  font-weight: 600;
}
.modal-content .modal-body .register1 input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
}
.modal-content .modal-body .register1 button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}
.modal-content .modal-body .register1 button:hover {
  background: #a93226;
}
.modal-content .modal-body .register1 .hidden {
  display: none;
}
.modal-content .modal-body .register1 .legals {
  width: 100%;
  margin: 25px auto;
}
.modal-content .modal-body .register1 .legals .form-check-label {
  font-size: 14px;
  font-weight: 600;
  color: #3a669c;
  margin-left: 4px;
  vertical-align: middle;
}
.modal-content .modal-body .register1 .legals .form-check-input {
  height: 16px;
  width: 16px;
  padding: 2px;
  background-color: rgba(208, 58, 59, 0.6) !important;
  border-radius: 4px !important;
  vertical-align: middle;
}
.modal-content .modal-body .register1 .legals a {
  color: #d03a3b;
  font-weight: 600;
  font-size: 14px;
}
.modal-content .modal-body .register1 .legals a:hover {
  color: #f7e300;
}
.modal-content .modal-body .register1 .img-tnx {
  margin: 10px auto 40px;
}
.modal-content .modal-body .register1 .img-tnx img {
  max-height: 200px;
}
.modal-content .modal-body .register1 .step2errors {
  margin-top: 12px;
  text-align: center;
}
.modal-content .modal-body .register1 .step2errors ul {
  list-style: none;
  padding: 0;
}
.modal-content .modal-body .register1 .step2errors li {
  font-weight: 600;
  font-size: 1.4em;
}
.modal-content .modal-body .closemodl {
  text-align: right;
  margin-bottom: 40px;
}
.modal-content .modal-body .closemodl .btn-close {
  background-color: transparent;
  border: none;
  margin: 0px -8px 0 0;
}
.modal-content .modal-body .closemodl .btn-close i {
  color: #d03a3b;
  font-size: 32px;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .modal-content .modal-body .register1 h2 {
    font-size: 20px;
  }
  .modal-content .modal-body .register1 p {
    font-size: 16px;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .modal-content .modal-body .register1 h2 {
    font-size: 24px;
  }
  .modal-content .modal-body .register1 p {
    font-size: 16px;
  }
}
.file-upload {
  margin-top: 10px;
}
.file-upload p {
  font-weight: 600;
  color: #d03a3b;
  font-size: 1em !important;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 8px;
}
.file-upload .image-box {
  margin: 18px auto;
  height: 60px;
  width: 60px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  -ms-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.5s ease;
}
.file-upload .image-box i {
  color: #d03a3b;
  font-weight: 900;
  font-size: 50px;
}
.file-upload .image-box img {
  height: 40px;
  width: 100%;
  border-radius: 8px;
  display: none;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 480px) {
  .file-upload .image-box {
    height: 60px;
    width: 60px;
  }
  .file-upload .image-box img {
    height: 80px;
    width: 100%;
  }
}
.file-upload .image-box p {
  position: relative;
  top: 32%;
  color: #000000;
  font-size: 14px;
  line-height: 1.3em;
  padding: 0 8%;
}
.loader-form {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2022;
}
.loader-form .three {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loader-form .three .loader {
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
/* LOADER 6 */
#loader-6 span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: #3498db;
  background-color: white;
}
#loader-6 span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}
#loader-6 span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}
#loader-6 span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}
#loader-6 span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}
@keyframes grow {
  0%,
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}
