@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Caption&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans Caption', sans-serif;
    font-weight:400;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 12px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #ff7b00;
    transition: .5s ease-in-out;
    border-radius: 50px;
    border: 2px solid #f1f1f1;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #ff5b00;
}

body {
    overflow-x: hidden;
}

.loader-page {
    width: 100%;
    height: 100vh;
    position: absolute;
    background:#fff;
}

.loader-page #logo {
    position: absolute;
    width: 21%;
    height: 20%;
    top: 40%;
    bottom: 40%;
    left: 37.5%;
    right: 37.5%;
    z-index: 1;
}

.loader-page #spinner {
    position: absolute;
    top: 15%;
    bottom: 15%;
    height: 70%;
    width: 34%;
    left: 31%;
    right: 31%;
    z-index: 0;
}
.after-page{
    display:none;
}

.navbar {
    width: 100%;
    height: 120px;
    background: #fff;
    position: absolute;
    top: 0;
    transform: scale(1);
    transition: 0.5s ease-in-out;
    opacity: 1;
    z-index: 2;
    box-shadow: 2px 2px 4px #444;
}

.navbar-scrolled {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
    transform: scale(1);
    opacity: 1;
    height: 100px;
}

.navbar .logo {
    width: 200px;
    position: absolute;
    top: 15px;
    left: 50px;
    transition: 0.5s ease-in-out;
}

.navbar-scrolled .logo {
    top: 0px;
    left: 10px;
    width: 210px;
    transform: scale(.85)
}
.res-nav,.res-sidemenu .cross-btn{
    display:none;
    position:absolute;
    top:6px;
    right:30px;
    font-size: 20px;
    padding:20px;
    cursor: pointer;
    transition:all .5s ease;
}
.res-nav:hover,.res-sidemenu .cross-btn:hover{
    text-shadow: 2px 2px rgba(0, 0, 0, .5);
}
.res-sidemenu{
    position: fixed;
    top:0;
    right:-1px;
    width:0px;
    height: 100%;
    overflow-y: scroll;
    background: rgb(255, 255, 255);
    z-index: 2;
    padding:0;
    transition: all .5s ease;
}
.res-sidemenu ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    position: relative;
    top:100px;
}
.res-sidemenu ul li a{
    text-decoration: none;
    color:#000000;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    transition: all .2s ease;
    font-weight: bold;
    position: relative;
    border: 1px solid #fff;
}
.res-sidemenu ul li a::before{
    content: '';
    display: block;
    background: #ff5b00;
    width: 0;
    height:100%;
    position:absolute;
    top:0;
    z-index: -1;
    transition: all .2s ease;
}
.res-sidemenu ul li a:hover{
    color:#fff;
}
.res-sidemenu ul li a:hover::before{
    width: calc(100% - 10px);
}
.logo img {
    width: 100%;
    transition: 0.5s ease-in-out;
}

.nav {
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: row;
    list-style: none;
    transition: 0.5s ease-in-out;
}

.navbar .nav-link .link {
    text-decoration: none;
    color: #444;
    padding: 30px 20px;
    font-size: 20px;
    font-weight:bold;
    transition: 0.5s ease-in-out;
    line-height: 120px;
    position: relative;
    cursor: pointer;
}

.navbar .nav-link .link:hover {
    color: #ff7b00;
}

.navbar-scrolled .nav-link .link {
    color: #333;
    padding: 40px 25px;
    font-size: 18px;
    line-height: 100px;
}

.navbar-scrolled .nav-link .link:hover {
    color: #ff7b00
}

.navbar .nav-link .link::after {
    content: '';
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    width: 70%;
    height: 3px;
    border-radius: 20%;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    background-color: #ff7b00;
    transition: 200ms ease-in-out;
    -webkit-transition: 200ms ease-in-out;
    opacity: 0;
    z-index: 1;
}

.navbar .nav-link .link:hover::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    width: 70%;
    height: 3px;
    bottom: 20px;
    opacity: 1;
}

.navbar-scrolled .nav-link .link:hover::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    width: 70%;
    height: 3px;
    opacity: 1;
    background-color: #ff7b00;
    bottom: 30px;
}

.navbar-scrolled .drop-menu .active-link {
    color: #ff7b00;
}

.navbar .drop-menu .active-link::after {
    content: '';
    position: absolute;
    left: calc(100% - 75%);
    bottom: 30px;
    width: 50%;
    height: 3px;
    border-radius: 20%;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    background-color: #ff7b00;
    transition: 200ms ease-in-out;
    -webkit-transition: 200ms ease-in-out;
    opacity: 1;
    z-index: 1;
}

