@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    list-style: none !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    font-family: "Nunito", sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Prompt", sans-serif;
}

span,
del,
strong {
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
    margin: 0;
    padding: 0;
}

a {
    color: #000;
    user-select: none;
}

*:focus {
    outline: none;
}
:root {
    --color-1: #ffffffa6;
    --color-2: #151415;
    --color-3: #fb5b32;
    --color-4: #1d231f;
    --color-5: #fff;
    --color-6: #4d40ca;
    --color-7: #efeefa;
    --color-8: rgb(102, 98, 98);
}

::-webkit-scrollbar {
    width: 0.35rem;
}

::-webkit-scrollbar-track {
    background-color: rgba(77, 64, 202, 0.5);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-6);
    border-radius: 4rem;
}

/* /////////////////utility//////////////////// */
.sub-heading {
    color: var(--color-6);
    font-weight: 500;
    text-transform: capitalize;
    text-align: left;
}

.main-heading {
    margin-top: 1rem;
    font-size: 3rem;
    font-weight: 700;
    text-transform: capitalize;
    text-align: left;
}

@media screen and (width< 576px) {
    .main-heading {
        font-size: 1.5rem;
    }
}

.button-style {
    display: flex;
    align-items: center;
    padding: 0.3rem 1rem 0.3rem 2rem;
    border-radius: 2.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-5);
    background-color: var(--color-3);
    gap: 1rem;
    width: max-content;
}

.button-style i {
    font-size: 2.4rem;
}

/* //////////////////top header//////////////////// */
#top-header {
    background-color: var(--color-2);
    color: var(--color-1);
    padding: 0.5rem 1rem;
}
.mail {
    cursor: pointer;
}

.media i {
    cursor: pointer;
}

.media i:hover {
    color: var(--color-3);
}

@media screen and (width<992px) {
    .logo img {
        width: 7rem !important;
    }

    .nav-button {
        padding: 1rem 1rem;
        display: none !important;
    }

}
/* ///////////nav bar//////////////// */
#head {
    position: sticky;
    top: 0;
    background-color: var(--color-5);
    z-index: 4;
}

.nav-menu li {
    padding: 0.5rem 0;
}
.nav-menu li a {
    font-weight: 500;
    color: var(--color-2);
    font-size: 1.02rem;
}

.nav-menu li:hover a {
    color: var(--color-3);
}

#nav-search {
    cursor: pointer;
}

.search-box {
    position: fixed;
    background-color: var(--color-5);
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 2rem;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    top:-100%;
}
@media screen and (width<992px) {
    .search-box{
        position: static !important;
        border: 1px solid rgb(204, 203, 203);
        height: 50px;
        padding: 1rem;
    } 
    .search-box input{
        width: 90% !important;
        border-bottom: none !important;
    }
}
.searchbox-active {
    animation: searchbox-open 0.5s forwards;
}
.searchbox-deactive{
    animation: searchbox-close 0.5s forwards;
}

.search-box .cancle {
    position: absolute;
    top: 1rem;
    right: 1em;
    cursor: pointer;
}

@keyframes searchbox-open {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }

}

@keyframes searchbox-close {
    0% {
        top: 0;
    }

    100% {
        top: -100%;
    }

}

.search-box input {
    width: 60%;
    border: none;
    border-bottom: 1px solid var(--color-2);
    height: 3rem;
    font-size: 1.5rem;
}

.search-box i {
    font-size: 1.5rem;
    color: var(--color-2);
    cursor: pointer;
}

.nav-button {
    background-color: var(--color-6);
    padding: 1.2rem 1rem;
    margin-left: 0.3rem;
    color: var(--color-5);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
/* ////////////hero section///////////// */
#hero .nav-button {
    display: none;
    justify-content: center;
    width: 40%;
    border-radius: 0.3rem;
    text-align: center;
}

.hero-content {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 90vh;
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/04.jpg');
    background-size: cover;
}
.hero-text {
    width: 100%;
    height: auto;
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text p:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-3);
    animation: fadeup 8s forwards infinite;
}

.hero-text h1 {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 7.2rem;
    animation: fadeup 8s forwards infinite;
}

.hero-text p:last-child {
    font-size: 1.2rem;
    font-weight: 400;
    animation: fadeup 8s forwards infinite;
}

@media screen and (width<992px) {

    .hero-text p:first-child {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-3);
        animation: fadeup 8s forwards infinite;
    }

    .hero-text h1 {
        font-size: 4.4rem;
        font-weight: 700;
        line-height: 4.6rem;
        animation: fadeup 8s forwards infinite;
    }

    .hero-text p:last-child {
        font-size: 1rem;
        font-weight: 400;
        animation: fadeup 8s forwards infinite;
    }

    #underline::before {
        bottom: 0.7rem !important;
        height: 0.3rem !important;
    }

    #hero .nav-button {
        display: flex !important;
        justify-content: center;
        width: 40%;
        border-radius: 0.3rem;
        text-align: center;
    }

}

