*{
  margin: 0;
  padding: 0;
  font-family:'poppins', sans-serif;
  box-sizing: border-box;

}
html{
  scroll-behavior: smooth;
}
body{
  background:#171617;
  color: #131212;

}

/* ------animation--------- */
@keyframes growShrink {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2);
  }
}

@keyframes slideInLeft {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(0);
  }
}


@keyframes pulse {
  0% {
      transform: scale(1);
     
  }
  50% {
      transform: scale(1.1);
      
  }
  100% {
      transform: scale(1);
    
  }
}


#header{
  width: 100%;
  height: 100vh;
  background-image: url(images/perfl2.jpg);
  background-size: 66%;
  background-repeat: no-repeat;
  background-position: right;

}
.container{
  padding: 10px 10%;
  color:#fff;
  

}

nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo{
  width: 140px;

}


.logo:hover{


  animation: growShrink 1.5s infinite;
}


nav ul li{
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
  animation: slideInLeft 0.5s ;

}

nav ul li a{
  color:#fff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}

nav ul li a::after{
  content: '';
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;

}
nav ul li a:hover::after{
  width: 100%;
}

.header-text{
  margin-top: 20%;
  font-size: 30px;
  animation: slideInLeft 1.5s ;


}
.header-text h1{
  font-size: 60px;
  margin-top: 20px;

}
.header-text h1 span{
  color: #ff004f;
}

/* <!-- -------------------about------------------- --> */

#video{
  width: 100%;
  border-radius: 15px;
}
#about{
  padding: 80px 0;
  color: #ababab;

}
.row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}
.about-col-1{
  flex-basis: 35%;


}
.about-col-1 img{
  width: 100%;
  border-radius: 15px;
}
.about-col-1 img:hover{
  
  transform: scale(1.1);
  transition: 0.5s;
}

