/* Global styles */

@font-face {
    font-family: 'soria';
    src: url('fonts/soria-font-webfont.eot');
    src: url('fonts/soria-font-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/soria-font-webfont.woff2') format('woff2'),
         url('fonts/soria-font-webfont.woff') format('woff'),
         url('fonts/soria-font-webfont.ttf') format('truetype'),
         url('fonts/soria-font-webfont.svg#soriasoria') format('svg');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0px;
    padding: 0px;
  }

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  /* Headings */

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #FCA5E9;
    font-size: 32px; 
}

.hidden-title {
    visibility: hidden;
}

.para-heading{
    padding-bottom: 36px;
    color: #FCA5E9;
}

.para-heading-about{
    padding-bottom: 36px;
    color: #458551;
}

.para-heading-hot-tips{
    padding-bottom: 10px;
    color: #458551;
}

.para-heading-contact{
    padding-bottom: 36px;
    color: #ffffff;
}

.heading-faq {
    padding-bottom: 36px;
    color: #ffffff;
}

.heading-hot-tips {
    padding-bottom: 18px;
    color: #ffffff;
    line-height: 1.2;
}

.heading-hot-tips-post {
    padding-bottom: 36px;
    color: #ffffff;
    line-height: 1.2;
}

.heading-love-letters {
    padding-bottom: 36px;
    color: #458551;
}

.heading-packages {
    padding-bottom: 0px;
    color: #FF4C01;
}

.prices-packages {
    padding-bottom: 18px;
    color: #FF4C01;
}

.image-link {
    display: flex;
    height: 327px;
    max-height: 600px;
    max-width: 491.5px;
    width: auto;
    padding-left: 74px;
    position: relative;
    margin: 10px;
    object-fit: cover;
    object-position: center;
    flex-basis: 50%;
    padding-right: 163px;
    /* Sticky images about page */
    /* position: -webkit-sticky;  */
    /* Safari */
    /* position: sticky; */
    /* top: 200px; */
}

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #458551;
    font-size: 32px;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #ffffff; 
    font-size: 19px;

}

h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #000; 
    padding-bottom: 18px; 
    font-size: 19px;
}

h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff; 
    padding-bottom: 18px; 
    font-size: 19px;
    margin-bottom: 19px;
}



/* links */

.p-link{
    color: #FCA5E9;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    padding-bottom: 18px;
}

.package-links{
    color: #458551;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    padding-bottom: 18px;
}

.link-padding{
    padding-top: 18px;
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff; 
    padding-bottom: 18px; 
    font-size: 16px;
}

.p-about {
    color: black;
}

.p-stars {
    padding-bottom:36px;

}

.p-love-letters {
    color: #000;
}

.p-packages {
    color: #000000;
}

a{
    font-family: "poppins";
    font-weight: normal;
    font-style: normal;
    color: #ffffff;
    text-decoration: underline;

}

.a-about{
    font-family: "poppins";
    font-weight: normal;
    font-style: normal;
    color: #000000;
    text-decoration: underline;

}

a:hover{
    text-decoration: none;
}

/* .menu-link{
    font-family: "soria";
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    color: #458551;
    text-decoration: none;
    position: relative;
    padding-bottom: 0;
    height: auto;
} */

.menu-link::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, #458551, #458551); /* underline color */
    background-size: 0 2px; /* vertical size of underline */
    background-repeat: no-repeat;
    background-position: left bottom; /* start position of underline */
    transition: background-size .3s ease-in; /* duration and timing style of animation */
  }
  
  .menu-link:hover::before {
    background-size: 100% 2px;
  }


  .top-nav{
    position: fixed;
    height: 155px;
    background-color: #ffffff;
    width: 100%;
    z-index: 1;
  }

.hero-logo{
    display: flex;
    margin-top: 33px;
    margin-left: 45px;
    float: left;
}  

.menu {
    display: flex;
    list-style: none;
    margin-top: 57px;
    margin-right: 60px; 
    float: right; /* to right align menu */
}

.menu li {
    margin-right: 53px;
}

.menu a {
    display: block;
    padding: 0px;
    font-family: "soria";
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    color: #458551;
    text-decoration: none;
    position: relative;
    padding-bottom: 0;
    height: auto;
  }

  .menu-btn {
    display: none;
  }








