* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Avenir', 'Poppins', 'sans-serif';
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
}
/*code to change background color*/
.navbar-nav>.active1>a {
    color: #bf4848;
}
#header-graphic {
    width: 100%;
    height: 100vh;
    background-image: url(/images/Graphic_design/GD-Banner.png) !important;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #bf4848;
    margin-bottom: 4vh;
}


.container {
    padding: 10px 10%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    height: 100px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;

}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0%;
    height: 3px;
    background: #bf4848;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-text {
    margin-top: 15%;
    font-size: 30px;
}

.header-text h1 {
    margin-top: 20px;
    font-size: 60px;
}

.header-text h1 span {
    color: #bf4848;
}

#side-menu {
    z-index: 2;
}

.myPhoto {
    position: relative;
    left: 43%;
    height: 65vh;
    transform: translate(50%, -70%);
}

/* ----------------------------contact--------------------------- */

.contact-left {
    flex-basis: 35%;
}

.contact-right {
    flex-basis: 60%;
}

.contact-left p {
    margin-bottom: 10px;
}

.contact-left p i {
    color: #bf4848;
    margin-right: 10px;
    font-size: 25px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    text-decoration: none;
    margin-right: 20px;
    font-size: 25px;
    color: #cccccc;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover {
    color: #bf4848;
    transform: translateY(-5px);
}

.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #bf4848;
    padding: 14px 50px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
    background: none;
    cursor: pointer;
}

.btn:hover {
    background: #bf4848;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #bf4848;
}

.btn.btn2 {
    display: inline-block;
    background: #bf4848;
}

.contact-right form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #474747;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* -----------------------footer----------------------------- */
#footer {
    background: #181818;
    width: 100%;
    padding: 10px 10px;
    /* display: flex;
    justify-content: space-between; */
    text-align: center;
}


#msg {
    color: #088f13;
    margin-top: -40px;
    display: block;
}

/* ---------------------------------modal box--------------------------- */
/* Styling for the popup container */
.popup .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a1;
    z-index: 1;
}

.popup .content h2 {
    text-align: center;
    color: #bf4848;
}

.popup .content h3 {
    text-align: left;
    color: #bf4848;
    margin-top: 10px;
}

.popup .content h3::after {
    content: '';
    width: 0%;
    height: 3px;
    /* background: #ff004f; */
    background: #bf4848;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

.popup .content .paragraph {
    text-align: left;
    margin-left: 28px;
}

/* Styling for the popup box */
.popup .content {
    position: absolute;
    /* top: 10%; */
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    height: 80vh;
    padding: 40px;
    background-color: #141414;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    z-index: 2;
    color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: auto;
}

.popup .content-box {
    width: 100%;
    height: 98%;
    overflow: auto;
}

/* Styling for the close button */
.popup .close-btn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
}

.popup.active .overlay {
    display: block;
}

.popup.active .content {
    transition: all 800ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}

.tob-bar {
    background: #474747;
}

.softwares {
    background-color: transparent !important;
    padding: 10px 0px !important;
}

.softwares span img {
    height: 25px;
    padding: 0 16px 0 0;
}

.softwares span i {
    height: 40px;
    padding: 0 16px 0 0;
    font-size: 30px;
    color: #cccccc;
    margin-bottom: 0 !important;
}


/* ---------------------------responsive codes--------------------------- */

nav .fas {
    display: none;
}

@media only screen and (max-width:900px) {
    nav .fas {
        display: block;
        font-size: 25px;
    }

    nav ul {
        background: #bf4848;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    .logo {
        height: 6vh;
    }

    /*#header {*/
    /*    width: 100%;*/
    /*    height: 50vh;*/
    /*    background-image: url(/images/Graphic_design/GD-Banner.png) !important;*/
    /*    background-size: 100%;*/
    /*    background-repeat: no-repeat;*/
    /*    background-position: top;*/
    /*    border-bottom: 2px solid #bf4848;*/
    /*    margin-bottom: 4vh;*/
    /*    background-position-y: 12vh;*/
    /*}*/

    .sub-title {
        font-size: 7vw;
    }

    .contact-left p {
        display: flex;
    }

    .contact-left p i {
        font-size: 3vw;
    }

    .sub-title {
        font-size: 7vw;
    }

    .contact-left {
        margin: auto;
    }

    .btn2 {
        width: 100%;
        text-align: center;
    }

    .contact-right form {
        width: 80vw;
    }

    .social-icons {
        text-align: center;
    }

    .slideshow-container {
        margin: 0 10vw !important;
    }
}