.about-col-2{
  flex-basis: 60%;

}
.sub-title{
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  


}
.tab-titles{
  display: flex;
  margin: 20px 0 40px;

}
.tab-links{
  margin-right: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.tab-links::after{
  content: '';
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}
.tab-links.active-link::after{
  width: 50%;

}
.tab-contents ul li{
  list-style: none;
  margin: 10px 0;

}
.tab-contents ul li span{
  color: #b54769;
  font-size: 14px;
}
.tab-contents{
  display: none;
}

.tab-contents.active-tab{
  display: block;

}



/* <!-- -------------------about2------------------- --> */
/* ========== BASIC SETUP ========== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Roboto', sans-serif;
}
html{
  scroll-behavior: smooth;
}
.fixdwidth{
  max-width: 1200px;
  margin: auto;
}
.clearfix::after{
  content: "";
  clear: both;
  display: block;
}
.fleft{
  float: left;
}
.fright{
  float: right;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
}

/* ========== REUSEBLE CSS ========== */
h2.section_title{
  background: #fcc747;
  color: #000;
  font-size: 24px;
  padding: 10px 15px;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 40px;
  font-size: 40px;
  line-height: 55px;
}
h1.section_text {
font-size: 24px;
font-weight: 500;
color: #1d1f33;
line-height: 40px;
margin-bottom: 30px;
}

/* ========== HEADER CSS ========== */
.header{
  background: #ec116d;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header-logo{
  width: 25%;
}
.header-logo a img{
  width: 95px;
}

.header-menu{
  width: 75%;
}
.header-menu ul li{
  display: inline-block;
  list-style: none;
}
.header-menu ul li i{
  color: #fff;
  font-size: 10px;
  margin-left: -5px;
  margin-right: 5px;
}
.header-menu ul li:hover i{
  color: #20ab96;
}
.header-menu ul li a{
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 64px;
  font-weight: 600;
  transition: .5s;
}
.header-menu ul li:hover > a{
  color: #fcc747;
}
/* drodown */
.header-menu ul li{
  position: relative;
}
.header-menu ul li ul {
position: absolute;
width: 180px;
top: 100%;
left: 8px;
text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  transition: .5s;
}
.header-menu ul li ul li{
  background: #20ad96;
  display: block;
}
.header-menu ul li ul li a{
  display: block;
  line-height: 45px;
}
.header-menu ul li:hover ul{
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/* ========== BANNER CSS ========== */
.banner{
  background: url(https://i.ibb.co/6Xqfbc7/banner.jpg) no-repeat center center;
  background-size: cover;
  padding: 220px 0;
  margin-top: 93px;
  color: #fff;
}
.banner h1 {
font-size: 80px;
position: relative;
margin-top: 10px;
margin-bottom: 20px;
}
.banner h1::before {
content: "";
position: absolute;
right: 250px;
bottom: -5px;
height: 100%;
width: 1px;
background-color: #fff;
}
.banner h3{
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.banner h3::after {
content: "";
position: absolute;
left: 305px;
top: 50%;
background: #fff;
height: 1px;
width: 40px;
  opacity: 0.7;
}
.banner h3::before {
content: "";
position: absolute;
right: 305px;
top: 50%;
background: #fff;
height: 1px;
width: 40px;
  opacity: 0.7;
}
.btn-hero {
color: #fff;
border: 1px solid #fff;
padding: 15px 40px;
display: inline-block;
text-transform: uppercase;
font-weight: 600;
font-size: 14px;
word-spacing: 3px;
letter-spacing: 1px;
}
/* ========== ABOUT CSS ========== */
.about{
  background: #fdfdfe;
  padding: 100px 0 50px 0;
}
.about-img{
  width: 45%;
  padding-left: 20px;
}
.about-img img{
  box-shadow: -15px 0px 30px 15px rgba(59, 86, 148, 0.05);
}
.about-desc {
width: 55%;
padding: 50px;
box-shadow: 15px 0px 30px 15px rgba(59, 86, 148, 0.1);
}
.about-desc p {
font-size: 18px;
line-height: 32px;
margin-bottom: 30px;
  color: rgb(119, 119, 119);
  font-weight: 300;
}
.about-info-box{
  width: 40%;
}
.about-info-box ul li {
list-style: none;
font-size: 19px;
font-weight: 300;
margin-bottom: 20px;
  color: rgb(65, 64, 64);
}
.about-button {
margin-top: 30px;
padding-bottom: 10px;
}
.submit-btn {
background: #3243e3;
padding: 15px 30px;
border: none;
color: #fff;
font-weight: 700;
}
.arrow-down {
position: relative;
height: 70px;
width: 81px;
  overflow: hidden;
}
.arrow-down span {
color: #fcc747;
font-size: 80px;
position: absolute;
left: -27px;
bottom: -10px;
}
/* ========== PORTFOLIN CSS ========== */
.portfolio{
  background: #fff;
}
.portfolio h2{
  font-weight: 500;
}
.portfolio h1 {
font-size: 38px;
font-weight: 600;
line-height: 54px;
}
.portfolio-items-btn a {
color: #77798e;
display: inline-block;
padding: 10px 15px;
font-size: 16px;
margin-bottom: 20px;
}
.portfolio-items-btn a:first-child{
  color: #3243e3;
  text-decoration: line-through;
  padding: 10px 15px 10px 0;
}
.portfolio-box{
  width: 32%;
  float: left;
  margin-right: 2%;
  margin-bottom: 30px;
}
.portfolio-box:nth-child(3){
  margin-right: 0;
}
.portfolio-box:nth-child(6){
  margin-right: 0;
}

/* ========== SKILL CSS ========== */
.skill{
  padding: 50px;
}
.skill h2{
  padding: 10px 20px;
  font-weight: 500;
}
.skill h1 {
font-size: 38px;
font-weight: 600;
line-height: 55px;
}
.my-skills{
  margin-top: 40px;
}
.my-skills-box{
  width: 32%;
  height: 228px;
  padding: 30px;
  margin-bottom: 40px;
  margin-right: 2%;
  box-shadow: 0 5px 10px 5px rgba(50, 67, 227, 0.1);
}
.my-skills-box:nth-child(3){
  margin-right: 0;
}
.my-skills-box:nth-child(6){
  margin-right: 0;
}
.my-skills-box img{
  float: left;
  width: 45px;
  margin-right: 20px;
  padding-bottom: 120px;
}
.my-skills-box h3 {
font-size: 20px;
margin-bottom: 20px;
}
.my-skills-box p {
font-size: 17px;
line-height: 27px;
color: #808090;
font-weight: 300;
}
/* ========== SKILL-BAR CSS ========== */
.skillbar{
  background: url(https://i.ibb.co/X3dDYVs/dots-pattern-transparent.png) no-repeat center center;
  background-size: cover;
  padding: 0px 0;
  position: relaive;
  z-index: 1;
  margin-bottom: 50px;
  max-width: 100%;
  margin-right: 0;
  margin-left: 20%;
  display: flex;
}

.skill-overly{
  position: absolute;
  height: 100%;
  width: 100%;
  background: #eb106a;
  top: 0;
  left: 0;
  opacity: .9;
  z-index: -1;

}
.skill-pint-bar{
  width: 100%;
  margin-right: 2%;
  text-align: center;
  color: #fff;

}
.skill-pint-bar:last-child{
  margin-right: 0;

}
.skill-pint-bar h2 {
font-size: 40px;
font-weight: 900;
color: #fff;
}
.skill-pint-bar h3 {
font-size: 20px;
font-weight: 900;
margin-top: 15px;
color: #fff;
}

/* ========== EDUCATION CSS ========== */
.education{
  background: #eff3fd;
}
.education h1{
  font-size: 40px;
  line-height: 55px;
}
.education-desc{
  width: 55%;
}
.education-box{
  width: 100%;
  background: #fff;
  margin-top: 40px;
  padding: 30px 25px;
  box-shadow: 0 0 30px 8px rgba(31, 122, 240, 0.1);
}
.education-box .education-hed{
  width: 50%;
}
.education-box .education-hed span{
  background: #ec116c;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  font-size: 14px;
}
.education-box .education-hed h2 {
font-size: 21px;
padding: 20px 30px 20px 0;
font-weight: 500;
color: #1d1f33;
}
.education-box .education-hed h3 {
color: #1d1f33;
font-weight: 300;
font-size: 15px;
}
.education-box .education-pra{
  width: 50%;
}
.education-box .education-pra p{
  font-size: 16px;
  color: #808080;
  line-height: 28px;
}
.education-img{
  width: 40%;
}

/* ========== EMPLOYMENT CSS ========== */
.employment{
  background: #eff3fd;
  padding: 100px 0;
  padding-left: 20px;
  margin-top: -4px;
}
.employment h2{
  font-weight: 00;
 
  
}
.employment h1{
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
  
}
.empoyment-box{
  margin-top: 50px;
  
}
.employment-box-item{
  width: 49%;
  margin-right: 2%;
  padding: 30px;
  background: #fff;
}
.employment-box-item:last-child{
  margin-right: 0;
}
.employment-box-img img{
  width: 120px;
}
.employment-box-item span{
  background: #ec116c;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  font-size: 14px;
  margin-right: 20px;
}
.employment-box-item h2 {
font-size: 21px;
padding: 20px 30px 20px 0;
font-weight: 500;
color: #1d1f33;
  display: inline-block;
  
}
.employment-box-item p{
  font-size: 16px;
  color: #808080;
  line-height: 28px;
  
}

/* ========== SKILL-BAR CSS ========== */
.skillbar{
  background: url(https://i.ibb.co/X3dDYVs/dots-pattern-transparent.png) no-repeat center center;
  background-size: cover;
  padding: 60px 300px;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.skill-overly{
  position: absolute;
  height: 100%;
  width: 100%;
  background: #eb106a;
  top: 0;
  left: 0;
  opacity: .9;
  z-index: -1;
}
.skill-pint-bar{
  width: 23%;
  margin-right: 2%;
  text-align: center;
  color: #fff;

}
.skill-pint-bar:last-child{
  margin-right: 0;
}
.skill-pint-bar h2 {
font-size: 40px;
font-weight: 900;
}
.skill-pint-bar h3 {
font-weight: 300;
margin-top: 15px;
}


/* ========== AWARD CSS ========== */
.award{
  padding: 100px 0;
  background: #fff;
}
.award-logo{   
  margin-bottom: 50px; 
}
.award-logo img{
  width: 200px;
}
.award-line-up img{
  margin: 0 20px;
  filter: grayscale(110%);
}
.award-line-dn img{
  margin: 0 20px;
  filter: grayscale(110%);
}

/* ========== CTNTACT CSS ========== */
.contact{}
.contact h2{
  font-weight: 400;
}
.contact h1{
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
}
.contact-box{
  margin: 60px 0;
  padding: 70px;
  box-shadow: 0 0 50px 10px rgba(50, 67, 227, 0.1);
}
.contact-box-icon{
  width: 33.3%;
  text-align: center;
  margin-bottom: 50px;
}
.contact-box-icon span {
color: #52d8bb;
display: inline-block;
border: 1px solid #52d8bb;
border-radius: 50%;
font-size: 30px;
padding: 25px;
height: 90px;
width: 90px;
line-height: 45px;
text-align: center;
  margin-bottom: 20px;
}
.contact-box-icon h3{
  color: #6c6e85;
  font-weight: 500;
  margin-bottom: 9px;
}
.contact-box-icon:nth-child(2) span{
  color: #3243e3;
  border: 1px solid #3243e3;
}
.contact-box-icon:nth-child(3) span{
  color: #ec116c;
  border: 1px solid #ec116c;
}
/* CONTACT FORM */
.form-left-input{
  width: 48%;
}
.form-right-input{
  width: 48%;
}
.contact-form .control-input{
  width: 100%;
  font-size: 20px;
  border: 1px solid #ddd;
  padding: 24px;
  margin-bottom: 15px;
}
.contact-form .control-input:focus{
  border: 1px solid #3243e3;
  box-shadow: 0 0 20px 5px rgba(50, 67, 227, 0.3);
}
.form-btn {
color: #fff;
padding: 10px 50px;
font-size: 18px;
border: none;
background: #3243e3;
margin-left: -80px;
margin-top: 25px;
}
/* ========== FOOTER CSS ========== */
.footer{
  padding: 50px 0 100px 0;
  background: #fff;
}
.footer-icon{

}
.footer-icon span{
  color: #6c6e85;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  display: inline-block;
  border: 1px solid #6c6e85;
  border-radius: 50px;
  margin: 0 10px;
}
.footer p{
  margin-top: 30px;
}
.footer p span{
  color: #fcc747;
}
.footer p .naim{
  color: #0097e2;
}

/* @@@@@@@@@@ The End @@@@@@@@@@ */

/* ----------------------Projetos--------------------------- */
#experiência-profissional{
  padding: 30px 0;

}

.services-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 10px;
  margin-top: 50px;

}
.services-list div{
  background: #262626;
  padding: 30px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
}

.services-list div i{
  font-size: 40px;
  margin-bottom: 20px;
  

}

.services-list div h2{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;

}

.services-list div a{
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
}

.services-list div:hover{
  background: #ff004f;
  transform: translateY(-10px);

}

/* -------Experience and Education--- */

/* experience section
==================================================*/

#experience {
  padding: 100px 0;
  background: #f3f3f3;
  color: #201e1e;

}

.sub-title-experience{
  font-size: 60px;
  font-weight: 600;
  color: #201e1e;
}

.experience-row {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
 
}

.experience-row h3 {
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  color: #425BB5;
  font-size: 16px;
  font-weight: bold;
  
}

.experience-row p {
  color: #888;
  margin-top: 20px;
  font-size: 15px;
  

}

.experience-row .date {
  color: #000;
  font-size: 17px;
  
}

.timeline {
  padding-left: 0;
  list-style: none;
  position: relative;
  
  
}

.timeline:before {
  background-color: black;
  content: '';
  margin-left: -1px;
  position: relative;
  top: 0;
  left: 2em;
  width: 2px;
  height: 100%;
  
}

.timeline-event {
  position: relative;
  
}

.timeline-event:hover .timeline-event-icon {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ff004f;
}

.timeline-event:hover .timeline-event-thumbnail {
  box-shadow: inset 40em 0 0 0 #ff004f;

}

.timeline-event-copy {
  padding: 2em;
  position: relative;
  top: -1.875em;
  left: 4em;
  width: 100%;
}

.timeline-event-copy h3 {
  font-size: 1.75em;
  
}

.timeline-event-copy h4 {
  font-size: 1.2em;
  margin-bottom: 1.2em;
}

.timeline-event-copy strong {
  font-weight: 700;
}

.timeline-event-copy p:not(.timeline-event-thumbnail) {
  padding-bottom: 1.2em;
  
  
}

.timeline-event-icon {
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #810f31;
  outline: 10px solid #f3f3f3;
  display: block;
  margin: 0.5em 0.5em 0.5em -0.5em;
  position: relative;
  top: 0;
  left: 2em;
  width: 1em;
  height: 1em;
}

.timeline-event-thumbnail {
  -moz-transition: box-shadow 0.5s ease-in 0.1s;
  -o-transition: box-shadow 0.5s ease-in 0.1s;
  -webkit-transition: box-shadow 0.5s ease-in;
  -webkit-transition-delay: 0.1s;
  -webkit-transition: box-shadow 0.5s ease-in 0.1s;
  transition: box-shadow 0.5s ease-in 0.1s;
  color: white;
  font-size: 12px;
  font-weight: bold;
  background-color: black;
  box-shadow: inset 0 0 0 0em #ff004f;
  display: inline-block;
  margin-bottom: 1.2em;
  padding: 0.25em 1em 0.2em 1em;
  font-size: 16px;
}

.Skills{
  display: block;
  width: 100%;
  margin-top: 0%;
}

.Skills .container-skill{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  animation: moveUp 1s ease-in-out;
  position: relative; /* Ensure the div can be moved */
  
}

.Skills .container-skill .heading{
  font-size: 42px;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  color: rgb(242, 243, 244);
}

.Skills .container-skill .heading h1{
  padding: 0%;
  margin: 0%;
}

.Skills .container-skill .Text{
  font-size: 18px;
  text-align: center;
  max-width: 500px;
  color: rgb(177, 178, 179);
}

.Skills .container-skill .mainSkill{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 30px;
  justify-content: center;
}

.Skills .container-skill .mainSkill .front , .back , .datasci, .tools{
  width: 100%;
  max-width: 500px;
  background: rgb(255, 255, 255);
  border: 0.1px solid rgb(0, 0, 0);
  border-radius: 16px;
  padding: 18px 36px;
}

.Skills .container-skill .mainSkill .front h2, .back h2, .datasci h2, .tools h2{
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0%;
  padding: 0%;
  font-size: 24px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
  text-align: center;
}

.Skills .container-skill .mainSkill .box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.Skills .container-skill .mainSkill .front .frontSkill, .back .backSkill, .datasci .datasciSkill, .tools .toolsSkill{
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.Skills .container-skill .mainSkill .front .box img{
  width: 30px;
  height: 30px;
}

.Skills .container-skill .mainSkill .back .box img{
  width: 30px;
  height: 30px;
}

.Skills .container-skill .mainSkill .datasci .box img{
  width: 30px;
  height: 30px;
}

.Skills .container-skill .mainSkill .tools .box img{
  width: 30px;
  height: 30px;
}



@keyframes moveUp {
  from {
      transform: translateY(100%);
  }
  to {
      transform: translateY(0);
  }
}

#skill-container{
  padding-top: 60px;
  padding-bottom: 40px;
}


#education{
  padding-top: 60px;
  padding-bottom: 40px;
  padding-left: 20px;
}

#projects{
  padding-top: 60px;
  padding-bottom: 40px;
}

#experience{
  padding-top: 60px;
  padding-bottom: 40px;
  color: #201e1e;
}



#herobtn{
  /* display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 0px; */
  display: flex;
}