/* .button-1 {
    margin-right: 53px;
}

.button-2 {
    margin-right: 53px;
} */

.hero {
    display: flex;
    width: 1446px;
    max-width: 100%;
    height: auto;
    margin: auto;
}

.header{
    display: flex;
    height: 100svh;
    margin: auto;
    padding-top: 55px;


}

.background-color{
    display: flex;
    background-color: #458551;
}

.background-color-about{
    display: flex;
    background-color: #FCA5E9;
}

.background-color-faq{
    display: flex;
    background-color: #458551;
    flex-direction: column;
    padding-top: 70px;
}

.background-color-packages{
    display: flex;
    background-color: #E1ADFF;
    flex-direction: column;
}

.background-color-love-letters{
    display: flex;
    background-color: #FCA5E9;
    flex-direction: column;
    padding-top: 70px;
}

.background-color-contact{
    display: flex;
    background-color: #FF4C01;
}

.background-color-error{
    display: flex;
    background-color: #458551;
    height: 100svh;
}

.section {

    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1403px;
    /* width: 100%; */
    margin: auto;
    padding-top: 150px;
    padding-bottom: 50px;
}

.section-packages {

    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1403px;
    margin: auto;
    padding-top: 150px;
    padding-bottom: 50px;
}

.section-error {

    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1403px;
    width: 100%;
    margin: auto;
    padding-top: 150px;
    height: 80svh;
}

.text-error {
    text-align: center;
}

.section-single-column-text {

    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1403px;
    /* width: 100%; */
    margin: auto;
    padding-top: 40px;
    padding-bottom: 43px;
}

.single-column-text {
    display: flex;
    box-sizing: inherit;
    max-width: 1403px;
    padding-right: 163px;
    padding-left: 163px;
    margin: auto;
}

.text-image{
    display: flex;
    box-sizing: inherit;
    max-width: 1403px;
    margin: auto;
    padding-left: 163px;
}

.image-nostick{
    display: flex;
    width: auto;
    max-width: 708px;
    padding-left: 74px;
    position: relative;
    /* margin: auto; */
    object-fit: cover;
    object-position: center;
    flex-basis: 50%;
    padding-right: 173px;
    max-height: 600px;
    height: auto;
}

.portrait-image{
    display: flex;
    height: auto;
    max-height: 600px;
    max-width: 491.5px;
    width: auto;
    padding-left: 74px;
    position: relative;
    margin: 10px;
    object-fit: cover;
    object-position: center;
    flex-basis: 50%;
    padding-right: 163px;
    /* Sticky images about page */
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 200px;
}


.text{
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    width: 50%;
    max-width: 626px;
    margin: auto;
    margin-top: 0;
}

.faq-text {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
    max-width: 1250px;

}

.footer{
    display: flexbox;
    background-color: #458551;
    text-align: center;
    object-fit: cover;
    object-position: center;
    padding-top: 70px;
}

.footer-about{
    display: flexbox;
    background-color: #FCA5E9;
    text-align: center;
    object-fit: cover;
    object-position: center;
    padding-top: 70px;
}

.footer-love-letters{
    display: flexbox;
    background-color: #FCA5E9;
    text-align: center;
    object-fit: cover;
    object-position: center;
    padding-top: 70px;
}

.footer-faq{
    display: flexbox;
    background-color: #458551;
    text-align: center;
    object-fit: cover;
    object-position: center;
    padding-top: 100px;
}

.footer-packages{
    display: flexbox;
    background-color: #E1ADFF;
    text-align: center;
    object-fit: cover;
    object-position: center;
    padding-top: 100px;
}

.footer-contact{
    display: flexbox;
    background-color: #FF4C01;
    text-align: center;
    object-fit: cover;
    object-position: center;
    padding-top: 100px;
}

.footer-content{
    display: flex;
    flex-direction: column;
    padding-bottom: 32px;
}

.social-logos{
    padding-bottom: 8px;
}

.insta{
    width: 32px;
    height: 32px;
    padding-right: 12px;
}

.tiktok{
    width: 32px;
    height: 32px;
}

.footer-text{
    margin-top: 10px;
}

.footer-text-content{
    color: white;
    padding: 0;
}

.footer-text-content-about{
    color: black;
    padding: 0;
}

.footer-text-content-packages{
    color: black;
    padding: 0;
}
.footer-text-ack {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    object-position: center;
    color: white;
}

