* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #272727;
    color: white;
    margin: 0px;
    padding: 0px;
}

html{
    scroll-behavior: smooth;
}

html,
body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    z-index: -10;
}

/* navbar */
.site-header {
    z-index: 10;
    font-family: 'Roboto Condensed', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100vw;
    flex-direction: column;
    position: absolute;
    top: 0;
    max-height: 10vh;
    /* backdrop-filter: blur(10px) brightness(60%); */
    /* overflow-y: hidden; */

}

@media screen and (min-width: 1250px) {
    .site-header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    /* 
    .nav-logo {
        height: 5vh;
    } */


}

.site-header .nav-logo {
    -ms-flex-item-align: start;
    align-self: flex-start;
    /* padding: 10px 5px 5px; */
}

.site-header .nav-logo a img {
    max-width: auto;
    height: 10vh;

}

@media screen and (max-width: 1080px) {
    .site-header .nav-logo a img {
        max-width: auto;
        height: 8vh;
    }
}

.site-header .nav-links {
    display: none;
    width: 100%;
    background-color: #00000000;
}

@media screen and (min-width: 1250px) {
    .site-header .nav-links {
        display: block;
        background-color: #00000000;
    }
}

.site-header .nav-links ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (min-width: 1250px) {
    .site-header .nav-links ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.site-header .nav-links ul li {
    list-style: none;
}

.site-header .nav-links ul li a {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 400;
    color: #f5deb3;
    letter-spacing: 1.2px;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    margin: 30px;
    border-radius: 20px;
    transition-duration: 2s;
}

.site-header .nav-links ul li a:hover {
    transition: all 4s ease-in-out;
    font-size: 30px;
    font-weight: 900;
    color: rgb(255, 255, 255);

    /* box-shadow: #000000 0px 0px 10px; */
}

.site-header button {
    cursor: pointer;
    background: transparent;
    border: none;
    max-width: 50px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
}

@media screen and (min-width: 768px) {
    .site-header button {
        top: 20px;
    }
}

@media screen and (min-width: 1250px) {
    .site-header button {
        display: none;
    }
}

.nav-links.active::before {
    content: "";
    z-index: -1;
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0.5));

}

.nav-links.active {
    position: relative;
    top: 0vh;
    display: block;
    /* box-shadow: #000000 0px 0px 60px 60px; */
    /* background-color: rgba(0, 0, 0, 0.755); */
}


/* banner */

@media screen and (max-width:768px) {
    .banner {

        background: linear-gradient(to top, rgb(0, 0, 0, 0.2) 20%, rgba(0, 0, 0)) url('./promobg.jpg') center no-repeat;
    }
}


.banner {
    display: flex;
    flex-direction: column;
    z-index: -3;
    background-color: #000b26;
    background: linear-gradient(to top, rgb(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4)),
        url('./promobg.jpg') center no-repeat;
    background-size: cover;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    height: 100vh;
    /* overflow-y: hidden; */
}

.banner .banner--content {
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    /* background: url("./assets/svg/soap.svg"); */
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
}

.banner .banner--content .name {
    text-transform: uppercase;
    /* font-size: 40px; */
    font-family: Arial;
    margin: 20px;
}

.banner .banner--content .designation {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .banner .banner--content .designation {
        font-size: 70px;
    }
}

.banner .banner--content .tagline {
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .banner .banner--content .tagline {
        font-size: 26px;
    }
}

.promo::before {
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1000;
    position: absolute;
    top: 0px;
    filter: blur(0px) brightness(50%);
    background: url('./mainbg.jpg');
    background-position: center;
    background-size: cover;
}

.promo {
    /* background-color: #001620; */
    font-family: 'Courier New', Courier, monospace;
    backdrop-filter: blur(50px);

    color: white;
}

.promo .content h2 {
    font-size: 36px;
    padding: 30px;
    /* margin: 20px; */
    font-weight: 300;
    /* color: #222; */
    text-shadow: 0 1px 2px #222;
}

.promo .content p {
    /* font-size: 36px; */
    padding: 30px;
    /* font-weight: 300; */
    /* color: #222; */
    /* text-shadow: 0 1px 2px #222; */
}

@media screen and (min-width: 768px) {
    .promo .content h2 {
        font-size: 70px;
    }
}