#githubdiv{
  margin-left: 30px;
}


.Skills .container-skill .mainSkill .front .frontSkill:hover, .back .backSkill:hover, .datasci .datasciSkill:hover, .tools .toolsSkill:hover{
  transform: translateY(-7px);
  transition: all 0.3s ease;
}

.project-info{
  position:relative;
  top:30%;
  bottom: 50%;
  transform:translateY(-50%);
  margin-left:30px;
  padding: 20px;
  color: #201e1e;
  text-decoration: none;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: -10px;
}

/* link que ainda não foi acessado */
a {
  color: #000;
}
/* link que foi visitado */
a:visited {
   color: #555;
}
/* quando o ponteiro do mouse passa no link */
a:hover {
   color: #999;
}
/* quando o link for selecionado */
a:active {
   color: #333;
}

@media (max-width: 768px) {
    .container-skill .mainSkill .box {
        flex-direction: column; /* Ajuste para coluna em telas menores */
    }
}



/* -------portifolio----------------- */
#portfolio{
  padding: 50px 0;
  background-color:#201e1e;

}


.work-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
}
.work{
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 350px;
}

.work img{
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}
.layer{
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(0,0,0,0.6),#ff004f);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  transition: height 0.5s;

}
.layer h3{
  font-weight: 500;
  margin-bottom: 20px;
}

.layer a{
  margin-top: 20px;
  color: #ff004f;
  text-decoration: none;
  font-size: 18px;
  line-height: 60px;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;

}

.work:hover img{
  transform: scale(1.1);

}


.work:hover .layer{
  height: 100%;
}

.btn{
  display: block;
  margin: 50px auto;
  width: fit-content;
  border: 1px solid #ff004f;
  padding: 14px 50px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background 0.5s;

}

.btn:hover{
  background: #ff004f;
}


/*portfolio de projetos 2 */

