*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Arial, Helvetica, sans-serif;
    background-image: linear-gradient(hsl(166, 52%, 23%), rgb(81, 114, 91));
}
header{
    display: block;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    background-image: linear-gradient( rgb(235, 255, 235), rgb(245, 255, 212), rgb(196, 255, 144));
    color: #14260d
}

section{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 100px;
    color: #fff;
}

.background-vid{
    z-index: 111;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-title{
    font-size: 6vw;
    margin-bottom: 50px;
}

.content{
    position: relative;
    width: 1150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .image {
    position: relative;
    display: flex;
    width: 1000px;
    height: 400px;
    justify-content: center;
    align-items: center;
    height: 250px;
    overflow: hidden
}

.content .image img{
    z-index: 111;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.responsive {
    width: 300%;
    height: auto;
}

.content .text-b{
    z-index: 222;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 20px;
    max-width: 750px;
    height: 600px;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-50px, -70px);
}

a{
    position: relative;
    background: #bff8bf;
    color:#14260d;
    text-decoration: none;
    text-transform: uppercase;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 75px;
    padding: 10px 20px;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-1-1);
    border-radius: 10px;
    transition: 0.5s;
}
a::before{
    content: "";
    background-color: #ffffff;
    position: absolute;
    display: block;
    margin: left;
    height: 3px;
    width: 0px;
    left: 0;
    bottom: -0.3rem;
    transition: 0.3s ease-in-out;
}

a span {
    position: relative;
    z-index: 1;
}

a:hover{
    color: #1b5317;
    background: var(--clr);
    letter-spacing: 0.25em;
    box-shadow: 0 0 35px #74e96c;
}
a:hover:after{
    width: 100px;
}
a2{
    position: relative;
    background: #f7fff7;
    color:#14260d;
    text-decoration: none;
    text-transform: uppercase;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 75px;
    padding: 10px 20px;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-1-1);
    border-radius: 10px;
    transition: 0.5s;
}
a2::before{
    content: "";
    background-color: #ffffff;
    position: absolute;
    display: block;
    margin: left;
    height: 3px;
    width: 0px;
    left: 0;
    bottom: -0.3rem;
    transition: 0.3s ease-in-out;
}

a2 span {
    position: relative;
    z-index: 1;
}

a2:hover{
    color: #1b5317;
    background: var(--clr);
    letter-spacing: 0.25em;
    box-shadow: 0 0 35px #74e96c;
}
a2:hover:after{
    width: 100px;
}
header h1 {
    font-size: 30px;
    margin-bottom: 75px;
    color:white;
}
header p {
    font-size: 22px;
}
main{
    width: 90vw;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: calc(100vh - 211px - 58px);
    color: white;
}
article {
    background-image: linear-gradient(hsla(147, 44%, 57%, 0.958), rgba(143, 224, 143, 0.785), rgba(85, 212, 85, 0.785));
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
article:last-child {
    margin-bottom: 0;
}
article h3 {
    margin: 10px 0 25px 0;
}
article p {
    margin-top: 16px;
    line-height: 24px;
}
footer {
    text-align: center;
    background-image: linear-gradient(rgb(196, 255, 144), rgb(245, 255, 212), rgb(235, 255, 235));
    color: #14260d;
}
footer p{
    text-align: center;
    color:#14260d;
}

#container{
    display: flex;
}

#container img{
    margin-right: -70px;
}

.flex-box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.article .card {
    display: flex;
    width: 300px;
    background: goldenrod;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.option {
    display: left;
    margin: 10px 5px;
}

.option option {
    display: center;
    outline: none;
    border: none;
    font-weight: bold;
    padding:3px 5px;
    color:black;
}
::placeholder{
    font-weight: bold;
    color:black;

}

button{
    background-color: rgb(160, 255, 117);
    outline: none;
    border: none;
    font-weight: bold;
    padding: 3px 15px;
    margin: 10px 100px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    cursor: pointer;
}

button:hover{
    background-color: rgb(219, 255, 185);
}

.userTable {
    margin: auto;
    width: 60%;
    font-family: Arial, Helvetica, sans-serif;
    }
    
    .userTable  td, .userTable  th {
    border: 1px solid rgb(121, 115, 115);
    padding: 2px;
    }

    .userTable  th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align:center;
    background-color: rgb(87, 84, 84);
    color: white;
    }


