@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
:root {
    --main-color: #697e83;
    --text-color: #fff;
    --dark-color: #000;
    --container-bg-color: gray;
    --left-button-hover-color: rgba(161, 11, 11, 0.3);
    --left-bg-color: rgba(223, 39, 39, 0.7);
    --right-bg-color: rgba(43, 43, 43, 0.8);
    --right-button-hover-color: rgba(92, 92, 92, 0.3);
    --hover-width: 75%;
    --other-width: 25%;
    --speed: 1000ms;
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(#697e83) !important;
    overflow-x: hidden;
    
}

.logo {
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 700;
    color: var(--white-color);
}

* {
    box-sizing: border-box;
}

/* footer*/

footer {
    padding: 2em 0em 0.0em 0em;
    background: black;
    text-align: center;
    color: white;
}

#main-footer {
    padding: 2em;
    background-color: black;
    color: white;
}

header {
    display: grid;
    grid-auto-flow: column;
    width: 100%;
    text-align: center;
    background: #000;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.banner {
    background: url(../Images/LQ--8.jpg);
    height: 100vh;
    background-size: cover;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

/* nav ul - grid */

nav ul li {
    flex: 1;
    margin: 0 .4rem;
    position: relative;
}

nav ul li a {
    display: block;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 1.2rem 1em;
    color: var(--text-color);
    font-weight: bold;
}

/*Configured nav CS grid property*/

.nav-menu {
    width: 100%;
}

nav ul {
    max-width: 1720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

/* Dropdown navigation*/

nav ul li ul {
    position: absolute;
    width: 100%;
    background-color: var(--text-color);
    border: 3px solid var(--dark-color);
    display: none;
    z-index: 10
}

nav ul li ul li a {
    color: var(--dark-color) !important;
    display: block;
    padding: 1rem 0;
}

nav ul li:hover ul {
    display: block;
}

.fa-bars {
    font-size: 1.6rem;
    color: var(--text-color);
    position: absolute;
    top: 1rem;
    right: .5rem;
    width: 2rem;
    z-index: 1;
}

/* Hover effects */

nav ul li a, nav ul li a:after, nav ul li a:before {
    transition: all .5s;
}

nav ul li a:hover {
    color: var(--text-color);
}

nav.menu ul li a {
    position: relative;
}

nav.menu ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--text-color);
    height: 3px;
}

nav.menu ul li a:hover:after {
    width: 100%;
}

/* New */

#toggle, .label {
    display: none;
}

/* Place text in the middle of the image */

.container {
    position: absolute;
    top: 50%;
}

.hero-text {
    position: absolute;
    color: white;
    font-weight: 800;
    bottom: 400px;
    left: 150px;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    text-align: center;
}

.container h1 {
    font-size: 75px;
    letter-spacing: 0.2em;
}

/* Camera Work slider*/

body, #slider, .wrap, .slide-content {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.wrap {
    position: relative;
}

.slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide1 {
    background-image: url(../Images/Banner1.JPG);
}

.slide2 {
    background-image: url(../Images/Banner2.jpg);
}

.slide3 {
    background-image: url(../Images/Banner3.jpg);
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide-content span {
    font-size: 5rem;
    color: white;
    border: black solid;
}

.arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -35px;
    width: 0;
    height: 0;
    border-style: solid;
}

#arrow-left {
    border-width: 30px 40px 30px 0;
    left: 0;
    margin-left: 30px;
    border-color: transparent #fff transparent transparent;
}

#arrow-right {
    border-width: 30px 0 30px 40px;
    right: 0;
    margin-right: 30px;
    border-color: transparent transparent transparent #fff;
}

.button {
    transition: .3s all ease;
    padding: 30px 30px;
    margin-top: 10em;
    text-transform: uppercase;
    letter-spacing: .5em;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 2rem;
}

/*Index page Grid */

.img1 {
    display: block;
    width: 100%;
    height: auto;
}

h1, h2, h3 {
    margin: 0;
    padding: 1em 0;
}

p {
    margin: 0;
    padding: 1 0em;
}

#section-a .content-wrap {
    padding: 0 1.5em;
}

.content-wrap {
    padding: 0 1.5em;
}

/* section a*/

#section-a {
    background-color: #eaeaea;
    color: black;
    padding-bottom: 2em;
}

/*section b*/

#section-b {
    padding: 2em 1em 1em;
}

#section-b ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#section-b-li {
    margin-bottom: 1em;
    background: #fff;
    color: #333;
}

.card-content {
    padding: 1.5em;
}

/*section c*/

#section-c {
    background: #fff;
    color: black;
    padding: 2em;
}

/*section D / Boxes */

#section-d .box {
    padding: 2em;
    color: white;
}

#section-d .box:first-child {
    background: #2690d4;
}

#main a {
    color: black;
    text-decoration: none;
    font-size: large;
    font-weight: 100;
    border: solid black;
}

/*Image gallery natural world*/

body {
    margin: 20px;
    padding: 0;
    background-color: #fff;
}

.container2 {
    max-width: 760px;
    margin: auto;
    border: #fff solid 3px;
    background: #fff;
}

