@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  resize: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  background: #f4f4f4;
}

section {
  height: fit-content;
  display: grid;
  place-items: center;
  padding: 5% 0;
}

.container {
  width: 80%;
}

a {
  width: fit-content;
}
button {
  background-color: #ccb596;
  font-size: 14px;
  width: 165px;
  height: 42px;
  border-radius: 9px;
  border: none;
  transition: all 0.75s ease;
  color: #fff;
  font-weight: 300;
  cursor: pointer;
}
button:hover {
  border-radius: 30px;
  transform: scale(0.95);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.0901960784);
}

h2 {
  color: #003d75;
  font-size: 22px;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 400;
}

::-webkit-scrollbar {
  background-color: #003d75;
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 10px;
}

@media (max-width: 800px) {
  h2 {
    font-size: 20px;
  }
  button:hover {
    transform: none;
    border-radius: 9px;
  }
  section {
    padding: 10% 0;
  }
}
.header-pg {
  background: #003d75;
}

header {
  background: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 15%;
  border-radius: 0 0 0 50px;
  display: flex;
  transition: all 0.3s ease-in;
  z-index: 99;
}
header[data-active="true"] {
  background-color: #003d75;
  box-shadow: 0px 0px 10px #ffffff2f;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header nav .cont .logo {
  width: 15%;
  height: 3rem;
}
header nav .cont .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
header nav .cont ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  align-items: center;
  gap: 0 30px;
}
header nav .cont ul a {
  color: #fff;
  display: block;
  text-align: start;
  font-size: 12px;
  padding: 5px 15px;
  transition: all 0.5s ease;
}
header nav .cont ul a:hover {
  color: #ccb596;
  border-radius: 10px;
  padding: 5px 15px;
  border-bottom: 1px solid #ccb596;
}
header nav .cont .icons {
  display: flex;
  flex-direction: row;
  gap: 0 0.8rem;
}
header nav .cont .icons img {
  width: 100%;
  transition: all 0.3s ease-in;
}
header nav .cont .icons img:hover {
  transform: scale(0.8);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

#home {
  /* background: url(../assets/img/home.webp); */
  background: #003d75;
  height: auto;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 5% 0;
}
#home .container {
  width: 80%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#home #car {
  /* position: absolute; */
  width: 100%;
  height: 400px;
  left: 0;
  top: 0;
  display: grid;
  place-items: center end;
  gap: 1rem 0;
}
#home #car .swiper-panorama {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#home #car .swiper-panorama .cont {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#home #car .swiper-panorama .cont .panorama {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  visibility: none;
  transition: all 0.5s ease;
  right: -100%;
}
#home #car .swiper-panorama .cont .panorama .pnlm-ui .pnlm-controls-container {
  display: none;
}
#home #car .swiper-panorama .cont .panorama[data-active="true"] {
  right: 0;
  opacity: 1;
  visibility: visible;
}
#home .text .pagination-panorama {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  gap: 0.5rem;
  padding: 5% 0 0;
}
#home .text .pagination-panorama img {
  width: 100%;
  transition: all 0.5s ease;
  filter: grayscale(1);
  opacity: 0.6;
  cursor: pointer;
}
#home .text .pagination-panorama img[data-active="true"] {
  filter: grayscale(0);
  opacity: 1;
}
#home .text .pagination-panorama img:hover {
  filter: grayscale(0);
  opacity: 0.8;
}

#home .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#home .text h1 {
  width: 95%;
  color: #fff;
  font-size: 25px;
  font-weight: 300;
}
#home .text p {
  width: 95%;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
#home .text h1 strong {
  color: #ccb596;
  font-weight: 700;
}

