.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "sans-serif";
}

#pag1 {
    background-image: url(home-banner.jpg);
    background-attachment: fixed;
    width: 100%;
    height: 900px;
}

#navbar {
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

#div-logo {
    width: 25%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
}

#div-btns {
    width: 45%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5%;
}

#div-btns a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 500;
    transition: 0.7s;
}

#div-btns a#home-btn {
    text-decoration: none;
    color: #fcdc00;
    font-size: 12px;
    font-weight: 500;
    transition: 0.7s;
}

#div-btns a:hover {
    color: #fcdc00;
    transition: 0.7s;
}

#div-search {
    display: flex;
    justify-content: center;
    width: 10%;
}

#div-search svg {
    width: 12px;
    height: 12px;
    fill: white;
    font-weight: bold;
}

#bitmap {
    width: 100%;
    height: 820px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bloco-bitmap {
    width: 555px;
    height: 236px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}


#bloco-bitmap h2 {
    color: white;
    font-weight: 200;
    font-size: 36px;
}

#bloco-bitmap h2::before {
    content: '';
    display: block;
    height: 8vh;
}

#bloco-bitmap h2::after {
    content: '';
    display: block;
    height: 3vh;
}

#bloco-bitmap p {
    color: white;
    font-weight: 200;
    font-size: 14px;
    text-align: center;
}

#bloco-bitmap p::after {
    content: '';
    display: block;
    height: 7vh;
}

#btn-explore {
    width: 177px;
    height: 40px;
    background-color: #fcdc00;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#btn-explore a {
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
}

#btns-gallery {
    width: 100%;
    height: 25vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#btns-gallery a {
    height: 48px;
    text-decoration: none;
    color: #222222;
    font-size: 12px;
    font-weight: 600;
    padding: 30px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}

#btns-gallery a#btn-all {
    background-color: #fcdc00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

#btns-gallery a:hover {
    background-color: #fcdc00;
    transition: 0.6s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#div-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 13%;
    padding-top: 5%;
    padding-bottom: 4%;
    align-items: center;
    gap: 25px;
}

#div-imgs div {
    position: relative;
    display: inline-block;
    line-height: 0;
}

#div-imgs img {
    width: 262.5px;
    height: 309.22px;
}

#div-imgs div a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    bottom: 25%;
    left: 5%;
    transition: 0.3s;
    z-index: 2;
}

#div-imgs div::after {
    content: '';
    display: block;
    width: 262.5px;
    height: 309.22px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    bottom: 0%;
    transition: 0.3s;
}

#div-imgs div:hover::after {
    content: '';
    display: block;
    width: 262.5px;
    height: 309.22px;
    background-color: rgba(0, 0, 0, 0.500);
    position: absolute;
    bottom: 0%;
    transition: 0.3s;
}

#div-imgs div:hover>a {
    bottom: 55%;
    transition: 0.3s;
}

#div-imgs #icon-expand {
    position: absolute;
    bottom: 5%;
    left: 42%;
    width: 25.72px;
    height: 30px;
    opacity: 0;
    z-index: 2;
    transition: 0.3s;
    fill: white;
}

#div-imgs div:hover #icon-expand {
    opacity: 100;
    transition: 0.3s;
    bottom: 37%;
}

#btn-loadmore {
    background-color: #fcdc00;
    width: 193.38px;
    height: 40px;
    margin: 5%;
    text-decoration: none;
    color: #222222;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

#btn-loadmore:hover {
    transform: translateY(-1px);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

#div-feedback {
    width: 100%;
    height: 513px;
    background-color: #fcdc00;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#div-feedback-lbl h4 {
    font-size: 36px;
    color: #222222;
}

#div-feedback-lbl p {
    font-size: 14px;
    font-weight: 300;
    color: #222222;
    padding-top: 5%;
}

#div-feedback-card {
    width: 555px;
    height: 225px;
    background-color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#div-feedback-card div p {
    font-size: 14px;
    color: #777777;
    font-weight: 300;
    line-height: 3.2vh;
}

#div-feedback-card div {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

#div-feedback-card h4 {
    font-size: 18px;
}

#div-feedback-card h6 {
    font-size: 14px;
    color: #777777;
    font-weight: 300;
}

#div-feedback-card footer {
    padding-left: 29%;
    padding-top: 2%;
    line-height: 4vh;
    flex-direction: column;
    width: 100%;
}