section2 {
  padding-block: min(20vh, 2rem);
  width: calc(min(76.5rem, 90%));
  margin-inline: auto;
  color: #e8e8e8;

  h2 {
    text-transform: capitalize;
    letter-spacing: 0.025em;
    font-size: clamp(2rem, 1.8125rem + 0.75vw, 2.6rem);
  }

  a {
    display: inline-block;
    text-decoration: none;
  }

  .container-projects {
    padding: 10px 1%;
    margin-top: 5em;
    margin-left: 8em;
    margin-right: 8em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;

    .card {
      &:nth-child(1) .box .icon .iconBox {
        background: #000;
      }
      &:nth-child(2) .box .icon .iconBox {
        background: #000;
      }
      &:nth-child(3) .box .icon .iconBox {
        background: #000;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.625rem;

        li {
          text-transform: uppercase;
          background: var(--clr-tag);
          color: #ffffff;
          font-weight: 700;
          font-size: 0.8rem;
          padding: 0.375rem 0.625rem;
          border-radius: 0.188rem;
        }

        .branding {
          color: darken(#d3b19a, 40%);
        }

        .packaging {
          color: darken(#70b3b1, 40%);
        }

        .marketing {
          color: darken(#d05fa2, 40%);
        }
      }

      .content {
        height: 340px;
        line-height: 25px;
        border-radius: 20px;
        padding: 0.938rem 1.625rem;
        background: linear-gradient(rgba(0, 0, 0, 0.6), #ff004f);
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgb(255, 0, 79));
        background-position-x: initial;
        background-position-y: initial;
        background-size: initial;
        background-repeat: initial;
        background-attachment: initial;
        background-origin: initial;
        background-clip: initial;
        background-color: initial;

        h3 {
          text-transform: capitalize;
          font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
          margin-top: 1em;
        }

        p {
          margin: 0.625rem 0 1.25rem;
          color: #e4e0e0;
        }
      }
    }

    .card-inner {
      position: relative;
      width: inherit;
      height: 18.75rem;
      background: var(--clr);
      border-radius: 1.25rem;
      border-bottom-right-radius: 0;
      overflow: hidden;

      .box {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 1.25rem;
        overflow: hidden;

        .imgBox {
          position: absolute;
          inset: 0;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        .icon {
          position: absolute;
          bottom: -0.375rem;
          right: -0.375rem;
          width: 6rem;
          height: 6rem;
          background: var(--clr);
          border-top-left-radius: 50%;

          &:hover .iconBox {
            transform: scale(1.1);
          }

          &::before {
            position: absolute;
            content: "";
            bottom: 0.375rem;
            left: -1.25rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
          }

          &::after {
            position: absolute;
            content: "";
            top: -1.25rem;
            right: 0.375rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
          }

          .iconBox {
            position: absolute;
            inset: 0.625rem;
            background: #282828;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;

            span {
              color: #fff;
              font-size: 1.5rem;
            }
          }
        }
      }
    }
  }
  }

.container2 {
  padding: 10px 10%;
    margin-top: 5em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 8rem;
    

    .card {
      &:nth-child(1) .box .icon .iconBox {
        background: #000;
      }
      &:nth-child(2) .box .icon .iconBox {
        background: #000;
      }
      &:nth-child(3) .box .icon .iconBox {
        background: #000;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.625rem;

        li {
          text-transform: uppercase;
          background: var(--clr-tag);
          color: #ffffff;
          font-weight: 700;
          font-size: 0.8rem;
          padding: 0.375rem 0.625rem;
          border-radius: 0.188rem;
        }

        .branding {
          color: darken(#d3b19a, 40%);
        }

        .packaging {
          color: darken(#70b3b1, 40%);
        }

        .marketing {
          color: darken(#d05fa2, 40%);
        }
      }

      .content {
        height: 300px;
        line-height: 25px;
        border-radius: 20px;
        padding: 0.938rem 1.625rem;
        background: linear-gradient(rgba(0, 0, 0, 0.6), #ff004f);
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgb(255, 0, 79));
        background-position-x: initial;
        background-position-y: initial;
        background-size: initial;
        background-repeat: initial;
        background-attachment: initial;
        background-origin: initial;
        background-clip: initial;
        background-color: initial;

        h3 {
          text-transform: capitalize;
          font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
          margin-top: 1em;
        }

        p {
          margin: 0.625rem 0 1.25rem;
          color: #e4e0e0;
        }
      }
    }

    .card-inner {
      position: relative;
      width: inherit;
      height: 18.75rem;
      background: var(--clr);
      border-radius: 1.25rem;
      border-bottom-right-radius: 0;
      overflow: hidden;

      .box {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 1.25rem;
        overflow: hidden;

        .imgBox {
          position: absolute;
          inset: 0;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        .icon {
          position: absolute;
          bottom: -0.375rem;
          right: -0.375rem;
          width: 6rem;
          height: 6rem;
          background: var(--clr);
          border-top-left-radius: 50%;

          &:hover .iconBox {
            transform: scale(1.1);
          }

          &::before {
            position: absolute;
            content: "";
            bottom: 0.375rem;
            left: -1.25rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
          }

          &::after {
            position: absolute;
            content: "";
            top: -1.25rem;
            right: 0.375rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
          }

          .iconBox {
            position: absolute;
            inset: 0.625rem;
            background: #282828;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;

            span {
              color: #fff;
              font-size: 1.5rem;
            }
          }
        }
      }
    }
  }



/* ----------github---------------*/
.calendar {
  position: relative;
  width: 90%;
  border: none;
  height: auto;
  text-align: center;
  padding: 10px 30px;
  color:#fff;
}

.contrib-number {
  font-weight: 300;
  line-height: 1.0em;
  font-size: 24px;
  display: block;
  color: #fff;
}

#github {
  text-align: center;
  color: #524747;
  box-sizing: border-box;
  display: block;
  align-items: center;
  justify-content: center;

  
}

.icon {
  float: left;
  font-size: 7em;
  margin-right: 20px;
  position: absolute;
}

/*
section h3 span:after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  top: 3px;
  position: relative;
  margin: auto;
  border: 1.5px solid;
  transform: rotate(45deg);
  
}

section h3:before {
  content: "";
  width: 160px;
  display: block;
  top: 43px;
  left: -86px;
  position: relative;
  margin: auto;
  border-bottom: 1.5px solid;
  
}

section h3:after {
  content: "";
  width: 160px;
  display: block;
  top: -2.5px;
  left: 86px;
  position: relative;
  margin: auto;
  border-bottom: 1.5px solid;
  
}
.overlay {
  background: rgba(0, 0, 0, 0.4);
    padding: 65px 0;
    
}


*/


/* ----------contact-------------- */

.contact{
  width: 100%;
  text-align: center;
  padding: 25px 30;
  background: #262626;
  font-weight: 300;
  margin-top: 20px;

}


.contact i{
  color: #ff004f;
  animation: pulse 0.5s infinite;
}

.contact-left{
  width: 100%;
  text-align: center;
  padding: 25px 0;
  background: #262626;
  font-weight: 300;
  margin-top: 20px;
}

.contact-right{
  flex-basis: 60%;
  
}

.contact-left p{
  margin-top: 30px;

}
.contact-left p i{
  color: #ff004f;
  margin-right: 15px;
  font-size: 25px;
}
.social-icons{
  margin-top: 30px;

}
.social-icons a{
  text-decoration: none;
  font-size: 30px;
  margin-right: 15px;
  color: #ababab;
  display: inline-block;
}
.social-icons a:hover{
  color: #ff004f;
  transform: translateY(-5px);
  transition: transform 0.5s;
}

.btn2{
  display: inline-block;
  background: #ff004f;
}

.btn.btn2{
  display: inline-block;
  background: #ff004f;
}
.btn.btn.btn2:hover{
  transform: scale(1.1);
  transition: 0,5s;
  
}
.contact-right form{
  width: 100%;

  
}
form input, form textarea{
  width: 100%;
  border: 0;
  outline: none;
  background: #262626;
  padding: 15px;
  margin: 15px 0;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
}
form .btn2{
  padding: 14px 60px;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
}
.copyright{
  width: 100%;
  text-align: center;
  padding: 25px 0;
  background: #262626;
  font-weight: 300;
  margin-top: 20px;

}


.copyright i{
  color: #ff004f;
  animation: pulse 0.5s infinite;
}




#msg{
  color: #61b752;
  margin-top: -40px;
  display: block;
}

.contact-content-con .right-contact .submit-btn {
  display: flex;
  justify-content: flex-start;
}

.main-btn {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-self: flex-start;
  align-items: center;
  overflow: hidden;
}
.main-btn .btn-text {
  padding: 0 2rem;
}
.main-btn .btn-icon {
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.4s ease-out;
  z-index: -1;
}
.main-btn:hover {
  transition: all 0.4s ease-out;
}
.main-btn:hover::before {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  transform: translateX(0);
  transition: all 0.4s ease-out;
}
/*Independed components*/
.btn-con {
  display: flex;
  align-self: flex-start;
}

.main-btn {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-self: flex-start;
  align-items: center;
  overflow: hidden;
}
.main-btn .btn-text {
  padding: 0 2rem;
}
.main-btn .btn-icon {
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.4s ease-out;
  z-index: -1;
}
.main-btn:hover {
  transition: all 0.4s ease-out;
}
.main-btn:hover::before {
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  transform: translateX(0);
  transition: all 0.4s ease-out;
}



/* ------------------------css for small screen-------------------- */

nav .fa-solid{
  display: none;
}

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

  #header{
      background-image: url(images/phone-background.png);

  }
  .header-text{
      margin-top: 100%;
      font-size: 16px;

  }
  .header-text h1{
      font: size 30px; 
  }
      
  nav .fa-solid{
      display: block;
      font-size: 25px;

  }
  nav ul{
      background-color: #ff004f;
      position: fixed;
      top: 0;
      right: -200px;
      width: 200px;
      height: 100vh;
      padding-top: 50px;
      z-index: 2;
      transition: right 0.5s;

  }
  nav ul li{
      display: block;
      margin: 25px;

  }
  
  nav ul li a::after{
      content: '';
      width: 0;
      height: 3px;
      background: #000000;
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: 0.5s;

  }
  nav ul .fa-solid{
      position: absolute;
      top: 25px;
      left: 25px;
      cursor: pointer;
  }
  .sub-title{
      font-size: 40px;


  }
  .about-col-1, .about-col-2{
      flex-basis: 100%;
  }
  .about-col-1{
      margin-bottom: 30px;

  }
  .about-col-2{
      font-size: 14px;
  }

  .tab-links{
      font-size: 16px;
      margin-right:20px ;

  }
  .contact-left,.contact-right{
      flex-basis: 100%;
  }
  .copyright{
      font-size: 14px;
  }
}   

/**blog
*/
.blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-top: 3rem;
}
.blogs .blog {
  position: relative;
  background-color: var(--color-grey-5);
  border-radius: 5px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}
.blogs .blog:hover {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
  transition: all 0.4s ease-in-out;
}
.blogs .blog:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}
.blogs .blog img {
  width: 100%;
  height: 400px;
  object-fit: inherit;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
.blogs .blog .blog-text {
  margin-top: -7px;
  padding: 1.1rem;
  border-top: 8px solid var(--color-secondary);
}
.blogs .blog .blog-text h4 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.blogs .blog .blog-text h4:hover {
  color: var(--color-secondary);
}
.blogs .blog .blog-text p {
  color: var(--color-grey-2);
  line-height: 2rem;
  padding-bottom: 1rem;
}


/**Recomendações*/
body {
  font-family: 'Open Sans', sans-serif;
  }
  
  * {
  box-sizing: border-box;
  }
  
  :root {
  --min--color: #ff9800
  }
  
  .container {
  width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto
  }

  
  
  /*start setting*/
  
  .setting-box {
  position: fixed;
  padding: 5px ;
  z-index:9300;
  width: 220px;
  left:-220px;
  min-height: 100vh;
  background-color: #ffff;
  text-align: center;
  transition: all .5s;
  border: 1px solid #ccc
  }
  
  .open {
  left: 0
  }
  
  .setting-box .box .photo-list {
    list-style: none;
    margin-right: 40px;
  }
  
  .setting-box .box .photo-list li {
    display: inline-block;
    background-color: #b9b4b4;
    padding: 5px;
    cursor: pointer;
    opacity: .5;
  }
  
  .setting-box .box .photo-list li.active {
    opacity: 1;
    border: 1px solid var(--min--color);
  }
  
  
  .setting-box .icon {
  position: absolute;
  top: 100px;
  right: -30px;
  width: 30px;
  background-color: #ffff;
  padding: 10px 3px;
  cursor: pointer
  }
  
  
  .setting-box .box  {
  background-color: #ccc;
  margin: 10px 0;
  padding: 5px;
  text-align: center;
  text-transform: capitalize;
  }
  
  .setting-box .box span  {
  width: 50px;
  background-color: var(--min--color);
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  display: inline-block;
  opacity: .5;
  cursor: pointer;
  }
  
  .setting-box  span.active {
  opacity: 1;
  }
  
  .setting-box .box .color-list {
  list-style: none;
  margin-left: -20px;
  }
  
  .setting-box .box .color-list li {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  }
  
  .setting-box .box .color-list li.active {
  border: 2px solid #fff;
  }
  
  .setting-box .box .color-list li:first-child {
  
  background-color: #ff9800;
  }
  
  .setting-box .box .color-list li:nth-child(2) {
  background-color:  #ce0e6cdd;
  }
  
  .setting-box .box .color-list li:nth-child(3) {
  background-color: #0ecea4dd;
  }
  
  .setting-box .box .color-list li:nth-child(4) {
  background-color: #8518dfdd;
  }
  
  .setting-box .box .color-list li:nth-child(5) {
  background-color: #df18cfdd;
  }
  
  .reset-option {
  display: block;
  background-color: #F44336;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  }
  
  /*end setting*/
  
  /*start nav-bullets*/
  .nav-bullets {
  position: fixed;
  z-index: 1000;
  top:50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  padding-top: 80px;
  }
  
  .nav-bullets .bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--min--color);
  margin: 20px auto;
  cursor: pointer;
  position: relative;
  
  }
  
  .nav-bullets .bullet .tooltip {
  background-color: var(--min--color);
  width: 120px;
  color:#fff;
  padding: 8px 10px;
  position: absolute;
  right: 40px;
  top: -10px;
  text-align: center;
  cursor: default;
  pointer-events: none;
  display: none;
  
  }
  
  .nav-bullets .bullet:hover .tooltip {
  display: block;
  }
  
  .nav-bullets .bullet .tooltip.active {
    display: block;
  }
  
  .nav-bullets .bullet .tooltip::before {
  content: "";
  border-style: solid;
  border-color: transparent transparent transparent var(--min--color);
  border-width: 10px;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  }
  
  /*end nav-bullets*/
  
  /*start landing*/
  
  .landing-page {
  background: url(https://kaverina80.ru/wp-content/uploads/2019/03/%D1%81%D0%B0%D0%B9%D1%822.jpg) no-repeat;
  background-size:cover;
  min-height: 100vh;
  position: relative
  }
  
  .landing-page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.6)
  }
  
  .landing-page .header-area {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  text-transform: capitalize
  }
  
  .header-area .logo {
  padding: 15px;
  flex: 0 2 30%
  }
  
  .header-area .links {
  display: flex;
  flex: 0 2 70%;
  justify-content: space-between;
  list-style: none;
  position: fixed;
  width: 70%;
  margin-left: 20%;
  }
  
  .header-area .links li a {
  text-decoration: none;
  color: #fff;
  }
  
  .header-area .links li a:hover,
  .header-area .links li a.active {
  color: var(--min--color)
  }
  
  .header-area .toggle-menu {
  background: none;
  border: none;
  width: 40px;
  display: none;
  position: relative;
  cursor: pointer;
  }
  
  .header-area .toggle-menu.menu-active::before {
       content: "";
      border-width: 10px;
      border-style: solid;
      border-color: transparent transparent #fff transparent;
      position: absolute;
      bottom: -10px;
      right: 10px;
    }
  
  .header-area .toggle-menu:focus {
  outline: none;
  }
  
  .header-area .toggle-menu > span {
  height: 4px;
  background-color: #fff;
  display: block;
  margin-bottom: 4px;
  }
  
  .landing-page .introduction-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.8
  }
  
  .landing-page .introduction-text h1 span {
  color: var(--min--color)
  }
  
  @media (max-width:991px) {
  
    .header-area .links {
      display: none;
    }
  
    .header-area .links.open {
      background-color: #fff;
      padding: 10px;
      display: block;
      position: absolute;
      left:-120px;
      top:72px;
      width: 100%;
      border-radius: 5px;
  
      }
      
      .header-area .links.open li {
        display: block;
        margin: 10px;
      }
      
      .header-area .links.open li a {
        text-decoration: none;
        color: var(--min--color);
        font-weight: bold;
      
      }
      
      .header-area .toggle-menu {
        display:inline-block;
      }
  
  }
  
  
  .landing-page .arrow i{
    position: absolute;
    top: 50%;
    z-index: 2000;
    transform: translateY(50%);
    font-size: 50px;
    cursor: pointer;
    color: #fff;
    background-color: rgba(0,0,0,.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
    border: 1px solid #fff;
    transition: all .8s ease-in-out;
    overflow: hidden;
  }
  
  .landing-page .arrow i > span {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--min--color);
    border-radius: 50%;
    transition: all .8s ease-in-out;
  }
  
  .landing-page .arrow .fa-angle-right {
    right: 20px;
  }
  
  .landing-page .arrow .fa-angle-left {
    left: 20px;
  }
  
  
  /*end landing*/
  
  /*start about-us*/
  
  .about-us {
  padding:  50px 0;
  display:flex;
  justify-content: space-between;
  }
  
  .about-us .info-box {
  flex: 1;
  line-height: 1.8;
  }
  
  .about-us .info-box h2 {
  color: var(--min--color)
  }
  
  .about-us  .image-box {
  flex: 1;
  text-align: end;
  
  }
  
  /*end about-us*/
  
  /*start skills*/
  .skills {
  margin: 50px 0;
  padding: 50px 0;
  background-color: #ccc
  }
  
  .skills h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--min--color);
  margin-bottom: 50px;
  }
  
  .skills .skills-box {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 15px ;
  display: flex;
  align-items: center;
  }
  
  .skills .skills-box .skills-name {
  width: 140px;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  
  }
  
  .skills .skills-box .skills-progress {
  background-color: #f6f6f6;
  height:40px;
  width: 100%;
  position: relative;
  border-radius: 5px;
  }
  
  .skills .skills-box .skills-progress  span {
  position: absolute;
  top: 0;
  left:0;
  width: 0;
  height: 100% ;
  background-color: var(--min--color);
  border-radius: 5px;
  transition: all .9s ease-in-out;
  }
  
  /*start gellary*/
  .gellary {
  padding: 50px 0;
  }
  
  .gellary h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--min--color);
  margin-bottom: 50px; 
  }
  
  .gellary .imges {
  text-align: center;
  }
  
  .gellary .imges  img {
  width: 200px;
  padding: 3px;;
  background-color: #ffffff;
  border: 1px solid #ccc;
  margin: 5px;
  cursor: pointer;
  }
  
  .poupe-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.6);
  z-index: 1000;
  }
  
  .poupe-overlay .box-image {
  position: absolute;
  width:650px;
  min-height: 300px;
  top: 50%;
  left: 50%;
  padding: 50px;
  background-color: #ffff;
  transform: translate(-50%,-50%);
  }
  
  .poupe-overlay .box-image img {
  width:100%;
  max-height: 250px
  }
  
  .poupe-overlay .box-image  {
  text-align: center;
  }
  
  .poupe-overlay .box-image .button-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  }
  
  /*start gellary*/
  
  /*start timline*/
  
  .timline {
  padding: 50px 0;
  background-color: #eee;
  }
  
  .timline .timline-content {
  position: relative;
  overflow: hidden;
  }
  
  .timline .timline-content::before{
  content: "";
  position: absolute;
  left: 50%;
  top:0;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: var(--min--color);
  }
  
  .timline .timline-content .year {
  margin: 20px auto;
  width:50px;
  background-color: var(--min--color);
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  padding: 2px 5px;
  position: relative;
  z-index: 2;
  }
  
  .timline .timline-content .left,
  .timline .timline-content .right {
  width: calc(50% - 25px);
  margin-bottom: 40px;
  position: relative;
  }
  
  .timline .timline-content .left {
  float: left;
  }
  
  .timline .timline-content .right::before,
  .timline .timline-content .left::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 3px solid var(--min--color);
  position: absolute;
  right: -35px;
  top: 20px;
  border-radius: 50%;
  }
  
  .timline .timline-content .right {
  float: right;
  }
  
  .timline .timline-content .right::before {
  left: -35px;
  }
  
  .timline .timline-content .content {
  padding: 20px;
  background-color: #fff;
  }
  
  .timline .timline-content .content h3 {
  font-weight: bold;
  color: var(--min--color);
  margin:  0 0 10px;
  text-transform: capitalize;
  }
  
  .timline .timline-content .content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
  }
  
  .clear {
  clear: both;
  }
  
  
  .timline .timline-content .left  .content::before {
  content: "";
  border-style: solid;
  border-color: transparent  transparent  transparent #fff;
  border-width: 10px;
  position: absolute;
  top: 20px ;
  right: -20px
  }
  
  .timline .timline-content .right  .content::before {
  content: "";
  border-style: solid;
  border-width: 10px;
  position: absolute;
  top: 20px ;
  left: -20px;
  border-color: transparent #fff  transparent  transparent ;
  }
  
  /*start timline*/
  
  /*start  feature*/
  
  .ourfeature {
  padding: 60px
  }
  
  .ourfeature h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--min--color);
  margin-bottom: 50px; 
  }
  
  .ourfeature .feat-box {
  width: calc(98% / 3);
  float: left;
  text-align: center;
  margin-bottom: 40px;
  }
  
  .ourfeature .feat-box  img{
  border-radius: 50%;
  padding: 5px;
  background-color: #fff;
  border: 2px solid #eee;
  }
  
  .ourfeature .feat-box  h4 {
  font-size: 20px;
  margin: 15px 0 40px;
  position: relative;
  }
  
  .ourfeature .feat-box  h4::before {
  content: "";
  width: 40px;
  height: 4px;
  background-color: var(--min--color);
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: -20px;
  }
  
  .ourfeature .feat-box  p {
  width: 80%;
  margin: 0 auto;
  color: #706f6f;
  line-height: 1.7;
  }
  /*end  feature*/

    /*start testimolies 2*/


