* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: montserrat;
}

:root {
    --main-color: #B99F46;
    --bg-color: #000000;
    --bg-color: #171717;
    --para-color: #504e4d;
    --line-color: rgb(176, 176, 176);
    --p-text-color: rgb(162, 161, 161);
}

.main {
    padding: 100px 0px;
    width: 80%;
    margin: auto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.heading {
    font-size: 40px;
    margin: auto;
    width: max-content;
    font-weight: 400;
}

.line {
    width: 100%;
    height: 2px;
    margin: 20px auto 20px auto;
    background-color: var(--line-color);
}

/* header */
.top-bar {
    font-family: var(--main-font);
    width: 100%;
    height: 30px;
    background-color: #000000;
}

.top-bar div {
    display: flex;
    justify-content: space-between;
}

.top-bar .header {
    margin: auto;
    width: 80%;
    padding: 5px 0px;
}

.top-bar .header .contact {
    width: fit-content;
    font-size: small;
    color: rgb(191, 189, 189);
}

.top-bar .header .social a {
    color: rgb(156, 156, 156);
    padding: 0px 5px;
    height: 22px;
    font-size: 15px;
}

.top-bar .header .search-box input {
    border: 1px solid rgb(156, 156, 156);
    width: 200px;
    height: 20px;
    padding: 10px;
    border-radius: 2px;
    background-color: rgb(156, 156, 156);
}

.top-bar .header .search-box button {
    border: none;
    color: white;
    margin: -2px 5px;
    height: 22px;
    font-size: 11px;
    background-color: transparent;
}

/* mobile dropdown */
.menu-btn {
    font-size: 25px;
    width: 10%;
    cursor: pointer;
    margin: 5px auto 0px auto;
    display: inline-block;
}

.overlay {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(100px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 0px 0px rgba(255, 255, 255, 0);
    position: relative;
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            gba(255, 255, 255, 0.8), transparent,
            rgba(255, 255, 255, 0.3));
}

.overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 650;
    color: rgb(252, 252, 252);
    display: block;
    transition: 0.3s;
}

.overlay-content a:hover {
    color: #B99F46;
}

.overlay-content .reg {
    color: white;
    background-color: rgb(222, 197, 54);
    cursor: pointer;
    animation: blink 1s infinite;
}

/* Blinking Animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 50px;
    text-decoration: none;
    color: white;
}

.overlay .overlay-content div {
    width: 50%;
    margin: auto;
}

.overlay .overlay-content div img {
    width: 60%;
    margin: auto;
}

/* navbar */
header {
    width: 100%;
    padding: 10px 0px;
    background-color: black;
}

header .nav-sec {
    display: flex;
    justify-content: space-between;
    place-items: center;
    width: 80%;
    margin: auto;
    background-color: transparent;
}

header .nav-sec img {
    width: 55px;
    margin-top: -10px;
}

header .nav-list ul {
    display: flex;
    place-self: center;
    justify-content: space-between;
    width: max-content;
    margin-top: 15px;
}

header .nav-list ul li {
    place-self: center;
    display: inline;

}

header .nav-list ul .nav-link li a {
    color: white;
    font-size: 15px;
    border: 1px solid black;
    padding: 5px 10px 7px 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.2s linear;
}

header .nav-list ul .nav-link li a:hover {
    background-color: rgb(222, 197, 54);
    color: black;
}

header .nav-list ul .nav-link li .reg {
    color: rgb(0, 0, 0);
    background-color: rgb(222, 197, 54);
    cursor: pointer;
    animation: blink 1s infinite;
}

