/*  import google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

:root {
  --text-color: #fff;
  --background: #111;
  --firts-background: url("../images/fondo-1.jpg");
  --to-front: attr(data-content);
  --second-color: #08f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
canvas {
  cursor: grab;
}
body{
  overflow: hidden;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* all similar content styling codes */
section {
  padding: 100px 0;
}
.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}
.max-width-s {
  max-width: 1600px;
  padding: 0 80px;
  margin: auto;
  margin-bottom: 0;
}
.card,
footer {
  font-family: "Poppins", sans-serif;
}
.card .card-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}
section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #111;
  transform: translateX(-50%);
}
section .title::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  font-size: 20px;
  color: crimson;
  padding: 0 5px;
  background: #fff;
  transform: translateX(-50%);
}

/* navbar styling */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 7;
  padding: 30px 0;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.3s ease;
}
.navbar.sticky {
  padding: 15px 0;
  background: #162d3f;
}
.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
.navbar .logo a span {
  color: crimson;
  transition: all 0.3s ease;
}
.navbar.sticky .logo a span {
  color: #fff;
}
.navbar .menu li {
  list-style: none;
  display: inline-block;
}
.navbar .menu li a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover {
  color: crimson;
}
.navbar.sticky .menu li a:hover {
  color: #fff;
}
.navbar .logo {
  width: 100%;
  text-align: center;
}

/* menu btn styling */
.menu-btn {
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}
.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 42px;
  background: crimson;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}
.scroll-up-btn:hover {
  filter: brightness(90%);
}
.menu-options {
  margin-top: 2em;
  width: 100%;
}
.menu-options .opc {
  color: #fff;
  width: 100%;
  border: 1px solid #fff;
  text-align: center;
  padding: 3.5% 0;
  cursor: pointer;
}
.owl-stage-outer{/* overflow: visible!important; */}
/*HOME PRESENT  */
.home {
  display: flex;
  background: var(--firts-background) no-repeat center;
  height: 100vh;
  color: #fff;
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Ubuntu", sans-serif;
}
.home .max-width {
  width: 100%;
  display: flex;
}
.home .max-width .row {
  margin-right: 0;
}
.home-content {
  position: relative;
  width: 100%;
  transition: all 0.9s ease;
}
.home-content .second-content {
  width: 100%;
  position: relative;
  z-index: 1;
}
.second-content img {
  width: 100%;
  cursor: grab;
  transition: transform 1s, filter .5s ease-out;
}

.options div {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #111e;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.options div:hover {
    transition: all 0.3s ease;
    transform: scale(1.5);
    background: #111e;
}
.options div::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fffe;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.options div:hover::after {
  transition: all 0.3s ease;
  transform: scale(0.5);
  background: #fffe;
}

.view_circle{
  transition: all 16s ease;
  transform: scale(65);
  background: #111111c4 !important;
}
.view_circle::before{
  transition: all 0.3s ease;
  animation: none!important;
}
.view_circle::after{
  display: none;
}


@keyframes circle_ciew {
  0%{
    border-radius: 100%;
    transform: scale(10);
    transition: all 0.3s ease;
  } 
  50%{
    border-radius: 50%;
    transform: scale(50);
    transition: all 0.3s ease;
  }
  100%{
    border-radius: 0;
    transform: scale(100);
    transition: all 0.3s ease;
  }
}


.options div::before {
  position: absolute;
  content: "";
  left: -1px;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fffe;
  z-index: 0;
  opacity: 0;
  animation: pulsing 1s ease-out infinite;
  border-radius: 50%;
  bottom: 0;
  margin: auto;
  right: 0;
}
.theme_options_1 div:first-child {
  right: 0%;
  top: 45%;
}

.theme_options_1 div:nth-child(2n) {
  left: 10%;
  top: 65%;
}

.theme_options_1 div:nth-child(3n) {
  left: 30%;
  top: 4%;
}
.theme_options_1 div:nth-child(4n) {
  left: 50%;
  top: 60%;
}
/********************************/
.theme_options_3 div:first-child {
  right: 8%;
  bottom: 23%;
}

.theme_options_3 div:nth-child(2n) {
  left: 10%;
  top: 65%;
}

.theme_options_3 div:nth-child(3n) {
  left: 30%;
  bottom: 40%;
}
.theme_options_3 div:nth-child(4n) {
  left: 66%;
  top: 70%;
}
/*************************************/
.theme_options_5 div:first-child {
  right: 28%;
  bottom: 70%;
}

.theme_options_5 div:nth-child(2n) {
  left: 28%;
  top: 65%;
}