@media (min-width: 800px) {
  #home .icons {
    display: none;
  }
  #home .mob,
  #home .header-mob,
  #home #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home {
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
    padding: 20% 0;
  }
  #home .container {
    grid-template-columns: repeat(1, 1fr);
  }
  #home #car {
    height: 350px;
  }
  #home #car .swiper-panorama {
    width: 100%;
  }
  #home .text {
    width: 100%;
    padding: 0 0 15%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #home .text .pagination-panorama {
    width: 100%;
  }
  #home .text h1 {
    width: 85%;
    font-size: 18px;
  }
  #home .text p {
    font-size: 16px;
    line-height: 1.5rem;
  }
  #home .text .icons {
    margin-top: 2%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1.5rem;
  }
  #home .text .icons img {
    width: 44px;
    height: 44px;
  }
  #home .header-mob {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    position: absolute;
    top: -2%;
    left: 0;
  }
  #home .header-mob .logo {
    position: relative;
    width: 40%;
    top: 0;
    left: 3%;
  }
  #home .header-mob .logo img {
    width: 80%;
  }
  #home .header-mob #menu__btn {
    position: fixed;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    z-index: 10;
    top: 5%;
  }
  #home .header-mob #menu__btn .boll {
    width: 8px;
    height: 8px;
    background: #fff;
    border: 2px solid #ccb596;
    border-radius: 50%;
  }
  #home #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home #sidebar__nav[data-active="true"] {
    visibility: visible;
    opacity: 1;
  }
  #home #sidebar__nav[data-active="true"] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #003d75;
    transition: all 0.2s ease;
  }
  #home #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
  }
  #home #sidebar__nav ul #close__btn {
    position: absolute;
    top: -25.5%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home #sidebar__nav ul #close__btn svg {
    width: 15px;
  }
}
#refer {
  background: #f4f4f4;
}
#refer .container {
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#refer .container .text2 {
  padding-left: 3%;
}
#refer .container .text,
#refer .container .text2 {
  width: 50%;
}
#refer .container .text h2,
#refer .container .text2 h2 {
  padding-left: 12%;
  font-size: 18px;
  width: 80%;
  color: #606060;
  font-weight: 400;
  position: relative;
  display: block;
}
#refer .container .text h2 strong,
#refer .container .text2 h2 strong {
  color: #003d75;
  font-weight: 500;
}
#refer .container .text h2::after,
#refer .container .text2 h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 115%;
  background-color: #ccb596;
  left: 7%;
  top: -5%;
}
#refer .container .text p,
#refer .container .text2 p {
  width: 90%;
  color: #9e9e9e;
}
#refer .btn-flut {
  height: 55px;
  width: 55px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: 5%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease-in;
}
#refer .btn-flut:hover {
  transform: scale(0.9);
}
#refer .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #refer .container {
    width: 85%;
    flex-direction: column;
    gap: 2rem 0;
  }
  #refer .container .text,
  #refer .container .text2 {
    width: 100%;
  }
  #refer .container .text h2,
  #refer .container .text2 h2 {
    width: 100%;
    padding-left: 5%;
  }
  #refer .container .text h2::after,
  #refer .container .text2 h2::after {
    left: 0;
  }
  #refer .container .text2 {
    padding-left: 0%;
  }
  #refer .btn-flut {
    width: 50px;
    bottom: 5%;
  }
}
#sobre-nos {
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
#sobre-nos .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#sobre-nos .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem 0;
}
#sobre-nos .container .text p {
  width: 80%;
  font-size: 13px;
  color: #9e9e9e;
}
#sobre-nos .container #car {
  width: 40vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
}
#sobre-nos .container #car .mySwiper-img {
  position: relative;
  width: 100%;
  height: 100%;
}
#sobre-nos .container #car .mySwiper-img .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination {
  /* position: absolute; */
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  bottom: 0;
  z-index: 9;
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet {
  height: 100px;
  width: 20%;
  -o-object-fit: cover;
  object-fit: cover;
  background: url(../assets/img/sobre-nos1.webp);
  border-radius: 0;
  margin: 0;
  opacity: 0.7;
  filter: grayscale(90%);
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  filter: grayscale(0%);
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet:nth-child(2) {
  background: url(../assets/img/sobre-nos2.webp);
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet:nth-child(3) {
  background: url(../assets/img/sobre-nos3.webp);
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet:nth-child(4) {
  background: url(../assets/img/sobre-nos4.webp);
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet:nth-child(5) {
  background: url(../assets/img/sobre-nos5.webp);
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet:nth-child(6) {
  background: url(../assets/img/sobre-nos6.webp);
}
#sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet:nth-child(7) {
  background: url(../assets/img/sobre-nos7.webp);
}

@media (min-width: 800px) {
  #sobre-nos .container .text .p {
    display: none;
  }
  #sobre-nos .container #car button {
    display: none;
  }
}
@media (max-width: 800px) {
  #sobre-nos .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
  }
  #sobre-nos .container .text {
    width: 100%;
  }
  #sobre-nos .container .text button {
    display: none;
  }
  #sobre-nos .container .imgs {
    display: none;
  }
  #sobre-nos .container #car {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
  }
  #sobre-nos .container #car .mySwiper-img {
    width: 100%;
    height: 100%;
  }
  #sobre-nos .container #car .mySwiper-img .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #sobre-nos .container #car .mySwiper-img .swiper-pagination {
    width: 100%;
    justify-content: center;
  }
  #sobre-nos .container #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet {
    height: 50px;
  }
}
#modal_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#modal_container[data-active="true"] {
  opacity: 1;
  visibility: visible;
}
#modal_container[data-active="true"] .modal {
  margin-top: 0;
  opacity: 1;
}
#modal_container .modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #003d75;
  z-index: 999;
  width: 70%;
  height: 70%;
  max-width: 80%;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease-out;
  margin-top: 2rem;
}
#modal_container .modal img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}
#modal_container .modal .fechar {
  width: 10%;
  height: 10%;
  background-color: transparent;
  top: 0;
  margin-top: -10%;
  margin-right: 2%;
  cursor: pointer;
}
#modal_container .modal .fechar svg {
  width: 100%;
}
#modal_container .modal .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 5%;
}
#modal_container .modal .text h2 {
  color: #fff;
}
#modal_container .modal .text p {
  padding: 10% 0;
  color: #fff;
}