@import url("https://fonts.googleapis.com/css2?family=Shippori+Antique&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
input,
select {
  font-family: inherit;
  font-size: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 12px;
}

body-testimoles {
  color: #000;
  font-family: "Shippori Antique", sans-serif;
  height: 120vh;
  display: grid;
  place-items: center;
  margin-bottom: calc(4rem + 0.5vmin);
}

.content-wrapper {
  height: 100%;
  width: 70%;
  max-width: 100rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5rem;
}

h1 {
  margin-bottom: calc(0.7rem + 0.5vmin);
  font-size: calc(2.3rem + 1vmin);
}

.blue-line {
  height: 0.3rem;
  width: 6rem;
  background-color: rgb(79, 143, 226);
  margin-bottom: calc(3rem + 2vmin);
}

.wrapper-for-arrows {
  position: relative;
  width: 70%;
  border-radius: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.review-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(2rem + 1vmin);
  width: 100%;
}

#imgDiv {
  border-radius: 50%;
  width: calc(6rem + 4vmin);
  height: calc(6rem + 4vmin);
  position: relative;
  box-shadow: 5px -3px rgb(79, 143, 226);
  background-size: cover;
  margin-bottom: calc(0.7rem + 0.5vmin);
}

.chicken {
  background-image: url("https://media0.giphy.com/media/A8Cdznswn5vnG/200w.gif?cid=790b7611e8c5980ee7141bc18ec12c49962b871eb404ba5b&rid=200w.gif&ct=s");
  width: 200px;
  height: 250px;
  position: absolute;
  top: 12%;
}