@media screen and (width<576px) {

    .hero-text p:first-child {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--color-3);
        animation: fadeup 8s forwards infinite;
    }

    .hero-text h1 {
        font-size: 2.9rem;
        font-weight: 700;
        line-height: 3.6rem;
        animation: fadeup 8s forwards infinite;
    }

    .hero-text p:last-child {
        font-size: 1rem;
        font-weight: 400;
        animation: fadeup 8s forwards infinite;
    }

    #underline::before {
        bottom: 0.3rem !important;
        height: 0.3rem !important;
    }

    #hero .nav-button {
        width: 50%;
    }

}

#underline {
    position: relative;
    width: max-content;
    height: max-content;
    overflow: hidden;
}

#underline::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.5rem;
    bottom: 1rem;
    right: 0;
    background-color: var(--color-3);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

@keyframes fadeup {
    0% {
        opacity: 0;
        transform: translateY(1.5rem);
    }

    15% {
        opacity: 1;
        transform: translateY(0rem);
    }

    100% {
        opacity: 1;
    }

}

/*///////////// Trendy Destination//////////// */
.location {
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    animation: fade-in 0.5s forwards ease-in-out;
}

.location img {
    border-radius: 2rem;
}

.location-name {
    position: absolute;
    padding: 0.4rem 1.4rem;
    border-radius: 1.5rem;
    background-color: var(--color-5);
    font-weight: 500;
    text-align: center;
    bottom: 13%;
    left: 1.2rem;
    transition: all 0.4s;
    cursor: pointer;
    z-index: 3;
}

.location-name:hover {
    background-color: var(--color-6);
    color: var(--color-5);
}

.view-more {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(77, 64, 202, 0.6);
    z-index: 2;
    animation: fade-out 0.4s;
}

.location:hover .view-more {
    animation: fade-in 0.4s forwards;
}

.view-more span {
    position: absolute;
    right: 5%;
    top: 10%;
    color: var(--color-5);
    padding: 0.8rem 1rem;
    border-radius: 50%;
    background-color: var(--color-3);
    transition: all 0.4s;
    cursor: pointer;
}

.view-more span:hover {
    color: var(--color-2);
    background-color: var(--color-5);
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}


/*/////////// travle agency////////// */
#travil-agency {
    background-color: var(--color-7);
}

.travil-agency-left-content {
    position: relative;
}

.travil-agency-left-content img {
    border-radius: 1rem;
    width: 100%;
}
.floating-text {
    position: absolute;
    padding: 1rem 2rem;
    bottom: 10%;
    left: 10%;
    background-color: var(--color-3);
    border-radius: 1rem;
    color: var(--color-5);
    animation: float 3s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0rem);
    }

    50% {
        transform: translateY(-1.5rem);
    }

    100% {
        transform: translateY(0rem);

    }

}

.floating-text strong {
    font-size: 4rem;

}

.floating-text p {
    font-weight: 500;

}

.travil-agency-right-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.travil-agency-header p:last-child {
    margin-top: 2rem;
    color: var(--color-8);
}

.quotation {
    padding: 2rem;
    position: relative;
    background-color: var(--color-5);
    border-radius: 0.4rem;
    overflow: hidden;
}

.quotation::before {
    position: absolute;
    content: "";
    width: 0.35rem;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: var(--color-6);
}

.quotation p {
    font-size: 1.2rem;
    font-weight: 500;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;

}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;

}

.check-list li p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-8);
}

.check-list li i {
    font-size: 1.4rem;
    color: var(--color-6);
}

.travil-agency-right-content .button-style {
    background-color: var(--color-6);
}

.partners-heading {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-8);
    margin-top: 2rem;
    text-align: center;
}

#travil-agency .swiper {
    width: 100%;
    height: auto;
    padding: 1rem 0;
}

#travil-agency .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*///////  featured-places ////////// */
#featured-places {
    background-color: var(--color-1);
}

#featured-places .sub-heading~P {
    color: var(--color-8);
    margin-top: 1rem;
    text-align: center;
}

.featured-places-card {
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--color-5);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.featured-places-card img {
    width: 100%;
}

.location-info-price {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-bottom: 1px dashed var(--color-3);
    padding-bottom: 1rem;
}

.place-name {
    color: var(--color-6);
    font-size: 0.9rem;
    font-weight: 500;
}

.location-info-price h3 {
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s;
}

.location-info-price h3:hover {
    color: var(--color-6);
}

.price {
    margin-top: 0.8rem;
    font-weight: 500;
    color: var(--color-8);
}

.price span {
    color: var(--color-6);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0.2rem;
}

