/*
-------------------------------------
Created from scratch by 
KV Marketing Solutions for Genesis Tublars
-------------------------------------
*/



/*
-------------------------------------
CSS Resete
-------------------------------------
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

/*
-------------------------------------
Main Styles 
-------------------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Slab&family=Roboto:wght@300&display=swap');

html {
  overflow-x: hidden;
  font-size: 20px;
  position: relative;
}

html:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: url('../../assets/img/background.jpg');
  background-size: contain;
  opacity: 0.1;
}

html>* {
  position: relative;
  z-index: 2;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    position: relative;
}

img {
  width: 100%;
  height: auto;
}

.flex{
  display: flex;
}

.align-center {
  justify-content: center;
  align-items: center;
}

.align-left {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.space-between {
  justify-content: space-between;
  align-items: center;
}

.flex-column{
  flex-direction: column !important;
}

.space-around {
  justify-content: space-around !important;
}

.flex-end {
  justify-content: flex-end;
}


@media only screen and (max-width: 1350px) {
  .flex-invert {
    flex-direction: column-reverse !important;
  }
}

/*
-------------------------------------
Header
-------------------------------------
*/


.hero {
  color: white;
  position: relative;

  mask-image: url(../img/mask.png);
  -webkit-mask-image: url(../img/mask.png);
  mask-position: bottom center;
  -webkit-mask-position: bottom center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2; 
}


/*
-------------------------------------
Navbar
-------------------------------------
*/

nav {
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 1em;

  justify-content: space-around;

}

.nav-element {
  display: inline-block;
  text-decoration: none;
  margin: 0 3em ;
  color: white;
  position: relative;
  transition: ease all .5s;
}

.nav-element>a {
  text-decoration: none;
  color: inherit;
}

.nav-element[data-active="true"] {
  color: rgb(169, 169, 169);
}

.nav-logo {
  width: 360px;
  height: auto;
  padding: 0 1.5em;
}

.nav-element::after {
  content: '';
  position: absolute; 
  height: 5px;
  left: 0;
  bottom: -8px;
  width: 0;
  background-color: #FFC20D;
  transition: width .5s;
}

.nav-element:hover::after {
  width: 100%;
}

@media only screen and (max-width: 1400px) {

  .nav-element { 
     font-size: .9em; 
  }

}

@media only screen and (max-width: 1250px) {

  .nav-element { 
    font-size: .8em; 
 }

}

@media only screen and (max-width: 1120px) {

  .nav-right, .nav-left {
    display: none;
  }

  .main-nav .nav-logo {
    display: none;
  }

}

/*
-------------------------------------
Navbar Mobile
-------------------------------------
*/

.mobile-nav {
  display: none;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: -450px;
  background-color: #ffffff;
  height: 100vh;
  width: 15rem;
  text-align: left;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
  transition: 2s ease;
  z-index: 10;
}

.sidebar>.nav-element {
  color: black;
  font-size: 2rem;
  margin: 1rem 1rem;
}

.sidebar.active {
  right: 0;
}

.ham-menu {
  height: 50px; 
  position: absolute;
  width: 50px;
  top: 20px;
  right: 30px;
  z-index: 999;
  display: none;
  border: 2px solid #FFC20D;
  cursor: pointer;
}

.ham-menu.active {
  position: fixed;
}

.ham-menu span {
  height: 5px; 
  width: 80%;
  background-color:#FFC20D;
  border-radius:  25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .5s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: .5s ease;
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
  transition: .5s ease;
}

.ham-menu.active span:nth-child(3) {
  top: 50%; 
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: .5s ease;
}

@media only screen and (max-width: 1120px) {

  .ham-menu{
   display: block;
  }
  .mobile-nav{
    display: inline;
    position: absolute;
    z-index: 10;
  }
  .mobile-nav .nav-logo {
    width: 12rem;
    transition: .5s;
  }

}
@media only screen and (max-width: 500px) {
  .mobile-nav .nav-logo {
    width: 10rem;
    transition: .5s;
  }

}


/*
-------------------------------------
Titles
-------------------------------------
*/



.titles {
  width: 60rem;
  padding: 5rem 10rem;
  transition: .5s;
}