#imgDiv::after {
  content: "''";
  font-size: calc(2rem + 2vmin);
  font-family: sans-serif;
  line-height: 150%;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgb(79, 143, 226);
  position: absolute;
  top: 10%;
  left: -10%;
  width: calc(2rem + 2vmin);
  height: calc(2rem + 2vmin);
}

#personName {
  margin-bottom: calc(0.7rem + 0.5vmin);
  font-size: calc(1rem + 0.5vmin);
  letter-spacing: calc(0.1rem + 0.1vmin);
  font-weight: bold;
}

#profession {
  font-size: calc(0.8rem + 0.3vmin);
  margin-bottom: calc(0.7rem + 0.5vmin);
  color: rgb(79, 143, 226);
}

#description {
  font-size: calc(0.8rem + 0.3vmin);
  width: 70%;
  max-width: 40rem;
  text-align: center;
  margin-bottom: calc(1.4rem + 1vmin);
  color: rgb(92, 92, 92);
  line-height: 2rem;
}

.arrow-wrap {
  position: absolute;
  top: 50%;
}

.arrow {
  width: calc(1.4rem + 0.6vmin);
  height: calc(1.4rem + 0.6vmin);
  border: solid rgb(79, 143, 226);
  border-width: 0 calc(0.5rem + 0.2vmin) calc(0.5rem + 0.2vmin) 0;
  cursor: pointer;
  transition: transform 0.3s;
}

