@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'PP Eiko';
    src: url('../font/PPEiko-Thin.woff') format('woff2'),
        url('../font/PPEiko-Thin.woff2') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #2e4c47;
    --secondary-color: #006877;
    --white-color: #FFFFFF;
    --third-color: #2f4858;
    --text-color: #434343;
    --text-color-2: #727272;
    --red-color: #ff0000;
    --blue-color: #4185F5;
    --green-color: #28A745;
    --my-font: 'PP Eiko';
    --box-shadow: 2px 2px 15px 0px rgba(58, 58, 58, 0.155);
    --box-shadow-2: 0px 0px 25px 1px rgba(75, 75, 75, 0.1);
    --box-shadow-3: 0px 0px 20px 1px rgba(75, 75, 75, 0.1);
    --box-shadow-4: 0px 2px 15px 1px rgba(58, 58, 58, 0.1);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease-in;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.capitalize {
    text-transform: capitalize !important;
}

.my-font {
    font-variant: var(--my-font);
}

.title {
    font-size: 42px;
    font-weight: 800;
    line-height: 54px;
    font-family: var(--my-font);
    color: var(--primary-color);
    margin-bottom: 40px;
}

.title span {
    font-style: normal;
}

.section-padding {
    padding: 50px 0;
}

/* ================================ 
Color section 
=================================== */
.text-color {
    color: var(--text-color-2);
}

.primary-color {
    color: var(--primary-color);
}

.second-color {
    color: var(--secondary-color);
}

.red-color {
    color: var(--red-color);
}

.green-color {
    color: var(--green-color);
}

.blue-color {
    color: var(--blue-color);
}

.my-font {
    font-family: var(--my-font);
}

.fancy-div {
    border-radius: 200px 0 200px 0;
    overflow: hidden !important;
}

/* ================================ 
Button style
=================================== */
.btn1 {
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    display: inline-block;
}

.btn1:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}




/* ================================ 
Header section 
=================================== */
.navbar {
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4e4e4;
    background-color: var(--secondary-color);
}


.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 1rem;
    color: var(--white-color);
}


.navbar .nav-link:hover {
    color: #faca22;
}

.navbar .navbar-brand {
    font-size: 24px;
    color: var(--white-color);
}

@media all and (min-width:992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }



    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: #4185F5;
        background-color: #fff0
    }

    .dropdown-toggle::after {
        margin-left: 8px
    }
}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #0000000f;
    animation: fadeInDown 0.5s ease-in-out;
}

/* .navbar.scroll-on .nav-link {
    color: #121212;
}

.navbar.scroll-on .navbar-brand {
    color: #121212;
}

.navbar.scroll-on .nav-link:hover {
    color: var(--secondary-color);
} */

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}



/* ================================ 
Banner section 
=================================== */
.banner {
    display: flex;
    align-items: center;
    height: 92.5vh;
    background: #F6FFFE;
}

.banner h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 66px;
    color: var(--primary-color);
}

.banner p {
    font-size: 18px;
    line-height: 32px;
    color: #3e3e3e;
    margin-bottom: 30px;
}

.banner .fancy-div {
    border-radius: 200px 0 200px 0;
    overflow: hidden !important;
}
.banner .fancy-div .img-fluid {
    width: 100%;
    height: 600px;
    object-fit: cover
}


/* ================================ 
About section 
=================================== */
.sub-title {
    margin-bottom: 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 32px;

    &::after {
        content: "";
        height: 2px;
        width: 50px;
        background-color: var(--primary-color);
        margin-left: 0.875rem;
    }
}

.about .main-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.about .nav-tabs .nav-link {
    font-size: 18px;
    padding: 0;
    margin: 10px 20px;
    position: relative;
    transition: all 0.25s ease-in-out;
    color: #121212;

    &::before {
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -6px;
        background-color: var(--secondary-color);
        transform: scale(0);
        transition: all 0.25s ease-in-out;
    }

    &.active {
        color: var(--secondary-color);
    }

    &.active::before {
        transform: scale(1);
    }

    &:hover {
        color: var(--primary-color);
    }

    &:hover::before {
        transform: scale(1);
        background-color: var(--primary-color);
    }
}

.about .list-group-item {
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;

    h5 {
        font-size: 20px;
        font-family: var(--my-font);
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 8px;
    }
}

.about .tab-pane h5 {
    font-family: var(--my-font);
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: underline;
    margin-bottom: 10px;
    font-style: italic;
}

.about .fancy-div {
    border-radius: 0 200px 0 200px;
    overflow: hidden !important;
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    z-index: 99;
}

/* ================================ 
Books section 
=================================== */
.books {
    background-color: #fffbf3;

    .fancy-div {
        overflow: hidden !important;
        border-radius: 100px 0 100px 0;
    }

.book-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--my-font);
  line-height: 28px; /* reduced from 34px */
  padding: 0 10px;
  margin-top: 14px;
  margin-bottom: 8px; /* reduced from 30px */
}


.book-title-des {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--my-font);
    line-height: 26px; /* reduced from 34px */
    margin-top: 4px; /* reduced from 14px */
    padding: 0 10px;
    margin-bottom: 16px; /* reduced for tighter layout */
}

}