#div-why h2 {
    font-size: 36px;
    color: #222222;
    font-weight: 550;
}

#div-why {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    line-height: 6.5vh;
    padding-top: 5%;
}

#div-why p {
    font-size: 14px;
    color: #777777;
    font-weight: 300;
}

#div-cards {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    padding-top: 5%;
    padding-left: 8%;
    padding-right: 8%;
}

#div-cards main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 90%;
}

#div-cards div {
    width: 360px;
    height: 201px;
    border: solid 1px #77777717;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

#div-cards div h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

#div-cards div p {
    color: #777777;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    padding-top: 3vh;
}

#div-cards div:hover {
    background-color: #fcdc00;
    border: solid 1px #77777717;
    transition: 0.4s;
}


#div-btn-follow {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 5%;
}

#div-btn-follow a {
    display: block;
    display: flex;
    width: 245.3px;
    height: 60px;
    background-color: #fcdc00;
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

#div-btn-follow a:hover {
    transform: translateY(-0.5px);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

#div-img-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 5%;
    overflow: hidden;
    transition: 0.5s;
}

#div-img-footer img {
    width: 190px;
    height: 211.11;
    transition: 0.5s;
}

#div-img-footer div:hover img {
    transform: scale(1.05);
    transition: 0.5s;
}

#div-img-footer div {
    overflow: hidden;
    width: 190px;
    height: 211.11px;
    transition: 0.5s;
}

#pag2 {
    padding-bottom: 0%;
}

#footer {
    width: 100%;
    height: 428px;
    background-color: #04091E;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer h4 {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

#footer p {
    font-size: 14px;
    color: #777777;
    font-weight: 300;
    text-align: left;
}

#div-aboutMe {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: 50%;
    padding-left: 9%;
    padding-bottom: 1.9%;
    justify-content: flex-end;
}

#div-aboutMe h4 {
    padding-bottom: 7%;
}

#div-aboutMe span {
    color: #fcdc00;
}

#div-aboutMe p:last-of-type {
    padding-top: 7%;
}

#div-news {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 50%;
}

#div-news h4 {
    padding-bottom: 7.7%;
}

#div-news input {
    width: 404.22px;
    height: 40px;
    border-radius: 0px;
    border: 0;
    padding-left: 3%;
    background-color: #F9F9FF;
}

#div-news input::placeholder {
    font-family: "Poppins", sans-serif;
    color: #7777775b;
    font-size: 14px;
}

#div-news a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    background-color: #fcdc00;
}

#div-news form {
    display: flex;
    padding-top: 5%;
}

#div-news a img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26.3px;
    height: 20.3px;
}

#div-followMe {
    width: 30%;
    height: 50%;
    padding: 0.5%;
}

#div-followMe h4 {
    padding-bottom: 7.7%;
}

#div-social-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 23%;
    height: 8vh;
    padding-right: 1%;
}

#svg-facebook {
    fill: white;
    width: 22px;
    height: 20px;
    transition: 0.6s;
}

#svg-icons {
    fill: white;
    width: 15px;
    height: 15px;
    transition: 0.6s;
}

#div-social-icons a svg:hover {
    fill: #fcdc00;
    transition: 0.6s;
}

#pag1-blog {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(banner-2.jpg);
    background-attachment: fixed;
    width: 100%;
    height: 900px;
}

#blog-body {
    font-family: "Poppins", "sans-serif";
}

#dude {
    width: 100%;
    height: 820px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#div-dude {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#div-dude h2 {
    color: white;
    font-size: 60px;
    text-align: center;
    line-height: 9vh;
    font-weight: 600;
}

#div-dude p {
    padding-top: 3%;
    color: white;
    font-size: 16px;
    text-align: center;
}

#btn-viewMore {
    background-color: white;
    width: 148.55px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6%;
    transition: 0.5s;
    cursor: pointer;
}

#btn-viewMore a {
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
}

#btn-viewMore:hover {
    background-color: #fcdc00;
    transition: 0.5s;
}

#pag2-blog {
    background-color: #f9f9f9;
    padding-bottom: 7%;
}

#div-blocks-blog {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 5%;
    padding-left: 10%;
    padding-right: 10%;
}

#div-blocks-blog div {
    width: 360px;
    height: 220px;
}

#social-blog {
    background-image: url(cat-post-3.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}

#social-blog div {
    background-color: #222222CC;
    width: 320px;
    height: 180px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10% 0;
}

