@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --prime-color: #005151;
    --second-color: #ffbf3e;
    --white-clor: #fff;
    --black-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(83, 174, 167) 100%);
    position: relative;
}

button {
    width: 200px;
    height: 50px;
    border-radius: 20px;
    cursor: pointer;
    background-color: var(--second-color);
    color: var(--prime-color);
    font-size: 20px;
    border: none;
    font-weight: 500;
    transition: .3s;
}

button i {
    color: var(--prime-color);
}

button:hover {
    box-shadow: 0 3px 3px var(--prime-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 7%;
    height: 68px;
    color: var(--prime-color);
    z-index: 999 !important;
    position: fixed;
    background: #ffbf3e00;
    width: 100%;
}

ul {
    display: flex;
    gap: 20px;
}

ul li a {
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 20px;
    transition: .3s;
    font-size: 20px;
    font-weight: 500;
    color: var(--prime-color);
}

ul li:last-child {
    display: none;
}

ul li a:hover {
    box-shadow: 0 3px 3px var(--second-color);
    /* background-color: var(--prime-color); */
}



.logo img{
    position: relative;
    width: 152px;
    top: 6px;
}








.bars {
    display: none;
}

.contact_me {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.contact_btn i {
    background-color: var(--prime-color);
    color: var(--second-color);
    font-size: 30px;
    display: flex;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.contact_btn a {
    font-size: 20px;
    color: var(--prime-color);
}

.contact_me button i {
    font-size: 27px;
    margin: 0 10px;
}

.hero_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 8%;
    width: 100%;
    /* height: 90vh; */
}

.content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    color: var(--prime-color);
    z-index: 1;
}

.content h2 {
    font-size: 20px;
    font-weight: 500;
}

.content h1 {
    font-size: 80px;
    line-height: 108px;
}

.content h1 span {
    color: var(--second-color);
}

.content p {
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    width: 80%;
}

.hero_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.hero_btn a {
    color: var(--prime-color);
    font-size: 20px;
    letter-spacing: 1px;
    position: relative;
}

.hero_btn a:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--prime-color);
}

.hero_img {
    width: 50%;
    height: 50%;
    z-index: 1;
}

.hero_img img {
    /* object-fit: contain; */
    width: 100%;
    height: 100%;
    position: relative;
    top: 77px;
    margin-bottom: -53px;
}

.img_element1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 45% !important;
    height: 45% !important;
    z-index: -1;
}

.img_element2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 20% !important;
    height: 50% !important;
    z-index: -1;
}

.img_element3 {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    width: 100px !important;
    height: 100px !important;
    z-index: -1;
}

@media (max-width:1600px) {
    .hero_header {
        padding: 8% 8%;
    }
}

@media (max-width:1400px) {
    .contact_btn {
        display: none;
    }
}

@media (max-width:1150px) {
    .contact_me {
        display: none;
    }
}

@media (max-width:1000px) {
    .bars {
        display: block;
        font-size: 20px;
        background-color: var(--prime-color);
        color: var(--second-color);
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 9px;
    }
    ul {
        position: absolute;
        top: 100%;
        left: 0;
        padding: 5% 8%;
        flex-direction: column;
        background-color: var(--prime-color);
        width: 0%;
        gap: 50px;
        opacity: 0;
        transition: .3s;
    }
    ul li a {
        color: var(--second-color);
    }
    ul li:last-child {
        display: flex;
    }
    ul li button:hover {
        background-color: var(--prime-color);
        color: var(--second-color);
        box-shadow: 0 3px 3px var(--second-color);
    }
    .Show_menu {
        margin-left: 8px;
        border-radius: 7px;
        width: 96%;
        opacity: 1;
    }
    .hero_header {
        flex-direction: column-reverse;
    }
    .content {
        width: 100%;
        height: 100%;
        margin: 50px 0;
    }
    .content h1 {
        line-height: 90px;
    }
    .hero_img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width:500px) {
    .content h1 {
        font-size: 50px;
        line-height: 60px;
    }
}





.animation span{
    position: absolute;
    top: 0;
    left: 20%;
    min-height: 100%;
    width: 1px;
    background-color: rgba(223, 20, 20, 0.05);
}

.animation span:nth-child(2){
    left: 40%;
}

.animation span:nth-child(3){
    left: 60%;
}
.animation span:nth-child(4){
    left: 80%;
}