@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: #FCF7F1;
}

/* For mobile phones: */
[class*="col-"] {
  flex: 100%;
}

@media only screen and (min-width: 600px) {

  /* For tablets: */
  .col-s-1 {
    flex: 8.33%;
  }

  .col-s-1-5 {
    flex: 12.5%;
  }

  .col-s-2 {
    flex: 16.66%;
  }

  .col-s-3 {
    flex: 25%;
  }

  .col-s-4 {
    flex: 33.33%;
  }

  .col-s-5 {
    flex: 41.66%;
  }

  .col-s-6 {
    flex: 50%;
  }

  .col-s-7 {
    flex: 58.33%;
  }

  .col-s-8 {
    flex: 66.66%;
  }

  .col-s-9 {
    flex: 75%;
  }

  .col-s-10 {
    flex: 83.33%;
  }

  .col-s-11 {
    flex: 91.66%;
  }

  .col-s-12 {
    flex: 100%;
  }
}

@media only screen and (min-width: 768px) {

  /* For desktop: */
  .col-1 {
    flex: 8.33%;
  }

  .col-1-5 {
    flex: 12.5%;
  }

  .col-2 {
    flex: 16.66%;
  }

  .col-3 {
    flex: 25%;
  }

  .col-4 {
    flex: 33.33%;
  }

  .col-5 {
    flex: 41.66%;
  }

  .col-6 {
    flex: 50%;
  }

  .col-7 {
    flex: 58.33%;
  }

  .col-8 {
    flex: 66.66%;
  }

  .col-9 {
    flex: 75%;
  }

  .col-10 {
    flex: 83.33%;
  }

  .col-11 {
    flex: 91.66%;
  }

  .col-12 {
    flex: 100%;
  }
}

#container1 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  transition: 0.3s cubic-bezier(0.6, -0.28, 0.74, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #fcf7f1ec;
}

.item1,
.item2 {
  padding: 0;
}

.item1 {
  display: flex;
  align-items: center;
  justify-content: left;
}

.item1 a {
  text-decoration: none;
  color: #1E1E1E;
  font-family: Cormorant;
  font-size: 2.7rem;
  font-weight: 600;
  transition: 0.3s cubic-bezier(0.6, -0.28, 0.74, 0.05);
}

.item2 {
  display: flex;
  align-items: center;
  justify-content: right;
}

.item2 ul {
  margin: 0;
  display: flex;
}

.item2 ul li {
  display: inline;
  padding-left: 42px;
}

.item2 ul li a {
  text-decoration: none;
  color: #9A9694;
  text-align: center;
  font-family: Raleway;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  transition-duration: 0.4s;
}

.item2 ul li a:hover {
  color: #1e1e1e;
}

.marquee {
  display: flex;
  overflow: hidden;
  height: auto;
  user-select: none;
  gap: 2rem;
  -webkit-text-fill-color: #1E1E1E;
  color: #1E1E1E;
  transition: all 0.5s ease;
  -webkit-font-smoothing: antialiased;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 100%;
  animation: scroll 35s linear infinite;
}

.marquee__group>div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.marquee__group p {
  line-height: 90px;
  font-family: Cormorant;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}


@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 2rem));
  }
}



#container2 {
  display: flex;
  flex-wrap: wrap;
}

#bannText {
  display: flex;
  justify-content: center;
  align-items: center;
}

#bannText p {
  width: 100%;
  color: #797675;
  text-align: center;
  font-family: Raleway;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}

.align_img1 img {
  object-position: left bottom;
}

.align_img2 img {
  object-position: center top;
}

.align_img3 img {
  object-position: center center;
}

.item_img {
  width: auto;
  overflow: hidden;
  transition: .5s ease;
}

.item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-content h4 {
  color: #1E1E1E;
  font-family: Cormorant;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  margin: 7px 0 4px 0;
}