#social-blog div h5 {
    font-size: 18px;
}

#social-blog div p {
    font-size: 14px;
}

#social-blog div span {
    width: 62%;
    display: block;
    border-top: solid 1px white;
}

#politics-blog {
    background-image: url(cat-post-2.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}

#politics-blog div {
    background-color: #222222CC;
    width: 320px;
    height: 180px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10% 0;
}

#politics-blog div h5 {
    font-size: 18px;
}

#politics-blog div p {
    font-size: 14px;
}

#politics-blog div span {
    width: 41.5%;
    display: block;
    border-top: solid 1px white;
}

#food-blog {
    background-image: url(cat-post-1.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}

#food-blog div {
    background-color: #222222CC;
    width: 320px;
    height: 180px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10% 0;
}

#food-blog div h5 {
    font-size: 18px;
}

#food-blog div p {
    font-size: 14px;
}

#food-blog div span {
    width: 50.7%;
    display: block;
    border-top: solid 1px white;
}

#div-blocks-blog div>div {
    transition: 0.5s;
}

#div-blocks-blog div>div:hover {
    background-color: #f8b600d9;
    transition: 0.5s;
}

#main-blog {
    display: flex;
    width: 100%;

}

#div-esquerda-blog div a {
    text-decoration: none;
    font-size: 14px;
}

#div-foodTechnology a:nth-of-type(2) {
    color: #fcdc00;
}

#div-foodTechnology a:nth-of-type(1) {
    color: #222222;
}

#div-politicsLifestyle a {
    color: #222222;
}

#div-links a {
    color: #777777;
}

#div-esquerda-blog {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 1%;
}

#div-foodTechnology {
    padding-left: 25%;
}

#div-foodTechnology a:nth-of-type(1):hover {
    color: #777777;
    transition: 0.5s;
}

#div-foodTechnology a:nth-of-type(1) {
    transition: 0.5s;
}

#div-politicsLifestyle {
    padding-left: 32%;
}

#div-politicsLifestyle a:hover {
    color: #777777;
    transition: 0.5s;
}

#div-politicsLifestyle a {
    transition: 0.5s;
}

#div-sub-food {
    width: 50%;
}

#div-links {
    padding-top: 5%;
    width: 50%;
    padding-right: 5%;
    line-height: 4vh;
}

#div-links div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#div-links div a {
    width: 79%;
    display: flex;
    justify-content: flex-end;
    transition: 0.5s;
}

#div-links div a:hover {
    color: #fcdc00;
    transition: 0.5s;
}

#div-central-blog {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#div-central-blog h2 {
    font-weight: 600;
    color: #222222;
    padding-top: 3%;
    padding-right: 8%;
    cursor: pointer;
    transition: 0.5s;
}

#div-central-blog h2:hover {
    color: #fcdc00;
    transition: 0.5s;
}

#div-central-blog p {
    color: #777777;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    line-height: 3vh;
    padding-right: 1.3%;
    padding-top: 2%;
}

#div-central-blog a {
    display: block;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    align-items: center;
    width: 148.55px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    margin-left: 6%;
    margin-top: 5%;
    transition: 0.5s;
}

#div-central-blog a:hover {
    background-color: #fcdc00;
    transition: 0.5s;
}

#space {
    height: 50vh;
}

#space-imgs {
    height: 10vh;
}

#div-direita-blog {
    border: solid 1px #DDDDDD67;
    width: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2%;
    padding-bottom: 3%;
}

#search-posts {
    background-color: #fcdc00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 298px;
    height: 41px;
    padding: 0 20px;
    border-radius: 20px;
}

#search-posts input {
    background-color: rgba(255, 255, 255, 0);
    border: 0;
    outline: none;
}

#search-posts input::placeholder {
    font-family: "Poppins", sans-serif;
    color: #F9F9FF;
    font-size: 14px;
}

#div-charlie-barber {
    width: 298px;
    border-top: solid 1px #DDDDDD67;
    border-bottom: solid 1px #dddddd67;
    height: 450px;
    width: 298px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 20px;
    margin-top: 9%;
}

#div-charlie-barber svg {
    width: 15px;
    height: 15px;
}

#div-charlie-barber p {
    font-size: 14px;
    color: #777777;
    text-align: center;
    margin-bottom: 4%;
    line-height: 3.5vh;
}

#icons-charlie {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 90px;
    margin-bottom: 6%;
}

