@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');





/*margin-bottom-top*/
.mt-0 {
    margin-top: 0px !important;
}
.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

.mt-200 {
    margin-top: 200px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

.blog-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);


}

.blog-title h1 {
    color: white;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;

}

.blog-title p {
    color: white;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 30px;
    text-align: center;
}

@media (max-width: 576px) {

    .blog-title h1 {
        font-size: 22px;
        text-align: center;
    }

    .blog-title p {
        font-size: 14px;
        text-align: center;
    }
}

.travelWrapper p {

    margin-top: 35px;
    font-size: 17px;
}

@media (min-width: 1023px) and (max-width: 1024px) {

    .aiWrapper p {
        font-size: 14px;
    }

    .travelWrapper p {

        margin-top: 3px;
        font-size: 15px;
    }
}

.card {
    border: none;
}

.main {
    display: flex;
}

.flexWrapper {
    display: flex;
    margin: 10px;
    justify-content: center;
    column-gap: 25px;

}

.content {
    background: #fff9f9;
    border-radius: 7px;
    padding: 20px;
}

@media (max-width: 600px) {

    .flexWrapper {
        flex-direction: column-reverse;
        row-gap: 20px;
    }

    .flexWrapper img {
        max-width: 100% !important;
    }

}

/*cards*/

.item {
    padding-left: 5px;
    padding-right: 5px;
}

.item-card {
    transition: 0.5s;
    cursor: pointer;
}

.item-card-title {
    font-size: 15px;
    transition: 1s;
    cursor: pointer;
}

.item-card-title i {
    font-size: 15px;
    transition: 1s;
    cursor: pointer;
    color: #ffa710
}

.card-title i:hover {
    transform: scale(1.25) rotate(100deg);
    color: #18d4ca;

}

/*.card:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}*/
.card-text {
    height: 125px;
}

.card::before,
.card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(255, 255, 255, 0.1);
    content: '';
    pointer-events: none;
}

.card::before {
    transform-origin: left top;
}

.card::after {
    transform-origin: right bottom;
}

/*.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
  transform: scale3d(1, 1, 1);
}
*/
@media (max-width: 600px;

) {
    .card .item-card .card-block {
        margin-bottom: 40px !important;
    }
}




@media (max-width: 768px) {
    .ai {
        margin-top: 110px !important;
    }
}

ul {
    list-style-type: none;
}

/*flex-image-gallery*/
.image-gallery {
    display: grid;
    /*flex-wrap: wrap;*/
    justify-content: center;
    gap: 10px;
    grid-template-columns: auto auto auto;
}

.image-gallery>li {
    flex-basis: 350px;
    /* width: 350px; */
}

.image-gallery li img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 5px;
}

.image-gallery::after {
    content: "";
    flex-basis: 350px;
}

.image-gallery>li {
    /* ... */
    position: relative;
    cursor: pointer;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(57, 57, 57, 0.502);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.2s 0.1s ease-in-out;
    color: #fff;
    border-radius: 5px;
    /* center overlay text */
    display: flex;
    align-items: center;
    justify-content: center;
}
.align-items-center{
    align-items: center !important;
}
/* hover */
.image-gallery li:hover .overlay {
    transform: scale(1);
}

@media (max-width: 600px) {
    .image-gallery {
        grid-template-columns: auto;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {
    .image-gallery {
        grid-template-columns: auto auto !important;
    }
}

@media (max-width: 400px) {
    .blog-title p {
        font-size: 12px;
    }
}


/*image grid*/

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 2px;
    align-items: start;
    justify-items: center;
    margin: auto;
    width: 100%;
}

.grid img {
    max-width: 100%;
}

.grid img:nth-child(2) {
    grid-column: span 3;
    grid-row: span 2;
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .grid img:nth-child(2) {
        grid-column: span 1;
    }
}

@media (min-width: 600px) and (max-width: 769px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

@media (min-width: 769px) and (max-width: 1025px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}