@media (max-width: 800px) {
  #modal_container .modal {
    flex-direction: column;
    width: 90%;
    height: 74%;
  }
  #modal_container .modal .fechar {
    width: 6%;
    position: absolute;
    padding: 0;
    top: -10%;
    right: 5%;
  }
  #modal_container .modal .fechar svg {
    z-index: 999;
  }
  #modal_container .modal .fechar svg path{
    fill: #000;
    stroke: #fff;
    stroke-width: 7;
  }
  #modal_container .modal .text h2 {
    text-align: center;
    width: 100%;
    padding-top: 5%;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0 0.8rem 0;
  background: #fff;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
footer .container img {
  width: 18%;
}
footer .container .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .container .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: #000;
}
footer .container .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 64rem) {
  footer .container img {
    width: 55%;
  }
}
#trat1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
#trat1 .container {
  display: grid;
  place-items: center;
  gap: 1rem;
}
#trat1 .container .text {
  text-align: center;
}
#trat1 .container .text p {
  font-size: 16px;
  font-weight: 400;
  color: #606060;
}
#trat1 .container #car {
  width: 80vw;
  position: relative;
  padding: 0% 0;
}
#trat1 .container #car .mySwiper {
  width: 100%;
  height: 290px;
  position: static;
  border-radius: 18px;
}
#trat1 .container #car .mySwiper .swiper-wrapper {
  display: flex;
  align-items: end;
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide {
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  padding: 4% 2%;
  height: 241px;
  box-shadow: none;
  gap: 1rem 0;
  transition: all 0.5s ease;
  cursor: pointer;
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(0.9);
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide img {
  width: 0px;
  opacity: 0;
  transition: all 0.5s ease;
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide h3 {
  color: #003d75;
  font-weight: 500;
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide p {
  color: #363636;
  font-size: 11px;
  width: 100%;
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  background-color: #ccb596;
  height: 282px;
  z-index: 1;
  box-shadow: 0px 0px 10px rgba(46, 46, 46, 0.4117647059);
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next img {
  width: 25%;
  opacity: 1;
}
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next h3,
#trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next p {
  color: #fff;
}

#trat1 .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#trat1 .container .seta img {
  cursor: pointer;
  width: 40px;
}
#trat1 .container .seta .swiper-button-next1 {
  right: 2%;
  transform: rotateY(180deg);
}

@media (max-width: 800px) {
  #trat1 {
    justify-content: start;
  }
  #trat1 .container {
    gap: 2rem 0;
  }
  #trat1 .container .seta {
    order: 3;
    justify-content: center;
  }
  #trat1 .container .text {
    order: 1;
    padding: 8%;
  }
  #trat1 .container #car {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #trat1 .container #car .mySwiper {
    height: 290px;
    width: 85%;
    border-radius: 0;
  }
  #trat1 .container #car .mySwiper .swiper-wrapper {
    align-items: center;
  }
  #trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide {
    width: 90%;
    align-items: start;
    background-color: #ccb596;
    border-radius: 18px;
    padding: 10% 15%;
    height: 100%;
    z-index: 1;
  }
  #trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide img {
    display: block;
    width: 25%;
  }
  #trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide h3,
  #trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide p {
    color: #fff;
  }
  #trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next img {
    width: 0;
    opacity: 0;
  }
  #trat1 .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    width: 25%;
    opacity: 1;
  }
}
#sorriso1 {
  background: #003d75;
  display: grid;
  place-items: center;
  border-radius: 0 50px 0 0;
  padding: 0;
}
#sorriso1 .text {
  width: 53%;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 2rem 0;
  padding: 5% 0;
}
#sorriso1 .text h2,
#sorriso1 .text p {
  color: #fff;
}
#sorriso1 .text button {
  margin-top: 10%;
  color: #363636;
  background: #fff;
  font-weight: 400;
}