.titles>*{
  margin: 0 0 2rem 0;
}

h1 {
  font-size: 6rem;
  font-weight: bolder;
  transition: .5s;
}

.titles>p {
  font-size: 1.5rem;
  font-weight: 400;
  transition: .5s;
}

h2 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  transition: .5s;
}

h3 {
  margin-bottom: 1rem;
}

h6 {
  font-size: .8rem;
  opacity: .6;
}





@media only screen and (max-height: 850px) {
  .titles {
  padding-top: 0rem;
  margin: 0;
  transition: .5s;
  }

  h1 {
    font-size: 4rem;
  }

  .titles>p {
    font-size: 1.2rem;
  }
}

@media only screen and (max-height: 1050px) {
  .titles {
  padding-top: 5rem !important;
  transition: .5s;
  }
}

@media only screen and (max-width: 1120px) {

  .titles {
    width: 80%;
    padding: 10rem 4rem;
    transition: .5s;
  }

  h1 {
    font-size: 5rem;
    transition: .5s;
  }

  .titles>p {
    font-size: 1.25rem;
    transition: .5s;
  }

}
@media only screen and (max-width: 750px) {
  h2 {
    font-size: 3.5rem;
    transition: .5s;
  }
}

@media only screen and (max-width: 550px) {
  .titles {
    width: 100%;
    transition: .5s;
    padding: 4rem 1rem;
  }
  h1 {
    font-size: 3.5rem;
    transition: .5s;
  }
  .titles>p {
    font-size: 1rem;
    transition: .5s;
  }
}

@media only screen and (max-width: 330px) { 
  h1 {
    font-size: 2.5rem;
  }
}

/*
-------------------------------------
Buttons
-------------------------------------
*/

.button {
  text-decoration: none;
  background-color: #FFC20D;
  padding: .5rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  margin: 0 1.5rem 0 0;
  white-space: nowrap;
}

.button:hover {
  background-color: #4F2683;
  transition: .5s;
}

.button:not(:hover) {
  background-color: #FFC20D;
  transition: .5s;
}

.button-two-cluster {
  display: flex;
  width: 100%;
  align-items: center;
}

