@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&0display=swap');

/* Reset Style */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* General Style */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #b3b3b3;
}

h1 {
    font-weight: 300;
    font-size: 9rem;
    line-height: 1;
    color: #000;
    font-family: fantasy;
	-ms-transform: skewY(166deg);
    transform: skewY(166deg);
}

/* Logo Style */
.logo {
    color: #e3872d;
    font-weight: 500;    
}


/* Whole Style */
.whole {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px; 
    color: #fff;
    overflow: hidden;
}


/* Position for Img to be visible on all screens*/
.img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-container img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Add Overlay for Img */
.img-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 12%);
}

/* Content Visibility*/
.content {
    z-index: 2;
	background: #ffffff9c;
	width: 50%;
	padding: 40px;
}
.bottom{padding: 20px 0 25px;}
/* Paragraphs */
.content p {    
    font-size: 18px;
}

.content .small {
    font-size: 12px;
}

.content .greece {
    font-size: 14px;
}

.content .greece i {
    color: #800000;
    margin: 0 5px;
}

/* Email Style */
.form {
    overflow: hidden;
}
.form input {     
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.85);
    font-size: 14px; 
	    width:auto;
}
.form textarea {     
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.85);
    font-size: 14px; 
	width: -webkit-fill-available;
    margin: 4px 2px;
}
::placeholder {
    color: #800000;
}
:focus-visible {
    outline: none;
}
/* Button Style */
.btn {
    display: inline-block;
    border: 1px solid #800000;
	 color: #ffffff;
    background-color: #800000;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 15px 0 25px;
}

.btn:hover {
        color: #ffffff;
    background-color: #800000;
}

/* Social Icon Style */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;    
}

.social-icons a {
    color: #fff;    
    font-size: 22px;
    margin: 0 10px;
    padding: 5px 10px;
}

.social-icons a:hover {
    background-color: #fff;
    color: #800000;
    border-radius: 10px;
    transition: 0.3s;
}
.mastfoot {
    position: fixed;
    bottom: 0;
	font-size: 14px;
	width: 100%;
    background: #000;
}
.inner {
    padding: 20px 0;
}
@media screen and (min-width: 1920px) {
 .form textarea {     
    width: 68%;
}    
    
}
@media screen and (max-width: 600px) {
    h1 {
        font-size: 35px;
    }  
    
    .content p {
    font-size: 14px;
    }
    
    .form input {
        padding: 10px;
    }
    
    .btn {
        padding: 5px 15px;
        font-size: 14px;
    }
    
    ::placeholder {
        font-size: 12px;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
}