/* -------------------------------------- */
/* -------------UI/UX Page--------------- */
/* -------------------------------------- */

#header-UI-UX {
    width: 100%;
    height: 100vh;
    background-image: url(/images/case-study-header.jpg);
    background-size: cover;
    background-position: center;
}

/* ------------------------case study------------------- */

.case-study-name {
    text-align: center;
    position: relative;
    bottom: 30px;
    background-image: url(images/112.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.case-study-name p {
    width: 70%;
    margin: auto;
}

.bl-logo {
    margin: 10px;
}

.bl-logo img {
    width: 150px;
}

/* #problem-statement{
    background-image: url(images/112.gif);
    background-size: cover;
    background-position: center;
} */
.container-box {
    background: #8080802e;
    width: 90%;
    margin: auto;
    border-radius: 15px;
}

.statement {
    text-align: center;
    /* width: 50%; */
    margin: auto;
}

.statement-row {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.statement-col {
    flex-basis: 100%;
}

.statement-col h4 {
    padding: 20px 0px 5px 0px;
    text-align: center;
}

.statement-col ul li {
    padding-top: 10px;
}

.statement-col ul li::before {
    content: "\2022";
    color: #bf4848;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.statement-col ul li::marker {
    color: transparent;
}

.statement h3,
.statement-col h4 {
    color: #bf4848;
}

.detail-conatiner {
    width: 100%;
    min-height: 900px;
    position: relative;
    margin: 100px auto 20px auto;
    overflow: hidden;
}

.btn-box {
    display: flex;
    border-bottom: 1px solid #474747;
    justify-content: space-between;
}

.btn-box button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px 40px;
    margin-right: 14px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.content-box {
    position: absolute;
    transform: translateX(200%);
    transition: .3s;
    padding: 2% 8%;
}

.content-box h2 {
    padding: 10px 0px;
    font-size: 20px;
}

.content-box h2 i {
    color: #bf4848;
}

.content-box p,
.content-box .tab-div {
    padding: 0px 20px;
}

#tab1 {
    transform: translateX(0%);
}

#btn-1 {
    background: #bf4848;

}

#btn-1,
#btn-2,
#btn-3,
#btn-4,
#btn-5,
#btn-6,
#btn-7 {
    border-radius: 8px 8px 0px 0px;
}


/* ------------------------------------carousel-------------------------------------- */
.mySlides {
    display: none
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    margin-top: 3vh;
    border: 2px solid #bf4848;
    padding: 10px;
    border-radius: 10px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #252525;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #bf4848;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

/* -------------------------scroll to top btn---------------------- */

#btnScrollToTop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #bf4848;
    box-shadow: 0 0 10px #18181848;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    z-index: 2;
}

#btnScrollToTop:hover {
    background: #852323;
}



/* ----------------------------web-page--------------------- */

.imgs {
    width: 80%;
    margin: 40px auto;
    border: 2px solid #bf4848;
    padding: 15px;
    border-radius: 15px;
}

.imgs img {
    width: 100%;
}


/* ----------------------------------loader------------------------------------ */

.content-section{
    display: none;
}

.loader{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #000;
    position: absolute;
}
.loader>div{
    height: 100px;
    width: 100px;
    border: 15px solid rgb(59, 59, 59);
    border-top-color: #bf4848;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
}

@keyframes spin{
    100%{
        transform: rotate(360deg);
    }
}