/* Blinking Animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* Dropdown button */
.dropdown .dropbtn {
    color: white;
    margin-right: -12px;
    font-size: 14px;
    border: 1px solid #000000;
    padding: 5px 10px 7px 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.2s linear;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {
    background-color: rgb(222, 197, 54);
    color: black;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    left: -400px;
    top: 29px;
    border-radius: 10px;
    background-color: #fdfdfd;
    color: #666666;
    width: 1000px;
    height: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 0px 0px;
}

.dropdown-content i {
    font-size: 15px;
    padding: 5px 30px 10px 0px;
}

/* Links inside the dropdown */
.dropdown-content .s-contant {
    background-color: #171717;
    width: 30%;
    float: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content .s-contant:hover {
    background-color: rgb(222, 197, 54);
}

.dropdown:hover .dropdown-content {
    display: block;
    background-color: #171717;
    padding: 10px 0px;
    height: auto;

}

.dropdown .dropside {
    display: none;
}

.dropdown .s-contant:hover .dropside {
    position: absolute;
    left: 30%;
    top: 0px;
    width: 70%;
    height: 100%;
    display: grid;
    gap: 20px;
    border-radius: 0px 10px 10px 0px;
    /* background-color: rgb(47, 47, 47); */
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));

}

.dropdown .dropside .block {
    border: 1px solid var(--para-color);
    border-radius: 5px;
    width: 40%;
    margin: 20px;
    height: auto;
    /* background-color: rgb(150, 149, 149); */
    padding: 10px 10px;
    position: relative;
    box-shadow: 0px 0px 10px rgb(93, 93, 93);
}

.dropdown .dropside .container a {
    color: rgb(255, 255, 255);
}

.dropdown .dropside .block h6 {
    font-weight: 650;
    font-size: 15px;
}

.dropdown .dropside .block h6 i {
    font-size: 20px;
    margin-right: 0px;
}

/* course button*/
.overlay .overlay-content .col1 {
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 650;
    color: rgb(252, 252, 252);
}

/* course overlay */
.overlay .overlay-content .course-overlay {
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
    position: relative;
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding: 0%;
    transition: 0.5s;
}

.overlay .overlay-content .course-overlay .course-close-btn {
    width: fit-content;
    display: grid;
    justify-self: end;
}

.course-overlay section {
    height: 100%;
    width: 100%;
    padding: 0%;
    margin: 0%;
}

.course-overlay section .accordion-item {
    width: 100%;
    background-color: transparent;
    text-align: left;
    border: none;
}

.course-overlay section .accordion-title {
    display: flex;
    padding-top: 15px;
    font-size: 15px;
    position: relative;
    width: 95%;
    color: white;
    border-bottom: 1px solid rgb(223, 217, 217);
}

.course-overlay section .accordion-title p {
    width: 90%;
    font-weight: 600;
}

.course-overlay section .accordion-title i {
    position: absolute;
    right: 5%;
    top: 45%;
    display: flex;
}

.course-overlay section .accordion-title .t-line {
    width: 100%;
    height: 2px;
}

.course-overlay section .arrow {
    transition: transform 0.3s ease;
}

.course-overlay section .accordion-content {
    display: none;
    width: 100%;
    padding: 10px 10px 0px 10px;
    color: #ffffff;
}

.course-overlay section .accordion-content a {
    border-bottom: 0.5px solid white;
    width: 100%;
    padding: 10px 10px 0px 10px;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
}

.course-overlay section .accordion-content a p {
    width: 80%;
    margin-left: -40px;
    display: grid;
    place-self: center;
}

.course-overlay section .accordion-content .view {
    font-size: 12px;
    text-decoration-line: underline;
}

.course-overlay section .accordion-content a i {
    position: absolute;
    right: 5%;
    top: 35%;
}

/* When active */
.course-overlay section .accordion-item.active .accordion-content {
    display: block;
}


.course-overlay section .view-all {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
}

.course-overlay section .view-all:hover {
    text-decoration: underline;
}

/* more overlay */
.overlay .overlay-content .more-overlay {
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
    position: relative;
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding: 0%;
    transition: 0.5s;
}

.overlay .overlay-content .more-overlay .more-close-btn {
    width: fit-content;
    display: grid;
    justify-self: end;
}

.more-overlay section {
    height: 100%;
    width: 100%;
    padding: 0%;
    margin: 0%;
}

.more-overlay section .accordion-item {
    width: 100%;
    background-color: transparent;
    text-align: left;
    border: none;
}

.more-overlay section .accordion-title {
    display: flex;
    padding-top: 15px;
    font-size: 15px;
    position: relative;
    width: 95%;
    color: white;
    border-bottom: 1px solid rgb(223, 217, 217);
}

.more-overlay section .accordion-title i {
    position: absolute;
    right: 5%;
    top: 45%;
    display: flex;
}

