/*=======================CSS=======================*/
/*===============Variables===============*/
:root{
    --main-clr-charcoal: #373737;
    --main-clr-dark-salmon: #e1b464;
    --main-clr-pale-goldenrod: #efd4a9;
    --main-clr-antique-white: #fae1d0; 
    --main-clr-antique-whiter: #fbe4dc;
    --main-clr-antique-whitest: #fbfaf9;
    --main-clr-pink-hvw: #E5097F;
    --main-clr-dusty-hvw: #96858f;
    --main-clr-lavendar-hvw: #6d7993;
    --main-clr-overcast-hvw: #9099a2;
    --main-clr-paper-hvw: #d5d5d5;
}
/*===============Keyframe-Animations===============*/
/* Keyframe-Animations */
@keyframes moveInFromLeft {
    0% {
        transform: translateX(-200%);
        opacity: 0;
        visibility: hidden;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

@keyframes moveInFromRight {
    0% {
        transform: translateX(1000%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes moveInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* CSS für die Animationen */
.animation {
    opacity: 0;
    transition: opacity 1s, transform 1s; 
}

.animated {
    opacity: 1; 
}
/*===============Fontimport===============*/
@font-face {
    font-family: 'Lato';
    src: url('/fonts/Lato/Lato-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Lora';
    src: url('/fonts/Lora/static/Lora-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito/static/Nunito-ExtraLight.ttf') format('truetype');
}
/*===============Fonts===============*/
h1{
    font-family: 'Lora', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    color: var(--main-clr-dark-salmon);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2{
    font-family: 'Lora',sans-serif;
    font-size: 2rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    color: var(--main-clr-dark-salmon);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h3{
    font-family: 'Lato',sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: Medium;
    line-height: 1.5;
    color: var(--main-clr-dark-salmon);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h4{
    font-family: 'Lato',sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: var(--main-clr-dark-salmon);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h5{
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    font-style: normal;
    line-height: 1.5;
    color: var(--main-clr-charcoal);
}
p{
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    font-style: normal;
    line-height: 1.5;
    color: var(--main-clr-charcoal);
}
a{
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    font-style: normal;
    line-height: 1.5;
    text-decoration: none;
    color: var(--main-clr-charcoal);
}
ul{
    list-style: none;
}
ol{
    list-style: decimal;
}
li{
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    font-style: normal;
    line-height: 1.5;
}
input, textarea, button, label, select, option {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    font-style: normal;
    line-height: 1.5;
    color: var(--main-clr-charcoal);
}



/*================GENERAL_CSS================*/
*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
    width: 100%;
}

.navbar{
    position: fixed;
    top: 0;
    right: -140vw;
    min-width: 400px;
    max-width: 100vw;
    height: 100vh;
    z-index: 996;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 60px;
    padding-top: 120px;
    border-radius: 4px;
    background: #d5d5d5e8;
    border: 1px solid var(--main-clr-lavendar-hvw);
    box-shadow: 0px 0px 4px var(--main-clr-lavendar-hvw);
    transition: right 0.8s;
}
.navbar.open {
    right: 0;
}
.navbar ul li{
    margin-bottom: 32px;
}
.navbar ul li a{
    color: var(--main-clr-lavendar-hvw);
    font-weight: bold;
    font-size: 1.4rem;
}
.navbar ul li a:hover{
    text-decoration: underline;
}
@media only screen and (max-width: 600px) {
    .navbar {
        width: 100%;
        right: -140vw;
    }
}
/*================HEADER================*/
.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}
#logo{
    height: 60px;
    z-index: 900;
}
#bars{
    height: 48px;
    cursor: pointer;
    transition: 0.3s all ease;
    z-index: 999;
}
#bars:hover{
    transform: scale(1.2);
}
/*================HERO_PAGE================*/
.heropage{
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#headerimg{
    width: 100%;
    height: 100vh;
    opacity: 0.5;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}
.herodiv{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: row;
}
.herotextdiv{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    z-index: 700;
    top: 0;
    bottom: 0;
    left: 0;
    padding-left: 100px;
    padding-top: 20vh;
}
.herotextdiv h1,h3{
    margin-bottom: 20px;
}
#heroimg{
    position: absolute;
    right: 100px;
    bottom: 0;
    height: 60%;
    opacity: 1;
    z-index: 800;
}
#arrowsdown{
    height: 80px;
    width: 80px;
    transition: 0.6s all ease;
}
#arrowsdown:hover{
    transform: scale(1.2);
}
/*================SERVICES_PAGE================*/
.servicepage{
    width: 100%;
    height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4px;
    padding-top: 20px;
}
.servicetext{
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service h3{
    margin-bottom: 6px;
}
.servicetext h2{
    
    font-weight: bold;
}
.servicetilediv{
    width: 60%;
    height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.servicetile{
    width: 420px;
    height: 240px;
    background: rgb(0,0,0);
    margin: 4px;
    border: 1px solid rgba(255, 255, 255, 0.349);
    border-radius: 4px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.411);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.servicetilediv a{
    text-decoration: none;
}
.servicetile h4{
    color: var(--main-clr-dark-salmon);
    z-index: 600;
    font-size: 2.2rem;
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.7);
}
.servicetile p{
    color: var(--main-clr-antique-whitest);
    font-size: 1.4rem;
    z-index: 600;
}
.tileimg{
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.5;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    transition: 0.6s all ease;
}
.tileimg:hover{
    transform: scale(1.2);
}
/*================FOOTER================*/
.footer{
    z-index: 996;
    width: 100%;
    height: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-clr-overcast-hvw);
}
.legallinks{
    list-style: none;
    display: flex;
}
.legallinks li{
    margin-left: 20px;
}
.legallinks li a{
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--main-clr-paper-hvw);
    font-weight: bold;
    transition: 0.6s all ease;
}
.legallinks li a:hover{
    color: var(--main-clr-antique-whitest);
}
.sociallinks{
    list-style: none;
    display: flex;
}
.sociallinks li{
    margin-right: 20px;
    margin-left: 20px;
}
.sociallinks li a{
    text-decoration: none;
}
.socialicons{
    width: 32px;
    transition: 0.6s all ease;
}
.socialicons:hover{
    transform: scale(1.4);
}
/*================SALESPAGES================*/
/*======HERO-SECTION======*/
.wrapper{
    margin: 0;
    padding:0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(251,250,249);
    background: linear-gradient(171deg, rgba(251,250,249,1) 0%, rgba(213,213,213,1) 47%, rgba(251,250,249,1) 100%);
}

.herosec{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}
.heroheaderimg{
    width: 100%;
    height: 100vh;
    object-fit:cover;
    opacity: 0.3;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}
.herotiteldiv{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.herotiteldiv h1,h3{
    
    z-index: 700;
}
.herotiteldiv p{
    color: var(--main-clr-antique-whitest);
    z-index: 700;
}
.btndiv{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    z-index: 700;
}
.btnfill{
    border: 1px solid var(--main-clr-dusty-hvw);
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.123);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
    margin: 10px 0px;
    padding: 4px 12px;
    color: var(--main-clr-antique-whitest);
    z-index: 700;
    transition: 0.6s all ease;
}
.bntfill:hover{
    color:white;
}
.btnoutlined{
    border: 1px solid var(--main-clr-dusty-hvw);
    color: var(--main-clr-dusty-hvw);
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.123);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin: 20px;
    padding: 4px 12px;
    z-index: 700;
    transition: 0.6s all ease;
}
.btnoutlined:hover{
    background-color: white;
}
/*======ABOUT======*/
.aboutsection{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.aboutdiv{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.aboutimgdiv{
    width: 33%;
    height: 100vh;
    padding: 10px;
    margin:20px;
    border: 4px;
    overflow: hidden;
}
.abouttxtdiv{
    width: 67%;
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: left;
}
.abouttxtdiv h3{
    margin-bottom: 6px;
}
.abouttxtdiv ul span{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;   
}
.abouttxtdiv ul {
    margin-bottom: 10px;
    border: 1px solid var(--main-clr-dusty-hvw);
    border-radius: 4px;
    box-shadow: 1px 1px 3px var(--main-clr-dusty-hvw);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
    padding: 10px;
    text-align: left;
}
.abouttxtdiv ul li p{
    color: white;
}
#aboutimg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#questionicon{
    height: 32px;
    margin-right: 10px;
}
/*======SERVICES======*/
.servicessection{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 20px;
}
.servtxtdiv{
    width: 100%;
    height: 60px;
    text-align: center;
}
.servicesdiv{
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.service{
    width: 480px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-align: left;
    background: linear-gradient(153deg, rgb(150, 133, 143) 0%, rgb(144, 153, 162) 100%);
    margin: 10px;
    padding: 20px;
    border:1px solid var(--main-clr-antique-whitest);
    border-radius: 4px;
    box-shadow: 0px 0px 3px var(--main-clr-overcast-hvw);
}
.service h4{
    background: none;
    background-clip: none;
    -webkit-background-clip: none;
    -webkit-text-fill-color: unset;
    color: white;
    margin-bottom: 10px;
}
.service p{
    color: white;
}
.service ul li{
    margin-bottom: 10px;
}
.servicons{
    height: 40px;
}
.solutionboxes{
    margin-bottom: 10px;
    margin-top: 20px;
}
.solutiontextbox p{
    color: white;
}
.solicons{
    width: 24px;
}
.solutionicon{
    display: flex;
    flex-direction: row;
}
.solutionicon h4{
    margin-left: 20px;
    font-weight: bold;
    color: var(--main-clr-dark-salmon);
    font-size: 1.4rem;
}
.solutionboxtext{
    border-left: 1px solid var(--main-clr-dark-salmon);
    margin-left: 18px;
    padding: 10px;
    padding-left: 40px;
    text-align: left;
}
.solutionboxtext p{
    color: black;
    font-size: 1.1rem;
}
.solimg{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
#soluimg{
    height: 320px;
}

/*======TESTIMONIALS======*/
.testimonialsec{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    
}
.testitextdiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    height: 40px;
    padding-top: 40px;
}
.testitextdiv h2{
    margin-bottom: 20px;
}
.testitextdiv p{
    margin-bottom: 20px;
}
.testidiv{
    width: 100%;
    height: 80vh;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}
.testicarousel{
    width: 100%;
    height: 80vh;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.testibtn{
    outline: none;
    border:none;
    background:transparent;
    font-size: 5rem;
    cursor: pointer;
    margin: 8px;
}
.testibox{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    overflow: hidden;
    width: 80vw;
}
.testimonial{
    width: 480px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 16px;
    padding: 10px;
    text-align: left;
    border: 1px solid var(--main-clr-antique-white);
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.384);
    background: rgb(150,133,143);
    background: linear-gradient(153deg, rgba(150,133,143,1) 0%, rgba(144,153,162,1) 100%);
}

.testiquote{
    margin-top: 0px;
}
.quoteicon{
    height: 64px;
}
.testilogo{
    height: 68px;
    border-radius: 50%;
}
.testitext{
    padding: 20px;
}
.testitext p{
    font-size: 1.2rem;
    font-style:italic;
    color:white;
}
.testitext h5{
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--main-clr-charcoal);
}
.testislideleft, .testislideright {
    background: none;
    border: none;
    cursor: pointer;
}
#slideleft, #slideright{
    height: 120px;
}