section-title{
    font-size: 3vw;
    margin-bottom: 80px;
}

services-title{
    font-size: 3em;
    margin-bottom: 20px;
    display: flex;
}

info-t{
    font-size: 1.8em;
    margin-bottom: 10px;
}

.info{
    width: 500px;
    margin-left: 50px;
}

.sec-03{
    margin-bottom: 80px;
}

.sec-03 image{
    position: relative;
    display: flex;
    width: 1000px;
    height: 400px;
    justify-content: center;
    align-items: center;
    height: 250px;
    overflow: hidden
}

service-table{
    text-align: center;
}

.work__link {
    display: block;
    width: 320px;
    margin-top: 5px;
    margin-left: auto;
    padding: 18px 0;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: darkgreen;
    letter-spacing: 4px;
    border: 2px solid var(--color-1-1);
    border-radius: 20px;
    transition: .4s;
}

.work__link:hover {
    background: var(--color-1-1);
    color: whitesmoke;
    letter-spacing: 6px;
}
 

.section-body{
    display: flex;
    align-items: center;
}

.section-text{
    padding: 5vw;
}

.section.active .section-img-inner{
    opacity: 1;
    background-position: 50% 50%;
    filter: blur(0);
} 

.about{
    height: 130vh;
    display: flex;
}

.about-title{
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.about-pages{
    width: 50%;
}

.about-pages div{
    height: 10vh;
    display: flex;
    flex-direction: column;
}

.about-pages div> p{
    width: 80%;
}

.about-pages div:nth-child(1){
    background-color: rgb(33, 95, 59);
}

.about-pages div:nth-child(3){
    background-color: rgb(33, 95, 59);
}

.wrapper {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container2 {
    height: 100px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.card {
    height: 200px;
    width: 100px;
    border-radius: .75rem;
    background-size: cover;
    color: black;
    background-color: #bff8bf;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

.card > .row {
    color:white;
    display: flex;
    flex-wrap: nowrap;
    background-color: rgba(128, 128, 128, 0.415);
}

.card > .row > .icon {
    background: rgb(33, 189, 18);
    color: rgb(188, 250, 146);
    border-radius: 30%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.card > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 90px;
    width: 550px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .7s;
    transition: all .7s ease;
}

.description p{
    color: #dfdfeb;
}

.description h4 {
    text-transform: uppercase;
    font-size: 2.6vw;
}

input {
    display: none;
}

input:checked + label {
    width: 600px;
}

input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c1"] {
    background-image: url('./spaceships_render.png')
}
.card[for="c2"] {
    background-image: url('./watch_render.png')
}
.card[for="c3"] {
    background-image: url('./palmtree_hills.png')
}
.card[for="c4"] {
    background-image: url('./new3d_house2.png')
}

.contactform{
    background-color:#bff8bf;
    box-shadow:rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form{
    margin: 35px;
}

.inputfield{
    width: 400px;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
}
@media only screen and (min-width: 375px) {
    .clear_underline{
        text-decoration:none;
        display: block;
    }

    .text-b{
        width:220px;
    }

    .work_link{
        text-decoration:none;
        display: block;
    }

    .section-title{
        justify-content: center;
    }
    
}

@media only screen and (min-width: 1000px) {
    .clear_underline{
        text-decoration:none;
    }

    .sec1{
        display:block;
        justify-content: center;
    }

    .contactform{
        width:650px;
    }

}

@media only screen and (min-width: 1000px) {
    .description h4{
        font-size:20px;
    }

}

.videoplayer{
    aspect-ratio: 16 / 9;
    width: 100%;
}