#div-charlie-barber h4 {
    font-size: 18px;
    color: #222222;
    margin-top: 8%;
}

#btn-popularPosts {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 298px;
    height: 41px;
    background-color: #fcdc00;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 8%;
}

#text-posts h3 {
    font-size: 14px;
    color: #222222;
    font-weight: 500;
    transition: 0.5s;
    cursor: pointer;
}

#text-posts h3:hover {
    color: #fcdc00;
    transition: 0.5s;
}

#text-posts p {
    color: #777777;
    font-size: 12px;
}

.div-posts {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

#div-posts1 img {
    margin-right: 4vh;
}

#div-posts2 {
    padding-right: 7%;
    gap: 27px;
}

#div-posts3 {
    padding-right: 2%;
    gap: 25px;
}

#div-posts4 {
    padding-right: 8.5%;
    gap: 28px;
}

#line {
    width: 298px;
    border-top: solid 1px #dddddd67;
    margin-top: 30px;
}

#div-direita-blog ul {
    list-style: none;
    width: 100%;
    padding-right: 10%;
    line-height: 7vh;
    margin-top: 4%;
}

#div-direita-blog ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: dotted 2px #dddddda6;
    transition: 0.5s;
}

#div-direita-blog ul li p {
    color: #777777;
    font-size: 14px;
    transition: 0.5s;
    cursor: pointer;
}

#div-direita-blog ul li span {
    color: #777777;
    font-size: 14px;
    transition: 0.5s;
    cursor: pointer;
}

#div-direita-blog ul li:hover>span {
    color: #fcdc00;
    transition: 0.5s;
}

#div-direita-blog ul li:hover {
    border-bottom: dotted 2px #fcdc00;
    transition: 0.5s;
}

#div-direita-blog ul li:hover>p {
    color: #fcdc00;
    transition: 0.5s;
}

#div-subscribe-blog {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#div-subscribe-blog p {
    color: #777777;
    font-size: 14px;
    text-align: center;
}

#div-enter-email svg {
    width: 12px;
    height: 20px;
    fill: #777777;
}

#btn-subscribe {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 101.7px;
    height: 38px;
    background-color: #fcdc00;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

#div-enter-email {
    display: flex;
    align-items: center;
    justify-content: center;
}

#div-enter-email div {
    border: solid 1px #EEEEEE;
    width: 197.3;
    height: 38px;
    display: flex;
    align-items: center;
    padding-left: 3%;
}

#div-enter-email div input {
    border: 0;
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    padding-left: 10px;
}

#div-enter-email div input::placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #CCCCCC;
}

#div-enter-email div input:focus::placeholder {
    opacity: 0;
}

#div-subscribe-blog span {
    color: #777777;
    font-size: 12px;
    text-align: center;
}

#btns-blog {
    padding-left: 8.4%;
    padding-top: 5%;
}

#btns-blog a {
    display: inline-block;
    height: 26px;
    background-color: white;
    border: solid 1px #EEEEEE;
    text-decoration: none;
    color: #222222;
    font-size: 12px;
    padding: 0 18px;
    font-weight: 300;
    margin: 0 0 8px;
    padding-top: 1%;
    transition: 0.3s;
}

#a1 {
    width: 97.06;
}

#a2 {
    width: 73.78;
}

#a3 {
    width: 100.64;
}

#a4 {
    width: 73.78;
}

#a5 {
    width: 57.44;
}

#a6 {
    width: 97.06;
}

#a7 {
    width: 74.31;
}

#a8 {
    width: 44.45;
}

#a9 {
    width: 89.23;
}

#a10 {
    width: 57.44;
}

#a11 {
    width: 74.31;
}

#a12 {
    width: 89.23;
}

#btns-blog a:hover {
    background-color: #fcdc00;
    color: white;
    transition: 0.5s;
}

#div-switchPag {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5%;
    padding-right: 20%;
}

#add-img {
    margin-top: 8%;
}

#div-switchPag a {
    display: inline-block;
    width: 41.61;
    height: 33.5;
    background-color: #f9f9f9;
    padding: 8px 12px;
    font-size: 14px;
    text-decoration: none;
    color: #8a8a8a;
    transition: 0.3s;
}

#div-switchPag a svg {
    width: 14px;
    height: 14px;
    fill: #8a8a8a;
    transition: 0.3s;
}