.price del {
    text-decoration: line-through !important;
}

.time {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.time li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.time i {
    color: var(--color-3);
}

.time p {
    font-size: 0.9rem;
    color: var(--color-8);

}

/*///////// weekly-travelling///////// */
#weekly-travelling {
    background-color: rgba(251, 91, 50, 0.1);
    padding: 6rem 0;

}

.weekly-travelling-left-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#weekly-travelling .button-style {
    background-color: var(--color-6);
}

.weekly-travelling-card {
    background-color: var(--color-5);
    border-radius: 1rem;
    overflow: hidden;
}

.weekly-travelling-card img {
    aspect-ratio: 10/8;
}

.weekly-travelling-card-content {
    padding: 0.6rem 1.5rem;
    border-radius: 1rem;
    transform: translateY(-1rem);
    background-color: var(--color-5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.weekly-travelling-card-content strong {
    font-size: 1.1rem;
    display: block;
}

.weekly-travelling-card .price {
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--color-3);
}

.location-address {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.location-address i {
    color: var(--color-3);
    font-size: 1.2rem;
}

.location-address p {
    font-weight: 500;
    color: var(--color-8);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--color-3);
}

#weekly-travelling .swiper {
    width: 100%;
    height: auto;
}

#weekly-travelling .placeSlider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toleft {
    background-color: var(--color-6);
    padding: 0.5rem;
}

.toleft .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--color-5);
}

.toleft .swiper-wrapper .swiper-slide h4 {
    font-size: 1.2rem;
}

.toright {
    background-color: var(--color-3);
    padding: 0.5rem;
}

.toright .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--color-5);
}

.toright .swiper-wrapper .swiper-slide h4 {
    font-size: 1.2rem;
}

/* //////tours guiding///// */
.tours-guiding-team-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.tours-guiding-team-heading p:last-child {
    color: var(--color-8);
}

.padding-guiding {
    padding: 6rem 0;
}

.guide {
    border-radius: 1.5rem;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--color-5);
    border-top-left-radius: 30%;
    border-top-right-radius: 30%;
    padding-bottom: 1.5rem;
}

.guide img {
    width: 90%;
    border-radius: 50%;
    position: relative;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.guide-info {
    margin: 0rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 0.4rem;
    border: 1px dashed rgba(251, 91, 50, 0.4);
    border-radius: 1rem;
}

.job {
    color: var(--color-3);
    font-size: 0.9rem;
}

.name {
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
}

.name:hover {
    color: var(--color-6);
}

.guide-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

}

.guide-contact li {
    padding: 0.5rem 0.7rem;
    border-radius: 50%;
    border: 1px solid rgb(177, 177, 177);
    transition: all 0.4s;
    cursor: pointer;
}

.guide-contact li:hover {
    border: 1px solid var(--color-6);
    color: var(--color-5);
    background-color: var(--color-6);
}

/* ////////////top-destination////////////// */
#top-destination {
    background-color: var(--color-7);
}

.top-destination-heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top-destination-heading p:last-child {
    color: var(--color-8);
}

.tour-type {
    background-color: var(--color-5);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1.7rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media screen and (width<500px) {
    .tour-type {
        flex-direction: column;
        text-align: center;
    }
}

.tour-icon {
    width: max-content;
    padding: 0.8rem;
    border-radius: 50%;
    background-color: var(--color-6);
}

.tour-type h3 {
    font-size: 1.1rem;
    text-transform: capitalize;
}

.tour-info p {
    font-weight: 800;
    color: var(--color-3);
}

.tour-info p span {
    font-weight: 500;
    color: var(--color-8);
}

.orange {
    background-color: rgb(248, 154, 96);
}

.pink {
    background-color: rgb(252, 128, 255);
}

.blue {
    background-color: rgb(33, 201, 243);
}

.mint {
    background-color: rgb(106, 243, 168);
}

.yellow {
    background-color: rgb(255, 207, 50);
}

.purple {
    background-color: rgb(159, 152, 226);
}

.green {
    background-color: rgb(145, 226, 94);
}

.red {
    background-color: rgb(226, 94, 96);
}

.special-offer {
    padding: 6rem 1rem;
    background-color: #000;
    color: var(--color-5);
    border-radius: 1.7rem;
    width: 100%;
    position: relative;
}

.special-offer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    z-index: 3;
    position: relative;
}

.special-offer-content h4 {
    color: var(--color-3);
    font-size: 1rem;
}

.special-offer-content h2 {
    font-size: 3rem;
    font-weight: 700;
}

.special-offer-content .button-style {
    color: var(--color-5);
    background-color: var(--color-6);
}

.off {
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 3;
    animation: up-down 3s infinite linear;
}

.bag {
    position: absolute;
    top: 10%;
    right: 2%;
    z-index: 3;
    animation: right-left 3s infinite linear;
}

