@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,800;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,700;1,300;1,500;1,700&family=Rubik:ital,wght@0,400;0,500;0,800;1,500&display=swap');
:root {
    --main-color:#28666e;
    --primary-color: #047aed;
    --secondary-color: #fff;
}
body{
    background-color: var(--main-color);
    color:var(--secondary-color);
    margin: 0;
    padding: 0;
    font-family: poppins;
    overflow: visible;
}
* {
    box-sizing: border-box;
    line-height: 1.8;
}
/* Major styling */
ul {
    list-style: none;
}
input {
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    border-width: 100%;
    margin: 20px 0;
    padding: 10px;
    background: none;
}
input::placeholder,
textarea::placeholder{
    padding-left: 2%;
    color: var(--secondary-color);
}
input:focus,
textarea:focus {
    outline: none;
    color: #fff;
}
textarea{
    max-height: 200px;
    max-width: 100%;
    width: 100%;
    background: none;
    border: 0;
    border: 1px solid var(--secondary-color);
}
a {
    color: inherit;
   text-decoration: none; 
}
h3 {
    /* background-color: #fff; */
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 20px 0;
}
.btn {
    font-family: poppins;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 16px;
    border: none;
    background: var(--main-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
}
.dark {
    background-color: var(--main-color);
    width: 100%;
    height: 50px;
    margin: 0 auto;
    border-radius: 3px;
    margin: 20px 0;
    text-align: center;
}
/* HOVERS */
nav ul li:hover {
    color: var(--primary-color);
}
i:hover {
    transform: scale(1.3);
}
/* Header */
.bars i {
    display: none;
}
header{
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    margin: 0 auto;
    font-weight: 800;
    text-transform: uppercase;
    /* font-family: inhe; */
}
nav ul{
    display: flex;
    margin-right: 10px;
}
 nav ul li {
    display: flex;
    margin: 10px;
    font-size: 20px;
    transition: 0.5s ease-in-out;
}
/* Showcase area */
.bg-img-wrap {
    background-image: linear-gradient(rgba(0, 0, 0, 0.678), rgba(10, 10, 10, 0.63), rgba(39, 38, 38, 0.685)),url(./img/Picture1.jpg);
    height: 60vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* z-index: -2; */
    position: relative;
}
.bg-img-text {
    color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; */
}
.bg-img-text h2 {
    font-size: 30px;
    letter-spacing: 5px;
}
.bg-img-text p {
    font-size: 20px;
}
/* Our containers */
.service {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
}
.box-wrap{
    display: flex;
    justify-content: space-around;
}
.box-wrap>div {
    background-color:var(--main-color);
    width: 30%;
    height: 30%;
    /* margin: 0 auto; */
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    flex-wrap: wrap;
    font-size: 18px;
    box-shadow: -3px -3px 2px var(--primary-color);
}
/* About us */
.about_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5% 0;
}
.about_img img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 30px;
}
.about_text {
    width: 80%;
    padding: 20px;
    /* text-align: justify; */
}
.about_text h3 {
    margin: 20px;
    border-bottom: 3px solid var(--primary-color);
    border-width: 50%;
}
/* COntact area */
.contact_us {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.contact_box_1 {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 47%;
    padding: 20px;
    border-radius: 10px;
}
.contact_box_2 {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
    border-radius: 10px;
    width: 47%;
    padding: 30px;
}
.shortcut-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
}
.shortcut-wrap i {
    font-size: 30px;
    margin: 0 10px;
    transition: 0.7s ease-in-out;
}
/* Footer */
footer {
    display: flex;
    justify-content: center;
}

/* RESPONSIVENESS */
@media(max-width:768px) {
    * {
        font-size: 16px;
    }
    nav ul li,
    nav ul button {
        display: none;
    }
    h3 {
        border-bottom: 5px solid var(--primary-color);
        padding-bottom: 20px;
    }
    .bars i {
        display: flex;
        align-items: center;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
    .box-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    .box-wrap>div {
        width: 100%;
        padding: 20px;
        box-shadow: none;
    }
    .about_img {
        display: none;
    }
    .about_text {
        width: 100%;
    }
    .about_wrap {
        width: 100%;
    }
    .contact_us {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }
    .contact_us>div {
        width: 100%;
        margin: 20px 0;
    }
    .dark {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
    }
    .about_text h3 {
        margin: 0;
        padding: 0;
        width: 100%;
        /* background-color: yellow; */
    }
}