.footer-text-ack-about {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    object-position: center;
    color: black;
}

.footer-text-ack-packages {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    object-position: center;
    color: black;
}

.tws-logo {
    width: 250px;
    height: 87.5px;
    padding-bottom: 30px;
}

.pride-logo {
    width: 87.25px;
    height: 43.87px;
    margin: auto;
    padding-bottom: 50px;
    padding-right: 15px;
}

.footer-logos {
    margin: auto;
    padding-top: 30px;
}

/* Contact */

.contact-list {
    list-style: none;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    padding-left: 0;
    margin: 0;
}

.contact-link-1 {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    display: inline;
    display: flex;
    padding-left: 55px;
}

.contact-link-2 {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    display: inline;
    display: flex;
    padding-left: 49px;
}

.contact-list-item {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 20px;
}

.form {
    display: flex;
    flex-direction: row;
    margin: auto;
    max-width: 604px;
    width: 100%;
    padding-right: 100px;
    padding-left: 74px; 
}

.section-form {

    align-items: center;
    justify-content: center;
    max-width: 1403px;
    width: 100%;
    margin: auto;

}

.text-form-image {
    display: flex;
    flex-direction: row;
    width: 1403px;
    max-width: 100%;
    margin: auto; 
}

.text-contact {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    width: 50%;
    max-width: 562px;
    margin: auto;
    margin-top: 0;
    padding-top: 50px;
    padding-left: 163px;
}



.contact-image, .contact-image-mobile {
    max-width: 562px;
    width: 100%;
    max-height: 680px;
    height: 100%;
    justify-content: center;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-tip-list {
    list-style-type: disc;
    color: #fff;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff; 
    padding-bottom: 18px; 
    font-size: 16px;

}

.button-home {
    visibility: hidden;
}


 /* Hamburger button */
 .hamburger {
    position: fixed;
    top: 10px;
    right: 40px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: black;
    z-index: 1001;
    display: none; /* Hidden by default */
    font-family: "soria";
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    color: #458551;
 }


/* Menu styles */
.mobile-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FCA5E9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: top 0.4s ease-in-out;
    z-index: 1000;
}

.mobile-menu a {
    font-family: "soria";
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    color: #458551;
    font-size: 52px;
    margin: 5px 0;
}

/* Show menu when active */
.mobile-menu.active {
    top: 0;
}

.mobile-logo {
    display: none;
}

.contact-image-mobile{
    display: none;
}

/* Mobile-specific styles */
@media (max-width: 1084px) {
    .hamburger {
        display: block;
    }
    .mobile-menu {
        display: flex;
    }
    .menu{
        display: none;
    }


    .mobile-logo {
        display: flex;
        float: left;
        margin-top: 15px;
        margin-left: 20px;
        max-width: 50px;
        max-height: 50px;
    } 

    .hero-logo{
        display: none;
    } 

    .top-nav {
        display: flex;
        float: left;
        flex-direction: row;
        list-style: none;
        position: fixed;  
        height: 77.5px;
        background-color: #ffffff;
        width: 100%;
        z-index: 1;
        /* justify-content: center; */
        /* align-items: center; */
        margin: auto;
    }

    .image-nostick, .portrait-image, .image-link{
        display: block;
        width: 100%;
        max-width: 328px;
        padding-left: 0;
        padding-top: 33px;
        margin: auto;
        padding-right: 0;
    }

    .text{
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        width: 100%;
        max-width: 400px;
    }
    

}






/* Large responsiveness safari */
@media (max-width: 1728px) {
    .hero{
            display: flex;
            width: 1084px;
            max-width: 100%;
            height: auto;
            margin: auto;
    }

    .button-home {
        visibility: hidden;
    }
    
}

@media (max-height: 1246px){
    .hero{
            display: flex;
            width: 1084px;
            max-width: 100%;
            height: auto;
            margin: auto;
    }

    .button-home {
        visibility: hidden;
    }
    
}

/* medium responsiveness safari */
@media (max-width: 1296px) {
    .hero{
            display: flex;
            width: 723px;
            max-width: 100%;
            height: auto;
            margin: auto;

    }

    .button-home {
        visibility: hidden;
    }
}