@media (max-width: 800px) {
  #sorriso1 .text {
    width: 83%;
  }
}
#sorriso2 {
  background: #003d75;
  padding: 0;
  border-radius: 0 0 0 50px;
}
#sorriso2 .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#sorriso2 .container .text {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.5rem 0;
  padding: 5% 10%;
}
#sorriso2 .container .text h2 {
  color: #fff;
}
#sorriso2 .container .text p {
  color: #f4f4f4;
  font-weight: 200;
}
#sorriso2 .container .text button {
  margin-top: 5%;
  font-size: 12px;
  font-weight: 400;
  width: 276px;
  color: #363636;
  background: #fff;
  font-weight: 400;
}
#sorriso2 .container .img {
  width: 45%;
  height: 100%;
}
#sorriso2 .container .img img{
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  #sorriso2 .container {
    flex-direction: column-reverse;
  }
  #sorriso2 .container .text,
  #sorriso2 .container .img {
    width: 100%;
    align-items: center;
  }
  #sorriso2 .container .text {
    padding: 15% 10%;
  }
  #sorriso2 .container .text h2 {
    padding-right: 10%;
  }
}
#sorriso3 {
  padding: 0;
}
#sorriso3 .container {
  height: 100%;
  width: 100%;
  background: url(../assets/img/sorriso3.webp);
  padding: 0;
  padding-left: 10%;
  border-radius: 0 0 50px 0;
}
#sorriso3 .container .text {
  width: 29%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
  padding: 5% 0;
}
#sorriso3 .container .text h2 {
  color: #fff;
  font-weight: 600;
}
#sorriso3 .container .text p {
  color: #f4f4f4;
  font-weight: 300;
}

