@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap");
:root {
    --orange: #ffa500;
    --white-color: #fff;
    --black-color: #333;
    --blue-color: #3366ff;
    --light-color: rgba(0, 0, 0, 0.3);
    --gray-color: #8c8c8c;
}

* {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all 0.2s linear;
}

*::selection {
    background: var(--orange);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: var(--white-color);
}

html::-webkit-scrollbar-thumb {
    background: var(--black-color);
    border-radius: 5rem;
}

section {
    padding: 2rem 9%;
}

.bgchange.active {
    background: rgba(0, 0, 0, 0.7);
}

.heading {
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 0.15rem solid var(--orange);
    font-size: 3rem;
    color: var(--black-color);
    text-transform: uppercase;
    font-weight: 1000;
}


/*.heading span {
    font-size: 3.5rem;
    background: rgba(255, 165, 0, 0.2);
    color: var(--orange);
    border-radius: 0.5rem;
    padding: 0.2rem 1rem;
}

.heading span.space {
    background: none;
}*/

.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: var(--blue-color);
    color: var(--white-color);
    font-size: 1.8rem;
    padding: 0.9rem 3rem;
    cursor: pointer;
    transition: all 0.2s linear;
}

.btn:hover {
    background: var(--orange);
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #333;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 9%;
    z-index: 1000;
}

header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
}

header .logo span {
    color: var(--orange);
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    color: #fff;
    font-size: 2rem;
    margin: 0 0.8rem;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

header .navbar a:hover {
    color: var(--orange);
}

header .icons i {
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}

header .icons i:hover {
    color: var(--orange);
}

header .search-bar-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: #333;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar {
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.7rem;
    border-radius: 0.5rem;
}

header .search-bar-container label {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 1.5rem;
}

header .search-bar-container label:hover {
    color: var(--orange);
}

img {
    width: 10%;
}

#menu-bar {
    color: #fff;
    border: 0.1rem solid #fff;
    border-radius: 0.5rem;
    font-size: 3rem;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    display: none;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: #333;
    display: none;
    top: 30px;
    padding: 0;
}

header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
}

header .navbar ul li ul li a {
    font-size: 1.3rem;
    left: 200px;
    padding-top: 1rem;
}

header .navbar ul li ul ul {
    /*left: 100px;*/
    top: 0;
}

header .navbar ul li:focus-within>ul,
header .navbar ul li:hover>ul {
    display: initial;
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
}

.home .content {
    text-align: center;
}

.home .content h3 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.home .content p {
    font-size: 2.5rem;
    color: #fff;
    padding: 0.5rem 0;
}

.home .video-container img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home .controls {
    padding: 1rem;
    border-radius: 5rem;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    top: 10rem;
}

.home .controls .vid-btn {
    height: 2rem;
    width: 2rem;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin: 0 0.5rem;
}

.home .controls .vid-btn.active {
    background: var(--orange);
}

#carouselExampleInterval .carousel-item {
    height: 100vh;
    min-height: 300px;
    background: no-repeat scroll center scroll;
    -webkit-background-size: cover;
    object-fit: cover;
}

#carouselExampleInterval .carousel-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.2;
}

#carouselExampleInterval .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#carouselExampleInterval .carousel-caption {
    bottom: 400px;
    padding-left: 100px;
    padding-right: 100px;
}

#carouselExampleInterval .carousel-caption h3 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
    /*font-size:100px;
    font-weight:700;*/
}

#carouselExampleInterval .carousel-caption p {
    font-size: 2.5rem;
    color: #fff;
    padding: 0.5rem 0;
}

.slider-btn {
    margin-top: 30px;
}

.slider-btn .btn {
    background-color: #e74c3c;
    color: #fff;
    border-radius: 0;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    margin-right: 15px;
}

.slider-btn .btn-2 {
    color: #111010;
    background-color: white;
}