.theme_options_5 div:nth-child(3n) {
  left: 44%;
  bottom: 24%;
}
.theme_options_5 div:nth-child(4n) {
  left: 66%;
  top: 70%;
}
/**************************************/
.color_select{
  position: absolute;
  left: -50px;
  top: 20%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  z-index: 10;
  width: 6%;
}
.color_select::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 85%;
  /* background-color: #08f; */
  left: -30px;
  z-index: 0;
  border-left: 1px solid #eee;
  /* border-radius: 10%; */
  margin: auto 0;
  top: 0;
  bottom: 0;
  opacity: 0.7;
}
.color_select div{
  /* width: 25px; */
  height: 25px;
  /* border-radius: 50%; */
  /* background-color: #fffe; */
  position: relative;
  z-index: 1;
  cursor: pointer;
  /* border: 1px solid #666; */
  opacity: 0.45;
  /* margin-left: 100%; */
  margin-left: auto;
  transition: all 0.3s ease;
  /* cursor: cell; */
  /* width: 100%; */
  /* padding: 10% 0; */
}
/*
.color_select div:hover {
  left: 66%;
  opacity: 1!important;
  transition: all 0.3s ease;
}

.color_select div:hover::after {
  width: 190%!important;
  left: -48px!important;
  transition: all 0.3s ease;
  opacity: 1!important;
}
*/

.color_select div::after{
  content: '';
  position: absolute;
  width: 150px;
  height: 1px;
  background-color: #eee;
  left: -150px;
  top: 0;
  bottom: 0;
  right: auto;
  margin: auto 0;
  opacity: 0.5;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.color_select div::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--background-color);
  z-index: 3;
  cursor: pointer;
  border: 1px solid #666;
  opacity: 0.45;
  /* margin-left: 100%; */
  margin-left: auto;
  transition: all 0.3s ease;
}
/*
.menu-color{left: 66%;
  opacity: 1!important;  
  transition: all 0.3s ease;
}
.menu-color::after{
  width: 190%!important;
  left: -48px!important;
  transition: all 0.3s ease;
  opacity: 1!important;
}
  */
.menu-color{
  margin-left: 150%!important;
  opacity: 1!important;
  transition: all 0.3s ease;
}
.menu-color::before{
  opacity: 1!important;
  transition: all 0.3s ease;
}
.view_pieces {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 8;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  transition: all 0.3s ease;
  margin-top: 100%;
  visibility: hidden;
}
.view_pieces .max-width {
  margin-bottom: 0;
}


@keyframes pulsing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* CARD PRESENT */
.card .title::after {
  content: attr(data-subtitle);
}
.card .card-content .left {
  width: 55%;
  /* text-align: center; */
  height: 500px;
}

.card .card-content .left  iframe{
  width: 90%;
  height: 100%;
  border: none;
  cursor: grab!important;
}
.card .card-content .left img {
  height: 500px;
  width: 500px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: auto;
}
.card .card-content .right {
  width: 45%;
}
.card .card-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #eee;
}
.card .card-content .right .text span {
  color: crimson;
}
.card .card-content .right p {
  text-align: justify;
  color: #eee;
}
.card .card-content .right a {
  display: inline-block;
  background: crimson;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid crimson;
  transition: all 0.3s ease;
}
.card .card-content .right a:hover {
  color: crimson;
  background: none;
}

.card button[type="button"] {
  position: absolute;
  margin: 0 auto;
  width: 200px;
  padding: 10px 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  opacity: 0.8;
  font-size: 1.25em;
  margin-right: auto;
  float: left;
  left: 0;
}
.card button[type="button"] > ion-icon{
}
.show_card {
  visibility: visible;
  transition: all 0.3s ease;
  margin-top: 0;
}

.zoom-img{
  transform: scale(2);
  transition: transform 1s, filter .5s ease-out;
}
/* footer section styling */
footer {
  background: none;
  padding: 15px 23px;
  color: #999;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}
footer span a {
  color: crimson;
  text-decoration: none;
}
footer span a:hover {
  text-decoration: underline;
}

/* responsive media query start */
@media (max-width: 1104px) {
  .card .card-content .left img {
    height: 350px;
    width: 350px;
  }
}

@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
}
@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: #111;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .home .home-content .text-2 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    font-size: 35px;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .card .card-content .column {
    width: 100%;
  }
  .card .card-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .card .card-content .right {
    flex: 100%;
  }
}

@media (max-width: 690px) {
  .max-width-s{
    padding: 0;
  }
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .home .home-content .text-2 {
    font-size: 50px;
  }
  .home .home-content .text-3 {
    font-size: 27px;
  }
  .right form .error-box {
    width: 150px;
  }
  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
}