.navbar-scrolled .drop-menu .active-link::after {
    background-color: #ff7b00;
    bottom: 30px;
}

.nav-link .submenu {
    position: absolute;
    right: 0px;
    top: 120px;
    border-top: 5px solid #ff5b00;
    width: 220px;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-shadow: 2px 2px 4px #444;
    opacity: 0;
    transition: .5s ease-in-out;
    transform: scale(0);
}

.nav-link .active-sub {
    position: absolute;
    right: 0px;
    top: 120px;
    transform: scale(1);
    transition: .5s ease-in-out;
    opacity: 1;
}

.navbar-scrolled .nav-link .active-sub {
    right: 0px;
}

.nav-link .submenu .fa-sort-up {
    position: absolute;
    top: -18px;
    right: 21%;
    font-size: 32px;
    color: #ff5b00;
    text-shadow: 0px 3px 0px, 1px 1px 4px #444;
    transition: .5s ease;
}

.navbar-scrolled .nav-link .submenu .fa-sort-up {
    right: 21%;
}

.nav-link .submenu .sublink {
    padding: 10px;
    text-decoration: none;
    box-shadow: 0 5px 4px -4px #666;
    transition: .5s ease;
    font-weight:bold;
    color:rgb(85, 0, 255);
}

.nav-link .submenu .sublink:hover {
    color: #ff5b00;
}

.nav-link .submenu .sublink .fa {
    padding-right: 10px;
    transition: .5s ease-in-out;
}

.nav-link .submenu .sublink:hover .fa {
    padding-right: 20px;
    color: #ff5b00;
}

section {
    width: 100%;
    height: 100vh;
}

.mySlides {
    display: none;
}

img {
    vertical-align: top;
}


/* Slideshow container */

.slideshow-container {
    max-width: 100%;
    height: 95%;
    position: relative;
    top: 90px;
    margin: auto;
    overflow: hidden;
}

.mySlides img {
    animation: slide 3s;
}

@keyframes slide {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 44px;
    border-top: 1px solid rgb(134, 83, 0);
    border-bottom: 1px solid rgb(134, 83, 0);
    padding: 8px 12px;
    position: absolute;
    bottom: 40%;
    left: 60%;
    width: auto;
    text-align: center;
}

.text p {
    font-size: 24px;
}

.dest-lnk{
    text-decoration: none;
    padding: 10px 20px;
    position: absolute;
    bottom: -100px;
    right: 25%;
    background: #ff7b00;
    color: #fff;
    border-radius: 50px;
    transition:all .5s ease;
}
.dest-lnk:hover{
    background:#ff5b00;
    box-shadow:1px 2px 2px #444;
}

/* The dots/bullets/indicators */

.dot {
    height: 10px;
    width: 10px;
    margin: 3px 2px;
    background-color: rgb(250, 157, 7);
    border-radius: 50%;
    display: block;
    transition: background-color 0.6s ease;
    position: relative;
    left: 95%;
    bottom: 230px;
}

.active {
    background-color: #ff0000;
}


/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1;
    }
}


/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}

@keyframes h1-animate {
    from {
        opacity: 0;
        position: relative;
        top: 5%;
    }
    to {
        opacity: 1;
        position: relative;
        top: 0%;
    }
}

.div-dot:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -9px;
    left: calc(50% - 9px);
    width: 18px;
    height: 18px;
    background-color: #ff7b00;
    border: 1px solid #ff4b00;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}

.divider {
    position: relative;
    margin-top: 15px;
    height: 1px;
    opacity: 1;
}

.div-transparent:before {
    content: "";
    position: absolute;
    top: -1.5px;
    left: 15%;
    right: 15%;
    width: 70%;
    height: 5px;
    background-image: linear-gradient(to right, transparent, #ff4b00, transparent);
}
section{
    padding-top: 120px;
    height:max-content;
}
#destination{
    position:relative;
    height:max-content;
    padding-top: 120px;
}

#destination #animated-h1,#animated-h2{
    text-align:center;
    font-size:2.5em; 
    opacity:1;
}

.dest-slider {
    width: 100%;
    display: grid;
    grid-template-columns: .5fr .5fr .5fr .5fr;
    grid-gap: 20px;
    box-sizing: border-box;
    padding: 20px;
    
}

