@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Raleway:wght@600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand";
  text-decoration: none;
}

section {
  padding: 5% 10%;
}

#car .swiper .swiper-slide h4 {
  font-family: Raleway;
}

button {
  width: 165px;
  height: 42px;
  background-color: #9C7848;
  border: none;
  border-radius: 9px;
  color: #f1f1f1;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.75s ease;
}
button:hover {
  transform: translateY(-10px);
  background-color: #F1F1F1;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.0901960784);
  color: #000;
}

h2 {
  font-size: 26px;
  font-weight: 600;
}

p {
  font-size: 15px;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

#home {
  background: url(../assets/img/home.jpg);
  height: 100vh;
  display: flex;
  width: 100%;
  position: relative;
  background-size: cover;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 3%;
}
#home #menu__btn {
  position: fixed;
  top: 5%;
  right: 10%;
  border: none;
  z-index: 998;
  cursor: pointer;
}
#home #menu__btn img {
  width: 2rem;
  height: 2rem;
}
#home #sidebar__nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  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.3s;
}
#home #sidebar__nav ul {
  position: absolute;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2.5rem 0;
  right: -30%;
  top: 0;
  bottom: 0;
  background: #9C7848;
  transition: all 0.2s ease;
}
#home #sidebar__nav ul li a {
  display: block;
  width: 105px;
  text-align: start;
  font-size: 1.2rem;
  color: #fff;
}
#home #sidebar__nav ul #close__btn {
  position: absolute;
  top: 1%;
  left: 4%;
  background: transparent;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;
  width: 10px;
  height: 10px;
}
#home #sidebar__nav ul #close__btn svg {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
#home .logo {
  position: absolute;
  width: 30%;
  top: 5%;
  left: 10%;
}
#home .logo img {
  width: 20%;
}
#home .cont {
  width: 30%;
}
#home .cont h1 {
  font-size: 30px;
  color: #9C7848;
  font-weight: 600;
}
#home .cont button {
  font-size: 14px;
  margin-top: 10%;
}
#home .cont .icon {
  top: 90%;
  display: flex;
  flex-direction: row;
  text-align: center;
  position: relative;
  width: 38%;
  justify-content: space-between;
}
#home .cont .icon svg {
  margin: 0 0 8px;
  transition: all 0.3s ease-in;
}
#home .cont .icon svg:hover {
  transform: scale(0.8);
}

@media (max-width: 800px) {
  #home {
    background: url(../assets/img/home-mob.jpg);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    justify-content: start;
    margin: 0 !important;
  }
  #home header {
    width: 100%;
  }
  #home header .logo {
    left: 5%;
  }
  #home header .logo img {
    width: 70%;
  }
  #home .cont {
    width: 90%;
    position: relative;
    top: 15%;
  }
  #home .cont .text {
    width: 100%;
  }
  #home .cont .text .Tx-1 {
    display: none;
  }
  #home .cont .text h1 {
    font-size: 26px;
  }
  #home .cont .icon {
    display: none;
  }
  #home #sidebar__nav ul {
    width: 80%;
  }
  #home #sidebar__nav ul #close__btn {
    left: 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: #9C7848;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
footer .container img {
  width: 50%;
}
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: #fff;
}
footer .container .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 64rem) {
  footer .container img {
    width: 35%;
  }
}
#sobre-mim {
  background: url(../assets/img/fundo-conheca-me.jpg);
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: row;
  padding: 2% 10%;
}
#sobre-mim .img {
  width: 45%;
  margin-top: 2%;
  padding: 0 5% 0 0;
}
#sobre-mim .img img {
  width: 95%;
}
#sobre-mim .cont {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#sobre-mim .cont h2, #sobre-mim .cont p {
  color: #fff;
}
#sobre-mim .cont h5 {
  color: rgba(255, 255, 255, 0.8274509804);
  font-size: 13px;
  font-weight: 500;
  padding-top: 1%;
}
#sobre-mim .cont p {
  color: rgba(255, 255, 255, 0.8274509804);
  padding: 6% 0 13%;
  line-height: 1.4;
}
#sobre-mim .cont a {
  width: 28%;
}
#sobre-mim .cont button {
  color: #000;
  background-color: #fff;
}
#sobre-mim .cont button:hover {
  background-color: #9C7848;
  color: #fff;
}