.item-content p {
  color: #797675;
  font-family: Raleway;
  font-weight: 500;
  font-style: normal;
  line-height: 1.25rem;
  margin: 0;
  width: 85%;
}

#title1_h1_2_flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 0 62px;
}

h1#title1_h1_2 {
  align-self: center;
  margin: 0 10px 0 0;
}

svg.svgTitle {
  align-self: center;
}

svg.svgBigTitle {
  align-self: center;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

svg.svgTitle,
svg.svgBigTitle {
  -webkit-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;

}


#title1 #h1_titles h1 {
  color: #1E1E1E;
  font-family: Cormorant;
  font-size: 6.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 100%;
}

#container3 {
  display: flex;
  flex-wrap: wrap;
}

#span_title {
  padding: 30px 0 0 0;
}

#title1 a.btn_line {
  text-decoration: none;
  color: #FCF7F1;
  text-align: center;
  font-family: Raleway;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  border-radius: 1.8125rem;
  background-color: #1e1e1e;
  margin-bottom: 50px;
  padding: 0.5rem 0.8rem;
  transition: border-color 0.5s, background-color 0.5s, color 0.5s;
}

#title1 a.btn_line:hover {
  background-color: #797675;
  border-color: transparent;
  color: #FCF7F1;
}

#title1 p {
  color: #797675;
  font-family: Raleway;
  font-size: 1.01875rem;
  font-weight: 500;
  margin: 0 0 33px 0;
  font-style: normal;
  line-height: 1.25rem;
}

#item4 {
  display: flex;
}

#sobre_imgs {
  display: flex;
  flex-direction: row-reverse;
}


.st0 {
  fill: #1E1E1E;
}

.owl-carousel .owl-stage-outer {
  cursor: grab !important;
}

.item a {
  text-decoration: none;
  cursor: grab !important;
}

.drag-indicator {
  position: fixed;
  background-color: #1e1e1e;
  color: #FCF7F1;
  text-align: center;
  font-family: Raleway;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 7px;
  line-height: auto;
  border: 1px solid #353535df;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  /* Smoothly transition the opacity property */
  z-index: 999;
}

#overlay_text {
  position: absolute;
  width: 16%;
  text-align: right;
  margin: 99px 264px 0 0;
}

#overlay_text h5 {
  color: #1e1e1e;
  text-align: right;
  font-family: Cormorant;
  font-size: 40px;
  font-weight: 600;
  line-height: 98%;
  mix-blend-mode: color-dodge;
}

#title1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

#cont4_cont {
  display: flex;
  flex-direction: row;
}

#cont4_imgs_text {
  display: flex;
  flex-direction: column;
}

#cont4_pics_2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
}


.pics_2 {
  align-self: flex-end;
  margin-bottom: 50px;
  z-index: 2;
}

.pics_2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.pics_2:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}



#cont4_pics_1 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

#cont4_aptidoes {
  display: flex;
  flex-direction: column;
  z-index: 999;

}

#list_relative_container {
  position: relative;
  width: 100%;
}

#list_container {
  left: 0;
  right: 0;
  top: -228px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
}

#list_content {
  display: flex;
  flex-direction: column;
  margin-bottom: 31px;

}

#list_content #list_titles h1 {
  color: #1E1E1E;
  font-family: Cormorant;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 100%;
}

#list_title_h1_2_flex {
  display: flex;
  flex-direction: row;
  align-items: center;

}

h1#list_title_h1_2 {
  margin: 0 10px 0 0;
}

#aptidoes_buttons {
  display: flex;
  flex-direction: column;
  margin: auto 0 0 0;
}

.aptidao_btn_cont {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.aptidoes_btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  cursor: pointer;
  transition: padding 0.3s ease-in, background-color 0.5s ease-in;
}

.aptidoes_btn_name,
.aptidoes_btn_icon {
  align-self: center;
}

.aptidoes_btn_name h6 {
  color: #797675;
  font-family: Raleway;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.3s;
}

.aptidoes_btn_icon h6 {
  color: #797675;
  font-family: Raleway;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.3s;
}