@media screen and (width<=991px) {
    .off {
        width: 150px !important;
        top: 3%;

    }

    .bag {
        width: 200px !important;
        top: 29%;

    }

}

@media screen and (width<576px) {

    .special-offer-content h4 {
        color: var(--color-3);
        font-size: 1rem;
    }

    .special-offer-content h2 {
        font-size: 2rem;
        font-weight: 700;
    }

    .off {
        width: 100px !important;
        top: 2%;

    }

    .bag {
        width: 120px !important;
        top: 56%;

    }

}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(1rem);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes right-left {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-1rem);
    }

    100% {
        transform: translateX(0);
    }
}

/* ////////testimonial////////// */
.testimonial-heading-pera {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card {
    background-color: var(--color-5);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 5.5rem 2rem 2rem;
    position: relative;
}

.card-img {
    position: absolute;
    top: -2.8rem;
    left: 2rem;
}

.testimonial-quotation {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: justify;
    padding-bottom: 0.7rem;
    border-bottom: 1px dashed rgba(251, 91, 50, 0.4);
}

.person {
    margin-top: 0.5rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

.person h3 {
    font-size: 1.3rem;
}

#testimonial .swiper-wrapper {
    padding: 3rem 0 2rem;
}

/* ////////////////// */
#blog-news {
    background-color: rgba(251, 91, 50, 0.15);
    padding: 5rem 0;
}

.margin-top {
    margin-top: 4.5rem;
}

.blog-card {
    position: relative;
}

.blog-card img {
    border-radius: 1.5rem;
    width: 100%;

}

.blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.blog-card-content .comments {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.comments p {
    font-weight: 700;
}

.comments p span {
    font-weight: 400;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(251, 91, 50, 0.4);
}

.blog-card-content a {
    color: var(--color-6);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
}

.blog-card-date {
    position: absolute;
    width: 22%;
    border-radius: 0.5rem;
    overflow: hidden;
    color: var(--color-5);
    top: -1.5rem;
    left: 2rem;
}

.blog-card-date p:first-child {
    background-color: var(--color-3);
    padding: 0.3rem 0;
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
}

.blog-card-date P:last-child {
    background-color: var(--color-6);
    padding: 0.3rem 0;
    font-weight: 600;
    text-align: center;
}

/* /////////slider/////////// */
.slider-img {
    position: relative;
}

.slider-img img {
    aspect-ratio: 1/1;
    width: 100%;
}

.slider-img-hover {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    background-color: rgba(251, 91, 50, 0.7);
    animation: sih-out 0.5s;
}

.slider-img-hover i {
    font-size: 2.5rem;
    color: var(--color-5);
    cursor: pointer;
}

.slider-img:hover .slider-img-hover {
    animation: sih 0.5s forwards;
}

@keyframes sih {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes sih-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ///////////newsletter/////////// */
#newsletter {
    background-color: var(--color-7);
}

.newsletter-input {
    width: 100%;
}

.newsletter-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input input {
    width: 100%;
    padding: 1.2rem 2rem 1.2rem 1.5rem;
    border-radius: 2rem;
    border: none;
    font-size: 1.1rem;
}

.newsletter-input span {
    margin-left: -9.3rem;
    background-color: var(--color-6);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    color: var(--color-5);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;

}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.call-mail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.c-m-icon {
    background-color: var(--color-3);
    border-radius: 50%;
    padding: 0.6rem;
}

.info p:last-child {
    font-size: 1.1rem;
    font-weight: 700;
}

.device-store {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.device-store p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
}

.store {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

.ap-style {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: 0.5rem;
    background-color: var(--color-5);
    padding: 0.6rem 1rem;
}

.ap-style i {
    font-size: 1.7rem;
}

.ap-style p:first-child {
    font-size: 0.9rem;
    font-weight: 400;
}

.ap-style p:last-child {
    font-weight: 800;
}

.device-store .media i {
    font-size: 1.3rem;

}

.links {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.link {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link p {
    font-weight: 800;
    font-size: 1.5rem;
}

.link li {
    font-size: 1.1rem;
    color: var(--color-8);
    font-weight: 500;
    transition: all 0.4s;
    cursor: pointer;
}

.link li:hover {
    color: var(--color-6);
}

.gallery p {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;

}

.gallery-img {
    width: 100%;
    border-radius: 0.6rem;
    overflow: hidden;
    background-color: #4d40ca;
    position: relative;
    cursor: pointer;
}

.gallery-img img {
    width: 100%;
}

.gallery-img-hover {
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background-color: rgba(77, 64, 202, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-out 0.4s forwards;
}

.gallery-img-hover i {
    font-size: 1.5rem;
    color: var(--color-5);
}

.gallery-img:hover .gallery-img-hover {
    animation: fade-in 0.4s forwards;
}