@media (max-width: 800px) {
  #sobre-mim {
    background: url(../assets/img/fundo-conhecame-mob.jpg);
    flex-direction: column;
    padding: 15% 5%;
  }
  #sobre-mim .img {
    width: 100%;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #sobre-mim .img img {
    padding: 0;
    margin: 0;
  }
  #sobre-mim .cont {
    text-align: center;
    padding-top: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  #sobre-mim .cont a {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #sobre-mim .cont a button {
    margin-left: 0%;
  }
}
#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;
  overflow: visible;
}
#modal_container .modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 10;
  width: 70%;
  height: 70%;
  max-width: 80%;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  margin-top: 2rem;
}
#modal_container .modal img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}
#modal_container .modal .fechar {
  width: 10%;
  height: 10%;
  background-color: transparent;
  top: 0;
  margin-right: 1%;
  margin-top: -11%;
}
#modal_container .modal .fechar svg {
  width: 70%;
  cursor: pointer;
}
#modal_container .modal .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 5%;
}
#modal_container .modal .text h2, #modal_container .modal .text p {
  color: #000;
}
#modal_container .modal .text p {
  padding: 10% 0;
}

@media (max-width: 800px) {
  #modal_container .modal {
    flex-direction: column;
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
  }
  #modal_container .modal img {
    border-radius: 20px 20px 0 0;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #modal_container .modal .fechar {
    width: 6%;
    position: absolute;
    padding: 0;
    top: -18%;
    right: 3%;
  }
  #modal_container .modal .fechar svg {
    z-index: 999;
  }
  #modal_container .modal .text h2 {
    text-align: center;
    width: 100%;
    padding-top: 5%;
  }
  #modal_container .modal .text p {
    font-size: 12px;
  }
}
#trat {
  background-color: #F2F2F2;
  padding: 5% 15%;
  align-items: center;
  position: relative;
  justify-content: center;
}
#trat h2 {
  color: #4D351B;
}
#trat .text {
  width: 100%;
  text-align: center;
}
#trat .text h2 {
  margin: 0 0 2%;
}
#trat #car .mySwiper {
  width: 100%;
  position: static;
  display: grid;
  place-items: center;
}
#trat #car .mySwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2%;
  background-color: transparent;
  border: 3px solid #9C7848;
  padding: 5% 0%;
  text-align: center;
  align-items: center;
  border-radius: 20px;
  width: 184px;
  height: 230px;
  transition: all 0.75s cubic-bezier(0.64, 0.05, 0.16, 1.41);
  cursor: pointer;
}
#trat #car .mySwiper .swiper-slide:hover {
  transform: translateY(-15px);
}
#trat #car .mySwiper .swiper-slide img {
  width: 44px;
  height: 44px;
}
#trat #car .mySwiper .swiper-slide h4 {
  color: #9C7848;
  font-size: 18px;
  padding: 10% 5%;
}
#trat #car .mySwiper .swiper-slide p {
  background-color: #DCC8A3;
  padding: 3% 8%;
  margin: 0 25%;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}
#trat #car .mySwiper .swiper-button-prev, #trat #car .mySwiper .swiper-button-next {
  width: 40px;
  height: 25%;
  top: 42%;
}
#trat #car .mySwiper .swiper-button-prev {
  left: 11%;
}
#trat #car .mySwiper .swiper-button-next {
  right: 11%;
  transform: rotateY(180deg);
}
#trat .btn {
  text-align: center;
  width: 100%;
}
#trat .btn button {
  margin-top: 6.5%;
}

@media (max-width: 800px) {
  #trat {
    padding: 10%;
  }
  #trat #car {
    width: 100%;
    padding: 0 10% 10%;
    height: 65vh;
  }
  #trat #car .swiper .swiper-slide:hover {
    transform: none;
  }
  #trat #car .swiper .swiper-slide img {
    width: 65px;
    height: 65px;
  }
  #trat #car .swiper .swiper-slide h4 {
    font-size: 20px;
  }
  #trat #car .swiper .swiper-button-prev, #trat #car .swiper .swiper-button-next {
    width: 80px;
    height: 15%;
    top: 70%;
  }
  #trat #car .swiper .swiper-button-next {
    margin: 0 15% 0 0;
  }
  #trat #car .swiper .swiper-button-prev {
    margin: 0 0 0 15%;
  }
}
#sorriso1 {
  background: url(../assets/img/sorriso1.jpg);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: end;
}
#sorriso1 .text {
  width: 35%;
}
#sorriso1 .text h2, #sorriso1 .text p {
  color: #fff;
}
#sorriso1 .text h2 {
  font-weight: 500;
}
#sorriso1 .text p {
  padding: 5% 5% 5% 0;
  line-height: 1.4;
}
#sorriso1 .text button {
  font-weight: 600;
  color: #000;
  background-color: #fff;
}
#sorriso1 .text button:hover {
  background-color: #9C7848;
  color: #fff;
}