.aptidoes_btn_icon {
  border: 1px solid #797675;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.3s;
}


.aptidoes_btn:hover {
  background-color: #797675;
}

/* Change the border color of aptidoes_btn_icon when aptidoes_btn is hovered */
.aptidoes_btn:hover .aptidoes_btn_icon {
  border-color: #FCF7F1;
  /* Change the border color on hover */
}

.aptidoes_btn:hover .aptidoes_btn_icon h6 {
  color: #FCF7F1;
  /* Change the border color on hover */
}

.aptidoes_btn:hover .aptidoes_btn_name h6 {
  color: #FCF7F1;
  /* Change the border color on hover */
}

#container5 {
  padding: 56px 40px 136px 40px;
}

.aptidao_transition {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.aptidao_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.aptidao_img {
  display: flex;
}



.aptidao_text p {
  color: #797675;
  font-family: Raleway;
  font-size: 15px;
  font-weight: 500;
  width: 65%;
}

.aptidao_text ul {
  color: #797675;
  font-family: Raleway;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding: 0 0 0 15px;
}

.aptidao_title h5 {
  margin: 0;
}

.aptidao_title {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

h5.title_text {
  color: #1E1E1E;
  font-family: Raleway;
  font-size: 2.3rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 100%;
}

h5.title_number {
  color: #1E1E1E;
  font-family: Cormorant;
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 100%;
  margin: 9px 0;
}

#text_vertical {
  writing-mode: tb-rl;
  transform: rotate(-180deg);
}

#text_vertical h2 {
  color: #797675;
  text-align: center;
  font-family: Cormorant;
  font-style: normal;
  font-weight: 700;
  line-height: 4.5rem;
  /* 6.066rem */
  text-transform: uppercase;
  margin: 0;
}

#pics_1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#pics_1 {
  position: relative;
  display: block;
}



#sobre_img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: fade 24s infinite;
  animation: fade 24s infinite;
  object-fit: cover;
}



.skill_level {
  display: flex;
  align-items: flex-start;
}

.skills_collum {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.skills_collum>div p {
  margin: 0 0 10px 0;
  color: #797675;
  font-family: Raleway;
}

.skills_container {
  width: 281px;
  background-color: #e9e4de;
}

.skills {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #797675;
}


.laravel {
  width: 40%;
  animation: ani40 2s ease-out;
}

@keyframes ani40 {
  0% {
    width: 0px;
  }

  100% {
    width: 40%;
  }
}

.js {
  width: 50%;
  animation: ani50 2s ease-out;
}

@keyframes ani50 {
  0% {
    width: 0px;
  }

  100% {
    width: 50%;
  }
}

.organizacao,
.aP {
  width: 60%;
  animation: ani60 2s ease-out;
}

@keyframes ani60 {
  0% {
    width: 0px;
  }

  100% {
    width: 60%;
  }
}

.motivacao,
.criatividade,
.aME,
.aPP,
.figma,
.php,
.sql {
  width: 70%;
  animation: ani70 2s ease-out;
}

@keyframes ani70 {
  0% {
    width: 0px;
  }

  100% {
    width: 70%;
  }
}

.tDI,
.aI {
  width: 80%;
  animation: ani80 2s ease-out;
}

@keyframes ani80 {
  0% {
    width: 0px;
  }

  100% {
    width: 80%;
  }
}

.aAE,
.css {
  width: 85%;
  animation: ani85 2s ease-out;
}

@keyframes ani85 {
  0% {
    width: 0px;
  }

  100% {
    width: 85%;
  }
}

.bootstrap,
.html {
  width: 90%;
  animation: ani90 2s ease-out;
}

@keyframes ani90 {
  0% {
    width: 0px;
  }

  100% {
    width: 90%;
  }
}

#arrows_btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.next_previous:hover .arrowBtn h6 {
  color: #1E1E1E;

}