/*======CONTACT======*/
.contactsection{
    width: 100%;
    height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: black;
    padding: 20px;
}

#contactheader{
    width: 100%;
    height: 100vh;
    opacity: 0.5;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}
.contacttitle{
    width: 100%;
    height: auto;
    z-index: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contactdiv{
    width: 800px;
    z-index: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #fbe4dcef;
    border: 1px solid var(--main-clr-pale-goldenrod);
    border-radius: 4px;
    box-shadow: 0px 0px 4px var(--main-clr-pale-goldenrod);
    transition: 0.6s all ease;
}
.contactdiv:hover{
    transform: scale(1.1);
}
.contactdiv h4{
    color: var(--main-clr-dark-salmon);
}
.contactdiv p{
    color: var(--main-clr-charcoal);
}
.adressdiv, .cntdiv{
    width: 50%;
    height: 100%;
    padding: 20px;
}
.adressdiv{
    display: flex;
    flex-direction: row;
}
.adricon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.adressbox{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    padding-left: 10px;
}
#portrait{
    position: absolute;
    bottom: 0;
    left: 20px;
    height: 60%;
    z-index: 700;
}
#adressicon{
    height: 100px;
}
.cnticons{
    height: 32px;
    margin-right: 6px;
}
.cntdiv span{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin-bottom: 10px;
}