/* More button */
.nav-link .more-btn {
    position: relative;
}

.nav-link .more-btn .more-drop {
    display: none;
}

.nav-link .more-btn:hover .more-drop {
    display: grid;
    position: absolute;
    right: -50px;
    top: 28px;
    width: 200px;
    z-index: 1;
    border-radius: 5px;
    background-color: #171717;
    padding: 10px 0px;
}

.nav-link .more-btn .more-drop a {
    background-color: #171717;
    border: 1px solid #171717;
    border-radius: 0px;
}

.nav-link .more-btn .more-drop a:hover {
    background-color: rgb(222, 197, 54);
    color: black;
    border: 1px solid rgb(222, 197, 54);
    border-radius: 0px;
}


/* main sec */

.explore {
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
    width: 100%;
    padding: 50px 0px 100px 0px;
}

.container-2 {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

.explore-details {
    padding: 50px 0px;
    width: 45%;
}

.explore-details .title {
    font-size: 24px;
    color: var(--main-color);
    text-transform: capitalize;
}

.explore-details h2 {
    font-size: 38px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    font-weight: 600;
}

.explore-details p {
    color: rgb(162, 161, 161);
    font-size: 18px;
    width: 80%;
}

.explore-details a {
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    padding: 10px 20px 12px 20px;
    position: relative;
    top: 25px;
    font-weight: 700;
}

.explore-details a:hover {
    color: black;
}

.explore .carousel {
    width: 50%;
}

.explore-profile {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 30px 0px;
    margin: auto;
    /* border: 1px solid red; */
}

.explore .carousel .profile-image {
    border-radius: 20px;
    margin: 20px 10px;
    width: 200px;
    height: 200px;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0px 0px 50px rgb(89, 89, 89);
}

.explore .carousel .profile-image img {
    width: 100%;
}

.explore .carousel .profile-text p {
    width: 80%;
    margin: 15px auto;
    color: rgb(250, 248, 205);
    font-style: italic;
    text-align: center;
    display: grid;
    place-items: center;
}

.explore .carousel .profile-text h5 {
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
}

.explore .carousel .profile-text h6 {
    text-transform: uppercase;
    /* position: relative;
    top: -90px;  */
    font-size: 15px;
    display: grid;
    place-items: center;
    color: #666666;
    text-align: center;
}


.explore .four-block {
    width: 90%;
    margin: auto;
}

.explore .four-block .container .row {
    width: 100%;
}

.explore .four-block .container .row .col {
    height: 150px;
    width: 25%;
    padding: 20px 30px 0px 30px;
}

.explore .four-block .container .row .col .text {
    border: 1px solid rgb(229, 226, 226);
    border-radius: 10px;
    text-align: center;
    color: white;
    height: 100%;
    width: 100%;
    padding: 20px 30px 0px 30px;
    font-style: italic;
    display: grid;
    place-items: center;
}

/* CERTIFICATION */
.certification {
    /* border: 1px solid red; */
    /* background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57) , rgb(5, 5, 5)); */
    width: 100%;
    margin: auto;
    height: auto;
}

.certification .main {
    padding: 50px 0px 0px 0px;
}

.certification .heading {
    color: white;
}

.certification .main .slide {
    width: 100%;
}


.certification .main .carousel-inner .col {
    width: 20%;
    display: grid;
    place-items: center;
    padding: 10px;
}

.certification .main .carousel-inner .col img {
    width: 60%;
    margin: auto;
}

/* placement */
.placement {
    padding: 100px 0px;
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
    width: 100%;
}

.placement .heading {
    color: white;
}

.placement .container {
    width: 100%;
    margin: auto;
    text-align: center;
    color: white;
}

.placement .container .row {
    width: 100%;
    margin: auto;
}

.placement .container .row .col {
    width: 25%;
    padding: 0px 0px;
}

.placement .container .row .col img {
    width: 25%;
}

.placement .container .row-cols-3 {
    margin: auto;
    width: 80%;
}

.placement .container .row-cols-3 .col {
    margin: auto;
    width: 33.33%;
}

.placement .container .row-cols-2 {
    margin: auto;
    width: 50%;
}

.placement .container .row-cols-2 .col {
    margin: auto;
    width: 50%;
}




/* why choose sugyanam */

.why-choose {
    background-color: white;
}

.why-choose .row .col {
    width: 33.33%;
    text-align: left;
}

.why-choose .row .col i {
    /* color: rgb(247, 221, 75); */
    color: var(--main-color);
    font-size: 30px;
    padding: 20px 0px;
}

.why-choose .row h4 {
    font-size: 20px;
    font-weight: 600;
}

.why-choose .row p {
    font-size: 14px;
    font-weight: 500;
    color: rgb(93, 93, 93);
    margin-top: 15px;
}

/* <!-- OUR CERTIFICATION sec 2--> */

.d-courses {
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
}

.d-courses .main {
    display: flex;
    place-items: center;
    justify-content: space-between;
}

.d-courses .grid-1 {
    width: 35%;
}

.d-courses .grid-1 .heading .icon {
    color: var(--main-color);
    display: inline;
    font-size: 15px;
    position: relative;
    top: -8px;
}

.d-courses .grid-1 .heading i {
    margin-left: -5px;
}

.d-courses .grid-1 .heading {
    display: inline;
    color: rgb(215, 215, 215);
    text-transform: capitalize;
}

.d-courses .grid-1 .heading .line {
    display: none;
}

.d-courses .grid-1 p {
    color: var(--p-text-color);
    font-weight: 400;
    padding: 5px 0px 0px 40px;
}

.d-courses .grid-1 a {
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    padding: 10px 20px 12px 20px;
    margin-left: 40px;
    font-weight: 700;
}

.d-courses .grid-1 a:hover {
    color: black;
}

.d-courses .grid-2 {
    width: 60%;
    padding: 0px 0px 47px 0px;
}

.d-courses .grid-2 .carousel-inner .container {
    width: 75%;
}

.d-courses .grid-2 .carousel-inner .container img {
    border-radius: 10px;
    height: 100%;
}

.d-courses .grid-2 .carousel-inner .container .col {
    width: 80%;
    display: grid;
    place-items: end;
    position: relative;
}

.d-courses .grid-2 .carousel-inner .container .col a {
    text-decoration: none;
    color: white;
    font-size: 10px;
    font-weight: 600;
    background-color: #000000;
    padding: 10px 20px 7px 20px;
    margin-right: 10px;
    border-radius: 5px;
    position: absolute;
    top: 90%;
    left: 50%
}

.d-courses .grid-2 .carousel-inner .container .col a:hover {
    color: var(--main-color);
    font-size: 12px;
}

.d-courses .grid-2 .carousel-control-prev img {
    background-image: radial-gradient(rgb(255, 255, 255), white, black, rgb(0, 0, 0));
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 50px;
}

.d-courses .grid-2 .carousel-control-next img {
    background-image: radial-gradient(rgb(255, 255, 255), white, black, rgb(0, 0, 0));
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-left: 50px;
}

.d-courses .grid-2 .carousel-indicators {
    position: absolute;
    top: 110%;
}

.d-courses .grid-2 .carousel-indicators button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
}