@media (max-width: 800px) {
  #sorriso3 .container {
    background: url(../assets/img/sorriso3-mob.webp);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 10%;
  }
  #sorriso3 .container .text {
    width: 75%;
    justify-content: end;
  }
}
#trat2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
#trat2 .container {
  display: grid;
}
#trat2 .container .text {
  text-align: center;
  padding: 6% 0;
}
#trat2 .container .text p {
  font-size: 16px;
  font-weight: 400;
  color: #606060;
}
#trat2 .container #car {
  width: 80vw;
  position: relative;
  padding: 0% 0;
}
#trat2 .container #car .mySwiper2 {
  width: 100%;
  height: 290px;
  position: static;
  border-radius: 18px;
}
#trat2 .container #car .mySwiper2 .swiper-wrapper {
  display: flex;
  align-items: end;
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide {
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  padding: 4% 2%;
  height: 241px;
  box-shadow: none;
  gap: 1rem 0;
  transition: all 0.5s ease;
  cursor: pointer;
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide:hover {
  transform: scale(0.9);
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide img {
  width: 0px;
  opacity: 0;
  transition: all 0.5s ease;
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide h3 {
  color: #003d75;
  font-weight: 500;
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide p {
  color: #363636;
  font-size: 11px;
  width: 100%;
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-next {
  background-color: #ccb596;
  height: 282px;
  z-index: 1;
  box-shadow: 0px 0px 10px rgba(46, 46, 46, 0.4117647059);
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-next img {
  width: 25%;
  opacity: 1;
}
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-next h3,
#trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-next p {
  color: #fff;
}

#trat2 .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#trat2 .container .seta img {
  cursor: pointer;
  width: 40px;
}
#trat2 .container .seta .swiper-button-next2 {
  right: 2%;
  transform: rotateY(180deg);
}

@media (max-width: 800px) {
  #trat2 {
    justify-content: start;
  }
  #trat2 .container {
    gap: 2rem 0;
  }
  #trat2 .container .seta {
    order: 3;
    justify-content: center;
  }
  #trat2 .container .text {
    order: 1;
    padding: 8%;
  }
  #trat2 .container #car {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #trat2 .container #car .mySwiper2 {
    height: 290px;
    width: 85%;
    border-radius: 0;
  }
  #trat2 .container #car .mySwiper2 .swiper-wrapper {
    align-items: center;
  }
  #trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide {
    width: 90%;
    align-items: start;
    background-color: #ccb596;
    border-radius: 18px;
    padding: 10% 15%;
    height: 100%;
    z-index: 1;
  }
  #trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide img {
    display: block;
    width: 25%;
  }
  #trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide h3,
  #trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide p {
    color: #fff;
  }
  #trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-next img {
    width: 0;
    opacity: 0;
  }
  #trat2 .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-active img {
    width: 25%;
    opacity: 1;
  }
}
#equipe {
  background: #f4f4f4;
}
#equipe .container {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#equipe .container .text {
  text-align: center;
  padding: 0 0 12%;
}
#equipe .container .text p {
  font-size: 16px;
  font-weight: 400;
  color: #606060;
}
#equipe .container .profs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 4rem;
}
#equipe .container .profs .img1,
#equipe .container .profs .img2 {
  width: 50%;
  position: relative;
}
#equipe .container .profs .img1 img,
#equipe .container .profs .img2 img {
  width: 100%;
  height: 100%;
}
#equipe .container .profs .img1 .cont,
#equipe .container .profs .img2 .cont {
  z-index: 2;
  background-color: #003d75;
  position: absolute;
  width: 100%;
  height: 0%;
  border-radius: 0 20px 0 0;
  bottom: 2%;
  left: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
  opacity: 0;
}
#equipe .container .profs .img1 .cont p,
#equipe .container .profs .img2 .cont p {
  font-size: 10px;
  font-weight: 300;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s;
  display: none;
  animation: animate 0.5s linear;
  color: rgba(255, 255, 255, 0.7607843137);
}
#equipe .container .profs .img1 .cont p strong,
#equipe .container .profs .img2 .cont p strong {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
#equipe .container .profs .img1:hover .cont,
#equipe .container .profs .img2:hover .cont {
  height: 35%;
  bottom: 2%;
  opacity: 1;
}
#equipe .container .profs .img1:hover .cont p,
#equipe .container .profs .img2:hover .cont p {
  display: block;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  #equipe .container {
    width: 85%;
  }
  #equipe .container .profs {
    flex-direction: column;
  }
  #equipe .container .profs .img1,
  #equipe .container .profs .img2 {
    width: 85%;
  }
  #equipe .container .profs .img1 .cont,
  #equipe .container .profs .img2 .cont {
    height: 30%;
    opacity: 1;
  }
  #equipe .container .profs .img1 .cont p,
  #equipe .container .profs .img2 .cont p {
    display: block;
  }
  #equipe .container .profs .img1 .cont:hover,
  #equipe .container .profs .img2 .cont:hover {
    height: 30%;
  }
}
.insta-pg {
  background: #f4f4f4;
}

#insta,
#insta-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
#insta .container,
#insta-pg .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
}
#insta .container .text,
#insta-pg .container .text {
  width: 48%;
  text-align: center;
  padding: 5% 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
#insta .container .text p,
#insta-pg .container .text p {
  font-size: 16px;
  font-weight: 400;
  color: #606060;
}
#insta .container .cont,
#insta-pg .container .cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
}
#insta .container .cont .img,
#insta-pg .container .cont .img {
  width: 25%;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 1.5%;
  gap: 1rem 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
#insta .container .cont .img img,
#insta-pg .container .cont .img img {
  width: 100%;
}
#insta .container .btn,
#insta-pg .container .btn {
  display: flex;
}

