:root{
    --background-color: #31072B;
    --light-color: #F2F2F2;
    --secondary-color: #89002C;
}





*,
*::before,
*::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #31072B;
    
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    width: 100%;
}

.loading-screen {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  background-color: #4bedc2;
  width: 0%;
  height: 100%;
}

.load-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.container {
    position: relative;
    z-index: 5;
    max-width: 92rem;
    background-color:transparent;
    margin: 0 auto;
    padding: 0 4rem;
}
/* Header */

header {
    width: 100%;
    background-color: transparent;
    
}

nav {
    width: 100%;
    position: relative;
    z-index: 50;
}

nav .container{
    display: flex;
    justify-content: space-between;
    height: 6rem;
    align-items: center;
}

.logo {
    width: 160px;
    display: flex;
    margin-bottom: 1em;
    align-items: center;
    min-width: 160px;
    
}

.nav-list ul {
    display: flex;
}

.nav-list a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    color: var(--secondary-color);
    
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1;
    transition: 0.3s;
}
.nav-list.nav-list.active a {
    
    color: var(--light-color);
   
}

.nav-list a:hover {
    color: var(--background-color);
    border-color: var(--secondary-color);
}

.nav-list a.bn53 {
    border: solid 1px var(--secondary-color);
    border-radius: 10px;
    background-color: transparent;
    animation: bn53bounce 4s infinite;
    
}
.nav-list a.bn53:hover {
    border-color: var(--background-color);
    
}

.mobile-menu div {
    
    display: none;
    cursor: pointer;
    width: 32px;
    height: 2px;
    background: var(--secondary-color);
    margin: 8px;
    border-radius: 1px;
}

@keyframes bn53bounce {
    5%,
    50% {
      transform: scale(1);
    }
  
    10% {
      transform: scale(1);
    }
  
    15% {
      transform: scale(1);
    }
  
    20% {
      transform: scale(1) rotate(-5deg);
    }
  
    25% {
      transform: scale(1) rotate(5deg);
    }
  
    30% {
      transform: scale(1) rotate(-3deg);
    }
  
    35% {
      transform: scale(1) rotate(2deg);
    }
  
    40% {
      transform: scale(1) rotate(0);
    }
  }
  
@media (max-width: 999px) {
    


      .nav-list a.bn53 {
        color: var(--light-color);
        background: none;
        border: none;  
        animation: none;
      }

     .nav-list a {
        margin-top: 100px; 
        font-size: 18px;
        border-bottom: 2px solid rgba(0, 0,0, .09);
       
     } 
    
    .nav-list ul {
        
        position: absolute;
    top: 0vh;
    right: 0;
    width: 100vw;
    height: 150vh;
    background: var(--secondary-color);
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in;
    z-index: -1;
    
    }
    .nav-list li {
        margin-left: 0;
        opacity: 0;
        
    }

    .container {
      padding: 0px;
    }
    .logot {
      width: 100%;
      margin-left: 10px;
    }
    
    .mobile-menu div {
        transition: 0.3s;
        display: block;
        justify-content: space-between;
        margin-left: 7rem;
        
        
    }
    .nav-list.active ul {
      
        transform: translateY(0%);
    }


    @keyframes navLinkFade {
        from {
          opacity: 0;
          transform: translateY(-100px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
        background-color: var(--light-color);
        
      }
      
      .mobile-menu.active .line2 {
        opacity: 0;

      }
      
      .mobile-menu.active .line3 {
        background-color: var(--light-color);
        transform: rotate(45deg) translate(-5px, -7px);
      }

}

/* .cursor {
    position: fixed;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 999 ;
    background: var(--light-color);
    transition: 0.1s;
    user-select: none;
    pointer-events: none;
    mix-blend-mode: difference;
   

    
}
.cursor-follower {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    z-index: 998;
    transition: 0.05s;
    user-select: none;
    pointer-events: none;
    transform: translate(-20px, -20px);
    top: -8px;
    left: -8px;
} */

.scene {
  position: absolute;
  width: 100%;
  top: 0px;
  object-fit: cover;
  transform: translateY(var(--translateY));
  will-change: transform;
}


.maracu {
  width: 100%;
  margin-top: -10px;
  height: 300px;
  z-index: -1;
  background: linear-gradient(to top,#31072B, #360029);
}


.bg-container {
 height: 100vh;
 
}

.bg-container img {
 width: 100%;
 position: absolute;
 height: 120vh;
 object-fit: cover;
 z-index: -1;
} 


.section-titles{
   display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
    margin: 100px auto;
    font-size: 24px;
    text-align: center;
    z-index: 500;
    color: var(--light-color);
}
.section-titles p{
   margin: 5px;
}

.motionblur {
    position: relative;
    width: 60px;
    height: 20px;
    animation: slide 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.line {
    position: absolute;
    left: calc(50% - 50px);
    width: 100px;
    height: 5%;
    background: #f2f2f2;
    animation: slide 1.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.line::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgba(242, 242, 242, 0.5) 50%, rgba(242, 242, 242, 0) 100%);
    transform-origin: 0 0;
    animation: scale 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) -1.5s infinite;
}
.line::after {
    content: '';
    position: absolute;
    left: -100px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.5) 50%);
    transform-origin: 100% 0;
    animation: scale 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.linep {
    position: absolute;
    left: calc(50% - 50px);
    width: 100px;
    height: 5%;
    background: #f2f2f2;
    animation: slide 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.linep::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgba(242, 242, 242, 0.5) 50%, rgba(242, 242, 242, 0) 100%);
    transform-origin: 0 0;
    animation: scale 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) -1.5s infinite;
}
.linep::after {
    content: '';
    position: absolute;
    left: -100px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.5) 50%);
    transform-origin: 100% 0;
    animation: scale 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