.promo .content h2 span.orange {
    font-weight: 700;
}

.promo .content p {
    font-size: 22px;
}

@media screen and (min-width: 768px) {
    .promo .content p {
        font-size: 36px;
    }
}

/* about */
#about .content h2 {
    font-size: 30px;
    font-family: Arial;
    color: #FBFCD4;
    text-align: center;
    margin-bottom: 30px;

}

#about .about-container {

    font-size: 20px;
    color: rgb(255, 255, 255);
    background: #151515;
    display: flex;
    flex-direction: column;
    padding: 30px;

}

@media screen and (min-width: 1200px) {
    #about .about-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

#about .about-container ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

#about .about-container p {
    margin-bottom: 30px;
}

#about .about-container li {
    /* font-style: italic; */
    line-height: 2;
    font-family: Arial, Helvetica, sans-serif;
}


#skill {
    color: rgb(255, 255, 255);
    /*background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%); */
    background-color: #2b2b2b;
    padding: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 50vh; */

}

@media screen and (min-width: 768px) {
    #skill .skill--content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

}

#skill .skill--content .left {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
}

#skill .skill--content .left h2 {
    padding-bottom: 20px;
    font-size: 36px;
}

#skill .skill--content .right {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
    display: block;
}

#skill h3 {
    font-size: 30px;
}

@media screen and (max-width:768px) {
    #skill .skill--content .left h2 {
        padding-bottom: 20px;
        margin-bottom: 50px;
        font-size: 36px;
    }

}

@media screen and (min-width: 768px) {
    #skill .skill--content .right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

#skill .skill--content .right .item {
    font-family: monospace;

    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    text-align: center;
    /* border: 1px solid #222; */
    padding: 30px 15px;
    margin-bottom: 30px;
    border-radius: 30px;
    background: #2b2b2b;
    box-shadow: 11px 11px 22px #111111,
        -11px -11px 22px #454545;
    /* border-width: 5px 5px 5px 5px; */
    /* border-image-slice: 9; */
    /* border-style: solid; */
}

@media screen and (min-width: 768px) {
    #skill .skill--content .right .item {
        margin-bottom: 0;
    }
}

#skill .skill--content .right .item img {
    max-width: 100px;
    height: auto;
}

#service h2 {
    display: block;
    padding: 30px;
    text-align: center;
}

#service .service--content {
    display: block;
}

@media screen and (min-width: 768px) {
    #service .service--content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

#service .service--content .item {
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
    text-align: center;
    border: 1px solid #E9EBEC;
    padding: 20px 10px 40px;
    margin-bottom: 30px;
    -webkit-transition: background-color 0.8s ease-in;
    transition: background-color 0.8s ease-in;
}

@media screen and (min-width: 768px) {
    #service .service--content .item {
        margin-bottom: 0;
    }
}

#service .service--content .item h3 {
    text-transform: uppercase;
    font-weight: 700;
}

#service .service--content .item img {
    max-width: 80%;
    display: block;
    margin: 0 auto;
}

#service .service--content .item p {
    font-style: italic;
    display: block;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px #222;
}

#service .service--content .item a {
    border: 1px solid #7f53ac;
    border-radius: 4px;
    padding: 10px 30px;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.3px;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    background-color: #9921e8;
    background-image: linear-gradient(315deg, #9921e8 0%, #5f72be 74%);
}

#service .service--content .item a:hover {
    background-color: #7f5a83;
    background-image: linear-gradient(315deg, #7f5a83 0%, #0d324d 74%);
    border: #0d324d;
}

#service .item:hover {
    background-color: #DEF0FF;
}

/* portf */
#portfolio {
    color: black;
    z-index: 1;
    background-color: #DEF2F5;
    /* background: url('') center no-repeat; */
    background-size: cover;

    /* background-color: #923cb5; */
    /* background-image: linear-gradient(147deg, #923cb5 0%, #000000 74%); */
}

#portfolio h2 {
    text-align: center;
    /* background-color: #ffffff; */
    /* color: rgba(255, 255, 255, 0.8); */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    display: block;
    padding: 60px;
}

#portfolio .portfolio--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

#portfolio .portfolio--content .item {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    padding: 25px;
    position: relative;
    /* background-color: #; */
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