@media (min-width: 800px) {
  #insta .container #car,
  #insta-pg .container #car {
    display: none;
  }
}
@media (max-width: 800px) {
  #insta .container #car,
  #insta-pg .container #car {
    display: none;
  }
}
@media (max-width: 800px) {
  #insta,
  #insta-pg {
    justify-content: center;
  }
  #insta .container,
  #insta-pg .container {
    width: 80%;
    flex-direction: column;
  }
  #insta .container .text,
  #insta-pg .container .text {
    width: 100%;
  }
  #insta .container .text button,
  #insta-pg .container .text button {
    display: none;
  }
  #insta .container .imgs,
  #insta-pg .container .imgs {
    display: none;
  }
  #insta .container .cont,
  #insta-pg .container .cont {
    display: none;
  }
  #insta .container #car,
  #insta-pg .container #car {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
  }
  #insta .container #car .mySwiper-img2,
  #insta-pg .container #car .mySwiper-img2 {
    width: 100%;
    height: auto;
  }
  #insta .container #car .mySwiper-img2 .swiper-slide,
  #insta-pg .container #car .mySwiper-img2 .swiper-slide {
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10% 1.5%;
    gap: 1.5rem 0;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  #insta .container #car .mySwiper-img2 .swiper-slide img,
  #insta-pg .container #car .mySwiper-img2 .swiper-slide img {
    width: 90%;
  }
  #insta .container #car .mySwiper-img2 .swiper-pagination,
  #insta-pg .container #car .mySwiper-img2 .swiper-pagination {
    bottom: 6.2%;
  }
  #insta .container #car .mySwiper-img2 .swiper-pagination .swiper-pagination-bullet,
  #insta-pg .container #car .mySwiper-img2 .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background-color: #ccb596;
  }
}
#dep {
  background: #f4f4f4;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#dep .container {
  width: 75vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#dep .container .text {
  width: 48%;
  text-align: center;
  padding: 0 0 5%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
#dep .container .text p {
  font-size: 16px;
  font-weight: 400;
  color: #606060;
}
#dep .container #car {
  position: relative;
  padding: 5% 0;
  width: 100%;
}
#dep .container #car .mySwiper3 {
  width: 100%;
  height: 207px;
  position: static;
}
#dep .container #car .mySwiper3 .swiper-wrapper {
  display: flex;
  align-items: end;
}
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide {
  border-radius: 9px;
  height: 100%;
  width: 324px;
  background: #e9e3da;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  padding: 4% 2%;
  box-shadow: none;
  gap: 1rem 0;
}
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide img {
  width: 50%;
}
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide .text-car {
  padding: 0 4%;
}
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide .text-car h3 {
  font-size: 13px;
  color: #003d75;
}
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide .text-car p {
  color: #003d75;
  font-size: 10px;
  width: 100%;
}
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-color: #ccb596;
}
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-active h3,
#dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide.swiper-slide-active p {
  color: #fff;
}
#dep .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#dep .container .seta img {
  width: 40px;
}
#dep .container .seta .swiper-button-prev3 {
  transform: rotateY(180deg);
}

@media (max-width: 800px) {
  #dep {
    position: relative;
    justify-content: start;
  }
  #dep .container {
    gap: 2rem 0;
  }
  #dep .container .text {
    width: 80%;
    order: 1;
  }
  #dep .container .btn {
    order: 4;
  }
  #dep .container .seta {
    order: 3;
    justify-content: center;
  }
  #dep .container #car {
    order: 2;
  }
  #dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide {
    padding: 0 8%;
    background-color: #ccb596;
  }
  #dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide .text-car {
    padding: 0 2%;
  }
  #dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide .text-car h3,
  #dep .container #car .mySwiper3 .swiper-wrapper .swiper-slide .text-car p {
    color: #fff;
  }
}
#form {
  padding: 0;
}
#form .container {
  position: relative;
  width: 100%;
}
#form .container .cont-text,
#form .container .cont-link {
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  padding-right: 25%;
}
#form .container .cont-text .cont,
#form .container .cont-link .cont {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#form .container .cont-text {
  background: #ccb596;
  padding: 5% 10% 5% 0;
}
#form .container .cont-text h2 {
  color: #fff;
}
#form .container .cont-link {
  background: #003d75;
  padding: 5% 10% 10% 0;
}
#form .container .cont-link .h5 {
  width: 80%;
}
#form .container .cont-link h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
#form .container .cont-link h5 strong {
  font-weight: 500;
}
#form .container .cont-link .icons {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 1.5rem;
}
#form .container .cont-link .icons img {
  width: 100%;
  transition: all 0.3s ease-in;
}
#form .container .cont-link .icons img:hover {
  transform: scale(0.9);
}
#form .container .cont-form {
  background-color: #fff;
  width: 25%;
  height: auto;
  padding: 3% 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  border-radius: 9px;
  left: 15%;
  top: 10%;
}
#form .container .cont-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#form .container .cont-form p {
  width: 70%;
  font-size: 13px;
  margin: 5% 0;
}
#form .container .cont-form textarea,
#form .container .cont-form input,
#form .container .cont-form select {
  overflow: hidden;
  resize: none;
  background: transparent;
  border-bottom: 1px solid #e2e2e2;
  color: rgba(0, 0, 0, 0.5960784314);
}
#form .container .cont-form select {
  width: 90%;
  padding: 4% 3.5%;
  border-radius: 9px;
  cursor: pointer;
}
#form .container .cont-form select option {
  color: #000;
}
#form .container .cont-form .ip {
  padding: 2% 5%;
  margin: 2% 0;
  width: 90%;
  border-radius: 9px;
  outline: none;
}
#form .container .cont-form .ip3 {
  padding: 4% 5% 10%;
  margin: 1% 0;
  width: 90%;
  border-radius: 9px;
  height: 0px;
  outline: none;
}
#form .container .cont-form button {
  margin: 8% 0 0;
  color: #fff;
  background-color: #ccb596;
}