@media (max-width: 800px) {
  h2 {
    font-size: 23px;
  }
  #sorriso1 {
    background: url(../assets/img/sorriso1-mob.jpg);
    width: 100%;
    height: 98vh;
    background-position: center;
    background-size: cover;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0%;
  }
  #sorriso1 .text {
    width: 100%;
    padding: 0 0 20%;
  }
  #sorriso1 .text h2 {
    width: 100%;
  }
  #sorriso1 .text p {
    padding: 7% 0 0;
  }
  #sorriso1 .text button {
    margin-top: 11%;
  }
}
#cuid {
  background-color: #F2F2F2;
}
#cuid .text {
  background-color: #DCC8A3;
  padding: 8% 15% 6%;
  border-radius: 16px;
  text-align: center;
}
#cuid .text h2, #cuid .text p {
  color: #4D351B;
}
#cuid .text p {
  padding: 3.5% 0 7%;
}

@media (max-width: 800px) {
  #cuid {
    padding: 15% 10%;
  }
  #cuid .text {
    padding: 15% 5% 16%;
  }
  #cuid .text h2 {
    font-size: 22px;
  }
  #cuid .text p {
    font-size: 14px;
    padding: 6% 3.5% 10%;
  }
}
#result {
  background-color: #F2F2F2;
  padding: 1% 10% 7%;
  position: relative;
}
#result .text {
  text-align: center;
}
#result .text h2 {
  color: #4D351B;
}
#result .text p {
  color: #9C7848;
  padding-top: 0.2%;
  font-size: 13px;
}
#result #car .mySwiper2 {
  width: 100%;
  position: static;
}
#result #car .mySwiper2 .swiper-slide {
  padding: 5% 0 0;
  text-align: center;
  border-radius: 20px;
  width: 184px;
}
#result #car .mySwiper2 .swiper-slide img {
  width: 100%;
}
#result #car .mySwiper2 .swiper-button-prev, #result #car .mySwiper2 .swiper-button-next {
  width: 40px;
  height: 25%;
  top: 45%;
}
#result #car .mySwiper2 .swiper-button-prev {
  left: 6%;
}
#result #car .mySwiper2 .swiper-button-next {
  right: 6%;
  transform: rotateY(180deg);
}
#result #car .mySwiper2 .swiper-pagination .swiper-pagination-bullet {
  background-color: #9C7848;
}

@media (max-width: 800px) {
  #result {
    padding: 0 5% 20%;
  }
  #result .text p {
    padding-top: 1.5%;
    font-weight: 600;
  }
  #result #car {
    width: 100%;
    padding: 8% 10%;
    height: 50vh;
  }
  #result #car .swiper .swiper-slide {
    width: 100%;
  }
  #result #car .swiper .swiper-slide:hover {
    transform: none;
  }
  #result #car .swiper .swiper-button-prev, #result #car .swiper .swiper-button-next {
    width: 80px;
    height: 15%;
    top: 76.5%;
  }
  #result #car .swiper .swiper-button-next {
    margin: 0 24.5% 0 0;
  }
  #result #car .swiper .swiper-button-prev {
    margin: 0 0 0 24.5%;
  }
}
#sorriso2 {
  background: url(../assets/img/sorriso2.jpg);
  background-size: cover;
  align-items: flex-start;
  padding: 8% 10% 6%;
}
#sorriso2 .text {
  width: 33%;
}
#sorriso2 .text p, #sorriso2 .text h2 {
  color: #fff;
}
#sorriso2 .text h2 {
  font-weight: 500;
}
#sorriso2 .text .p {
  padding: 0 0 8%;
}
#sorriso2 .text p {
  font-weight: 400;
  padding: 8% 0 1%;
  line-height: 1.4;
}
#sorriso2 .text button {
  background-color: #F1F1F1;
  color: #000;
}
#sorriso2 .text button:hover {
  background-color: #9C7848;
  color: #F1F1F1;
}