/* e-m */

.e-m {
    background-image: url('about\ bg.png');
}

.e-m .main .row {
    display: flex;
    justify-content: space-between;
}

.e-m .col1 {
    
    width: 100%;
    /* display: grid;
    place-content: center; */
}

.e-m .col1 .heading .icon {
    
    color: var(--main-color);
    display: inline;
    font-size: 15px;
    position: relative;
    top: -8px;
}

.e-m .col1 .heading i {
    margin-left: -5px;
}

.e-m .col1 .heading {
    display: inline;
    color: rgb(215, 215, 215);
    text-transform: capitalize;
}

.e-m .col1 .heading .line {
    display: none;
}

.e-m .col1 p {
    
    color: var(--p-text-color);
    font-weight: 400;
    padding: 5px 0px 0px 40px;
    text-transform: inherit;
}

.e-m .col1 .e-block {
    display: grid;
    gap: 10px;
    margin-left: 40px;
}

.e-m .col1 .e-block H3 {
    color: var(--main-color);
}

.e-m .col1 .e-block .e-row {
    display: flex;
    width: 100%;
    gap: 10px;
}

.e-m .col1 .e-block .e-row .e-col {
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    width: 50%;
    color: white;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
}

.e-m .col1 .e-block .e-row .e-col:hover {
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.e-m .col1 a {
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    padding: 10px 20px 12px 20px;
    display: flex;
    margin-top: 10px;
    width: fit-content;
    font-weight: 700;
}

.e-m .col1 a:hover {
    color: black;
}

.e-m .main .row .col2 {
    width: 30%;
}

.e-m .main .row .col2 img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
}