@media (max-width: 800px) {
  #form {
    align-items: center;
  }
  #form .container {
    gap: 0;
    display: grid;
    place-items: center;
  }
  #form .container .cont-text,
  #form .container .cont-link {
    padding: 0;
    align-items: center;
  }
  #form .container .cont-text .cont,
  #form .container .cont-link .cont {
    width: 75%;
  }
  #form .container .cont-text .cont .h5,
  #form .container .cont-link .cont .h5 {
    width: 100%;
  }
  #form .container .cont-text {
    height: fit-content;
    justify-content: start;
    padding: 10% 0 20%;
  }
  #form .container .cont-text .cont {
    width: 70%;
  }
  #form .container .cont-link {
    justify-content: end;
    padding: 20% 0 10%;
  }
  #form .container .cont-link .icons {
    padding-top: 5%;
    width: 100%;
    justify-content: center;
    gap: 0 2rem;
  }
  #form .container .cont-link .icons img {
    width: 52px;
  }
  #form .container .cont-form {
    position: relative;
    width: 70%;
    height: fit-content;
    padding: 5% 0;
    left: auto;
    top: auto;
    transform: scale(1.2);
  }
  #form .container .cont-form h2 {
    font-size: 18px;
  }
  #form .container .cont-form p {
    font-size: 10px;
  }
  #form .container .cont-form textarea,
  #form .container .cont-form input,
  #form .container .cont-form select {
    font-size: 12px;
  }
}
#home-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
}
#home-pg .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 8%;
}
#home-pg .container .text {
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#home-pg .container .text p {
  width: auto;
  text-align: center;
}
#home-pg .container .text p {
  color: #9e9e9e;
}

@media (min-width: 800px) {
  #home-pg .mob,
  #home-pg .header-mob,
  #home-pg #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home-pg {
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home-pg .container .text p {
    width: 100%;
    text-align: start;
  }

  #home-pg .header-mob {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
  }
  #home-pg .header-mob .logo {
    position: relative;
    width: 40%;
    top: 0;
    left: 3%;
  }
  #home-pg .header-mob .logo img {
    width: 80%;
  }
  #home-pg .header-mob #menu__btn {
    position: fixed;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    z-index: 10;
    top: 5%;
  }
  #home-pg .header-mob #menu__btn .boll {
    width: 7px;
    height: 7px;
    background: transparent;
    border: 2px solid #ccb596;
    border-radius: 50%;
  }
  #home-pg #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home-pg #sidebar__nav[data-active="true"] {
    visibility: visible;
    opacity: 1;
  }
  #home-pg #sidebar__nav[data-active="true"] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home-pg #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #003d75;
    transition: all 0.2s ease;
  }
  #home-pg #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
  }
  #home-pg #sidebar__nav ul #close__btn {
    position: absolute;
    top: -25.5%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home-pg #sidebar__nav ul #close__btn svg {
    width: 15px;
  }
}
#car-pg {
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#car-pg .container {
  width: 100%;
}
#car-pg .container #car {
  height: fit-content;
  width: 100%;
  position: relative;
  padding: 5% 0;
}
#car-pg .container #car .mySwiper-pg {
  width: 100%;
  height: auto;
}
#car-pg .container #car .mySwiper-pg .swiper-wrapper {
  display: flex;
  align-items: end;
}
#car-pg .container #car .mySwiper-pg .swiper-wrapper .swiper-slide .panorama {
  height: 250px;
  width: 100%;
}
#car-pg .container #car .mySwiper-pg .swiper-wrapper .swiper-slide .panorama .pnlm-ui .pnlm-controls-container {
  display: none;
}
#car-pg .container #car .swiper-button-prev-pg,
#car-pg .container #car .swiper-button-next-pg {
  width: 45px;
  height: 45px;
  bottom: 0;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}