@keyframes scale {
    0% {
        transform: scale3d(0.5, 1, 1);
   }
    30% {
        transform: scale3d(0.8, 1, 1);
   }
    55% {
        transform: scale3d(0.5, 1, 1);
   }
    100% {
        transform: scale3d(0.5, 1, 1);
   }
}
@keyframes slide {
    0% {
        transform: translate3d(-30px, 0, 0);
   }
    100% {
        transform: translate3d(30px, 0, 0);
   }
}


/* .line {
    width: 100px;
    height: 2px;
    border-radius: 10px;
    background-color: var(--light-color);
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1 );
    transition: transform 0.3s  ;
    
}
.line:hover::before {
        transform-origin: 0% 50% ;
        transform: scale3d(1, 1, 1);
} */




.aboutme-container {
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.aboutme h1 {
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 20px;
}
.aboutme  {
    margin-left: 60px;
    font-weight: 300;
    color: var(--light-color);
}

.erik {
    width: 25%;
}

.whatcanidraw {
    display: flex;
    flex-direction: column;
    align-items:center ;
    text-align: center;
    margin-top: 50px;
    color: var(--light-color);
    
}


.whatcanidraw h2 {
    margin-bottom: 40px;
    
}
.whatcanidraw p {
  
    margin-top: 30px;
    
}



  /* PRICING */

  .s03d-pricing {
    display: block;
    box-sizing: border-box;
    /* background-color: #333134; */
    font-family: 'Poppins', sans-serif;
    padding: auto 20px 220px;
    position: relative;
    text-align: center;
    font-size: 0;
    width: 100%;
  }

  .s03d-pricing-column,
  .s03d-pricing-column *,
  .s03d-pricing-column *:before,
  .s03d-pricing-column *:after {
    box-sizing: border-box;
  }

  /* PRICING COLUMN */

  .s03d-pricing-column {
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 1);
    background-origin: border-box;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 295px;
    font-size: 16px;
    box-shadow: none;
    margin-top: 19px;
    margin-bottom: 21px;
    margin-left: 19px;
    margin-right: 21px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .s03d-pricing-column:first-child {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }

  .s03d-pricing-column:last-child {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .price-icon {
    width: 25%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  


  @media screen and (max-width:540px) {
    .s03d-pricing-column {
      margin-left: 0;
      margin-right: 0;
      width: 60%;
    }
  }

  /* PRICING RIBBON */

  .s03d-pricing-ribbon {
    width: 115px;
    height: 115px;
    overflow: hidden;
    position: absolute;
    left: -5px;
    top: -5px;
  }

  .s03d-pricing-ribbon:before,
  .s03d-pricing-ribbon:after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #BE3944;
  }

  .recommended .s03d-pricing-ribbon:before,
  .recommended .s03d-pricing-ribbon:after {
    border: 3px solid #FFFFFF;
  }

  .s03d-pricing-ribbon:before {
    top: -3px;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
  }

  .s03d-pricing-ribbon:after {
    bottom: 0;
    left: -3px;
    border-top-color: transparent;
    border-left-color: transparent;
  }

  .s03d-pricing-ribbon span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 8px 0;
    background-color: #BE3944;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;
    right: -32px;
    top: 32px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  
  @media screen and (max-width:980px) {
    .recommended .s03d-pricing-ribbon {
      top: -5px;
    }
  }

  /* PRICING HEADER */

  .s03d-pricing-header {
    display: block;
    padding: 40px 0 0;
  }

  .s03d-pricing-header h1 {
    margin: 0;
    line-height: 1;
    color: var(--secondary-color);
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    text-transform: none;
  }

  .s03d-pricing-header p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: inherit;
  }

  .recommended .s03d-pricing-header h1 {
    color: #FFFFFF;
  }

  /* PRICING AMOUNT */

  .s03d-pricing-amount {
    display: block;
    padding: 20px;
    line-height: 1;
  }

  .s03d-pricing-amount strong {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: inherit;
  }

  .s03d-pricing-amount strong span {
    display: inline-block;
    line-height: inherit;
  }

  .s03d-pricing-amount strong code {
    background-color: transparent;
    color: inherit;
    font-size: 24px;
    font-weight: normal;
    font-family: inherit;
    position: absolute;
    bottom: 6px;
    border: none;
    padding: 0;
    margin: 0;
    line-height: inherit;
    word-break: normal;
  }

  .s03d-pricing-amount strong code:before {
    content: ".";
  }

  .recommended .s03d-pricing-amount strong,
  .recommended .s03d-pricing-amount strong code {
    color: #FFFFFF;
  }

  /* PRICING CURRENCY */

  .s03d-pricing-currency {
    color: var(--secondary-color);
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    top: 8px;
    left: -18px;
    position: absolute;
  }

  .recommended .s03d-pricing-currency {
    color: #FFFFFF;
  }

  /* PRICING FREQUENCY */

  .s03d-pricing-frequency {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    margin: 0 0 12px;
  }

 

  /* PRICING FEATURE */

  .s03d-pricing-feature {
    display: block;
    padding: 0px 0px 15px;
    list-style: none;
    text-align: center;
    margin: 0;
  }

  .s03d-pricing-feature li {
    color: var(--secondary-color);
    font-size: 14px;
    position: relative;
    line-height: 2.4;
    text-align: center;
    border-bottom: 1px solid transparent;
    ;
  }

  .s03d-pricing-feature li:last-child {
    border: none;
  }


  .s03d-pricing-feature li span {
    margin-left: 5px;
    font-weight: bold;
  }

  .recommended .s03d-pricing-feature li {
    color: #FFFFFF;
  }

  /* PRICING FOOTER */

  .s03d-pricing-footer {
    display: block;
    padding: 20px;
  }

  /* PRICING BUTTON */

  .s03d-pricing-button {
    border: 2px solid #89002c;
    background: rgba(137, 0, 44, 0);
    background-origin: border-box;
    color: #89002c;
    font-size: 14px;
    -webkit-text-decoration: none;
    text-decoration: none;
    display: inline-block;
    width: 61%;
    font-weight: bold;
    
    line-height: 2.6;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
  }

  .s03d-pricing-button:link {
    color: #89002c;
  }

  .s03d-pricing-button:hover {
    color: var(--light-color);
    transition: all .3s ease-in-out;
    background-color: var(--secondary-color);
    -webkit-text-decoration: none;
    text-decoration: none;
    opacity: .9;
  }


.switch-button {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 240px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--light-color);
    position: relative;
    padding-right: 120px;
    position: relative;
}
.switch-button:before {
    content: "Not Comfortably!";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}
