﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/general-sans");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css");

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "Montserrat", system-ui, ui-sans-serif, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #341552;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111;
}

p,
span {
    color: #444;
    margin: 0;
}

.font-small {
    font-size: 0.75rem;
}

a {
    color: #214A93;
    text-decoration: none;
    font-size: 14px;
}

ul {
    padding: 0;
}

.btn-primary {
    background: #214A93;
    border-color: #214A93;
    color: #ffffff;
    border-radius: 6px;
}

    .btn-primary:hover {
        background: #214A93;
        border-color: #062f76;
        box-shadow: 0 0 10px #214A93;
    }

/* Header Style Start */
.head-box-cntr {
    box-shadow: 0 2px 4px #ccc;
}
.header {
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.header.Sticky {
  background: #fff;
  position: fixed;
  border-bottom: 1px solid #f9f3ff;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 12px 0;
}
.header.Sticky .navbar {
    padding: 20px 25px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-500);
  text-transform: uppercase;
}
.brand img {
  height: 55px;
}


.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
.menu.is-active {
  left: 0;
  background: #fff;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  margin-top: 8rem;
  padding: 0;
}
.menu-link {
    font-family: inherit;
    font-size: var(--text-xs);
    font-weight: 600;
    line-height: 1.5;
    color: black;
    transition: all 0.3s ease;
    padding: 2px 8px;
}
    .menu-link:hover {
        color: #214A93;
    }
.menu-block {
    font-size: var(--text-md);
    text-align: center;
    padding: 4px 12px;
    font-weight: bold;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    left: 0;
    width: auto;
    height: auto;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 1.75rem;
    column-gap: 1.2rem;
    margin: 0 auto;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  rotate: 0deg;
  border: none;
  outline: none;
  visibility: visible;
  background: none;
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  rotate: 0deg;
  border: none;
  outline: none;
  border-radius: 1rem;
  background-color: #341552;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}
.burger.is-active > .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

/*Footer section Start*/
.footer-area {
    background: #F8F8F8;
}
    .footer-area h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .footer-area .footer-list li {
        font-size: 14px;
        line-height: 26px;
        position: relative;
        transition: 0.2s;
    }
    .footer-area .footer-list li:hover {
        padding-left: 15px;
    }
    .footer-area .footer-list li:hover::after {
        position: absolute;
        content: "";
        top: 12px;
        left: 0;
        height: 2px;
        width: 10px;
        background: #214A93;
    }
    .footer-area .footer-list li a {
        color: #222;
    }
        .footer-area .footer-list li:hover a {
            color: #214A93;
        }
    .footer-area .payment_options img {
        width: 50px;
    }
    .footer-area .social_media {
        text-align: center;
        gap: 15px;
    }

    .footer-area .social_media i {
        font-size: 18px;
        color: #222;
    }
        .footer-area .social_media i:hover {
            color: #214A93;
        }
    .footer-area .flights_links {
        margin-bottom: 10px;
        display: inline-block;
    }
    .footer-area .flights_links li {
        font-weight: bold;
        float: left;
        font-size: 13px;
        margin-right: 2px;
    }
    .footer-area .flights_links li a {
        font-weight: normal;
        color: #666;
    }
    .footer-area .footer-bottom .payment_options {
        gap: 10px
    }.footer-area .footer-bottom .payment_options a i {
        font-size: 24px;
        color: #222;
    }
        .footer-area .footer-bottom .payment_options a:hover i {
            color: #214A93;
        }
.footer-bottom {
    margin-top: 60px;
    background: #D9D9D9;
    padding: 15px 0;
}
    .footer-bottom ul {
        font-size: 14px;
        margin-bottom: 0;
    }
.footer-bottom ul li {
    font-size: 14px;
}
/*Footer section End*/




@media (max-width: 769px) {
    .footer-bottom ul, .footer-area .social_media {
        justify-content: center !important;
    }
}

.wrapper {
    padding: 40px 0;
}

.content_box .card {
    margin-bottom: 15px;
    height: 94%;
    background: #fafafa;
}
.content_box .card .card-body {
    padding: 25px;
}
.content_box .card .card-body img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}
    .content_box .card .card-body h3 {
        font-size: 20px;
        margin-bottom: 0;
        width: 100%;
        color: #4f3dee;
        font-family: cursive, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: bold;
    }
.content_box .big_blog .card-body {
    position: relative;
}
    .content_box .big_blog .card-body img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
    .content_box .big_blog .card-body h3 {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0));
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 50px 1rem 1rem;
        color: white;
        border-radius: 5px;
    }

.side-link .card {
    margin-bottom: 10px;
}
.side-link .card .card-body {
    display: flex;
    align-items: center;
    gap: 12px;
}
.side-link .card .card-body img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}
.side-link .card .card-body h5 {
   font-size: 16px;
   margin: 0;
}


