body{
    font-family: 'Work Sans', sans-serif;
    font-size:20px;
    font-weight: 500;
    height: 100vh;
    overflow:hidden;
    padding: 0;
}

p{
    margin:0;
    padding: 2px;
}

h1,h2,h3,h4{
    padding-bottom:40px;
    margin:0;
}

h1{
    font-size: 3.5rem;
    line-height: 2.2rem;
}
h2{
    font-size: 2.5rem;
    line-height: 1.6rem;

}
h3{
    font-size: 1.8rem;
    line-height: 1.4rem;

}
h4{
    font-size: 1.5rem;
    line-height: 1.5rem;
}

sup{
    font-size: 0.5em;

}

a{
    color:black;
}

a:hover, a:active,
h1:hover, h2:hover, h3:hover, h4:hover{
    color: #c32033;
    cursor: pointer;
}


.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.phone > a,
.address > a{
    text-decoration: none;
}

.logo img{
    transition: transform 0.3s ease;
}

.logo:hover img{
    transform: scale(1.2);
}

/******** DESKTOP *********/

.desktop{
    padding: 4px;
    position: relative;
    max-width: 1920px;
    margin: 0;
    
}

.desktop > .main-paragraph{
    font-size: 1.45vw;
    text-align: justify;

}

.desktop > .logo{
    position: absolute;
    top:4px;
    left:4px;
    z-index: 1;
}

.desktop > .logo > img{
    height: auto;
    width: 10.2vw;
}

.desktop > .information{
    padding: 20px 0;
}

.desktop .company-name{
    float: left;
}

.desktop .contact-info{
    float:right;
    text-align: right;
    color: black;
}

.desktop .contact-info > .phone{
    font-size: 1.5rem;
    font-weight: bold;
}

.desktop > .social{
    float: right;
    text-align: right;
}

.desktop > .social > *{
    line-height: 2.5rem;
}

/******** END DESKTOP *********/

/******** MOBILE *********/

.mobile{
    padding: 20px;
    position: relative;
    margin: 0;
    width: 90%;
    height: 70%;
    box-shadow: 0px 5px 10px 0px #ed8793;
    margin-top: -12px;
}

.mobile h1{
    font-size: 3.2rem;
}

.mobile h2{
    font-size: 2rem;
    line-height: 0.5rem;
}

.mobile .logo{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

.mobile .logo img{
    max-height: 500px;
}



.mobile > .information{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0 auto;
}

.mobile > .information > .header{
    max-width: 302px;
    text-align: center;
}

.mobile >  .information > .header > h2{
    text-align: right;
}

.mobile .phone{
    font-weight: bold;
    font-size: 2.5rem;
}

.mobile .address{
    font-size: 1.4rem;
}

.mobile > .information > .footer{
    text-align: right;
    width: 100%;
}

.mobile > .information > .footer > *{
    font-size: 1.4rem;
    margin: 4px 0;
}

.mobile.tapped .logo img{
    transform: scale(1.1);
}

/******** END MOBILE *********/

/******** RESPONSIVE *********/

@media (max-width:650px){
    .desktop{
         display:none;
    }
	
	body{
	    align-items: normal;
		padding-top: 20px;
	}
}

@media (min-width:651px){
    .mobile{
         display:none;
    }
}

@media (min-width:1921px){
    .desktop > .main-paragraph{
        font-size: 28px;
    }

    .desktop > .logo > img{
        width: 200px;
    }
}

@media screen and (max-height: 600px){
	.desktop{
	   padding: 20px;
	}
	
	.desktop > .main-paragraph{
		display:none;
	}
	
	.desktop > .logo {
		top: 20px;
		left: 10px;
	}
	
	body{
	   height: auto;
	}
	
	
}

/******** END RESPONSIVE *********/


/******** ANIMATIONS *********/

/* Set the initial state of the elements */
.desktop,
.main-paragraph,
.logo,
.information,
.social {
  opacity: 0;
}

/* Apply the fade-in animation to specific elements */
.desktop,
.main-paragraph,
.logo,
.information,
.social {
  animation: fade-in 1s ease-in-out forwards;
}

/* Apply fade-in animation to elements */
@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

/******** END ANIMATIONS *********/