@media (max-width: 800px) {
  #sorriso2 {
    background: url(../assets/img/sorriso2-mob.jpg);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
    padding-bottom: 0;
  }
  #sorriso2 .text {
    width: 100%;
    padding: 0 0 15%;
  }
  #sorriso2 .text h2 {
    width: 100%;
    font-size: 25px;
    line-height: 1.2;
  }
  #sorriso2 .text p {
    padding: 4% 0 0;
  }
  #sorriso2 .text .p {
    padding: 0 7% 2%;
  }
  #sorriso2 .text button {
    margin-top: 5%;
  }
}
#trat2 {
  background-color: #F2F2F2;
  display: flex;
  flex-direction: row;
  padding: 8% 10%;
  position: relative;
}
#trat2 .text {
  width: 40%;
  padding: 1% 10% 0 0;
}
#trat2 .text h5 {
  padding-bottom: 0.5%;
  color: #4D351B;
}
#trat2 .text h2 {
  width: 100%;
  font-size: 22px;
}
#trat2 .text p {
  margin: 7% 0 10%;
}
#trat2 #car2 {
  width: 60%;
}
#trat2 #car2 .mySwiper3 {
  width: 100%;
  position: static;
  display: grid;
  place-items: center;
  padding-top: 2.5%;
}
#trat2 #car2 .mySwiper3 .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
  border: 3px solid #9C7848;
  padding: 5% 0%;
  text-align: center;
  align-items: center;
  border-radius: 20px;
  width: 184px;
  height: 230px;
  transition: all 0.75s cubic-bezier(0.64, 0.05, 0.16, 1.41);
  cursor: pointer;
}
#trat2 #car2 .mySwiper3 .swiper-slide:hover {
  transform: translateY(-15px);
}
#trat2 #car2 .mySwiper3 .swiper-slide img {
  width: 44px;
  height: 44px;
}
#trat2 #car2 .mySwiper3 .swiper-slide h4 {
  color: #9C7848;
  font-size: 18px;
  padding: 10% 0;
}
#trat2 #car2 .mySwiper3 .swiper-slide p {
  background-color: #DCC8A3;
  padding: 3% 8%;
  margin: 0 25%;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}
#trat2 #car2 .mySwiper3 .swiper-button-prev, #trat2 #car2 .mySwiper3 .swiper-button-next {
  width: 40px;
  height: 25%;
  top: 43%;
}
#trat2 #car2 .mySwiper3 .swiper-button-prev {
  left: 38%;
}
#trat2 #car2 .mySwiper3 .swiper-button-next {
  right: 6%;
  transform: rotateY(180deg);
}

@media (max-width: 800px) {
  #trat2 {
    padding: 10%;
    flex-direction: column;
    text-align: center;
  }
  #trat2 .text {
    width: 100%;
    padding: 0 0 10%;
  }
  #trat2 .text h5 {
    font-size: 13px;
    padding-bottom: 4%;
  }
  #trat2 .text h2 {
    padding-bottom: 0%;
  }
  #trat2 .text p {
    font-size: 15px;
    padding: 0 0% 2%;
  }
  #trat2 #car2 {
    width: 100%;
    padding: 0 10% 10%;
    height: 65vh;
  }
  #trat2 #car2 .mySwiper3 .swiper-slide {
    padding: 11% 0;
    cursor: pointer;
  }
  #trat2 #car2 .mySwiper3 .swiper-slide:hover {
    transform: none;
  }
  #trat2 #car2 .mySwiper3 .swiper-slide img {
    width: 65px;
    height: 65px;
  }
  #trat2 #car2 .mySwiper3 .swiper-slide h4 {
    font-size: 20px;
  }
  #trat2 #car2 .mySwiper3 .swiper-button-prev, #trat2 #car2 .mySwiper3 .swiper-button-next {
    width: 80px;
    height: 15%;
    top: 80%;
  }
  #trat2 #car2 .mySwiper3 .swiper-button-next {
    right: 25%;
  }
  #trat2 #car2 .mySwiper3 .swiper-button-prev {
    left: 25%;
  }
}
#insta {
  background-color: #9C7848;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#insta button {
  background-color: #F1F1F1;
  color: #000;
}
#insta button:hover {
  background-color: #9C7848;
  color: #F1F1F1;
}
#insta .text {
  text-align: center;
  width: 40%;
}
#insta .text h2, #insta .text p {
  color: #fff;
}
#insta .text h2 {
  font-size: 22px;
  font-weight: 500;
  padding: 4% 0 7%;
}
#insta .text p {
  font-size: 13px;
}
#insta .img {
  display: flex;
  flex-direction: row;
  width: 80%;
}
#insta .img img {
  width: 33%;
  margin: 0 0.5%;
}
#insta .btn {
  padding-top: 4%;
}