.dest-slider .dest-slide {
    width: 100%;
    height: 350px;
    background: #ffF;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
    position: relative;
    top: 20px;
    cursor: pointer;
    transition: .5s ease;
}

.dest-slider .dest-slide:hover {
    transform: translate(0px, -10px);
}

.dest-slider .dest-slide:hover .image-box img {
    transform: scale(1.1);
}

.dest-slide .image-box {
    width: 100%;
    height: 60%;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.dest-slide .image-box img {
    width: 100%;
    height: 100%;
    transition: .5s ease-in-out;
}

.dest-slide .content-box {
    width: 100%;
    height: max-content;
    position: relative;
    background: #fff;
    box-sizing: border-box;
    padding: 12px;
    text-align: center;
    position: absolute;
    top: 60%;
    line-height: 1.7;
}

.dest-slide .content-box p {
    font-size: 17px;
}

.navigation {
    font-size: 30px;
    color: #ff7b00;
    border: 3px solid #ff7b00;
    border-radius: 50px;
    padding: 10px;
    transition: .5s ease;
    opacity: 0;
}

.next {
    position: absolute;
    right: 2.5%;
    top: 50%;
}

.prev {
    position: absolute;
    left: 2.5%;
    top: 50%;
}

.navigation:hover {
    background: #ff7b00;
    color: #fff;
}

.page-cover {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 55vh;
    position: relative;
}

.cover-heading {
    position: absolute;
    top: 35%;
    color: #fff;
    font-size: 30px;
    width: 100%;
    text-align: center;
}

.wrapper {
    display: grid;
    grid-template-columns: .5fr .5fr .5fr .5fr;
    height: 100vh;
    grid-gap: .5em;
    background: #CCC;
    padding: 10px;
}

.wrapper>div {
    background: rgb(136, 135, 135);
}

.wrapper>div:nth-child(even) {
    background: rgb(121, 120, 120);
}

.box {
    padding: 0;
}

.box1 {
    grid-column: 1;
    grid-row: 1/3;
    overflow: hidden;
    padding: 0;
}

.box img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    transition: all .8s ease;
    filter: blur(0px);
}

.box a:hover>img {
    transform: scale(1.1);
    filter: blur(1px);
}

.box a {
    text-decoration: none
}

.box .content {
    transform: translate(55%, -150px);
    background: #f15800;
    text-align: center;
    width: 40%;
    font-size: 20px;
    color: #fff;
    font-family: 'PT Sans Caption', sans-serif;
    font-style: italic;
    padding: 18px;
    border: none;
    border-radius: 0px 20px 0px 20px;
    transition: all .5s ease;
}

.box1 .content,
.box3 .content,
.box4 .content {
    transform: translate(50%, -270%);
}

.box4 .content {
    transform: translate(50%, -370%);
}

.box2 {
    grid-column: 2/4;
    grid-row: 1;
    overflow: hidden;
}

.box2 img {
    width: 100%;
}

.box3 img {
    align-items: center;
}

.box3 {
    grid-column: 4;
    grid-row: 1/3;
    overflow: hidden;
}

.box4 {
    grid-column: 2;
    grid-row: 2/4;
    overflow: hidden;
}

.box4 img {
    width: 100%;
}

.box7 {
    grid-column: 3/5;
    overflow: hidden;
}

.box5 {
    overflow: hidden;
}

.box6 {
    overflow: hidden;
}

.box7 img {
    width: 100%;
}

.service-container {
    display: grid;
    grid-template-columns: .5fr .5fr .5fr .5fr;
    grid-gap: 20px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 10px;
}

.service-container .service-card {
    width: 100%;
    height: 150px;
    list-style: none;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px #444;
    position: relative;
}

.service-container .service-card a {
    text-decoration: none;
}

.service-container .service-card a .fas {
    width: 100%;
    text-align: center;
    height: 70%;
    position: absolute;
    font-size: 60px;
    line-height: 100px;
    color: #ff7b00;
    transition: .5s ease;
}

.service-container .service-card:hover a .fas {
    height: 60%;
    background: #ff7b00;
    color: #fff;
}

.service-container .service-card a .service-name {
    position: absolute;
    top: 70%;
    height: 30%;
    border-top: 5px solid #ff7b00;
    transition: .5s ease;
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    color: #444;
    transition: .5s ease;
}

.service-container .service-card:hover a .service-name {
    position: absolute;
    top: 60%;
    height: 40%;
}

.contact-container {
    position: absolute;
    background: #ff5b00;
    color: #fff;
    width: 100%;
}