@media (max-height: 934.5px){
    .hero{
            display: flex;
            width: 723px;
            max-width: 100%;
            height: auto;
            margin: auto;

    }

    .button-home {
        visibility: hidden;
    }
}

/* small responsiveness safari */
@media (max-width: 864px) {
    .hero{
            display: flex;
            width: 361px;
            max-width: 100%;
            height: auto;
            margin: auto;

    }

    .button-home {
        visibility: hidden;
    }
}

@media (max-height: 623px){
    .hero{
            display: flex;
            width: 361px;
            max-width: 100%;
            height: auto;
            margin: auto;

    }

    .button-home {
        visibility: hidden;
    }
}

/* mobile responsvieness safari */

/* Fonts in menu! */

@media (max-width: 1390px) {
    .menu a{
        font-size: 40px;
    }
}

@media (max-width: 1255px) {
    .menu a{
        font-size: 35px;
    }

    .image-nostick, .portrait-image, .image-link{

        width: auto;
        max-width: 328px;
        padding-right: 163px;
        margin: 10px;

    }
}

@media (max-width: 1170px) {
    .menu a{
        font-size: 30px;
    }





}


@media (max-width: 1084px)  {

 .header{
    display: flex;
    max-height: 340px;
    position: relative;
    top: 0;
    margin-top: 0;
    justify-content: center;
 }

  
  
 
    .button-home {
        visibility: visible;
    }
    
    .hero {

        width: 361px;
        max-width: 100%;
        margin: auto;
        padding: 15px;
        height: auto;


    }

    .hero-logo{
        display: none;
    } 

    .hero-logo-link {
        display: none;


    }


    .mobile-logo {
        display: flex;
        float: left;
        margin-top: 15px;
        margin-left: 20px;
        max-width: 50px;
        max-height: 50px;
    }

    .button-home {
        margin-right: 25px;
    }

    .mobile-logo-style {
        justify-content: space-between;
        display: grid;
    }

    .section {

        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        /* width: 100%; */
        margin: auto;
        padding-left: 58px;
        padding-right: 58px;
        padding-top: 50px;
        padding-bottom: 47px;
    
    }

    .section-packages{
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        /* width: 100%; */
        margin: auto;
        padding-left: 58px;
        padding-right: 58px;
        padding-top: 50px;
        padding-bottom: 47px;

    }

    .section-single-column-text {
       
        display: block;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        /* width: 100%; */
        margin: auto;
        padding-left: 58px;
        padding-right: 58px;
        padding-top: 50px;
        padding-bottom: 47px;
    }

    .text-image {
        display: flex;
        flex-direction: column;
        padding: 0;
    }



    .text{
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        width: 100%;
        max-width: 400px;
    }

    .image-nostick, .portrait-image, .image-link{
        display: block;
        width: 100%;
        max-width: 328px;
        padding-left: 0;
        padding-top: 33px;
        margin: auto;
        padding-right: 0;
    }
    
    .footer {
        padding-top: 0;
        margin: auto;
    }

    .footer-text-ack {
        margin: auto;
        padding-right: 40px;
        padding-left: 40px;
    }
    .footer-text {
        margin: auto;
        padding-right: 40px;
        padding-left: 40px;
    }

    .single-column-text {
        margin: auto;
        padding-left: 0px;
        padding-right: 0px;
    }

    .heading-faq {
        margin: 0;   
    }

    .heading-packages {
        margin: 0;   
    }


    .text-form-image {
        display: flex;
        flex-direction: column;
        padding: 0;
        position: relative;
        left: 100px;
        margin: auto;
        
    }

    /* .text-contact {
        margin: auto;
        padding-left: 58px;
        padding-right: 58px;
    } */

    .form {
        display: flex;
        flex-direction: row;
        margin: 0;
        max-width: 604px;
        width: auto;
        padding-right: 0;
        padding-left: 0; 
    }
    
    .section-form {
    
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        width: 100%;
        margin: auto;
        /* padding-left: 58px; */
        /* padding-right: 58px; */
        padding-top: 50px;
        padding-bottom: 47px;
    
    }
    
    .text-form-image {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: auto;
        padding: 0;
        position: relative;
        left: 0;
        
    }
    
    .text-contact {
        display: flex;
        flex-direction: column;
        flex-basis: 50%;
        width: auto;
        max-width: 562px;
        margin: auto;
        padding-left: 58px;
        padding-right: 58px;
        padding-top: 0px;
    }

    .contact-list {
        list-style: none;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 19px;
        padding-left: 0;
        margin: auto;
        max-width: 400px;
        width: 100%;

    
    }

    .contact-link-1 {
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 19px;
        display: block;
        padding-left: 0;
        margin: auto;
    }
    
    .contact-link-2 {
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 19px;
        display: block;
        padding-left: 0;
        margin: auto;
    }
    
    .contact-list-item {
        display: block;
        padding-bottom: 20px;
    }

    .contact-image {
        display: none;
    }

    .contact-image-mobile{
        display: flex;
        float: none;
        padding-left: 58px;
        padding-right: 58px;
        width: auto;
        height: auto;
        max-height: 425.917px;
    }



}