.next_previous:hover .arrowBtn {

  border-color: #1E1E1E;
}

.aptidao_text #arrows_container {
  display: flex;
  flex-direction: row;
}

#container6 {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #ccc;
  align-items: center;
}

.footer_item2 {
  display: flex;
  justify-content: flex-end;
}

.footer_item2 button {
  text-decoration: none;
  color: #797675;
  text-align: center;
  font-family: Raleway;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  transition-duration: 0.4s;
  border: none;
  background: none;
}

.footer_item2 button:hover {
  color: #1E1E1E;
}

.footer_item1 {
  display: flex;
  justify-content: flex-start;
}

.footer_item1 h3 {
  text-decoration: none;
  color: #1E1E1E;
  font-family: Cormorant;
  font-size: 2.7rem;
  font-weight: 600;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 460px) {

  #container1 {
    padding: 0 25px;
  }
  #container6 {
    margin: 0 25px;
    padding: 5px 0;
}
.container3{
  padding: 0 25px 41px 25px;
}
svg.svgBigTitle {
  height: 3.4rem;
  width: 3.4rem;
}
  .marquee__group p {
    font-size: 5rem;
  }

  .marquee {
    margin: 112px 0 24px 0;
  }

  .drag-indicator {
    display: none;
  }
  .container2{
    margin: 0 0 25px 0;
  }
  .img_cont{
    width: 100vw;
    height: 14rem;
  }
  .img_scroll {
    width: 100vw;
    height: 10rem;
  }
  .info_col h6{
    font-size: 0.85rem;
  }
  .info_col ul li{
    font-size: 0.85rem;
  }
  .proj_info {
    flex-direction: row;
    justify-content: space-between;
  }
  .text_area h4{
    font-size: 2.2rem;
  }
  .text_area{
    margin-top: 75px;
  }
  .text_area a {
    font-size: 0.8rem;
  }
  .container4{
    padding: 0 25px 84px 25px;
  }
  .container5{
    padding: 0 25px 30px 25px;
  }
  #arrows_container{
    padding: 0 25px 100px 25px;
  }
  .cont_5{
    padding-bottom: 100px;
  }
  .aptidoes_btn_icon {
    height: 28px;
    width: 28px;
}
.cont_3{
  padding-bottom: 110px;
}
.cont_3b{
  padding-bottom: 74px;
}
.text_area_p p{
  font-size: 0.85rem;
}
.item_img {
  height: 16rem;
}
#container3 {
  padding: 60px 25px 60px 25px;
}
#title1 #h1_titles h1 {
  font-size: 3.6rem;
}
#title1_h1_2_flex svg {
  width: 2.9rem;
  height: 2.9rem;
}
.owl-carousel{
  padding-bottom: 100px;
}
.img_cont_left{
  height: 100% !important;
}
.img_cont_center{
  height: 100% !important;
}
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 460px) {
  .marquee__group svg{
    width: 55px;
    height: 55px;
  }
  #container1 {
    padding: 0 25px;
  }
  svg.svgBigTitle {
  height: 4rem;
  width: 4rem;
}
  .marquee__group p {
    font-size: 6rem;
  }

  .marquee {
    margin: 117px 0 33px 0;
  }

  #container6 {
    margin: 0 25px;
    padding: 5px 0;
}

  .drag-indicator {
    display: none;
  }
  .container2{
    margin: 0 25px 25px 25px;
  }
  .container3{
    padding: 0 25px 41px 25px;
  }
  .img_cont{
    width: 100vw;
    height: 16rem;
  }
  .img_scroll {
    width: 100vw;
    height: 13rem;
  }
  .info_col h6{
    font-size: 0.9rem;
  }
  .info_col ul li{
    font-size: 0.9rem;
  }
  .proj_info {
    flex-direction: row;
    justify-content: space-between;
  }
  .text_area h4{
    font-size: 2.7rem;
  }
  .text_area{
    margin-top: 53px;
  }
  .text_area a {
    font-size: 0.8rem;
  }
  .container4{
    padding: 0 25px 84px 25px;
  }
  .container5{
    padding: 0 25px 30px 25px;
  }
  #arrows_container{
    padding: 0 25px 100px 25px;
  }
  .cont_5{
    padding-bottom: 100px;
  }
  .aptidoes_btn_icon {
    height: 28px;
    width: 28px;
}
.cont_3{
  padding-bottom: 110px;
}
.cont_3b{
  padding-bottom: 110px;
}
.text_area_p p{
  font-size: 0.9rem;
}
.item_img {
  height: 24.5rem;
}
#container3 {
  padding: 60px 25px 60px 25px;
}
#title1 #h1_titles h1 {
  font-size: 4.7rem;
}
#title1_h1_2_flex svg {
  width: 3.4rem;
  height: 3.4rem;
}
.owl-carousel{
  padding-bottom: 100px;
}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  #container1 {
    padding: 0 25px;
  }
  .container3{
    padding: 0 25px 71px 25px;
  }
  .marquee__group p {
    font-size: 7rem;
  }

  .marquee {
    margin: 160px 0 64px 0;
  }

  #container6 {
    margin: 0 25px;
    padding: 5px 0;
}