.main-img img, .imgs img {
    width: 100%;
}

.imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
}

/* fade in animation*/

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1 forwards;
}

/* form*/

.body {
    background-color: gray;
    color: white;
    line-height: 1.6;
    padding: 1em;
}

.container3{
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
    
}

ul {
    list-style: none;
    padding: 0;
}

.brand {
    text-align: center;
}

.band span {
    color: black;
}

.wrapper {
    box-shadow: 0 0 20px 0 rgba(72, 94, 116, 0.7);
}

.wrapper>* {
    padding: 1em;
}

.company-info {
    background-color: black;
}

.company-info h3, .company-info ul {
    text-align: center;
    margin: 0 0 1rem 0;
}

.contact {
    background: var(--main-color);
}

/* form styles*/

.contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.contact form label {
    display: block;
}

.contact form p {
    margin: 0;
}

.contact form .full {
    grid-column: 1 / 3;
}

.contact form button, .contact form name, .contact form textarea {
    width: 100%;
    padding: 1em;
    border: 1px solid black;
}

.contact form button {
    background: black;
    color: white;
    border: 0;
    text-transform: uppercase;
}

.contact form button:hover, .contact form button:focus {
    background: lightblue;
    color: black;
    outline: 0;
    transition: background-color 2s ease-out;
}

/*LARGE screens*/

@media(min-width: 700px) {
    .wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
    .wrapper>* {
        padding: 2em;
    }
    .company-info h3, .company-info ul, .brand {
        text-align: left;
    }
}

;
/* Light Box*/

.grid {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    align-content: center;
    grid-gap: 15px;
    height: 100vh;
    background: cover;
}

.grid img {
    width: 200px;
    height: 200px;
    cursor: pointer;
}

#lightbox {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    display: none;
}

#lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    padding: 4px;
    background-color: black;
    border: 2px solid white;
}

/* videography page*/

a {
    text-decoration: none;
    color: white;
}

.h1 {
    font-weight: 300;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.showcase {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: gray url(Media/videobackground.png) no-repeat center center/cover;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    z-index: 10;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: gray;
    color: white;
    border: 1px white solid;
    margin-top: 25px;
    opacity: 0.7;
}

.btn:hover {
    transform: scale(0.98);
}

#about {
    padding: 40px;
    text-align: center;
}

#about p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}

#about h2 {
    margin: 30px 0;
    color: black;
}

.social a {
    margin: 0 5px;
    letter-spacing: 5px;
}

/*About*/

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

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

.about-pages {
    width: 50%
}

.about-pages div {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: black;
}

.about-pages div>p {
    width: 80%;
    font-size: 18px;
    line-height: 30px;
}

.about-pages div:nth-child(1) {
    background-color: gray;
}

.about-pages div:nth-child(2) {
    background-color: gray;
}

.about-pages div:nth-child(3) {
    background-color: gray;
}

/* Contact*/

.container5 {
    width: 880px;
    height: 600px;
    background: #fff;
    margin: 50px auto;
    box-sizing: border-box;
    padding: 40px;
    box-shadow: 0 0 20px rgba(72, 98, 85, 0.6);
}

.container5 p {
    text-transform: uppercase;
    text-align: center;
    font-size: 45px;
    margin-bottom: 20px;
    color: black;
    letter-spacing: 1px;
}

.name, .msg .area {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 25px;
    border: 2px solid;
    font-size: 14px;
    border-radius: 5px;
    outline: none;
    transition: all 0.5s ease;
}

.login {
    width: 48%;
    float: left;
    margin-right: 4%;
}

.login .input:last-child {
    margin-right: 0;
}

.msg .area {
    height: 200px;
}

/* .btn {
    width: 250px;
    height: 250px;
    background: gray;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 5px;
} */

.input:focus, .msg .are:focus {
    border: 2px solid;
}

/* Media Quaries*/

@media(min-width: 700px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
    }
    #section-a .content-text {
        columns: 2;
        column-gap: 2em;
    }
    #section-a .content-text p {
        padding-top: 0;
    }
    .content-wrap, #section-b ul {
        grid-column: 2/4;
    }
    .box, #main-footer div {
        grid-column: span 2;
    }
    #section-b ul {
        display: flex;
        justify-content: space-around;
    }
    #section-b li {
        width: 31%
    }
}

/*skills bar*/

.bar{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.skills {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;


}

.skill-name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 0;
}

.skill-bar {
    height: 20px;
    background-color: #cacaca;
    border-radius: 8px;
}

.skill-per{
    height: 20px;
    background-color: #0fbcf9;
    border-radius: 8px;
    width: 0;
    transition: 1s linear;
    position: relative;
}

.skill-per::before {
    content: attr(per);
    position: absolute;
    padding: 4px 6px;
    background-color: black;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    top: -35px;
    right: 0;
    transform: translateX(50%);
}

.skill-per::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: black;
    top: -16px;
    right:0;
    transform: translateX(50%) rotate(45deg);
    border-radius: 2px;
}

.bar{
width: 40%;
position: absolute;
top: 50%;
left: 50%;

}

/* Updated contact form*/