#car-pg .container #car .swiper-button-prev-pg img,
#car-pg .container #car .swiper-button-next-pg img {
  width: 100%;
  height: 100%;
}
#car-pg .container #car .swiper-button-prev-pg {
  left: 45.5%;
}
#car-pg .container #car .swiper-button-next-pg {
  right: 45.5%;
  transform: rotateY(180deg);
}

@media (max-width: 800px) {
  #car-pg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 10% 0;
  }
  #car-pg .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #car-pg .container #car {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85%;
    height: 100%;
  }
  #car-pg .container #car .mySwiper-pg {
    width: 100%;
    height: 80%;
  }
  #car-pg .container #car .swiper-button-prev-pg,
  #car-pg .container #car .swiper-button-next-pg {
    width: 48.5px;
    height: 48.5px;
    top: 100%;
  }
  #car-pg .container #car .swiper-button-prev-pg {
    left: 32%;
  }
  #car-pg .container #car .swiper-button-next-pg {
    right: 32%;
    transform: rotateY(180deg);
  }
}

/*-----------------------------------------------------------------------------------*/
/*   Banner
/*-----------------------------------------------------------------------------------*/
#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 5% 0;
  background: #003d75;
}
#banner .container {
  width: 80%;
  display: grid;
  place-items: center;
  gap: 4rem 0;
  padding: 0;
  margin: 0;
}
#banner .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#banner .container .text h2 {
  color: #fff;
  font-size: 25px;
}
#banner .container .cont-img {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#banner .container .cont-img #cont-trat {
  width: 80%;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 19px;
  overflow: hidden;
}
#banner .container .cont-img #cont-trat:hover .cont {
  border: 1px solid #ffffff;
  background: #003d75;
  height: 100%;
  gap: 1rem 0;
}
#banner .container .cont-img #cont-trat:hover .cont p {
  font-size: 15px;
}
#banner .container .cont-img #cont-trat:hover .cont h2 {
  justify-content: start;
}

#banner .container .cont-img #cont-trat img {
  width: 100%;
  height: auto;
  border-radius: 19px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.5s ease;
}
#banner .container .cont-img #cont-trat .cont {
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: all 0.5s ease;
  background: #003d7598;
  border: 1px solid #ffffff00;
  border-radius: 19px;
}
#banner .container .cont-img #cont-trat .cont h2 {
  width: 80%;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  transition: all 0.5s ease;
}
#banner .container .cont-img #cont-trat .cont p {
  width: 80%;
  font-size: 0;
  color: #fff;
  transition: all 0.5s ease;
}
@media (max-width: 800px) {
  #banner {
    padding: 15% 0;
    align-items: center;
  }
  #banner .container {
    width: 100%;
    max-width: 100% !important;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 3rem 0;
  }
  #banner .container .text {
    width: 80%;
  }
  #banner .container .text h2 {
    font-size: 25px;
  }
  #banner .container .cont-img {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #banner .container .cont-img #cont-trat {
    width: 80%;
  }
  #banner .container .cont-img #cont-trat .cont h2 {
    font-size: 20px;
    width: auto;
    max-width: 80%;
    text-align: center;
  }
}
#banner2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  width: 100%;
  height: auto;
  padding: 0;
  background: #003d75;
}
#banner2 .container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 4rem 0;
  padding: 0;
  margin: 0;
}
#banner2 .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 1rem 0;
  padding: 5% 0;
}
#banner2 .container .text h2 {
  width: 80%;
  color: #fff;
  font-size: 25px;
}
#banner2 .container .text p {
  width: 75%;
  color: #fff;
}
#banner2 .container .img {
  width: 100%;
  display: grid;
  place-items: center;
}
#banner2 .container .img img {
  width: 100%;
  height: auto;
}
@media(max-width: 800px){
  #banner2 {
    align-items: center;
    padding: 15% 0 0;
  }
  #banner2 .container{
    width: 100%;
    grid-template-columns: repeat(1,1fr);
  }
  #banner2 .container .text{
    padding: 0;
    width: 80%;
    align-items: center;
    text-align: center;
  }
  #banner2 .container .text h2{
    width: 100%;
    font-size: 22px;
  }
  #banner2 .container .text p{
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