.switch-button-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}
.switch-button-checkbox:checked + .switch-button-label:before {
    transform: translateX(120px);
    transition: transform 300ms linear;
}
.switch-button-checkbox + .switch-button-label {
    position: relative;
    padding: 15px 0;
    display: block;
    user-select: none;
    pointer-events: none;
}
.switch-button-checkbox + .switch-button-label:before {
    content: "";
    background: var(--secondary-color);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 7px;
    transform: translateX(0);
    transition: transform 300ms;
}
.switch-button-checkbox + .switch-button-label .switch-button-label-span {
    position: relative;
}

.advantages {
display: flex;
align-content: center;
text-align: center;
margin-top: 70px;
justify-content: center;
padding: 40px;
color: var(--light-color);
overflow-x: hidden;
}
.adv-title {
  margin-bottom: 0px;
  font-weight: 600;
}
.adv-desc{
font-weight: 200;
}
.service img {
 width: 58% ;
}

.sketchs {
  margin-right: 90px;
}
.service {
  margin-left: 90px;
}

.a-icon {
  margin-bottom: 10px;
  width: 50%;
}


#testimonials {
  max-width: 1000px;
  margin: auto;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}

#testimonials .bubble {
  position: relative;
  width: 48%;
  font-size: 1em;
  line-height: 1.6em;
}