.e-m .main .row .col2 .heading {
    color: white;
    padding: 10px 0px;
    font-size: 25px;
    font-weight: 550;
}

/* d-review */

.d-review {
    background-color: #000000;
    color: white;
}

.d-review button {
    color: white;
}

.d-review .slide .container .row {
    height: 280px;
}

.d-review .slide .container .row .col {
    width: 33.33%;
    height: 100%;
    padding: 10px;
    text-align: center;
}

.d-review .slide .container .row .col .review-col {
    border: 1px solid rgb(174, 174, 174);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
}

.d-review .slide .container .row .col p {
    font-size: 12px;
}

.d-review .slide .container .row .col h4 {
    font-size: 15px;
    padding: 5px 0px 0px 0px;
}

.d-review .slide .container .row .col .icon {
    font-size: 15px;
    color: var(--main-color);
}

.d-review .slide .container .row .col img {
    width: 25%;
    border-radius: 50%;
    margin: auto;
}

/* <!-- OUR CERTIFICATION --> */

.d-student {
    background-color: var(--bg-color);
}

.d-student .main {
    width: 80%;
    margin: auto;
}

.d-student .main .heading .icon {
    color: var(--main-color);
    display: inline;
    font-size: 15px;
    position: relative;
    top: -8px;
}

.d-student .main .heading i {
    margin-left: -5px;
}

.d-student .main .heading {
    display: inline;
    color: rgb(215, 215, 215);
    text-transform: capitalize;
}

.d-student .main .heading .line {
    display: none;
}

.d-student .container {
    width: 85%;

}

.d-student .container .row div {
    position: relative;
    width: 22%;
    height: 300px;
    display: grid;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px auto;
    padding: 0px;
}

.d-student .container .row div video {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: all 0.1s linear;
}

.d-student .container .row div video:hover {
    filter: grayscale(0%);
}

.d-student .container .row div button {
    font-size: 35px;
    filter: grayscale(0%);
    color: white;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, 0%);
}


/* SUCESSFULL PLACEMENT */

.d-successfull {
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
}

.d-successfull .heading {
    color: white;
}

.d-successfull .place-slider {
    width: 100%;
    padding: 20px 0px;
}

.d-successfull .place-slider .container .row {
    padding: 20px;
    margin-left: 20px;
}

.d-successfull .place-slider .container .row div {
    width: 17.2%;
    height: 270px;
    margin: 0px auto;
    position: relative;
}

.d-successfull .place-slider .container .row .col img {
    border: 1px solid rgb(93, 93, 93);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    transition: all 0.2s linear;
    filter: grayscale(100%);

}

.d-successfull .place-slider .container .row .col img:hover {
    border: 1px solid rgb(187, 187, 187);
    width: 115%;
    box-shadow: 0px 0px 20px rgb(89, 89, 89);
    border-radius: 10px;
    filter: grayscale(0%);
}

.d-successfull .place-slider .carousel-indicators {
    position: relative;
    width: fit-content;
    margin: auto;
}

.d-successfull .place-slider .carousel button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}


/* OUR EXPERTISE */

.d-expertise {
    background-color: white;
}

.d-expertise .main {

    display: flex;
    place-items: center;
    justify-content: space-between;
}

.d-expertise .col1 {
    width: 40%;
}

.d-expertise .main .heading .icon {
    color: var(--main-color);
    display: inline;
    font-size: 15px;
    margin-right: 10px;
}

.d-expertise .main .col1 .heading i {
    color: #000000;
    display: inline;
    font-size: 15px;
    position: relative;
    top: -8px;
}

.d-expertise .col1 .heading {
    display: inline;
}