.arrow:hover {
  transition: 0.3s;
  transform: scale(1.15);
}

.left-arrow-wrap {
  left: 5%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.right-arrow-wrap {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 5%;
}

.surprise-me-btn {
  border: 2px solid rgb(79, 143, 226);
  background-color: rgb(224, 238, 255);
  color: rgb(79, 143, 226);
  border-radius: 2rem;
  padding: calc(0.5rem + 0.2vmin) 0;
  width: calc(7rem + 5vmin);
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  margin-bottom: calc(1.4rem + 1vmin);
}

.surprise-me-btn:hover {
  transition: background-color 0.3s, transform 0.3s;
  background-color: rgb(255, 255, 255);
  transform: rotate(5deg);
}

.move-head {
  animation: moveHead 1.55s infinite;
  animation-delay: -0.8s;
}

.hide-chicken-btn {
  border: 2px solid rgb(226, 89, 79);
  background-color: rgb(255, 224, 224);
  color: rgb(226, 79, 79);
  border-radius: 2rem;
  padding: calc(0.5rem + 0.2vmin) 0;
  width: calc(10rem + 5vmin);
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  margin-bottom: calc(1.4rem + 1vmin);
}

.hide-chicken-btn:hover {
  transition: background-color 0.3s, transform 0.3s;
  background-color: rgb(255, 255, 255);
  transform: rotate(5deg);
}

@keyframes moveHead {
  0% {
  }
  25% {
    transform: translate(0.5rem, 1rem) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(-5deg);
  }
}

@media screen and (max-width: 900px) {
  .content-wrapper {
    width: 100%;
  }
}
  
  /*start testimolies*/
  
  .testimolies {
  position: relative;
  padding: 50px 0;
  }
  
  .testimolies h2 {
  text-align: left;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  }
  
  .testimolies::before {
  content: "";
  background-color: var(--min--color);
  position: absolute;
  top:0;
  left:0;
  width: 50%;
  height: 100%;
  
  }
  
  .testimolies::after {
  content: "";
  background-color: #000;
  position: absolute;
  top:0;
  right:0;
  width: 50%;
  height: 100%
  }
  
  .testimolies .box-test {
  position: relative;
  z-index: 2;
  width: calc(140% / 3);
  float: left;
  font-size: 20px;
  background-color: #fff;
  padding: 60px;
  
  }
  
  .testimolies .box-test:not(:last-of-type) {
  margin-right: 1%;
  }
  
  .testimolies .box-test > p {
  margin: 0 0 10px;
  line-height: 1.5;
  font-size:18px;
  font-style: italic;
  color:#707070
  }
  
  .testimolies .box-test .person-info {
  overflow: hidden;
  }
  
  .testimolies .box-test .person-info img {
  border-radius: 50%;
  margin-right: 20px;
  float: left;
  }
  
  .testimolies .box-test .person-info h4 {
  margin: 14px 0 5px
  }
  
  .testimolies .box-test .person-info p {
  margin: 0;
  color: #707070
  }
  .clear-fix {
  clear: both;
  }
  /*end testimolies*/
  
  /*start contact-us*/
  
  .contact-us {
  background: url('https://st2.depositphotos.com/3876909/5654/v/950/depositphotos_56547215-stock-illustration-dotted-world-map.jpg');
  background-size: cover;
  height: 800px;
  position: relative;
  padding: 80px 0;
  
  }
  
  .contact-us .overlay {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,.6);
  
  }
  
  .contact-us .container {
  position: relative;
  z-index:2;

  }
  
  .contact-us  h2 {
  font-size: 30px;
  font-weight: bold;
  color: var(--min--color);
  margin: 60px 0 ;
  text-align: center;
  }
  
  .contact-us form {
  overflow: hidden;
  max-width: 800px;
  margin: auto;
  }
  
  .contact-us form .left {
  float: left;
  width: 49%;
  }
  
  .contact-us form .right {
  float: right;
  width: 49%;
  }
  
  .contact-us form input:not([type="submit"]),
  .contact-us form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  background-color: rgba(218,218,218,0.19);
  }
  
  .contact-us form input:not([type="submit"]):focus,
  .contact-us form textarea:focus {
  outline: 1px solid var(--min--color);
  }
  
  .contact-us form textarea {
  height: 150px;
  }
  
  .contact-us form textarea:focus::-webkit-input-placeholder,
  .contact-us form input:not([type="submit"]):focus::-webkit-input-placeholder
  {
  opacity: 0;
  transition: .3s;
  }
  
  .contact-us form input[type="submit"] {
  padding: 10px;
  width: 100%;
  border-color: transparent;
  background-color: var(--min--color);
  color: #fff;
  cursor: pointer;
  }
  /*start contact-us*/
  
  
  /*start system gird*/
  
  @media(min-width:576px) {/*small devices => landscap phones*/
  .container {
    max-width: 540px;
  }
  }
  
  @media(min-width:568px) {/*medium devices => tabeltes*/
  .container {
    max-width: 720px;
  }
  }
  
  @media(min-width:992px) {/*desktop*/
  .container {
    max-width: 960px;
  }
  }
  
  @media(min-width:1200px) {/*large screen*/
  .container {
    max-width:1140px;
  }
  }
  /*end system gird*/

  /*Projects*/
  /* RESET */
html, .section5, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, section, summary, time, mark, audio, video {margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:'';content:none;}
article *{-webkit-text-size-adjust:none;box-sizing:border-box;}
input:focus, select:focus, textarea:focus, button:focus {outline:none;}
input, textarea, select{font-weight:400;-webkit-appearance:none;appearance:none;border-radius:0;border:0px none;}
select::-ms-expand{display:none;}
a {transition:all 0.3s ease-out;-webkit-transition:all 0.3s ease-out;}
a, a:link, a:visited, a:active, a:hover{cursor:pointer;text-decoration:none;outline:none;}
html {font-size:13px;}
body{font-weight:normal;}
ul, ol{list-style:none;}
b {font-weight:700;}