/* ================================ 
press section 
=================================== */
.press {
    .inner-contain {
        h3 {
            font-size: 22px;
            line-height: 32px;
            font-family: var(--my-font);
            font-weight: 900;
            margin-bottom: 6px;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .img-fluid {
            margin-bottom: 16px;
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        p {
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            line-height: 28px;
            color: #4b4b4b;
        }
    }
}



/* ================================ 
Footer section 
=================================== */
footer {
    background-color: #00282d;
    padding-top: 3rem;
    color: var(--white-color);
}

footer a:hover {
    color: #faca22;
}



/* ================================ 
Inner Banner Page 
=================================== */
.inner-banner {
    width: 100%;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E2F0EF;
}

.getquoteModal .my-btn-close {
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    z-index: 88;
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ================================ 
Overview section 
=================================== */
.overview {
    h2 {
        font-size: 36px;
        font-family: var(--my-font);
        color: var(--primary-color);
        margin-bottom: 14px;
        font-weight: 900;
    }

    p {
        line-height: 26px;
        color: #464646;
        margin-bottom: 24px;
        text-align: justify;
    }
}



.other-info {
    p {
        font-size: 18px;
        line-height: 30px;
        text-align: justify;
    }

    .hightlight {
        display: inline-block;
        padding: 12px 18px;
        font-size: 20px;
        font-weight: 900;
        font-family: var(--my-font);
        color: var(--primary-color);
        width: 50%;
        border: 1px solid var(--primary-color);
        margin-bottom: 24px;
        margin-top: 12px;
        text-align: center;

        &:last-child {
            margin-left: 1rem;
        }
    }
}



.gallery {
    .img-fluid {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 14px;
    }
}


.on-journal {
    h2 {
        font-size: 24px;
        margin-bottom: 30px;
        font-weight: 900;
        font-family: var(--my-font);
        line-height: 34px; 
    }

    h4 {
        font-size: 20px;
        margin-bottom: 16px;
        font-weight: 400;
        padding-bottom: 16px;
        border-bottom: 1px solid #c3c3c3;
        color: #484848;

        &:last-child {
            border: none;
        }
    }
}


.doc-video {
    h3 {
        font-size: 20px;
    }
}


@media (max-width: 1366px) {
    .banner .fancy-div .img-fluid {
        width: 100%;
        height: 500px;
        object-fit: cover
    }
    .banner h1 {
      font-size: 42px;
      line-height: 50px;
    }
    .overview  .fancy-div .img-fluid {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 991px) {

    .navbar .nav-link {
        padding: 10px 18px !important;
        font-size: 16px;
        display: block;
        margin: 0;
        border-bottom: 1px dashed #a8a8a8;
        border-width: 1px;
        color: #121212;
    }

    .navbar .nav-link:hover {
        color: var(--primary-color);
    }

    #offcanvasNavbar,
    #filter-offcanvas {
        width: 300px;
        height: 100vh;
        background-color: #fff
    }

    #offcanvasNavbar .button {
        display: inline-block;
        margin-top: 10px
    }

    .offcanvas-title img {
        height: 50px
    }

    .offcanvas-title img {
        height: 30px
    }

    .offcanvas-header {
        background-color: #f4f4f4;
        padding-top: .75rem;
        padding-bottom: .75rem
    }

    .offcanvas-body {
        padding-left: 0 !important;
        padding-top: 8px;
        padding-right: 0 !important;
    }

    .my-mobile-menu li {
        font-size: 14px;
        padding: 8px 18px;
        position: relative;
        padding-left: 34px;
        border-bottom: 1px solid #ddd;
    }

    .my-mobile-menu li a {
        white-space: wrap;

    }

    .my-mobile-menu li a i {
        font-size: 7px;
        position: absolute;
        top: 13px;
        left: 6%;
        color: var(--primary-color);
    }

    .reverse {
        flex-direction: column-reverse;
    }

    .banner {
        height: auto;
        padding: 2rem 0;
    }

    .other-info {
        .hightlight {
            font-size: 16px;
        }
    }

    .inner-banner h1 {
        font-size: 36px;
    }
}










@media (max-width: 480px) {
    body {
        font-size: 90%;
    }

    .banner {
        height: auto;
        padding: 2rem 0;
    }

      .banner h1 {
    font-size: 28px;
    line-height: 24px;
  }
  .inner-banner {
  height: 150px;
}
  .inner-banner h1 {
    font-size: 30px;
  }
  .fancy-div {
  border-radius: 150px 0 150px 0;
  overflow: hidden !important;
}
  .overview .fancy-div .img-fluid {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

    .about .nav-tabs .nav-link {
        font-size: 16px;
        margin: 10px 10px;
    }
.title {
  font-size: 32px;
  line-height: auto;
  margin-bottom: 30px;
}
.about .fancy-div {
  border-radius: 0 150px 0 150px;
}
.banner .fancy-div {
  border-radius: 150px 0 150px 0;
  overflow: hidden !important;
}
  .banner .fancy-div .img-fluid {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }
  .overview  .fancy-div .img-fluid {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }
}

@media (max-width: 430px) {
    .about .fancy-div {
  border-radius: 0 120px 0 120px;
}
.banner .fancy-div {
  border-radius: 120px 0 120px 0;
  overflow: hidden !important;
}
  .banner .fancy-div .img-fluid {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .overview  .fancy-div .img-fluid {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .banner h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .overview {
   h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
}