.drag-indicator {
  display: none;
}

.marquee__group svg{
  width: 55px;
  height: 55px;
}
.container2{
  margin: 0 25px 30px 25px;
}
.img_cont{
  width: 100vw;
  height: 21rem;
}
.info_col h6{
  font-size: 0.9rem;
}
.info_col ul li{
  font-size: 0.9rem;
}
.info_col{
  margin-bottom: 27px;
}
.text_area h4{
  font-size: 2.7rem;
}
.proj_info {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.text_area{
  margin-top: 68px;
}
.text_area a {
  font-size: 0.8rem;
}
.container4{
  padding: 0 25px 111px 25px;
}
.container5{
  padding: 0 25px 30px 25px;
}
.img_scroll {
	width: 100vw;
  height: 18rem;
}
#arrows_container{
  padding: 0 25px 109px 25px;
}
.cont_5{
  padding-bottom: 109px;
}
.aptidoes_btn_icon {
  height: 28px;
  width: 28px;
}
.cont_3{
  padding-bottom: 110px;
}
.cont_3b{
  padding-bottom: 110px;
}
.text_area_p p{
  font-size: 0.9rem;
}
.item_img {
  height: 33.5rem;
}
.owl-carousel{
  padding-bottom: 109px;
}
#container3 {
  padding: 60px 25px 119px 25px;
}
#title1 #h1_titles h1 {
  font-size: 4.7rem;
}
#title1_h1_2_flex svg {
  width: 3.4rem;
  height: 3.4rem;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #container1 {
    padding: 0 25px;
  }
  .container3{
    padding: 0 25px 75px 25px;
  }
  .marquee__group svg{
    width: 55px;
    height: 55px;
  }


  .marquee__group p {
    font-size: 6rem;
}

  .marquee {
    margin: 155px 0 59px 0;
  }