.contact-context {
    display: flex;
}
.queryForm{
    width:100%;
    box-sizing:border-box;
    padding:10px;
}
.queryForm label{
    font-size: 20px;
}
.queryForm input,.queryForm textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
    border:0;
    border-bottom: 2px solid #fff;
    color:#fff;
    outline:none;
    background:transparent;
    margin-bottom: 20px;
    font-size:18px;
    transition: all .5s ease;
}
.queryForm input::placeholder,.queryForm textarea::placeholder{
    color:#fff;
}
.queryForm button{
    width:10%;
    box-sizing: border-box;
    padding: 5px;
    outline:none;
    border-radius: 50px;
    transition: all .5s ease;
    position: relative;
    left:42%;
    font-weight: bold;
    cursor: pointer;
    border:none;
    color:#ff7b00;
}
.queryForm button:hover{
    box-shadow:1px 2px 20px 2px #000;
    
}
.queryForm .formmsg{
    display:none;
    position: absolute;
    top:3%;
    left: 40%;
    font-weight: bold;
    padding: 10px;
    font-size: 22px;
    box-shadow: 0px 2px 11px 1px #444;
}
.followon {
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 10px;
}

.followon .container-icon {
    position: relative;
    top: 40px;
    left: 20px;
    margin: 0;
    padding: 10px;
    display: flex;
}

.container-icon li {
    list-style: none;
    margin: 0 20px;
}

.container-icon li a .fab {
    font-size: 30px;
    color: #FF7b00;
    line-height: 50px;
    transition: .5s;
}

.container-icon li a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: rgb(255, 255, 255);
    text-align: center;
    transform: prespective(1000px);
    transform: rotatex(-40deg);
    transform: skew(5deg) translate(0, 0);
    transition: .5s;
    box-shadow: -20px 20px 10px rgba(0, 0, 0, .5);
}

.container-icon li a:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -10px;
    height: 100%;
    width: 10px;
    background: #8a8a8a;
    transition: .5s;
    transform: rotate(0deg) skewy(-45deg);
}

.container-icon li a:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -5px;
    height: 10px;
    width: 100%;
    background: #8a8a8a;
    transition: .5s;
    transform: rotate(0deg) skewx(-45deg);
}

.container-icon li a:hover {
    transform: prespective(1000px);
    transform: rotatex(-40deg);
    transform: skew(25deg) translate(20px, -20px);
    transition: .5s;
    box-shadow: -50px 50px 50px rgba(0, 0, 0, .5);
}

.links {
    width: calc(100% / 4);
    box-sizing: border-box;
    padding: 10px;
}

.links .other-links {
    position: relative;
    top: 30px;
}