#testimonials .text {
  position: relative;
  border-radius: 12px;
  z-index: 1;
  background: var(--light-color);
  padding: 20px 25px;
  color: #222;
}

#testimonials .name {
  position: relative;
  margin-left: 90px;
  color: #222;
  font-size: 1em;
  line-height: 1em;
  font-weight: bold;
}

#testimonials .name p {
  margin-top: 15px;
  margin-left: -70px;
  color: #222;
}
/* Media Queries */



/* .testbox {
  width: 700px;
  display: inline-block;
  height: 160px;
  padding: 20px;
  border-radius: 25px;
  background-color: var(--light-color);
} */

@media (max-width: 999px) {
    .aboutme-container {
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
       
    }
    .aboutme  {
      margin-left: 0px;
      
    }
    
    #testimonials {
      justify-content: center;
      display: flex;
      
      align-items: center;
      flex-direction: column;
    }
    .bubble {
      padding-bottom: 20px;
    }
    .bg-container img {
      height: 100vh;
    }
    .maracu {
      width: 100%;
      margin-top: -110px;
      height: 220px;
      z-index: -1;
      background: linear-gradient(to top,#31072B, #360029);
    }

    #porth1 {
      display: none;
      
    }
    .service {
      margin-left: 0px;
    }
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;

  border: none;
  background-color: var(--secondary-color);
  right: 20px;
  display: none;
}

#btn-back-to-top:hover {
  background-color: #cf1f57;
}

.erin {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0px 0px 0px;
}
.erin p{
  text-decoration: none;
  font-weight: 300;
  color: var(--light-color);
}
.erin a{
  font-weight: 600;
  color: var(--light-color);
}


.footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    margin-top: 5em;
    padding: 50px;
    border-radius: 25px 25px 0px 0px ;
    color: var(--light-color);
    background: var(--secondary-color);
}

.footer > *{
    flex: 1 100%
}
.l-footer {
    margin-right: 1.25em;
    margin-bottom: 2em;
}
.f-logo {
    max-width:50%;
max-height:50%;
width: auto;
height: auto;
}
.footer h2 {
    font-weight: 800;
    font-size: 16px;
}
.footer p {
    font-weight: 300;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;
}

.footer a {
    text-decoration: none;
    color: var(--light-color);
    font-weight: 300;
}
.r-footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
}

.r-footer > *{
    flex: 1 50%;
    margin-right: 1.25em;
    
}

.box a {
    text-decoration: none;
}

.h-box {
    column-count: 1;
    column-gap: 1.25em;
}
.b-footer {
    text-align: center;
    color: var(--light-color);
    padding-top: 50px;
    font-weight: 200;
}
.l-footer p {
padding-right: 20%;
color: var(--light-color);

}

/* Footer responsivo */

@media screen and (min-width:600px) {
    .r-footer > *{
        flex: 1;
    }
    .features {
        flex-grow: 0.8;
    }
    .l-footer {
        flex: 1 0px;
    }
    .r-footer {
        flex: 2 0px;
    }
}