@media (min-width: 800px) {
  #insta #car {
    display: none;
  }
}
@media (max-width: 800px) {
  #insta {
    padding: 15% 10%;
  }
  #insta .text {
    width: 80%;
  }
  #insta .btn {
    margin-top: 4%;
  }
  #insta .img {
    display: none;
  }
  #insta #car {
    width: 100%;
    padding: 0 10%;
  }
  #insta #car .swiper {
    width: 100%;
  }
  #insta #car .swiper .swiper-slide {
    padding: 5% 0 0;
    text-align: center;
    border-radius: 20px;
    width: 184px;
    margin-bottom: 25%;
  }
  #insta #car .swiper .swiper-slide img {
    width: 100%;
  }
  #insta #car .swiper .swiper-button-prev, #insta #car .swiper .swiper-button-next {
    width: 90px;
    height: 20%;
    top: 83%;
  }
  #insta #car .swiper .swiper-button-next {
    margin: 0 10% 0 0;
    transform: rotateY(180deg);
  }
  #insta #car .swiper .swiper-button-prev {
    margin: 0 0 0 10%;
  }
}
#form {
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5% 0;
  width: 100%;
}
#form .cont {
  background-color: #DCC8A3;
  display: flex;
  flex-direction: row;
  width: 80%;
}
#form .cont .img {
  width: 58%;
}
#form .cont .img img {
  width: 90%;
  height: 100%;
}
#form .cont h3 {
  color: #4D351B;
  padding-bottom: 8%;
  text-align: start;
  font-size: 22px;
}
#form .cont .cont-form {
  padding: 6% 4% 2% 0;
  text-align: center;
}
#form .cont .cont-form textarea {
  overflow: hidden;
  resize: none;
}
#form .cont .cont-form .ip {
  padding: 4% 5%;
  margin: 2% 0;
  width: 100%;
  border-radius: 9px;
  border: none;
}
#form .cont .cont-form .ip3 {
  padding: 3% 5% 20%;
  margin: 1% 0;
  width: 100%;
  border-radius: 9px;
  border: none;
  height: 0px;
}
#form .cont .cont-form button {
  margin: 8% 0;
  padding: 12px 40px;
}
#form .cont2 {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 90%;
  justify-content: center;
  padding: 5%;
}
#form .cont2 .cont3 {
  width: 20%;
}
#form .cont2 h5 {
  color: #9C7848;
  padding-bottom: 5%;
  font-size: 13px;
}
#form .cont2 p {
  font-weight: 500;
  color: #313131;
}
#form .cont2 .icon {
  margin: 1% 0;
  width: 30%;
  text-align: center;
  justify-content: center;
}
#form .cont2 .icon a {
  margin: 0 2%;
}
#form .cont2 .icon a svg {
  transition: all 0.3s ease-in;
}
#form .cont2 .icon a svg:hover {
  transform: scale(0.8);
}

@media (max-width: 800px) {
  #form .cont {
    display: flex;
    flex-direction: column;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #form .cont .img {
    width: 100%;
  }
  #form .cont .img img {
    width: 100%;
    height: 100%;
  }
  #form .cont .cont-form {
    padding: 6% 8% 2% 4%;
    text-align: center;
  }
  #form .cont .cont-form h3 {
    text-align: center;
    width: 100%;
    padding: 5% 0 10%;
  }
  #form .cont .cont-form .ip3 {
    padding: 3% 5% 20%;
    margin: 1% 0;
    width: 100%;
    border-radius: 9px;
    border: none;
  }
  #form .cont .cont-form .ip3 {
    height: 0px;
  }
  #form .cont .cont-form .ip, #form .cont .cont-form .ip3 {
    margin: 2%;
  }
  #form .cont .cont-form button {
    margin: 11% 0 14%;
  }
  #form .cont2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #form .cont2 .cont3 {
    width: 60%;
    order: 1;
    padding: 10% 0;
  }
  #form .cont2 .icon {
    padding: 10% 0;
    width: 100%;
    order: 3;
  }
  #form .cont2 .icon svg {
    width: 40px;
    height: 40px;
    margin: 0 2%;
  }
  #form .cont2 .cont4 {
    order: 2;
  }
}/*# sourceMappingURL=styles.css.map */