.links .other-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.links .other-links li a:hover {
    text-decoration: underline;
}
.form-container{
    position:absolute;
    top:150px;
    width:50%;
    left:25%;
    right:25%;
    height:75%;
    box-shadow:0px 0px 9px 4px rgba(0,0,0,.5);
    border-radius:10px;
}
.form-container .form-header{
    position:absolute;
    top:0;
    width:100%;
    box-sizing:border-box;
    padding:10px;
    background:#ff6b00;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    color:#fff;
}
.form-container .form-inputs{
    position:absolute;
    top:60px;
    width:100%;
    box-sizing:border-box;
    padding:10px;
}
.form-container .form-inputs form label{
    font-weight:bold;
}
.form-container .form-inputs form #curlist{
    width:10%;
    box-sizing:border-box;
    padding:5px;
    border-radius:10px;
    border:1px solid #444;
    transition:.5s ease;
    outline-color:#87CEEB;
    font-size:17px;
}
.form-container .form-inputs form #cname,.form-container .form-inputs form #cphone,.form-container .form-inputs form #cemail,.form-container .form-inputs form #cpackname,.form-container .form-inputs form #camount,.form-container .form-inputs form #cremarks{
    width:100%;
    box-sizing:border-box;
    padding:5px;
    border-radius:10px;
    border:1px solid #444;
    transition:.5s ease;
    outline-color:#87CEEB;
    font-size:17px;
    margin-bottom:5px;
}
.form-container .form-inputs form #camount{
    width:90%;
}
.form-container .form-inputs form #cpay{
    position:relative;
    left:43%;
    bottom:10px;
    box-sizing:border-box;
    padding:10px 20px;
    border-radius:10px;
    border:3px solid #ff6b00;
    transition:.5s ease;
    background:#ff6b00;
    color:#fff;
    font-weight:bold;
}
.form-container .form-inputs form #cpay:hover{
    color:#ff6b00;
    background:#fff;
    
}
.pkgvideo{
    position: absolute;
    top:80px;
    width: 100%;
    height: 60vh;
    background-image: url('../img/img-india2.jpg');
    background-size:cover;
    background-attachment: fixed;
}
.pkg_container{
    position: absolute;
    top:80vh;
    width: 100%;
    height: 80vh;
    display: flex;
}
.pkg_container .pkg_details{
    width:70%;
    box-sizing: border-box;
    padding:10px;
}
.pkg_container .pkg_details .tabs{
    list-style: none;
    display: flex;
    color:#f15800;
}
.pkg_container .pkg_details .tabs .tab{
    padding:10px;
    border:4px solid #f15800;
    border-bottom:0;
    border-top-right-radius: 10px; 
    margin: 2px;
    margin-right: 1%;
    margin-bottom: -2px;
    font-weight: bolder;
    background-color: #f1f1f1;
    cursor: pointer;
    transition: 0.5s ease;
    box-shadow: 0.5px 0.5px 1px #000000;
}
.pkg_container .pkg_details .tabs .tab:hover{
    box-shadow: 1.5px 1.5px 3px #000000;
    background-color: #ff4b00;
    color:#fff;
}
.pkg_container .pkg_details .tabs .active-tab{
    background-color: #ff4b00;
    color:#fff;
    transition: 0.5s ease;
    box-shadow: 2px 2px 4px #000000;
    font-size:20px
}
.pkg_container .pkg_details .tabview{
    list-style: none;
    display: flex;
    position: relative;
}
.pkg_container .pkg_details .tabview .panel{
    position: absolute;
    padding:10px;
    box-sizing: border-box;
    width: 100%;
    height: max-content;
    background: #ffffff;
    margin-top: 0;
    margin: 2px;
    border-top-right-radius:10px;
    border-bottom-left-radius:10px;
    border:5px solid #f15800 ;
    display: none;
    box-shadow: 2px 3px 2px #444;
}
.pkg_container .mapimg{
    position: relative;
    top:25%;
    width:30%;
    height:50%;
    background-color: #444;
}

.pcard-container{
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .pcard-container .pcard{
            position: relative;
            width: 100%;
            height: 170px;
            box-sizing: border-box;
            background: #eee;
            border-radius: 10px;
            box-shadow: 0px 0px 4px 0px #555;
            display: flex;
            flex-direction: row;
            overflow:hidden;
            
        }
        .pcard-container .pcard .pimg{
            position:relative;
            width: 300px;
            height: 100%;
            background: #f00;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            
        }
        .pcard-container .pcard .pimg img{
            width:100%;
            height:100%;
        }
        *{margin: 0;}
        .pcard-container .pcard .pcontent{
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
        }
        .pcard-container .pcard .pcontent h4{
            display: block;
            float: right;
            position: relative;
            bottom: 25px;
        }
        .pcard-container .pcard .pcontent h5{
            display: block;
            float: right;
            position: relative;
            top:20px;
            font-size: 16px;
        }
        .pcard-container .pcard .pcontent h3{
            position: relative;
            bottom: 5px;
            width: 100%;
            border-top: 2px solid #888;
            border-bottom: 2px solid #888;
            font-size: 17px;
            padding-top: 5px;
            padding-bottom: 5px;
        }
        .pcard-container .pcard .action-btn{
            margin-top:20px;
            display: flex;
            flex-direction: row;
            list-style: none;
        }
        .pcard-container .pcard .action-btn li a {
            text-decoration: none;
            color: rgb(205, 82, 0);
            padding: 10px 18px;
            border: 5px solid rgb(231, 93, 1);
            margin-right: 10px;
            margin-left: 10px;
            border-radius: 30px;
            transition: 0.2s ease;
        }
        .pcard-container .pcard .action-btn li a:hover{
            background: rgb(231, 93, 1);
            color: #fff;
        }
        .pcard-container .pcard .pprice{
            width: 300px;
            padding: 10px;
            box-sizing: border-box;
            background: rgb(255, 255, 255);
            border-left:2px solid #888;
            text-align: center;
        }
        /*--------------- admin page -------*/
.login-container {
    position: absolute;
    width: 50%;
    height: 65%;
    background: #fff;
    left: calc(50% - 25%);
    top: calc(50% - 40%);
    border-radius: 20px;
    box-sizing: border-box;
    transition: all .5s ease;
}

.login-container .login-heading {
    text-align: center;
    font-style: oblique;
    transition: all .5s ease;
    box-sizing: border-box;
    padding: 10px;
}

.login-container .login-signup-container {
    position: absolute;
    width: 100%;
    height: max-content;
}

.login-container .login-signup-container .tab-container {
    display: flex;
}

.login-container .login-signup-container .tab-container button {
    width: 100%;
    padding: 10px;
    background: #ff5b00;
    border: none;
    font-size: 18px;
    font-family: inherit;
    border-bottom: 5px solid #ff5b00;
    transition: .3s ease;
    cursor: pointer;
    outline: none;
    color: #fff;
}

.login-container .login-signup-container .tab-container button:hover {
    background: #ff5b00;
    color: #ffffff;
}

.login-container .login-signup-container .tab-container .activeTab {
    background: #ffffff;
    color: #ff5b00;
    border-bottom: 0;
    border-top: 5px solid #ff5b00;
}

.login-container .login-signup-container .tabs-container {
    width: 100%;
    box-sizing: border-box;
}

.login-container .login-signup-container .tabs-container .login-tab {
    padding: 10px;
}

.login-container .login-signup-container .tabs-container .signup-tab {
    display: none;
    position: absolute;
    top: 60px;
    padding: 10px;
}

.login-container .login-signup-container .tabs-container #form-control .block {
    display: flex;
}