#div-switchPag a#a-02 {
    display: inline-block;
    width: 41.61;
    height: 33.5;
    background-color: #fcdc00;
    padding: 8px 12px;
    font-size: 14px;
    text-decoration: none;
    color: white;
}

#div-switchPag a:hover {
    background-color: #fcdc00;
    transition: 0.5s;
    color: white;
}

#div-switchPag a:hover>svg {
    fill: white;
    transition: 0.5s;
}

#pag1-contact {
    background-image: url(home-banner.jpg);
    background-attachment: fixed;
    width: 100%;
    height: 400px;
}

#div-contactUs {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#div-contactUs h2 {
    font-size: 48px;
    color: white;
}

#div-contactUs div a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

#div-contactUs div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 10%;
}

#div-contactUs div a {
    transition: 0.5s;
}

#div-contactUs div #home-link:hover+#arrow-link {
    color: #fcdc00;
    transition: 0.5s;
}

#div-contactUs div #home-link:hover {
    color: #fcdc00;
    transition: 0.5s;
}

#div-contactUs div a:nth-of-type(3):hover {
    color: #fcdc00;
    transition: 0.5s;
}

#pag2-contact {
    padding-top: 8%;
}

#div-googleMaps {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 6%;
}

#div-form-contact {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 4%;
}

#div-infos {
    width: 30%;
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-evenly;
}

#div-infos h6 {
    font-size: 16px;
    color: #222222;
    font-weight: 350;
}

#div-infos a {
    font-size: 16px;
    color: #222222;
    font-weight: 350;
    text-decoration: none;
}

#div-infos p {
    font-size: 14px;
    color: #777777;
}

#icons-infos {
    font-size: 20px;
    color: #fcdc00;
    font-weight: 800;
}

.divs-infos {
    display: flex;
    width: 50%;
    justify-content: space-between;
}

#div1-infos {
    padding-right: 2%;
}

#div2-infos {
    padding-right: 8%;
}

#div-form {

    width: 30%;
    height: 30vh;
}

#div-form form {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10%;
    padding-top: 2%;
}

#div-form form input {
    border-radius: 0;
    border: solid 1px #dddddd98;
    outline: none;
    width: 408.75px;
    height: 40px;
    padding: 6px 12px 6px 20px;
}

#div-form form input::placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #999;
}

#div-sendmsg {
    border: solid 1px blac;
    width: 25%;
    height: 30vh;
    padding-top: 1.35%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#div-sendmsg input {
    border-radius: 0;
    border: solid 1px #dddddd98;
    outline: none;
    width: 100%;
    height: 71%;
    padding-bottom: 28%;
    padding-left: 5%;
}

#div-sendmsg input::placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #999;
}

#btn-sendMsg {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160.95px;
    height: 40px;
    background-color: #fcdc00;
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5%;
    transition: 0.5s;
}

#btn-sendMsg:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

#pag2-services main{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#pag2-services main div{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

#pag2-services main div div{
    width: 360px;
    height: 273px;
    border: solid 1px #EEEEEE;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding-top: 2%;
    padding-bottom: 3%;
    transition: 0.5s;
}

#div-line1 {
    padding-top: 7%;
    padding-left: 12%;
    padding-right: 12%;
}

#div-line2 {
    padding-top: 2%;
    padding-left: 12%;
    padding-right: 12%;
}

#pag2-services main div div div{
    font-size: 42px;
    border: 0;
}

#pag2-services main div div h4{
    font-size: 18px;
    color: #222222;
    font-weight: 550;
    padding-bottom: 7%;
}

#pag2-services main div div p{
    font-size: 14px;
    color: #777777;
    font-weight: 350;
    text-align: center;
    transition: 0.5s;
}

#pag2-services main div div:hover {
    background-color: #fcdc00;
    transition: 0.5s;
}

#pag2-services main div div:hover>p{
    color: #222222;
    transition: 0.5s;
}

#div-mountain {
    width: 100%;
    height: 740px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 8%;
}

#div-mountain div h4 {
    font-size: 24px;
    color: #222222;
    font-weight: 600;
    text-align: center;
}

#div-mountain div p{
    color: #777777;
    font-size: 14px;
    text-align: center;
    padding-top: 5%;
}

#div-textMountain {
    width: 650px;
    height: 280px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 45px 80px;
    z-index: 3;
    position: absolute;
    bottom: -140px;
    left: 7%;
}

#div-imgMountain {
    position: relative;
    z-index: 0;
}