:root {
    --globalfontsize: 16px;

	--primarycolor: #2f2f2f;
    --bluebg: #15568e;
    --redbg: #ce6021;
    --bgwhite: #ffffff;
    --graybg: #eeeeee;
}

body {
	font-family: 'Karla', sans-serif;
    font-size: var(--globalfontsize);
    color: var(--primarycolor);
	line-height: 28px;
    font-weight: 400;
    overflow-x: hidden;
}
* {
	outline: none !important;
}
a {
	text-decoration: none !important;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
::selection {
  background: #15568e;
  color: #ffffff;
}
:focus {
    box-shadow: none !important;
}
img {
	max-width: 100%;
}
.bg__gray {
    background-color: var(--graybg);
}
.bg__white {
    background-color: var(--bgwhite);
}
svg {
	width: 100%;
	height: 100%;
}
path {
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
.btn:foucs {
    box-shadow: none !important;
} 
.form-control {
    height: auto;
    padding: 12px 20px;
    background-color: #ffffff;
    border: 1px solid #15568e;
    border-radius: 16px 0 16px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
.form-control:focus {
    box-shadow: none;
    border-color: inherit;
}
.form-control::-webkit-input-placeholder {
    color: #05020C;
}
.form-control::-moz-placeholder {
    color: #05020C;
}
.form-control:-ms-input-placeholder {
    color: #05020C;
}
.form-control::-ms-input-placeholder {
    color: #05020C;
}
.form-control::placeholder {
    color: #05020C;
}
.btn {
    border-radius: 20px 0 20px 0;
    padding: 10px 25px;
    font-size: 20px;
    border: none;
    color: var(--primarycolor);
    white-space: break-spaces;  
    background-color: var(--bluebg);
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.btn:hover {
    color: var(--redbg);
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.main__title {
    margin-bottom: 40px;
}
.heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
}
.main__title p {
    font-size: 16px;
    line-height: 26px;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.btn__effect {
    position: relative;
    overflow: hidden;
}
.btn__effect:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.btn__effect:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bottom to Top CSS Start */
.bottom__to__top {
    position: fixed;
    bottom: -60px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--bluebg);
    text-align: center;
    border-radius: 16px 0 16px 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 0 10px 0 rgba(156, 113, 113, 0.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.bottom__to__top.show {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.bottom__to__top:hover {
    background-color: #000000;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.bottom__to__top svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}
/* Bottom to Top CSS End */

/* Header CSS Start */

/* Header Top CSS Start */
.header__top ul li a {
    color: var(--graybg);
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 0.75px;
    font-weight: 400;
}
.header__top ul li:first-child {
    margin-right: 25px;
}
/* Header Top CSS End */

/* Header Menu CSS Start */
.header__main {
    background-color: var(--bluebg);
    padding: 10px 0;
    position: relative;
    z-index: 99;
}
.header__search.for__mobile {
    display: none;
}
.mobile_menu {
    display: none;
}
.header__main.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 99;
    animation: smoothScroll 1s forwards;
}
@-webkit-keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
.header__main.fixed .header__top {
    display: none;
}
.header__main.fixed .header__menu .nav-item {
    padding: 5px 0;
}
.header__main.fixed .header__menu .nav-item .nav-link {
    font-size: 14px;
}
.header__main.fixed .header__logo {
    margin: 0;
}
.header__main.fixed .header__logo img {
    width: 70px;
}
.header__logo img {
    width: 90px;
}
.header__menu .nav-item .nav-link {
    padding: 5px 10px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 10px 0 10px 0;
    color: var(--bgwhite);
    margin-right: 20px;
    text-transform: uppercase;
}
.header__menu .nav-item {
    padding: 30px 0;
    position: relative;
}
.header__menu .nav-item a:hover, 
.header__menu .nav-item.active .nav-link {
    color: var(--redbg);
    background-color: #ffffff;
}
.header__menu .nav-item .submenu {
    padding: 0;
    margin: 0;
    top: 0;
}
.header__menu .nav-item .submenu .dropdown-item {
    white-space: break-spaces;
    font-size: 14px;
    line-height: 22px;
    padding: 5px 10px;
}
.header__submenu {
    position: absolute;
    top: 70px;
    bottom: auto;
    left: 0;
    width: 250px;
    background-color: var(--bgwhite);
    border-radius: 5px;
    z-index: 9;
    padding: 15px 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.header__main.fixed .header__submenu {
    top: 30px;
}
.header__menu .nav-item.has__child:hover .header__submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.header__submenu li {
    padding: 0 10px;    
}
.header__menu .nav-item .header__submenu a:hover {
    color: inherit;
    background-color: inherit;
}
.header__submenu li:last-child {
    padding-bottom: 0;
}
.header__submenu li a {
    font-size: 14px;
    color: var(--primarycolor);
}
.header__menu .nav-item.header__search {
    margin-left: 40px;
}
.header__search .search__icon {
    height: 23px;
    width: 23px;
    line-height: 20px;
    cursor: pointer;
    border: 1px solid #979797;
    border-radius: 2px;
    text-align: center;
}
.header__search__box {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    left: auto;
    bottom: auto;
    display: none;
    z-index: 9;
}
.header__main.fixed .header__search__box {
    top: 45px;
}
.header__search__box form {
    position: relative;
}
.header__search__box .form-control {
    height: auto;
    padding: 5px 10px;
    border: 1px solid var(--primarycolor);
    font-size: 14px;
}
.header__search__box .search__btn {
    background-color: transparent;
    border-radius: 5px;
    border: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    left: auto;
    bottom: auto;
    padding: 0;
    cursor: pointer;
}
.header__search__box .search__btn img {
    width: 15px;
}
.submenu__icon { display: none; }
.header__cart {
    margin-left: 15px;
}
.cart__icon {
    height: 23px;
    width: 23px;
    line-height: 20px;
    cursor: pointer;
    border: 1px solid #979797;
    border-radius: 2px;
    text-align: center;
    position: relative;
}
.cart__icon i {
    color: #ffffff;
    font-size: 12px;
}
.cart__icon .count {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 13px;
    height: 13px;
    line-height: 14px;
    background-color: var(--graybg);
    font-size: 11px;
    border-radius: 50%;
}
.enquire__table .table {
    margin: 0;
}
#enquire__cart .modal-header {
    border-radius: 5px 5px 0 0;
    border-bottom: 3px solid #ffffff;
    padding: 10px 15px;
    align-items: center;
}
.enquire__table {
    border-radius: 5px;
}
.enquire__table .table thead {
    background-color: var(--primarycolor);
}
.enquire__table .table thead th {
    color: #ffffff;
    border: none;
}
.enquire__table .table tr td {
    background-color: #ffffff;
    font-weight: 400;
    font-size: 15px;
}
#enquire__cart .modal-body {
    border-radius: 0 0 5px 5px;
}
#enquire__cart .btn {
    padding: 5px 25px;
    font-size: 18px;
}

#enquire__cart .user__details {
    margin-top: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 15px;
}
#enquire__cart .user__details .form-control {
    border: 1px solid rgba(5, 2, 12, 0.2);
    padding: 7px 15px;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .header__menu .nav-item {
        padding: 20px 0 30px;
    }
    .header__logo {
        margin-top: 10px;
    }
    .header__menu .nav-item .nav-link {
        margin-right: 20px;
    }
}
@media (max-width: 991px) {
    .header__logo img,
    .header__main.fixed .header__logo img {
        width: 50px;
    }
    .header__main .menu__column {
        position: absolute;
        top: 0;
        right: 15px;
        left: auto;
        bottom: auto;
    }
    .header__menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 300px;
        min-height: 250px;
        max-height: calc(100vh - 70px);
        background: linear-gradient(36deg, #15568e, #000000);
        z-index: 9;
        padding: 20px;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
        -webkit-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
    }
    .header__menu.open {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
    }
    .header__menu .nav {
        display: block;
    }
    .header__top .col-lg-6 {
        justify-content: center !important;
    }
    .header__top .col-lg-6:not(:last-child) {
        margin-bottom: 15px;
    }
    .mobile_menu {
        position: absolute;
        top: 25px;
        right: 20px;
        left: auto;
        bottom: auto;
        padding: 15px 5px;
        display: block;
    }
    .mobile_menu .mobile_menu-icon {
        background-color: var(--bgwhite);
        display: block;
        height: 2px;
        position: relative;
        -webkit-transition: background .2s ease-out;
        -o-transition: background .2s ease-out;
        transition: background .2s ease-out;
        width: 25px;
    }
    .mobile_menu .mobile_menu-icon:before, 
    .mobile_menu .mobile_menu-icon:after {
        background-color: var(--bgwhite);
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
    .mobile_menu-icon:before {
        top: 7px;
    }
    .mobile_menu .mobile_menu-icon:before, 
    .mobile_menu .mobile_menu-icon:after {
        background-color: var(--bgwhite);
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
    .mobile_menu-icon:after {
        top: -7px;
    }
    .open.mobile_menu .mobile_menu-icon {
        background-color: transparent;
    }
    .open.mobile_menu .mobile_menu-icon:before {
        top: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .open.mobile_menu .mobile_menu-icon:after {
        top: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header__menu .nav-item {
        padding: 0 0 15px;
    }
    .header__menu .nav-item .nav-link {
        margin-right: 0;
    }
    .header__submenu {
        position: static !important;
        box-shadow: none;
        margin-top: 10px;
        margin-left: 10px;
        display: none;
        float: none;
        overflow: auto;
    }
    .header__menu .nav-item.has__child.show .header__submenu.show {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
    .header__menu .nav-item.has__child > .nav-link:after {
        transform: translate(0);
        top: 23px;
    }
    .header__main.fixed .header__top { display: block; }
    .header__logo { margin-top: 0; }
    .header__menu .nav-item.header__search { display: none; }
    .header__menu .nav-item .nav-link > i { display: none; }
    .header__menu .nav-item .submenu__icon { display: block; }
    .header__menu .nav-item .submenu__icon i {
        color: var(--bgwhite);
    }
    .header__menu .nav-item .submenu__icon {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        bottom: auto;
    }
    .header__menu .nav-item .submenu__icon .fa-minus,
    .header__menu .nav-item.has__child.show .submenu__icon .fa-plus,
    .header__menu .nav-item.show .submenu__icon .fa-plus { 
        display: none; 
    }
    .header__menu .nav-item.has__child.show .submenu__icon .fa-minus,
    .header__menu .nav-item.show .submenu__icon .fa-minus { display: block; }
    .header__icon__col {
        position: absolute;
        top: 45px;
        right: 75px;
        left: auto;
        bottom: auto;
        width: 100px;
    }
    .header__menu .nav-item .dropdown-menu {
        position: static !important;
        width: 100%;
        float: none;
        padding: 10px;
        margin: 20px 0 0;
        transform: translate(0) !important;
    }
    .header__menu .nav-item .dropdown-menu li .dropdown-item {
        padding: 0;
    }
    .header__menu .nav-item .dropdown-menu .submenu.dropdown-menu {
        display: block;
        margin: 0;
        border: none;
    }
    .header__menu .nav-item .dropdown-menu.show > li > a {
        border-bottom: 1px solid #eeeeee;
    }
    .header__menu .nav-item.has__child.show .dropdown-menu.show > li > a {
        border: none;
    }
}
@media (max-width: 767px) {
    .header__main .menu__column { right: 0; }
    .header__icon__col {
        top: 53px;
        right: 70px;
    }
}
@media (min-width: 992px){
    .dropdown-menu .dropdown-toggle:after{
        border-top: .3em solid transparent;
        border-right: 0;
        border-bottom: .3em solid transparent;
        border-left: .3em solid;
    }

    .dropdown-menu .dropdown-menu{
        margin-left:0; margin-right: 0;
    }

    .dropdown-menu li{
        position: relative;
    }
    .nav-item .submenu{ 
        display: none;
        position: absolute;
        left:100%; top:-7px;
    }
    .nav-item .submenu-left{ 
        right:100%; left:auto;
    }

    .dropdown-menu > li:hover{ background-color: #f1f1f1 }
    .dropdown-menu > li:hover > .submenu{
        display: block;
    }
}
/* Header Menu CSS End */

/* Header CSS End */

/* Banner CSS Start */
.hero__slider__item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 111px);
    position: relative;
    z-index: 9;
}
.hero__slider__item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #15568e, #ffaaaa00);
    z-index: -9;
}
.hero__slider__item .banner__content {
    height: calc(100vh - 111px);
    width: 70%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero__slider__item .banner__content h1 {
    color: var(--bgwhite);
    font-weight: 800;
    font-size: 50px;
    line-height: 55px;
    letter-spacing: 1.33px;
    margin-bottom: 30px;
}
.hero__slider__item .banner__content p {
    color: var(--bgwhite);
    line-height: 22px;
    margin-bottom: 0;
}
.swiper-pagination {
    top: auto;
    bottom: 0;
    width: 100%;
}
.swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    width: 12px;
    height: 12px;
}
@media (max-width: 991px) {
    .hero__slider__item { height: calc(100vh - 71px); }
    .hero__slider__item .banner__content { width: 100%; }
    .hero__slider__item .banner__content h1 {
        font-size: 32px;
        line-height: 40px;
    }
}
@media (max-width: 767px) {
    .hero__slider__item .banner__content h1 {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 20px;
    }
}
/* Banner CSS End */

/* About Section CSS Start */
.about--block {
    margin-top: 70px;
}
.about--block .about__text h5 {
    font-size: 20px;
    margin: 0 0 10px;
}
@media (max-width: 991px) {
    .about--block .about__img {
        margin-bottom: 30px;
    }
}
/* About Section CSS End */

/* Contact CSS Start */
.contact--block {
    padding: 50px 0 0;
}   
.contact__form textarea.form-control {
    height: 150px;
    resize: none;
}
.contact__map {
    height: 415px;
    background-color: #ffffff;
    border-radius: 16px 0 16px 0;
    padding: 10px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.contact__map iframe {
    height: 395px;
    border-radius: 16px 0 16px 0;
}
@media (max-width: 991px) {
    .contact__form { margin-left: 0; }
    .contact__banner:before { content: none; }
    .contact__form h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .contact--block {
        padding: 40px 0;
    }
    .contact__map { margin-top: 60px; }
}
/* Contact CSS End */

/* Packages Section CSS Start */
.packages--block {
    padding: 50px 0;
    margin-top: 70px;
}
.packages__item {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 30px 0 30px 0;
    min-height: 680px;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease-in-out !important;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.packages__item:hover {
    margin-top: -10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.packages__item .packages__header {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 20px;
    min-height: 150px;
}
.packages__item .packages__header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #15568e;
    margin: 0 0 10px;
}
.packages__item .packages__header h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
}
.packages__item .packages__header p {
    line-height: 24px;
    margin: 0 0 20px;
}
.packages__item .packages__body {
    min-height: 320px;
}
.packages__item .packages__body ul li {
    margin-bottom: 5px;
}
.packages__item .packages__body ul li i {
    color: #15568e;
    margin-right: 5px;
}
.packages__item .packages__footer {
    border-top: 1px solid #eeeeee;
    padding: 20px 0;
    margin-top: 50px;
}
.packages__item .packages__footer .btn {
    color: #ffffff;
    display: block;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .packages__item .packages__header h2 {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    .packages__item { margin-bottom: 30px; }
}
@media (max-width: 767px) {
    .packages__item,
    .packages__item .packages__header,
    .packages__item .packages__body {
        min-height: initial;
    }
}
/* Packages Section CSS End */

/* Why Choose Us Section Start */
.why__choose--block {
    padding: 70px 0 40px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.why__choose--block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(130deg, rgba(21, 86, 142, 0.8), rgba(255, 255, 255, 0.6));
}
.why__choose--block h2 {
    color: #ffffff;
}
.why__choose__item {
    background: -o-linear-gradient(300deg, #eeeeee, rgba(21, 86, 142, 0.8));
    background: linear-gradient(300deg, #eeeeee, rgba(255, 255, 255, 0.8));
    border-radius: 30px 0 30px 0;
    padding: 15px;
    min-height: 200px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}
.why__choose__item p {
    margin: 0px;
    color: #000000;
    font-weight: 700;
}
@media (max-width: 767px) {
    .why__choose__item {
        min-height: 150px;
    }
}
/* Why Choose Us Section End */

/* Testimonial Section CSS Start */
.testimonial--block {
    padding: 70px 0;
}
.testimonial__item {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 30px 0 30px 0;
    position: relative;
    margin-bottom: 50px;
}
.testimonial__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}
/* Testimonial Section CSS End */

/* Blog Section CSS Start */
.blog--block {
    margin-top: 70px;
}
.news__item {
    background-color: #15568e;
    border-radius: 20px 0 20px 0;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 5px 5px 0px 0 var(--primarycolor);
    -webkit-box-shadow: 5px 5px 0px 0 var(--primarycolor);
}
.news__icon i {
    color: #ffffff;
    font-size: 18px;
}
.news__item span {
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    letter-spacing: 2px;
}
.news__item h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 36px;
}
.news__item p {
    color: #ffffff;
    margin: 0;
}

.blog__item {
    border-radius: 20px 0 20px 0;
    overflow: hidden;
}
.blog__item .blog__deatils {
    background-color: var(--graybg);
    padding: 15px;
}
.blog__item .blog__deatils span {
    display: inline-block;
}
.blog__item .blog__deatils span i {
    font-size: 12px;
    margin-right: 5px;
}
.blog__item .blog__deatils h4 a {
    color: var(--bluebg);
    font-size: 24px;
}
.blog__item .blog__deatils p {
    margin: 0;
}
@media (max-width: 767px) {
    .news__item span { font-size: 16px; }
    .news__item h4 { font-size: 24px; }
}
/* Blog Section CSS End */

/* Inner Page CSS Start */
.inner__banner--block {
    height: 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.inner__banner--block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -o-linear-gradient(320deg, rgba(21, 86, 142, 0.8), rgba(255, 255, 255, 0.6));
    background: linear-gradient(130deg, rgba(21, 86, 142, 0.8), rgba(255, 255, 255, 0.6));
}
.inner__banner__content {
    height: 150px;
}
.inner__banner__content h1 {
    color: #ffffff;
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    text-transform: capitalize;
}
.content--block ul, 
.content--block ol {
    margin-bottom: 15px;
    padding-left: 40px;
}
.content--block ul {
    list-style: disc;
}
.content--block ol {
    list-style: decimal;
}

.content--block .card {
    border: none;
}
.content--block .card-header {
    margin-bottom: 10px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.content--block .card-header:first-child {
    border: none;
    background-color: var(--graybg);
    border-radius: 20px;
    padding: 15px 30px;
}
.content--block .collapse {
    border: 1px solid var(--graybg);
    border-radius: 20px;
    margin-bottom: 15px;
}
.content--block .card .card-header.collapsed .accordion__icon.minus,
.content--block .card .card-header .accordion__icon.plus {
    display: none;
}
.content--block .card .card-header.collapsed .accordion__icon.plus {
    display: block;
}
@media (max-width: 767px) {
    .inner__banner__content h1 { font-size: 32px; }
}
/* Inner Page CSS End */

/* Gallery Page CSS Start */
.gallery__item {
    position: relative;
    margin-bottom: 30px;
}
.gallery__img {
    height: 230px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px 0 20px 0;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
    -webkir-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}
.gallery__img img {
    border-radius: 20px 0 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
}
.gallery__item .gallery__name {
    position: absolute;
    top: auto;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background-color: #15568e;
    border-radius: 20px 0 20px 0;
    padding: 10px;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.gallery__item:hover .gallery__name {
    background-color: rgba(21, 86, 142, 0.8);
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.gallery__item .gallery__name h4 {
    font-size: 16px;
    margin: 0;
    color: #ffffff;
}
@media (max-width: 1199px) {
    .gallery__img { height: 190px; }
}
@media (max-width: 991px) {
    .gallery__img { height: 220px; }
}
@media (max-width: 767px) {
    .gallery__img { height: 160px; }
}
@media (max-width: 575px) {
    .gallery__img {
        height: auto;
        padding-top: 66%;
    }    
}
/* Gallery Page CSS End */

/* Contact Page CSS Start */
.contact__box {
    background-color: var(--bgwhite);
    min-height: 180px;
    padding: 20px;
    border-radius: 16px 0 16px 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.contact__box i {
    color: #15568e;
    font-size: 26px;
    margin-bottom: 10px;
}
.contact__box h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 5px;
}
.contact__box p, .contact__box p a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: var(--primarycolor);
    margin: 0;
    word-break: break-word;
}
.contact__form .contact-btn {
    color: #ffffff;
}
@media (max-width: 1199px) {
    .contact__box { min-height: 320px; }
}
@media (max-width: 991px) {
    .contact__box { 
        min-height: 350px; 
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .contact__box { 
        min-height: initial;
    }
    .contact__page--block .contact__map {
        margin-top: 0;
        margin-bottom: 30px;
    }
}
/* Contact Page CSS End */

/* FAQ CSS Start */
.faq--block {
    padding: 50px 0px;
}
.faq--block .accordion .card {
    margin-bottom: 10px;
    border: none;
}
.faq--block .accordion .card .card-header {
    background-color: var(--graybg);
    padding: 20px;
    border: none;
    border-radius: 20px !important;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.faq--block .accordion .card .card-body {
    background-color: var(--graybg);
    padding: 20px;
    border-radius: 20px;
    margin-top: 2px;
}
.faq--block .accordion .card .card-body ul {
    margin: 0 0 30px 40px;
    list-style: disc;
    font-size: 14px;
}
.faq--block .accordion .card .card-body p {
    font-weight: 400;
    font-size: 14px;
    margin: 0;
}
.faq--block .accordion .card .card-header h5 {
    font-size: 18px;
}
.accordion .card .card-header.collapsed .accordion__icon.minus {
    display: none;
}
.accordion .card .card-header .accordion__icon.plus {
    display: none;
}
.accordion .card .card-header.collapsed .accordion__icon.plus {
    display: block;
}
/* FAQ CSS End */

/* Footer CSS Start */
.footer__main {
    background-color: var(--primarycolor);
    padding: 50px 0;
    margin-top: 70px;
}
.footer__logo {
    margin-bottom: 15px;
}
.footer__logo img {
    width: 80px;
}
.footer__text h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 10px;
}
.footer__text p {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: var(--bgwhite);
}
.footer__main .footer__column h4 {
    color: var(--bgwhite);
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.footer__main .footer__column h5 {
    color: var(--bgwhite);
    font-weight: 700;
    line-height: 22px;
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.footer__column ul {
    list-style: disc;
    margin-left: 20px;
}
.footer__main .footer__column ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer__main .footer__column ul li a,
.footer__main .footer__column ul li,
.footer__main .footer__column p,
.footer__main .footer__column p a {
    line-height: 20px;
    color: var(--bgwhite);
    word-break: break-word;
    font-weight: 400;
}
.footer__main .footer__column ul li a:hover {
    color: var(--redbg);
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.footer__column .social__icons {
    list-style: none;
    margin-left: 0;
}
.footer__column .social__icons li {
    text-align: center;
    margin-bottom: 0 !important;
    margin-right: 15px;
    margin-top: 5px;
}
.footer__column .social__icons li i {
    color: var(--bgwhite);
    font-size: 24px;
}
.footer__column .social__icons li:hover i {
    color: var(--redbg)
}

.copyright__main {
    background-color: var(--bluebg);
}
.copyright {
    padding: 10px 0;
}
.copyright p {
    margin: 0;
    color: var(--bgwhite);
    font-weight: 300;
}
.copyright p a {
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 991px) {
    .footer__column { margin-bottom: 30px; }
}
@media (max-width: 767px) {
    .footer__main {
        padding: 40px 0 20px;
        margin-top: 30px;
    }
    .footer__column { margin-bottom: 20px; }
    .footer__column ul { margin-bottom: 10px; }
}
/* Footer CSS End */

/* Responsive */
@media (max-width: 991px) {
    .form-control {
        padding: 10px 15px;
        font-size: 14px;
    }
    .btn { padding: 10px 30px; }
}
@media (max-width: 767px) {
    .main__title {
        margin-bottom: 30px;
    }
    .heading {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 10px;
    }
    .main__title p {
        font-size: 14px;
        line-height: 22px;
    }
}