#container6 {
  margin: 0 25px;
  padding: 10px 0;
}
.container2{
  margin: 0 25px 30px 25px;
}
.img_cont{
  width: 100vw;
  height: 29rem;
}
.info_col h6{
  font-size: 0.9rem;
}
.info_col ul li{
  font-size: 0.9rem;
}
.info_col{
  margin-bottom: 31px;
}
.text_area h4{
  font-size: 2.7rem;
}
.proj_info {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.text_area{
  margin-top: 72px;
}
.text_area a {
  font-size: 0.8rem;
}
.container4{
  padding: 0 25px 126px 25px;
}
.container5{
  padding: 0 25px 30px 25px;
}
.img_scroll {
	width: 100vw;
  height: 22rem;
}
#arrows_container{
  padding: 0 25px 109px 25px;
}
.cont_5{
  padding-bottom: 109px;
}
.aptidoes_btn_icon {
  height: 28px;
  width: 28px;
}
.cont_3{
  padding-bottom: 140px;
}
.cont_3b{
  padding-bottom: 140px;
}
.text_area_p p{
  font-size: 0.8rem;
}
.item_img {
  height: 14.5rem;
}
#container3 {
  padding: 60px 25px;
  flex-wrap: nowrap;
  align-items: flex-end;
}
#title1 #h1_titles h1 {
  font-size: 3.9rem;
}
#title1_h1_2_flex svg {
  width: 3.4rem;
  height: 3.4rem;
}
.owl-carousel{
  padding-bottom: 109px;
}

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #container1 {
    padding: 0 40px;
  }
  .container3{
    padding: 0 40px 90px 40px;
  }
  .drag-indicator {
    display: block;
  }
  .marquee__group p {
    font-size: 8rem;
  }
  .marquee {
    margin: 163px 0 59px 0;
  }
  #container6 {
    margin: 0 40px;
    padding: 20px 0;
}
.marquee__group svg {
  width:75px;
  height:75px;
}
.container2{
  margin: 0 40px 40px 40px;
}
.img_cont{
  width: 100vw;
  height: 34rem;
}
.info_col h6{
  font-size: 1rem;
}
.info_col ul li{
  font-size: 0.9rem;
}
.info_col{
  margin-bottom: 31px;
}
.text_area h4{
  font-size: 2.7rem;
}
.proj_info {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.text_area{
  margin-right: 7rem;
  margin-top: 72px;
}
.text_area a {
  font-size: 0.8rem;
}
.container4{
  padding: 0 40px 158px 40px;
}
.container5{
  padding: 0 40px 30px 40px;
}
.img_scroll {
	width: 100vw;
  height: 29rem;
}
#arrows_container{
  padding: 0 40px 109px 40px;
}
.cont_5{
  padding-bottom: 109px;
}
.aptidoes_btn_icon {
  height: 30px;
  width: 30px;
}
.cont_3{
  padding-bottom: 140px;
}
.cont_3b{
  padding-bottom: 140px;
}
.text_area_p p{
  font-size: 0.9rem;
}
#container3 {
  padding: 108px 40px 119px 40px;
}
#title1 #h1_titles h1 {
  font-size: 5.37rem;
}
#title1_h1_2_flex svg {
  width: 75px;
  height: 75px;
}
#item4 {
  align-items: center;
  justify-content: flex-end;
}
.owl-carousel{
  padding-bottom: 109px;
}

.item_img {
  height: 18.5rem;
}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1250px) {
  #container1 {
    padding: 0 40px;
  }
  .container3 {
    padding: 0 40px 135px 40px;
}
  .drag-indicator {
    display: block;
  }

  #title1 #h1_titles h1 {
    font-size: 6.75rem;
  }

  .marquee__group p {
    font-size: 8.75rem;
  }

  .marquee {
    margin:179px 0 77px 0;
}

.marquee__group svg {
  width:90px;
  height:90px;
}

  #container6 {
    margin: 0 40px;
    padding: 20px 0;
}
.container2{
  margin: 0 40px 40px 40px;
}
.img_cont{
  width: 100vw;
  height: 45rem;
}
.info_col h6{
  font-size: 1.1rem;
}
.info_col{
  margin-bottom: 31px;
}
.info_col ul li{
  font-size: 1.01875rem;
}
.text_area h4{
  font-size: 2.7rem;
}
.proj_info {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.text_area{
  margin-right: 18rem;
  margin-top: 82px;
}
.text_area a {
  font-size: 0.8rem;
}
.container4{
  padding: 0 40px 158px 40px;
}
.container5{
  padding: 0 40px 30px 40px;
}
.img_scroll {
	width: 100vw;
  height: 45rem;
}
#arrows_container{
  padding: 0 40px 158px 40px;
}
.cont_5{
  padding-bottom: 158px;
}
.aptidoes_btn_icon {
  height: 35px;
  width: 35px;
}
.cont_3{
  padding-bottom: 140px;
}
.cont_3b{
  padding-bottom: 80px;
}
.text_area_p p{
  font-size: 1.01875rem;
}
.item_img {
  height: 31rem;
}
.owl-carousel{
  padding-bottom: 158px;
}
#container3 {
  padding: 108px 40px 119px 40px;
}
#title1_h1_2_flex svg {
  width: 75px;
  height: 75px;
}
#item4 {
  align-items: flex-start;
  justify-content: flex-end;
}
}