.d-expertise .col1 .heading .line {
    display: none;
}

.d-expertise .col1 p {
    font-weight: 400;
    padding: 5px 0px 0px 40px;
}


.d-expertise .col2 {
    width: 50%;
    display: grid;
    place-items: center;
}

.d-expertise .col2 img {
    width: 90%;
}

/* enrollment process */

.enroll {
    background-color: white;
}

.enroll {
    font-family: var(--main-font);
    width: 100%;
    padding-bottom: 100px;
}

.enroll .enroll-sec {
    width: 80%;
    margin: auto;
    height: max-content;
}

.enroll .enroll-sec .enroll-title {
    width: auto;
    text-align: center;
    margin: 35px 0px 10px 0px;
}

.enroll .enroll-sec .enroll-title .line {
    width: 200px;
}

.enroll .enroll-sec .enroll-title p {
    font-size: 18px;
    margin: 20px 0px 10px 0px;
}

.enroll .enroll2 {
    display: grid;
    justify-content: center;
}

.enroll .enroll2 .container {
    text-align: center;
    padding: 0;
    margin: 50px 0px 0px 0px;
}

.enroll .enroll2 .container .row .col {
    text-align: center;
    padding: 0;
    margin: 10px 0px 0px 0px;
}

.enroll .enroll2 .container .row .col p:hover {
    color: #000000;
}

.enroll .enroll2 .container .row .col p {
    font-weight: 500;
    color: rgb(138, 137, 137);
    margin: 10px 0px 0px 0px;
    width: 150px;

}

.enroll .enroll2 .container .row .col .p1 {
    animation: enroll1 3s infinite;
}

.enroll .enroll2 .container .row .col .p2 {
    animation: 4s infinite enroll2;
}

.enroll .enroll2 .container .row .col .p3 {
    animation: 5s infinite enroll3;
}

.enroll .enroll2 .container .row .col .p4 {
    animation: 7s infinite enroll4;
}

.enroll .enroll2 .container .row .col .p5 {
    animation: 8s infinite enroll5;
}

@keyframes enroll1 {
    from {
        color: black;
    }

    to {
        color: rgb(138, 137, 137);
    }
}

@keyframes enroll2 {
    from {
        color: black;
    }

    to {
        color: rgb(138, 137, 137);
    }
}

@keyframes enroll3 {
    from {
        color: black;
    }

    to {
        color: rgb(138, 137, 137);
    }
}

@keyframes enroll4 {
    from {
        color: black;
    }

    to {
        color: rgb(138, 137, 137);
    }
}

@keyframes enroll5 {
    from {
        color: black;
    }

    to {
        color: rgb(138, 137, 137);
    }
}

.enroll .enroll2 .container .line {
    border: 1px solid rgb(169, 166, 166);
    width: 100%;
    background-color: rgb(101, 101, 101);
    height: 1px;
}

.enroll .enroll2 .container .line .point {
    border: 1px solid rgb(169, 166, 166);
    background-color: rgb(169, 166, 166);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: relative;
    left: 45%;
    top: -4px;
}

.enroll .enroll2 .carousel {
    margin: 100px 0px 0px 0px;
}

/* CONTACT US */
.d-form {
    background-image: linear-gradient(35deg, rgb(5, 5, 5), rgb(57, 57, 57), rgb(5, 5, 5));
}

.d-form .main {
    display: flex;
    place-items: center;
    justify-content: space-between;
}

.d-form .col1 {
    width: 40%;
}

.d-form .main .col1 .heading .icon {
    color: var(--main-color);
    display: inline;
    font-size: 15px;
    margin-right: 10px;
}

.d-form .main .col1 .heading i {
    display: inline;
    font-size: 15px;
    position: relative;
    top: -8px;
}

.d-form .col1 .heading {
    color: white;
}

.d-form .col1 .heading .line {
    display: none;
}

.d-form .col1 p {
    font-weight: 400;
    padding: 5px 0px 0px 40px;
    color: var(--p-text-color);
}


.d-form .con-col2 {
    display: grid;
    justify-content: center;
    width: 50%;
    margin: 50px 0px;
    background-color: rgb(41, 41, 41);
    box-shadow: 0px 0px 30px rgba(172, 171, 171, 0.5);
    border-radius: 20px;
    padding: 0px 0px 100px 0px;
}