.login-container .login-signup-container .tabs-container #form-control label {
    box-sizing: border-box;
    padding-bottom: 10px;
    padding-left: 5px;
}

.login-container .login-signup-container .tabs-container #form-control input{
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    outline: none;
    height: 30px;
    margin: 1px;
    margin-top: 8px;
    border: 1px solid #777;
    border-radius: 50px;
    padding-left: 12px;
    padding-right: 12px;
    box-shadow: inset 1px 1px 3px #888;
    transition: all 0.5s ease-in-out;
}
.login-container .login-signup-container .tabs-container #form-control input:focus{
    box-shadow: 0 0 5px rgb(0, 200, 255);
    border: 1px solid rgb(0, 200, 255);
}
.login-container .login-signup-container .tabs-container #form-control #submit_l,
.login-container .login-signup-container .tabs-container #form-control #reset_l {
    border: 3px solid #ff5b00;
    padding: 10px 20px;
    border-radius: 50px;
    background: #fff;
    color: #ff5b00;
    font-weight: bolder;
    position: relative;
    top: 20px;
    transition: .5s ease;
    outline: none;
    cursor: pointer;
}

.login-container .login-signup-container .tabs-container #form-control #submit_l:hover,
.login-container .login-signup-container .tabs-container #form-control #reset_l:hover {
    background: #ff5b00;
    color: #ffffff;
}

.error_l p{
    position: relative;
    bottom:-50px;
    color: #f00;
    padding:10px;
    border-radius: 10px;
    width: max-content;
}
.page-container{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height:100%;
    display:grid;
    grid-gap: 5px;
    grid-template-columns: 0.21fr 0.77fr;
}
.page-container .side-panel{
    background: #f15800;
    width:100%;
    height:100%;
    padding: 10px;
    box-sizing: border-box;
}
.page-container .side-panel .tab-box{
    display: flex;
    flex-direction: column;
}
.page-container .side-panel .tab-box .tab{
    padding: 10px;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 8px;
}
.page-container .side-panel .tab-box .tab:hover{
    background: rgb(255, 153, 0);
}
.page-container .side-panel .tab-box .tab i{
    transition: 0.5s;
}
.page-container .side-panel .tab-box .tab:hover i{
    rotate: 0 1 0 180deg;
}
.page-container .tab-pages{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    
}
.page-container .tab-pages .page{
    position: absolute;
    width:100%;
    height: 97%;
    background: #e3e1e1;
    box-sizing: border-box;
    padding:10px;
    border-radius: 30px;
    display:none;
    overflow-x: hidden;
    overflow-y: scroll;
}
.page-container .tab-pages #oprpage form{
    padding: 10px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 0.6fr;
    grid-gap: 10px;
}
.page-container .tab-pages #oprpage form textarea{
    width: 100%;
    height:90px;
    margin-top:10px ;
}
.page-container .tab-pages #oprpage form input{
    width: 100%;
    height:30px;
    margin-top:10px ;
}
.page-container .tab-pages .default-page{
    display: block;
}