.no-button-link {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.no-button-link>a{
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

.no-button-link>.fire {
  height: 1.25rem;
  width: auto;
}
.no-button-link>.arrow {
  height: auto;
  width: 3rem;
  margin-left: .5rem;
}

.no-button-link>a:hover ~ .arrow {
  transform: translate(10px);
  transition: .5s;
}

.no-button-link>a:not(:hover) ~ .arrow {
  transform: none;
  transition: .5s;
}


@media only screen and (max-width: 550px) {

  .button-two-cluster {
    display: flex;
    flex-direction: column;
    width: 100%;
  
    align-items: flex-start;
    transition: .5s;
  }

}

/*
-------------------------------------
Sections
-------------------------------------
*/

section {
  margin: 10rem;
  transition: .5s;
}

.bottom-margin {
  margin-bottom: 3rem;
}

.section-content {
  width: 50%;
  padding-left: 5rem;
  transition: .5s;
}

.section-content p {
  font-weight: 700;
  font-size: 1.25rem;
  width: 70%;
  transition: .5s;
  margin-bottom: 3rem;
}


.section-content>.no-button-link>a {
  margin-left: 0 ;
}

.section-img {
  height: 45rem;
  width: 40rem;
  box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.section-img>img {
  height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.contact {
  margin-bottom: 1rem !important;
  font-size: 1rem !important;
}

.single-title {
  text-align: center;
  width: 100%;
  position: relative;
}

.single-title p {
  font-weight: bold;
  width: 35rem;
  font-size: 1.25rem;
  text-align: center;
}


@media only screen and (max-width: 1850px) {
  .content-right {
    padding-left: 2rem;
    margin: 0;
    width: 100%;

  }
}


@media only screen and (max-width: 1650px) {
  .section-content {
    width: 100%;
    transition: .5s;
  }
}

@media only screen and (max-width: 1350px) {
 
  section {
    margin: 5%;
    transition: .5s;
  }

  .mobile-flex {
    flex-direction: column;
    margin: 10%;
    transition: .5s;
  }

  .service-list {
    padding: 3rem 0 !important;
    width: 100%;
  }

  .service-list>.container {
    margin: 2rem 0 !important;
  }
}

@media only screen and (max-width: 900px) {

  section {
    margin: 0;
    transition: .5s;
  }
  .section-content>p {
    font-size: 1rem;
    transition: .5s;
  }

  .section-img {
    height: 30rem;
    width: 25rem;
  }

}

@media only screen and (max-width: 550px) {
  .section-content {
    padding: 0;
  }
  .section-content p{ 
    width: 100%;
  }

  h2 {
    font-size: 2.5rem;
  }

  .section-img {
    height: 20rem;
    width: 15rem;
  }
}


/*
-------------------------------------
CTA
-------------------------------------
*/

.call-to-action {
  background-image: url('../img/revolver-03.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100% !important;
  margin: 0 !important;
  height: 20rem;
  color: white;
  position: relative;
}

.call-to-action::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); 
  z-index: 1;
}

.call-to-action > * {
  position: relative;
  z-index: 2; 
}

.cta-element {
  width: 100%;
  text-align: center;
}

.cta-element h2 {
  padding: 0;
  margin: 0;
}

.cta-button {
  align-items: center;
  justify-content: space-between;
  width: 20rem;
}

.cta-button img {
  width: 3rem;
}

.cta-button p {
  font-size: 1.5rem;
}

.cta-button:hover .arrow {
  transform: translate(10px);
  transition: .5s;
}

.cta-button:not(:hover) .arrow {
  transform: none;
  transition: .5s;
}

@media only screen and (max-width: 750px) {
  .call-to-action {
    flex-direction: column !important;
  }

  .cta-button {
    margin-top: 3rem;
  }
}

/*
-------------------------------------
Image Grid
-------------------------------------
*/

.image-grid-section {
  width: 100% !important;
  margin: 0;
}

.image-grid {
  display: flex;
  width: 100% !important;
  height: 25rem;
  transition: .5s;
}

.image-grid-element {
  height: 100%;
  width: 100%;
}


@media only screen and (max-width: 1350px) {
  .image-grid {
    height: 15rem;
    transition: .5s;
  }
}

@media only screen and (max-width: 750px) {
  .image-grid-element-03 {
    display: none;
  }
  .image-grid-element-04 {
    display: none;
  }
}

/*
-------------------------------------
Footer
-------------------------------------
*/

footer {
  background-color: #1A1A1A;
  color: white;
  padding: 3rem 0rem;
}


.footer-nav-element {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-nav-element>a {
  text-decoration: none;
}

.footer-nav-element img {
  height: 1.25rem;
  width: auto;
  margin-right: 1.5rem;
}

.footer-element {
  margin: 3rem;
  position: relative;
  width: 100%;
}

.footer-logo {
  margin-bottom: 2rem;
}


.footer-header {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.copyright {
  text-align: center;

}

.social-link-section {
  margin-left: 3rem;
}

.footer-nav li {
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1350px) {
  .footer-element>.flex-end {
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
  }

  .footer-element>p {
    text-align: center;
  }

  .nav-logo {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
  }

  .nav-logo>img {
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 750px) {

  
  .footer-element>.flex-end {
    align-items: center;
    justify-content: center;
  }

}

/*
-------------------------------------
Forms
-------------------------------------
*/

form {
  width: 80%;
}

.section-form {
  width: 100%;
}

label {
  display: block;
  width: 100%;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  height: 2rem;
}

textarea {
  height: 8rem;
}

.form-element {
  width: 100%;
  display: inline-block;
  margin-bottom: 3rem;
}

.form-element:nth-child(1){
  margin-right: 1.5rem;
}

.form-cluster {
  display: flex;
}

input, option, select {
  font-size: 1.25rem;
}

form button {
  border: none;
  color: white; 
  cursor: pointer;
}

@media only screen and (max-width: 1350px) {
  .form-cluster{
    display: block;
  }

  .section-form {
    margin-top: 2rem;
  }
}

.single-title {
  width: 40rem;
  margin: auto;
  text-align: center;
}

.single-title p {
  margin: auto;
  transition: .5s;
}