@media (max-height: 311.5px) {



    .button-home {
        visibility: visible;
    }

    .header {
        display: flex;
        max-height: 340px;
        position: relative;
        top: 0;
        margin-top: 0;
        justify-content: center;
    }
    
    .hero {

        width: 361px;
        max-width: 100%;
        margin: auto;
        padding: 15px;
        height: auto;


    }

    .hero-logo{
        display: none;
    } 

    .hero-logo-link {
        display: none;


    }

    .top-nav {
        display: flex;
        flex-direction: row;
        list-style: none;
        position: fixed;  
        height: 77.5px;
        background-color: #ffffff;
        width: 100%;
        z-index: 1;
        /* justify-content: center; */
        align-items: center;
        margin: auto;
    }

    .mobile-logo {
        display: flex;

        margin: auto;
        max-width: 50px;
        max-height: 50px;
    }

    .button-home {
        margin-right: 25px;
    }

    .button-1 {
        margin-right: 25px;
    }
    
    .button-2 {
        margin-right: 25px;
    }

    .menu {
        position: absolute;
        margin: auto;
        max-width: 490px;
    }

    .menu-link {
        font-size: 34px;
    }

    .section {

        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        width: 100%;
        margin: auto;
        padding-left: 58px;
        padding-right: 58px;
        padding-top: 50px;
        padding-bottom: 47px;
    
    }

    .text-image {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .heading-faq {
        margin: 0;
    }

    .heading-packages {
        margin: 0;
    }

    .text{
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        width: 100%;
        max-width: 400px;
    }

    .image-nostick, .portrait-image{
        display: block;
        width: 100%;
        max-width: 328px;
        padding-left: 0;
        padding-top: 33px;
        margin: auto;
        padding-right: 0;
    }
    
    .footer {
        padding-top: 0;
        margin: auto;
    }

    .footer-text-ack {
        margin: auto;
        padding-right: 40px;
        padding-left: 40px;
    }
    .footer-text {
        margin: auto;
        padding-right: 40px;
        padding-left: 40px;
    }

    .single-column-text {
        margin: auto;
        padding-left: 0px;
        padding-right: 0px;
    }

    .heading-faq {
        margin: 0;
        
    }

    .text-form-image {
        display: flex;
        flex-direction: column;
        padding: 0;
        position: relative;
        left: 100px;
        margin: auto;
        
    }

    .text-contact {
        margin: auto;

    }

    .form {
        display: flex;
        flex-direction: row;
        margin: 0;
        max-width: 604px;
        width: auto;
        padding-right: 0;
        padding-left: 0; 
    }
    
    .section-form {
    
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        width: 100%;
        margin: auto;
        padding-left: 58px;
        padding-right: 58px;
        padding-top: 50px;
        padding-bottom: 47px;
    
    }
    
    .text-form-image {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: auto;
        padding: 0;
        position: relative;
        left: 0;
        
    }
    
    .text-contact {
        display: flex;
        flex-direction: column;
        flex-basis: 50%;
        width: 100%;
        max-width: 562px;
        margin: auto;
        padding-top: 0;
    }

    .contact-list {
        list-style: none;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 19px;
        padding-left: 0;
        margin: auto;
        max-width: 400px;
        width: 100%;

    
    }

    .contact-link-1 {
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 19px;
        display: block;
        padding-left: 0;
        margin: auto;
    }
    
    .contact-link-2 {
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 19px;
        display: block;
        padding-left: 0;
        margin: auto;
    }
    
    .contact-list-item {
        display: block;
        padding-bottom: 20px;
    }



}