.d-form h2 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    padding: 50px 0px 30px 0px;
}


.d-form form .row1 {
    width: 80%;
    margin: auto;
    display: flex;

    justify-content: space-between;
}

.d-form form {
    color: var(--p-text-color);
}

.d-form form .row2 {
    width: 80%;
    display: flex;

    margin: auto;
}

.d-form form .row2 .col {
    width: 49%;
    display: inline;
}

.d-form form .row2 .col input {
    width: 96%;
}

.d-form .con-col2 input {
    border: 1px solid rgb(127, 126, 126);
    border-radius: 5px;
    background-color: transparent;
    margin-bottom: 10px;
    width: 49%;
    padding: 10px;

    /* margin-top: 10px; */
}


.d-form form textarea {
    border: 1px solid rgb(127, 126, 126);
    border-radius: 5px;
    background-color: transparent;
    padding: 10px;
    /* margin-top: 10px; */
    width: 49%;
    height: 100px;
}

.d-form .main .con-col2 form button {
    padding: 12px 20px 12px 20px;
    border: 3px solid rgb(220, 217, 217);
    background-color: transparent;
    color: rgb(220, 217, 217);
    font-size: 20px;
    font-weight: 500;
    display: grid;
    place-self: center;
    margin-top: 40px;
}

.d-form form button:hover {
    color: #B99F46;
    border: 3px solid #B99F46;
}

/* FOOTER */
.d-footer {
    font-family: var(--main-font);
    background-color: #000000;
    color: white;
    width: 100%;
    padding: 48px 0px 24px 0px;
}

.d-footer .footer-sec {
    width: 80%;
    margin: auto;
}

.d-footer .footer-sec .contect-map {
    width: 100%;
    height: 100%;
}

.d-footer .footer-sec p {
    font-size: 12px;
}

.d-footer .footer-sec .container .row1 li {
    padding: 5px 0px 0px 0px;
}

.d-footer .footer-sec .container .row1 .m-link {
    font-size: 15px;
    border-bottom: 2px solid black;
}

.d-footer .footer-sec .container .row1 .m-link:hover {
    border-bottom: 2px solid #B99F46;
}

.d-footer .footer-sec .contact {
    width: 100%;
}

.d-footer .footer-sec .contact .social {
    width: 100%;
    padding: 10px 0px 10px 0px;
}

.d-footer .footer-sec .contact .social i {
    font-size: 35px;
    padding: 5px;
    margin-right: 20px;
    color: rgb(162, 161, 161);
}