/*================Legal-Pages================*/
.wrapperlegal{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(251,250,249);
    background: linear-gradient(211deg, rgba(251,250,249,1) 60%, rgba(251,228,220,1) 100%);
}
.legalpage{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.legaltextdiv{
    width: 66%;
    min-width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 40px;
    padding-top: 100px;
}

@media only screen and (max-width: 1500px) {
    .herotextdiv {
        padding-top: 0;
        padding-bottom: 160px;
    }
}
@media only screen and (max-width: 1400px) {
    .servicesdiv{
        align-items: start;
        height: fit-content;
    }
    .service{
        height: fit-content;
        min-height: 400px;
    }
    .testimonialsec{
        height: fit-content;
        min-height: 100vh;
    }
    .testidiv,.testicarousel,.testibox{
        height: fit-content;
    }
    .testibox{
        flex-direction: column;
    }
    .testimonial{
        width: 70%;
        height: fit-content;
    }
}
@media only screen and (max-width: 1300px) {
    h1 {
        font-size: 2.6rem;
    }
    .aboutsection,.aboutdiv,.abouttxtdiv,.servicessection,.solutionboxes{
        height: fit-content;
    }
}

@media only screen and (max-width: 1100px) {
    .aboutdiv {
        flex-direction: column;
        text-align: center;
    }
    .abouttxtdiv{
        text-align: center;
        padding: 8px;
        width: 100%;
        align-items: center;
    }
    .abouttxtdiv p{
        text-align: left;
    }
    .aboutimgdiv{
        height: fit-content;
    }
}
@media only screen and (max-width: 1100px) {
    #heroimg {
        height: 400px;
        right: 20px;
    }
}
@media only screen and (max-width: 1000px) {
    .herotextdiv {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
    h1{
        font-size: 2rem;
    }
    h2,h3{
        font-size: 1.6rem;
    }
    h3{
        font-size: 1.4rem;
    }
    .servicesdiv{
        flex-direction: column;
        align-items: center;
        height: fit-content;
        margin-top: 10px;
    }
    .service{
        width: 80%;
        max-width: 600px;
        height: fit-content;
        margin: 10px;
    }
    .servicessection h2{
        text-align: center;
    }
    .solutionboxes{
        align-items: center;
        justify-content: center;
        text-align: left;
    }
    .contactsection{
        justify-content: start;
    }
    .contactdiv{
        flex-direction: column;
        width: fit-content;
    }
    .adressdiv, .cntdiv{
        width: 100%;
        height: 100%;
        padding: 20px;
        text-align: left;
        align-items: center;
        justify-content: start;
    }
    .adressdiv{
        flex-direction: row-reverse;
    }
}
@media only screen and (max-width: 900px) {
    .wrappermain,.wrapper{
        height: fit-content;
    }
    .servicepage{
        height: fit-content;
    }
    .servicetext{
        text-align: center;
    }
    .servicetilediv {
        grid-template-columns: 1fr; 
        width: 100%;
        height: fit-content;
        align-items: center;
        justify-content: center;
        justify-items: center;
        padding: 4px;
    }
    .servicetile{
        width: 360px;
        height: 240px;
    }
    .btndiv{
        flex-direction: column;
    }
    .herotiteldiv{
        text-align: center;
        padding: 4px;
    }
    .testimonial{
        width: 90%;
    }
    .contacttitle{
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .contactsection{
        min-height: 110vh;
    }
    #heroimg {
        height: 320px;
        right: 20px;
    }
    #portrait{
        height: 300px;
    }
    .footer{
        flex-direction: column;
        height: fit-content;
    }
    p{
        font-size: 1rem;
    }
    .btnfill,.btnoutlined{
        padding: 4px 6px;
        font-size: 1rem;
        margin:10px 4px;
    }
}
@media only screen and (max-width: 400px) {
    #portrait{
        display: none;
    }
    .legallinks{
        flex-direction: column;
    }
}




















