.container2{
 display: flex;
 justify-content: center;
 align-items: center;
}

.proj_info_cont{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.proj_info {
  display: flex;
}
.proj_text{
  display: flex;
  justify-content: flex-end;
}
.img_cont img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info_col h6{
  color: #9A9694;
  font-family: Raleway;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 3px 0;
}

.info_col ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.info_col ul li {
  color: #797675;
  font-family: Raleway;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
}
.text_area h4{
  color: #1E1E1E;
  font-family: Cormorant;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  margin: 15px 0;
}

.text_area_p p {
  width: 100%;
  color: #797675;
  font-family: Raleway;
  font-weight: 500;
  margin: 0 0 25px 0;
  font-style: normal;
  line-height: 1.25rem;
}

.img_cont_top img{
  object-position: center top;
}

.img_cont_left img{
  object-position: left bottom;
}

.img_cont_center img{
  object-position: center center;
}
.text_area a {
  text-decoration: none;
  color: #FCF7F1;
  text-align: center;
  font-family: Raleway;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  border-radius: 1.8125rem;
  background-color: #1e1e1e;
  padding: 0.5rem 0.8rem;

  transition: border-color 0.5s, background-color 0.5s, color 0.5s;
}
.text_area a:hover {
  background-color: #797675;
  border-color: transparent;
  color: #FCF7F1;
}
.a_div{
  margin-top: 60px;
}
.banner {
  box-shadow: rgb(231 226 220) 0px 4px 16px, rgb(231 226 220 / 26%) 0px 8px 32px;
}

.container4{
  display: flex;
}
.video_cont{
  width: 100vw;
  box-shadow: rgb(231 226 220) 0px 4px 16px, rgb(231 226 220 / 26%) 0px 8px 32px;
}

.video_cont video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container5{
  display: flex;
}
.img_scroll{
  display: flex;
  flex-direction: column;
}
.img_scroll {
  overflow-y: scroll;
  box-shadow: rgb(231 226 220) 0px 4px 16px, rgb(231 226 220 / 26%) 0px 8px 32px;
}
.img_scroll img {
  width: 100%;
  object-fit: cover;
}

#arrows_container{
  display: flex;
}


/* width */
.img_scroll::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.img_scroll::-webkit-scrollbar-track {
  background: #e9e4de; 
}
 
/* Handle */
.img_scroll::-webkit-scrollbar-thumb {
  background: #9A9694; 
}

/* Handle on hover */
.img_scroll::-webkit-scrollbar-thumb:hover {
  background: #797675; 
}

.logo_container{
  display: flex;
  flex-direction: row;
}

.ap_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap_img {
  position: relative;
  display: block;
  height: 50vw;
  width: 100%;
}

.intro{
  position: fixed;
  z-index: 2002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #1E1E1E;
  transition: 1s;
}
.logo-header{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo{
  position: relative;
  display: inline-block;
  bottom: -30px;
  opacity: 0;
}
.logo.active{
  bottom: 0;
  opacity: 1;
  transition: ease-in-out 0.5s;
}
.logo.fade{
  bottom: 150px;
  opacity: 0;
  transition: ease-in-out 0.5s;
}
span.logo {
  text-decoration: none;
  color: #FCF7F1;
  font-family: Cormorant;
  font-size: 2.7rem;
  font-weight: 600;
}
.item_img {
  height: 100%;
}