.d-footer .footer-sec .contact p {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.d-footer .footer-sec .contact p i {
    color: rgb(162, 161, 161);
    padding: 0px 0px 0px 0px;

}

.d-footer .footer-sec .contact .mailid,
.comid {
    color: rgb(162, 161, 161);
    text-decoration: none;
    font-size: 12px;
    width: 100%;
}

.d-footer .footer-sec .contact .mailid,
.comid i {
    margin-right: 2px;
    margin-left: -12px;
    font-size: 10px;
    color: rgb(162, 161, 161);
}

.d-footer .footer-sec .container .row .col {
    margin: 10px;
    width: 23%;
    height: 250px;
}

.d-footer .footer-sec .container .row1 ul {
    list-style-type: none;
    padding: 0px 10px;
    text-transform: uppercase;

}

.d-footer .footer-sec .container .row1 ul li img {
    padding: 10px 0px 0px 0px;
    width: 40%;
}

.d-footer .footer-sec .container .row1 ul li a {
    text-decoration: none;
    color: rgb(220, 220, 220);
    font-weight: 500;
    transition: all 0.2s linear;
}

.d-footer .contect-map {
    width: 100%;
    height: 90%;
}

.d-footer .contect-map iframe {
    width: 100%;
    height: 100%;
}

.d-footer .address h6 {
    margin-left: -5px;
    color: rgb(220, 220, 220);
    font-weight: 500;

}

.d-footer .address h6 i {
    margin-right: 5px;
    font-size: 15px;
    color: rgb(162, 161, 161);
}

.d-footer .address p i {
    margin-right: 5px;
    font-size: 15px;
    color: rgb(162, 161, 161);
}

.d-footer address {
    color: rgb(162, 161, 161);
    font-size: 12px;
    font-weight: 700;
    margin-left: 20px;
    margin-top: -5px;

    width: 80%;
}

/* label */
.label {
    background-color: #000000;
    padding: 10px 50px;
    color: var(--p-text-color);
    text-align: center;
}

/*  */

:root {
    --accent: #0b84ff;
    /* button color */
    --bg: #ffffff;
    /* icon background if you want */
    --size: 48px;
    --shadow: 0 6px 18px rgba(2, 6, 23, 0.2);
}

.scroll-top {
    position: fixed;
    right: 55px;
    bottom: 145px;
    width: var(--size);
    height: var(--size);
    border-radius: 999px;
    border: none;
    background: #b99f46;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    /* disabled when hidden */
    transition: opacity 260ms ease, transform 260ms ease;
    z-index: 9999;
}

@media only screen and (max-width: 600px) {
    .scroll-top {
        position: fixed;
        right: 22px;
        bottom: 117px;
        width: var(--size);
        height: var(--size);
        border-radius: 999px;
        border: none;
        background: #b99f46;
        color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow);
        cursor: pointer;
        transform: translateY(12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 260ms ease, transform 260ms ease;
        z-index: 9999;
    }
}


.scroll-top:focus {
    outline: 3px solid rgba(11, 132, 255, 0.28);
    outline-offset: 3px;
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* small visual tweak for the SVG */
.scroll-top svg {
    display: block;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .scroll-top,
    .scroll-top.show {
        transition: none;
        transform: none;
    }
}



a .nn {
    color: #fff;
}

.sociall {
    position: fixed;
    top: 35%;
}

.sociall ul {
    padding: 0px;
    -webkit-transform: translate(-270px, 0);
    -moz-transform: translate(-270px, 0);
    -ms-transform: translate(-270px, 0);
    -o-transform: translate(-270px, 0);
    transform: translate(-270px, 0);
}

.sociall ul li {
    display: block;
    margin: 5px;
    background: rgb(185 159 70);
    width: 300px;
    text-align: right;
    padding: 10px;
    -webkit-border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    border-radius: 0 30px 30px 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.sociall ul li:hover {
    -webkit-transform: translate(110px, 0);
    -moz-transform: translate(110px, 0);
    -ms-transform: translate(110px, 0);
    -o-transform: translate(110px, 0);
    transform: translate(110px, 0);
    background: #9E9E9E;
    font-weight: bold;
}

.sociall ul li:hover a {
    color: #000;
}

.sociall ul li:hover i {
    color: #fff;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.sociall ul li:hover i.fa-github {
    background-color: rgb(0, 0, 0);
}

i.fa-github {
    padding: 7px 13px 14px 8px !important;
    font-size: 30px !important;
}

.sociall ul li:hover i.fa-youtube {
    /* background-color: rgb(255, 0, 0); */
}

i.fa-youtube {
    /* padding: 8px 14px 14px 8px !important;
  font-size: 30px !important; */
}

.sociall ul li:hover i.fa-dribbble {
    background-color: #ea4c89;
}

i.fa-dribbble {
    padding: 10px 11px 10px 9px !important;
}

.sociall ul li:hover i.fa-behance {
    background-color: rgb(4, 86, 226);
}

.sociall ul li i {
    margin-left: 10px;
    color: #000;
    /* background: #fff; */
    padding: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 31px;
    height: 40px;
    font-size: 20px;
    /* background: #ffffff; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

i.fa-facebook {
    /* padding: 10px 15px 10px 5px !important; */
}




.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: var(--main-color);
    color: #fff;
    width: 42px;
    height: 44px;
    font-size: 21px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: white;
    font-size: 13px;
}

@media only screen and (max-width: 600px) {
    .floating_btn {
        position: fixed;
        bottom: 0px;
        right: -4px;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }
}




button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus,
{
outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    vertical-align: middle;
    border-bottom: solid 10px #EA5D5F;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: #fff;
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: #fff;
    color: #00ab6c;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}