@import url('https://fonts.googleapis.com/css?family=Titillium+Web:200,300,400,700');
*{-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;margin:0;padding:0;}
html{background:url('http://semicorpus.com/yarden/backgr-flower-blur.');background-size:cover;}
.section5{background:#110725;color:#e8dff6;font-family: 'Titillium Web', sans-serif;overflow:hidden;/*transform:scale(.9);*/}
h1,h2,h4,h6{transform:scaleY(0.9);}
a{color:#e8dff6;}
p{color:#FFF;}
.body-overlay{font-weight:300; }

.container5{box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);min-height:100%;}

.outer-top{background:#110725;padding:40px 55px;height:115px;width:100%;position:sticky;top:0;z-index:4;}
.outer-top .aka{font-size:1.8em;display:inline-block;letter-spacing:8px;padding-top:5px;width:12%;}
.outer-top .aka a{color:#da8335;}
.outer-top .btn-explore{display:inline-block;text-align:center;padding-top:5px;vertical-align:top;width:72%;}
.outer-top .btn-explore svg{fill:#FFF;margin:0 10px;vertical-align:middle;opacity:.6;transform:rotate(137deg) scaleX(.8);}
.outer-top .btn-explore a{font-size:1.2em;letter-spacing:1px;}
.outer-top .btn-burger{display:inline-block;position:absolute;top:50px;right:45px;}
.outer-top .btn-burger img{width:20px;}
.outer-top .btn-burger:hover{box-shadow:inset -3px 5px 15px rgba(213,78,24,.1),0px 0px 15px rgba(213,78,24,.2);opacity:.5}

.leftandin{width:100%;z-index: 3;}
.leftandin2{top:115px;bottom:0;opacity:0;width:100%;z-index:3;}
.leftandin3{top:115px;bottom:0;opacity:0;width:100%;z-index:3;}
.leftandin4{top:115px;bottom:0;opacity:0;width:100%;z-index:3;}


.outer-left{background:#110725;display:inline-block;min-height:calc(130vh - 5px);height:100%;padding:45px 60px;width:20%;border-top-right-radius:50vh;}

.outer-left .timeline{font-size:1.1em;letter-spacing:1.5px;padding-top:14%;z-index:1;}

.outer-left .headline{color:#cbc9d0; font-size:7em;font-weight:700;line-height:90px;padding:20px 5px;position:absolute;z-index:1;}

.outer-left .title{font-size:1.7em;font-weight:300;letter-spacing:1.5px;line-height:50px;padding:20px 110px;position:absolute;margin-top:8.5em;z-index:1;}

.outer-left .description{font-size:1.3em;position:absolute;margin-top:15.5em;padding:0 110px;z-index:1;width:39em;}

.outer-left .cta{
	background: rgb(213,113,24);
	background: -moz-linear-gradient(120deg, rgba(213,113,24,1) 0%, rgba(214,0,59,1) 72%);
	background: -webkit-linear-gradient(120deg, rgba(213,113,24,1) 0%, rgba(214,0,59,1) 72%);
	background: linear-gradient(120deg, rgba(213,113,24,1) 0%, rgba(214,0,59,1) 72%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d57118",endColorstr="#d6003b",GradientType=1);
	border:none;
	border-radius:20em;
	box-shadow:-1px 2px 7px rgba(213,78,24,.4),1px -1px 7px rgba(7,6,25,.4);
	color:#e8dff6;
	font-size:1.3em;
	letter-spacing:1px;
	margin-left:140px;	
	margin-top:24em;
	padding:.8em 3em;
	position:absolute;
	text-shadow:0px 0px 3px rgba(200,200,200,.4);
	transition:background-size .9s ease-in;
	z-index:1;
}
.outer-left .cta:hover{
	backface-visibility:hidden;
	background-size:150%;
	box-shadow:1px 2px 7px rgba(213,78,24,.3),1px 1px 10px rgba(7,6,25,.3);
	cursor:pointer;
	text-shadow:0px 0px 4px rgba(0,0,0,.4);
	transition:background-size .9s ease-in;
	transform:scale(0.98)!important;
}

.inner{border-top-left-radius:50vh;box-shadow:inset 0 14px 5px rgba(0,0,0,0.2),inset 0 14px 10px rgba(0,0,0,0.5);display:inline-block;min-height:calc(100vh - 115px);vertical-align:top;position:absolute;right:0;width:60%;}
#inner1{background:url('images//taskss.webp');background-size:cover;}
#inner2{background:url('images//moviess.webp');background-size:cover;}
#inner3{background:url('images//landpagebank.jpg');background-size:cover;}
#inner4{background:url('images//labook.jpg');background-size:cover;}

/* Número dos slides */

.inner .toggler{position:absolute;bottom: 0px;;width:98%;}
.inner .toggler a{font-size:3em;color:#e8dff6;opacity:10;text-align:right;height:1.8em;border-radius:10em;width:2em;z-index:2; }
.inner .toggler a:hover{opacity:.9;transform:scale(1.03);}
.inner .previous-article{position:absolute;bottom:8em;right:0;}
.inner .next-article{position:absolute;bottom:0em;right:0;margin-right:10%}
.inner .article-position{color:#e8dff6;font-size: 1em !important;font-weight:700;letter-spacing:-2px;width:2.5em; z-index:2; height:1.8em; text-align: right;}
/* - TOOLS - */

/* for Animations :
*/
.delay-06s{animation-delay: 0.6s;-webkit-animation-delay: 0.6s;}

.section5{
  background-color:#110725;
}
.section5{transform:scale(.9);border-radius:40px;}
.container5{border-radius:40px;}
.outer-top{border-top-left-radius:40px;border-top-right-radius:40px;}
.outer-left{border-bottom-left-radius:40px;}
.leftandin{border-bottom-left-radius:40px;border-bottom-right-radius:40px;}
.inner{border-bottom-right-radius:40px;}


/* for JS :
*/
.displaynone{display:none;}
.display{display:block;opacity:1;}
@media only screen and (max-width: 900px){
	.outer-top .aka{font-size:1.2em;padding-top:6px;width:12%;}
	.outer-left .timeline{position:relative;width:250px;}
	.outer-left .headline{font-size:6em;font-weight:700;line-height:75px;padding:30px 0;}
	.outer-left .title{font-size:1.7em;line-height:50px;padding:20px 0px;margin-top:9em;}
	.outer-left .description{font-size:1.3em;margin-top:15em;padding:20px 0;}
	.outer-left .cta{margin-left:33%}
}

@media only screen and (max-width: 567px){
	.outer-top{background:#110725;padding:20px 30px;}
	.outer-top .aka{font-size:1.2em;padding-top:6px;width:12%;}
	.outer-top .btn-explore{border-top:1px solid rgba(182,159,217,.1);text-align:left;margin:20px auto;padding:15px;width:100%;}
	.outer-top .btn-explore svg{margin:0 0 0-10px;}
	.outer-top .btn-burger{top:30px;right:30px;}

	.outer-left{padding-left:30px;}
	.outer-left .timeline{position:relative;width:250px;}
	.outer-left .headline{font-size:4em;font-weight:700;line-height:60px;padding:30px 0;width:250px;}
	.outer-left .title{font-size:1.7em;line-height:50px;padding:20px 0px;margin-top:10em;}
	.outer-left .description{font-size:1.3em;margin-top:17em;padding:20px 0;width:230px}
	.outer-left .cta{margin:31em 10% 3em 5%;width:80%;}

	.inner{border-top-left-radius:25vh;}

  .inner {
    border-top-left-radius: 50vh;
    box-shadow: inset 0 14px 5px rgba(0, 0, 0, 0.2), inset 0 14px 10px rgba(0, 0, 0, 0.5);
    display: inline-block;
    min-height: calc(100vh - 115px);
    vertical-align: top;
    position: absolute;
    right: 0;
    width: 60%; /* padrão para telas maiores */
  }
  
  @media (max-width: 1024px) {
    .inner {
      width: 80%; /* Reduz largura para tablets */
      border-top-left-radius: 40vh; /* Ajusta arredondamento */
    }
  }
  
  @media (max-width: 768px) {
    .inner {
      width: 100%; /* Ocupa 100% em telas pequenas */
      position: static; /* Evita que a posição fique absoluta */
      border-radius: 0; /* Remove arredondamento em telas menores */
      min-height: auto; /* Ajusta altura mínima */
    }
  }
  
}