.category .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.category .box-container .box {
    height: 30rem;
    flex: 1 1 40rem;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.category .box-container .box img {
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 1.9;
    object-fit: cover;
}

.category .box-container .box:hover img {
    transform: scale(1.1);
}

.category .box-container .content {
    position: absolute;
    bottom: 7rem;
    left: 2rem;
}

.category .box-container .content span {
    font-size: 2rem;
    color: var(--orange);
}

.category .box-container .content h3 {
    font-size: 3rem;
    color: var(--white-color);
    text-transform: uppercase;
    padding-top: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.intpackages .int-slider .slide {
    overflow: hidden;
    position: relative;
    border: 0.1rem solid var(--light-color);
    border-radius: 0.5rem;
    background: var(--white-color);
}

.intpackages .int-slider .slide .image {
    padding: 1rem;
}

.intpackages .int-slider .slide .image img {
    height: 25rem;
    width: 100%;
    object-fit: cover;
}

.intpackages .int-slider .slide .content {
    padding: 2rem;
    border-top: 0.1rem solid var(--light-color);
}

.intpackages .int-slider .slide .icons {
    position: absolute;
    top: 0;
    right: -7rem;
}

.intpackages .int-slider .slide:hover .icons {
    right: 1rem;
}

.intpackages .int-slider .slide .icons a {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    border-radius: 50%;
    background: var(--black-color);
    color: var(--white-color);
    display: block;
    margin-top: 1rem;
}

.intpackages .int-slider .slide .icons a:hover {
    background: var(--orange);
    color: #fff;
    /*transform: rotate(360deg);*/
}

.intpackages .int-slider .slide .content .stars i {
    font-size: 2rem;
    color: var(--orange);
}

.intpackages .int-slider .slide .content .stars span {
    font-size: 2rem;
    color: var(--black-color);
    font-weight: 300;
}

.intpackages .int-slider .slide .content h3 {
    color: var(--black-color);
    font-weight: 800;
    font-size: 2rem;
    padding: 0.5rem 0;
}

.intpackages .int-slider .slide .content h3 i {
    color: var(--blue-color);
}

.intpackages .int-slider .slide .content .price {
    font-size: 2rem;
    color: #333;
    padding-top: 1rem;
}

.intpackages .int-slider .slide .content .price span {
    color: var(--black-color);
    font-weight: normal;
    font-size: 1.5rem;
    text-decoration: line-through;
}

.intpackages .int-slider .slide .content a {
    font-weight: 300;
    font-size: 1.5rem;
    padding: 10px 15px 10px 15px;
}

.intpackages .int-slider .swiper-button-next,
.intpackages .int-slider .swiper-button-prev {
    color: var(--white-color);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.intpackages .gap {
    margin-bottom: 2rem;
}

.services .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.services .box-container .box {
    flex: 1 1 40rem;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.services .box-container .box i {
    padding: 1rem;
    font-size: 5rem;
    color: var(--orange);
}

.services .box-container .box h3 {
    font-size: 2.5rem;
    color: #333;
}

.services .box-container .box p {
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.services .box-container .box:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.other-method {
    text-align: center;
}

.other-method .othermethod-slider img {
    width: 50%;
}

.paymentmode .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.paymentmode .box-container .box {
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border: 1rem solid #fff;
    border-radius: 0.5rem;
    flex: 1 1 40rem;
    height: 30rem;
    position: relative;
}

.paymentmode .box-container .box img {
    height: 100%;
    width: 100%;
}

.footer {
    background: #333;
    color: var(--white-color);
}

.footer .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footerbottom {
    font-size: 1.5rem;
}

.footerbottom .email {
    color: var(--orange);
}

.footer .box-container .box {
    padding: 1rem 0;
    flex: 1 1 25rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    padding: 0.7rem 0;
    color: #fff;
}

.footer .box-container .box p {
    font-size: 1.5rem;
    padding: 0.7rem 0;
    color: #eee;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    padding: 0.7rem 0;
    color: #eee;
    text-decoration: none;
}

.footer .box-container .box a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.footer .credit {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
}

.footer .credit span {
    color: var(--orange);
}

.bookticket {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    z-index: 0;
}

.bookticket .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.bookticket .box-container .card-panel {
    box-shadow: 0px 4px 15px 2px #e0e0e0;
    flex: 1 1 40rem;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    padding: 0;
}

.bookticket .box-container .bp {
    flex-grow: 8;
}

.bookticket .box-container .pc .card-body {
    text-align: justify;
}

.bookticket span {
    font-size: 1.5rem;
}

.book {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    z-index: 0;
}

.book .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.book .box-container .card-panel {
    box-shadow: 0px 4px 15px 2px #e0e0e0;
    flex: 1 1 40rem;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    padding: 0;
}

.book .box-container .bp {
    flex-grow: 8;
}

.book .box-container .pc .card-body {
    text-align: justify;
}

.book span {
    font-size: 1.5rem;
}

.card-panel .card-header {
    object-fit: cover;
    background-image: linear-gradient( to right, #3366ff, #6088ff, #5f87ff, #688dfd, #7799ff);
    width: 100%;
    color: #fff;
}

.card-panel .card-header h5 {
    font-weight: 800;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.card-panel input {
    border-radius: 15px;
    border-color: #bdbdbd;
    background-color: #f5f5f5;
    font-size: 1.3rem;
    /*  border: 0;
    border-bottom: 1px solid #bdbdbd;
    border-bottom-width: thin;*/
}

.card-panel label {
    font-size: 1.5rem;
}

.card-panel .newbook {
    background: var(--blue-color);
    text-shadow: #000;
    border-color: #325bd4;
    border-radius: 15px;
    font-weight: 300;
    font-size: 1.5rem;
}

.card-panel .newbook:hover {
    background-image: linear-gradient( to right, #6f8eec, #7d98e9, #91acfa, #96aff8, #aec2fa);
    color: #fff;
    font-weight: 800;
    border-color: #2b60fd;
    outline: none !important;
    box-shadow: none !important;
}

.card-panel .newbook:active:focus {
    background-image: linear-gradient( to right, #456adb, #4d69bd, #415eb6, #5467a0, #4a5e9b);
    border-color: #ff8240;
    outline: none !important;
    box-shadow: none !important;
}

.passengerscapacity:hover {
    cursor: pointer;
}

.tservice,
#ticketAirline {
    font-size: 1.5rem;
}

.tab-content .tab-pane input {
    font-size: 1.5rem;
}

.tservice .passengerscapacity span {
    font-size: 1.5rem;
}

.tab-content .tab-pane h2 {
    font-size: 3rem;
    font-weight: 900;
}

.onewaydeparture {
    cursor: pointer;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

#tgodepart {
    font-size: 1.5rem;
}

#tgoarrive {
    font-size: 1.5rem;
}

.baggageDet th {
    color: #fff;
    background-color: #246fe0;
    border-bottom: #eee 0.2px solid;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
}

.baggageDet td {
    background-color: #eeeeee;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-weight: 300;
    margin: auto, 0;
    font-size: 1.4rem;
}

.baggageDet td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
}

.otherservices {
    margin-top: 100px;
    min-height: 400px;
}

.otherservices .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.otherservices .box-container .box {
    flex: 1 1 40rem;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.otherservices .box-container .box i {
    padding: 1rem;
    font-size: 5rem;
    color: var(--orange);
}

.otherservices .box-container .box h3 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
}

.insuranceguest {
    font-size: 1.5rem;
}

.insuranceguest th {
    color: #fff;
    background-color: #246fe0;
    border-bottom: #eee 0.2px solid;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-weight: 500;
    width: 40%;
    text-align: left;
}

.insuranceguest td {
    background-color: #eeeeee;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-weight: 700;
    margin: auto, 0;
}

.container {
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

iframe {
    /*width: 55%;
    height: 500px;*/
}

.detailbox {
    margin-top: 80px;
}

.detailbox .dbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.detailbox .dbox-container .box {
    flex: 1 1 40rem;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 1.5rem;
}


/*.deatilbox .dbox-container img{
    height: 50%;
    width: 50%;
}*/

.detailbox .dbox-container .left {
    font-size: 1.5rem;
    flex-grow: 4;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.detailbox .dbox-container .box .accordion-button{
   
    background-color: #eee
}
.detailbox .dbox-container .box .card h4 {
    margin-left: 10px;
    font-weight: 800;
}

.detailbox .dbox-container .box .card h2 {
    font-weight: 800;
}

.detailbox .dbox-container .box .card ul {
    margin-left: 10px;
    font-size: 1.5rem;
}

.detailbox .dbox-container .box .card li {
    border-bottom: 0px;
}

.detailbox .dbox-container .right {
    padding: 1rem;
}

.detailbox .dbox-container .box .rTrav {
    padding: 1rem;
    height: 580px;
    overflow-y: scroll;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.detailbox .dbox-container .box .rTrav .card p .dprice {
    margin-right: 220px;
}

.imgDesti {
    margin-top: auto;
}

.detailbox .dbox-container .box .rTrav h3 {
    font-weight: 800;
}

.detailbox .dbox-container .box .rTrav .card .destiName {
    font-size: 1.8rem;
    font-weight: 800;
}

.detailbox .dbox-container .box .rTrav .card p {
    font-size: 1.7rem;
}

.detailbox .dbox-container .box .rTrav .right .card a {
    text-decoration: none;
    color: #fff;
}

.detailbox .dbox-container .box .rTrav::-webkit-scrollbar {
    display: none;
}
    .contacts{
    margin-top: 70px;
    }
    .contacts .box-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .contacts  .box-container .box {
        flex: 1 1 40rem;
        border-radius: 0.5rem;
        padding: 1rem;
       
    }
    
    .contacts  .box-container .box i {
        padding: 1rem;
        font-size: 5rem;
        color: var(--orange);
    }
    
    .contacts .box-container .box h1 {
        font-size: 2.5rem;
        color: #333;
        text-align: center;
    }
    
    .contacts .box-container .box p {
        font-size: 2rem;
        color: #666;
        padding: 1rem 0;
        text-align: center;
    }
@media (max-width: 950px) {
    html {
        font-size: 55%;
    }
    header {
        padding: 2rem;
    }
    header .navbar ul li ul {
        position: relative;
        width: 100%;
        top: 1px;
    }
    header .navbar ul li ul li {
        background: #2b2b2b;
        padding: 0;
    }
    section {
        padding: 2rem;
    }
    #carouselExampleInterval .carousel-caption {
        bottom: 500px;
        padding-left: 50px;
        padding-right: 50px;
    }
    #carouselExampleInterval .carousel-caption h3 {
        font-size: 3.5rem;
        /*font-size:100px;
        font-weight:700;*/
    }
    #carouselExampleInterval .carousel-caption p {
        font-size: 1.5rem;
    }
    .baggageDet table,
    .baggageDet thead,
    .baggageDet tbody,
    .baggageDet th,
    .baggageDet td,
    .baggageDet tr {
        display: block;
        background-color: #eeeeee;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    .baggageDet thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .baggageDet tr {
        border: 1px solid #ccc;
        font-size: 1.4rem;
    }
    .baggageDet td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        font-size: 1.4rem;
    }
    .baggageDet td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
    .baggageDet td:nth-of-type(1):before {
        content: "Country";
        font-weight: 800;
        font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
        color: #fff;
        background-color: #246fe0;
        padding: 7px;
        height: 45px;
        margin-top: -6px;
        margin-left: -6px;
        align-items: center;
    }
    .baggageDet td:nth-of-type(2):before {
        content: "Travel Tax/Tripping Fee";
        font-weight: 800;
        font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
        color: #fff;
        background-color: #246fe0;
        padding: 7px;
        height: 45px;
        margin-top: -6px;
        margin-left: -6px;
        align-items: center;
    }
    .baggageDet td:nth-of-type(3):before {
        content: "20Kilos(per way)";
        font-weight: 800;
        font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
        color: #fff;
        background-color: #246fe0;
        padding: 7px;
        height: 45px;
        margin-top: -6px;
        margin-left: -6px;
        align-items: center;
    }
    .baggageDet td:nth-of-type(4):before {
        content: "30Kilos(per way)";
        font-weight: 800;
        font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
        color: #fff;
        background-color: #246fe0;
        padding: 7px;
        height: 45px;
        margin-top: -6px;
        margin-left: -6px;
        align-items: center;
    }
    .baggageDet td:nth-of-type(5):before {
        content: "40Kilos(per way)";
        font-weight: 800;
        font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
        color: #fff;
        background-color: #246fe0;
        padding: 7px;
        height: 45px;
        margin-top: -6px;
        margin-left: -6px;
        align-items: center;
    }
    iframe {
        width: 80%;
    }
}

@media (max-width: 768px) {
    #menu-bar {
        display: initial;
    }
    header .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #333;
        border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    header .navbar ul li {
        width: 100%;
    }
    header .navbar ul li a {
        display: block;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        width: 100%;
    }
    #carouselExampleInterval .carousel-caption {
        bottom: 500px;
        padding-left: 10px;
        padding-right: 10px;
    }
    #carouselExampleInterval .carousel-caption h3 {
        font-size: 2.5rem;
        /*font-size:100px;
        font-weight:700;*/
    }
    #carouselExampleInterval .carousel-caption p {
        font-size: 1.3rem;
    }
    .category .box-container .content h3 {
        font-size: 2.5rem;
    }
    iframe {
        width: 100%;
    }
    /*.category .box-container .content a {
        font-size: 1.4rem;
        
    }*/
}

@media (max-width: 500px) {
    html {
        font-size: 50%;
    }
    .heading span {
        font-size: 2.5rem;
    }
}