@media screen and (max-width: 768px) {

    #portfolio .portfolio--content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #portfolio .portfolio--content .item {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        position: relative;
        /* background-color: #; */
        -webkit-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
    }

    .mobh3 {
        margin-bottom: 20px;
        display: block;
    }
}

.mobh3 {
    margin-bottom: 20px;
    display: block;
}

#portfolio .portfolio--content .item h3 {
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

#portfolio .portfolio--content .item img {
    /* box-shadow: #000000 0px 0px 10px; */
    filter: drop-shadow(10px 10px 40px #000000);
    border-radius: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%;
    width: 100%;
}

#portfolio .portfolio--content .item:hover>h3 {
    font-family: 'Times New Roman', Times, serif;

    opacity: 1;
    color: #000000;
}

#portfolio .portfolio--content .item a>img:hover {
    transition: all 0.5s;
    opacity: 0.2;
    /* backdrop-filter: blur(90px); */
}


#cont {
    /* background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%); */
    background-image: url('https://img.freepik.com/free-vector/golden-waves-background_1284-43064.jpg?w=900&t=st=1671022536~exp=1671023136~hmac=0e52f043bfba7441a0a0954a9a06926d8be6bf7af968bc1b7c5c614b3653911b');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('https://images.unsplash.com/photo-1515120138944-8b31a82f995a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
}

.backdrop {
    backdrop-filter: brightness(100%) blur(10px);
}

#contact {
    display: flex;
    flex-direction: row;
    width: 100vw;
    padding-bottom: 40px;
    justify-content: space-evenly;
}

@media screen and (max-width:768px) {
    #contact {
        display: block;
    }

    #contact div {
        margin: 0px;

    }

    #contact .contright {
        align-items: center;
        align-content: center;
        justify-content: center;
        flex-direction: column;
    }

    #contact button {
        margin: 30px 0px;
    }

    .gmap_iframe {
        height: 229px !important;
        width: 361px;
    }
}


#cont h1 {
    padding: 40px;
    font-size: 36px;
    text-shadow: -2px 1px 4px rgba(0, 0, 0, 0.8);
}

#contact div {
    margin: 20px;
}

#cont p {
    text-align: center;
    text-shadow: 5px 1px 4px rgba(0, 0, 0, 1);
    padding: 20px;
}

#contact>div {
    margin: 20px;
}

.contright {
    position: relative;
    right: 0px;
    color: #000;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
    flex-direction: column;
}

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

.contright>a {
    text-decoration: none;
}

.contright a>button {
    max-width: 100%;
    cursor: pointer;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    outline: none;
    border: none;
    text-align: center;
    font-size: 20px;
    box-shadow: black 0px 0px 20px;
    border: 1px solid white;
}

.svgs {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

#call {
    background: rgb(13, 50, 77);
    background: linear-gradient(270deg, rgb(35, 73, 101) 0%, rgb(1, 57, 98) 100%);
    color: white;
}

#whatsapp {
    background: rgb(7, 94, 84);
    background: linear-gradient(270deg, rgb(3, 46, 41) 0%, rgb(7, 108, 96) 100%);
    color: white;
}

#mail {
    background: linear-gradient(-120deg, #102342, #6d1f18);
    color: white;
}

/* CSS */
.button-17 {
    align-items: center;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #3c4043;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1), opacity 15ms linear 30ms, transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    will-change: transform, opacity;
    z-index: 0;
}

.button-17:hover {
    background: #F6F9FE;
    color: #174ea6;
    transform: scale(1.15);
}

.button-17:active {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
}

.button-17:focus {
    outline: none;
    border: 2px solid #4285f4;
}

.button-17:not(:disabled) {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):hover {
    box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.button-17:not(:disabled):focus {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.button-17:disabled {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}


.mapouter {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: right;
    width: 100%;
    height: 400px;
}

.gmap_canvas {
    display: flex;
    justify-content: center;
    background: none !important;
    width: 100%;
}

.gmap_canvas iframe {
    display: block;
    margin: auto 0;
    border-radius: 20px;
}

.gmap_iframe {
    height: 300px !important;
    width: 500px;
}

@media screen and (max-width:768px) {
    .gmap_iframe {
        height: 229px !important;
        max-width: 30opx;
        margin: 20px;
    }
}


