:root {
    --primary: #6DC8BE;
    --primary-rgb: 109, 200, 190;
    --secondary: #8E8E8E;
    --secondary-rgb: 142, 142, 142;
    --green: #007F3D;
    --green-rgb: 0, 127, 61;
    --danger: #ED1C24;
    --danger-rgb: 237, 28, 36;
    --dark: rgba(61, 61, 61, 0.87);
    --black: #000;
    --b-font-raleway: 'Raleway', sans-serif;
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--b-font-raleway);
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
    /* background: #eaeaea; */
    background: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

img {
    max-width: 100%;
}

.title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* .divider {
    position: relative;
    width: 15em;
    height: 1px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.divider::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 15px;
    background: var(--dark);
} */


.sub-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: #989898;
}

.container-wrapper {
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container-wrapper {
        padding-left: 75px;
        padding-right: 75px;
    }
}

@media (max-width: 992px) {
    .container-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.shape-rotate {
    transform: translate(0, -3px) rotate(180deg);
}

.bg-gray {
    background: var(--b-gray);
}
.bg-green {
    background: var(--b-green);
}

main {
    min-height: 100vh;
    margin-top: 80px;
}


/*===============================*/
/*=============loading============*/
/*===============================*/

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	background-color: #f9f9ff;
}

.loading .loading-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 50px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.loading .loading-content .inner-item {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: var(--primary);
	border-radius: 50%;
	-webkit-transform: scale(.1);
	-moz-transform: scale(.1);
	-ms-transform: scale(.1);
	-o-transform: scale(.1);
	transform: scale(.1);
	-webkit-transform-origin: center left;
	-moz-transform-origin: center left;
	-ms-transform-origin: center left;
	-o-transform-origin: center left;
  	transform-origin: center left;
	-webkit-animation: loading 4s infinite;
	animation: loading 4s infinite;
}

.loading .loading-content .inner-item:nth-of-type(2) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.loading .loading-content .inner-item:nth-of-type(3) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.loading .loading-content .inner-item:nth-of-type(4) {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
}

.loading .loading-content .inner-item:nth-of-type(5) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
	
	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	
	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}

@keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}

	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}

/*===============================*/
/*=============header============*/
/*===============================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: #f4f4f4;
    height: 100px;
    transform: translate(0, 0);
    transition: transform 0.3s cubic-bezier(.17,.67,.54,.44);
}

.search-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 1030;
    height: 100px;
    opacity: 0;
    transform: translateY(-85px);
    transition: transform 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.search-box.show {
    opacity: 1;
    transform: translateY(0px);
}

.search-box .box {
    position: relative;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-box .box form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    background: #aaa;
    border-radius: 4px;

}
.search-box .box form input {
    background: transparent;
    width: 100%;
    padding: 1rem;
    border:0;
    outline: none;
}
.search-box .box form span {
    background: transparent;
    padding: 0.5rem 1rem;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    color: #fff;
    font-size: 1.65rem;
    cursor: pointer;
}

button.close.text-light.search-box-close {
    padding: 1rem;
}
.header.sticky {
    transform: translate(0, -40px);
    box-shadow: 0px -12px 20px 1px #000;
}
.header .top-header {
    padding: 6px 0;
}
.header .main-header {
    position: relative;
    padding: 10px 0;
}
.logo {
    padding: 1.2rem 0;
}
.logo img {
    height: 65px;
    margin-top: 0px;
    transition: all 0.8s ease;
}
.header.sticky .logo img {
    height: 50px;
    margin-top: 27px;
}
.header .top-header .nav-item .nav-link {
    font-size: 12px;
    font-weight: 500;
    color: #7d7c7c;
    padding: 0.225rem 0.5rem;
}
.header .top-header .nav-item .nav-link::after {
    content: "|";
    padding-left: 0.5rem;
}
.header .top-header .nav-item:last-child .nav-link::after {
    display: none;
}

.header .main-header .logo img {
    height: 50px;
}

.header .main-header .nav-item .nav-link {
    font-size: 14px;
    font-weight: 700;
    color: rgba(61, 61, 61, 0.87);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.header .main-header .nav-item .nav-link.active,
.header .main-header .nav-item .nav-link:hover {
    color: var(--primary);
}

.header .main-header .btn-login {
    background: var(--b-green);
    color: #fff!important;
    padding: 0.5rem 1.2rem!important;
    border-radius: 50px;
    box-shadow: 0 .125em .225em .125em rgba(0, 0, 0, 0.1)
}

.header .social-menu .nav-item .nav-link {
    font-size: 22px;
    padding: 0 0.5rem;
}

/*dropdown*/

.dropdown-toggle {
    position: relative;
}
.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: 0;
    position: absolute;
    right: 0;
}

.nsl-dropdown:hover .dropdown-toggle::before {
    content: "\f0de";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    border: 0;
    padding-top: 2.72rem;
    margin: 0;
    text-shadow: 0px -1px rgba(0, 0, 0, 0.6);
}

.nsl-dropdown .nsl-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,.15);
    display: none;
    background: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: -4px 5px 20px 0 rgba(0, 0, 0, .3);
    box-shadow: -4px 5px 20px 0 rgba(0, 0, 0, .3);
}

.nsl-dropdown:hover .nsl-dropdown-menu {
    display: block;
    animation-name: pullDown;
    -webkit-animation-name: pullDown;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
}
.nsl-dropdown-menu {
    width: 20rem!important;
}
@media (max-width:992px) {
    .nsl-dropdown {
        position: relative;
    }
}
.megamenu-lg {
    min-width: 700px!important;
    padding: 1rem;
}
.megamenu-md {
    min-width: 500px!important;
    padding: 1rem;
}

.megamenu img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.225rem 0.125rem rgba(0, 0, 0, 0.2);
}

.nsl-dropdown .nsl-dropdown-menu .nav-item {
    list-style: none;
}

.nsl-dropdown .nsl-dropdown-menu .nav-item .nav-link {
    color: var(--dark);
    font-size: 14px;
    padding: 9px 12px;
}

.nsl-dropdown .nsl-dropdown-menu .nav-item .nav-link:hover {
    color: var(--b-red);
}

.nsl-dropdown-menu .menu-head {
    font-size: 16px;
    font-weight: bold;
}
.nsl-dropdown-menu .menu-head a {
    color: var(--dark);
    text-decoration: none;
}

.nsl-dropdown-menu ul li {
    list-style: none;
}
.nsl-dropdown-menu ul li:last-child {
    border-bottom: 0;
}
.nsl-dropdown-menu li a {
    font-size: 13px;
    font-weight: 500;
    color: #222222;
    padding: 3px 10px;
    display: inline-block;
    text-decoration: none;
}
.nsl-dropdown-menu li a::before {
    content: "\f13e";
    font: normal normal normal 24px/1 "Material Design Icons";
    position: absolute;
    left: 0;
    font-size: 14px;
    padding-top: 0.1225rem;
    padding-left: 10px;
}
.nsl-dropdown-menu li a:hover {
    color: var(--primary);
}


/* Menu Animation */

@keyframes pullDown {
    0% {
        transform: scaleY(0.1);
    }

    40% {
        transform: scaleY(1.02);
    }

    60% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1);
    }

    40% {
        -webkit-transform: scaleY(1.02);
    }

    60% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(1);
    }
}

/*===============================*/
/*=============slider============*/
/*===============================*/

.slider {
    position: relative;
    height: 550px;
}

.slider .carousel-item img {
    height: 550px;
    object-fit: cover;
}

.slider-caption {
    position: relative;
    background: #F4F4F4;
    padding: 5rem 2rem;
    height: 100%;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
}

.slider-caption .caption {
    position: relative;
}

.slider-caption span.shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 80px;
    transform: rotate(45deg);
    right: -50%;
    background: var(--primary);
    opacity: 0.2;
    pointer-events: none;
}
/* .slider-caption span.shape.shape1 {
    background: var(--primary);
    margin-top: -200px;
    opacity: 0.1;
}
.slider-caption span.shape.shape2 {
    background: var(--primary);
    opacity: 0.2;
}
.slider-caption span.shape.shape3 {
    background: var(--green);
    margin-top: 200px;
    opacity: 0.1;
} */

.slider .slider-caption h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.slider .slider-caption h1 {
    font-size: 2.4rem;
    color: #1e1e1e;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.slider .slider-caption p {
    font-size: 1.3rem;
    color: #747474;
    line-height: 1.5;
    margin-bottom: 3rem;
}
.slider .slider-caption a {
    color: #1e1e1e;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.slider .slider-caption a:hover {
    border-left: 4px solid var(--primary);
    padding-left: 10px;
    padding-right: 10px;
}

.slider .carousel-indicators {
    justify-content: flex-end;
    margin-right: 3%;
    padding-bottom: 5rem;
}

.slider .carousel-indicators li {
    width: 15px;
    height: 10px;
    background: var(--secondary);
    display: block;
    opacity: 1;
    border: 0;
    border-radius: 20px;
    transition: width 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.slider .carousel-indicators li.active {
    background: var(--primary);
    width: 40px;
}

.slider .banner-anime-button {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding-bottom: 50px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: 100%;
}

.slider .banner-anime-button span {
    padding: 10px;
    border-radius: 50px;
    height: 100px;
    display: flex;
    justify-content: center;
    border: 5px solid var(--primary);
    position: relative;
    color: #f4f4f4;
}
.slider .banner-anime-button span i {
    animation: updown 3s infinite;
}

@keyframes updown {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(50px);
    }
}

.zoom {
    -webkit-animation: scale 25s linear infinite;
    animation: scale 25s linear infinite;
  }
  
  @-webkit-keyframes scale {
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }
  
  @keyframes scale {
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }


/*===============================*/
/*=============counter===========*/
/*===============================*/

.num-counter {
    background: var(--light);
    padding: 5rem 0;
}

.num-counter .box {
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: block;
}

.num-counter .box h3 {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
}

.num-counter .box span.count-num {
    font-size: 2.5rem;
    font-weight: 700;
}

.num-counter .box img,
.num-counter .box svg {
    width: 45px;
    display: block;
    margin: 0 auto;
}

/*===============================*/
/*=========missionVission========*/
/*===============================*/

.missionVission {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    /* background: url('../img/Service_image.jpg'); */
    background: rgba(var(--primary-rgb), 0.2);
    background-attachment: fixed;
}

.missionVission .shape1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 100%;
    margin-left: -250px;
    background: rgba(var(--green-rgb), 0.06);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 0;
    -webkit-animation: anime-right 3s ease-in-out;
    animation: anime-right1 3s ease-in-out;
}
.missionVission .shape2 {
    position: absolute;
    right: 5%;
    top: 0%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    background: var(--green);
    display: block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /* border-radius: 40px; */
    opacity: 0.1;
    -webkit-animation: anime-right 3s ease-in;
    animation: anime-right2 3s ease-in;
}

/*animie*/

@keyframes anime-right1 {
    from {
        right: 5%;;
    }
    to {
        right: 10%;
    }
}

@keyframes anime-right2 {
    from {
        right: 10%;;
    }
    to {
        right: 5%;
    }
}

.missionVission .box {
    text-align: center;
    padding: 3rem;
    border-radius: 4px;
    transition: all 0.3s ease-in;
}
.border-right-green {
    border-right: 1px solid rgba(var(--green-rgb), 0.2);
}
.missionVission .box .box-body {
    position: relative;
}

@media (max-width:992px) {
    .missionVission .box {
        margin-bottom: 15px;
    }
}

.missionVission h3 {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--black);
}

.missionVission p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--black)
}

/*===============================*/
/*============services===========*/
/*===============================*/

.services {
    padding: 4rem 0;
}

.services .nav-tabs {
    border: 0;
}

.service-tab .nav-item .nav-link {
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 500;
}
.service-tab .nav-item .nav-link.active {
    color: #fff;
    background: var(--primary);
}

.services .tab-content {
    /* border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(to bottom, var(--primary), rgba(0, 0, 0, 0)) 1; */
    padding: 30px 0;
}

.services .card {
    /* background: #999 url('../img/bg.png'); */
    background-size: cover;
    height: 100%;
    text-align: center;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.services .card .iconbox {
    width: 83px;
    height: 83px;
    border: 2px solid #ccc;
    transform: rotate(45deg);
    border-radius: 7px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    transition: all linear .35s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 25px;
}

.services .card:hover .iconbox {
    transform: rotate(0deg);
    transition: all linear .35s;
    background-color: var(--primary);
    border-color: var(--primary);
}


.services .card .iconbox i {
    font-size: 40px;
    display: block;
    transform: rotate(-45deg);
    color: var(--primary);
    font-size: 50px;
    transition: all linear .35s;
}
.services .card:hover .iconbox i {
    transform: rotate(0deg);
    transition: all linear .35s;
    color: #fff;
}

.services .card h3 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}



/*=====================================*/
/*============memberCalender===========*/
/*=====================================*/


.memberCalender {
    background: #F4F4F4;
    padding: 4rem 0;
}

.becomeMember {
    border-radius: 10px;
    background: #fff;
}

.becomeMember img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.becomeMember h3 {
    font-size: 20px;
    font-weight: 500;
    padding-top: 1rem;
    text-align: left;
}

.becomeMember p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: left;
}
.becomeMember button {
    min-width: 100px;
    padding: 5px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #fff;
    color: #333;
}
.becomeMember button:hover {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}
.becomeMember .carousel-control-next, 
.becomeMember .carousel-control-prev {
    width: 0%;
    bottom: -20%;
}
.becomeMember .carousel-control-next span, 
.becomeMember .carousel-control-prev span {
    color: var(--primary);
}

/*calender*/

.calendar-container {
    position: relative;
    max-width: 100%;
}

.calendar-container header {
    position: relative;
    border-radius: 1em 1em 0 0;
    background: var(--primary);
    padding: 1em 2em;
    border-bottom: 1px solid #dadada;
    overflow: hidden;
}
.calendar-container header span.shape {
    position: absolute;
    width: 250px;
    height: 200px;
    background: #fff;
    right: 0;
    top: 0;
    border-bottom-left-radius: 50%;
    opacity: 0.2;
}
.cal-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.day {
    font-size: 3em;
    font-weight: 900;
    line-height: 1em;
    color: #fff;
}

.month {
    font-size: 2em;
    line-height: 1em;
    text-transform: lowercase;
    color: #fff;
}

.year {
    font-size: 3.5em;
    font-weight: bold;
    line-height: 1em;
    text-transform: lowercase;
    color: #fff;
}

.calendar {
    margin-bottom: 1.5rem;
}

.calendar-body {
    background: #fdfdfd;
    border-radius: 0 0 1em 1em;
    -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .2), 0 3px 1px #fff;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .2), 0 3px 1px #fff;
    color: #555;
    display: block;
    padding: 2em;
}

.calendar thead {
    color: #756c6c;
    font-weight: 700;
    text-transform: uppercase;
}

.calendar td {
    padding: .5em 1em;
    text-align: center;
    border-radius: 20px;
}

.calendar tbody td:hover {
    background: #f4f4f4;
    color: var(--dark);
}

.current-day {
    color: #000;
    font-weight: 700;
}
.left-arrow,
.right-arrow {
    position: absolute;
    top: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    padding: 1rem;
    background: rgba(0,0,0,0.1);
    color: #fff;
    margin-top: 60px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.left-arrow {
    left: 0;
}
.right-arrow {
    right: 0;
}


.upcoming-event {
    color: #fff;
    background: #756c6c;
}

.calander-button {
    display: flex;
    justify-content: center;
}

.btn-view {
    padding: 0.225rem 1rem;
    border: 1px solid #5d5858;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin: 0.5rem;
    text-align: center;
    color: #5d5858;
    text-decoration: none;
}
.btn-view:hover {
    color: var(--primary);
    border-color: var(--primary);
    text-decoration: none;
}

.prev-month,
.next-month {
    color: #756c6c;
}

.ring-left,
.ring-right {
    position: absolute;
    top: 150px;
}

.ring-left {
    left: 2em;
}

.ring-right {
    right: 2em;
}

.ring-left:before,
.ring-left:after,
.ring-right:before,
.ring-right:after {
    background: #756c6c;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 1px rgba(0, 0, 0, .3), 0 -1px 1px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 1px rgba(0, 0, 0, .3), 0 -1px 1px rgba(0, 0, 0, .2);
    content: "";
    display: inline-block;
    margin: 8px;
    height: 32px;
    width: 8px;
}

@media (max-width:992px) {
    .calendar {
        display: block;
        padding: 2em;
    }

    .calendar td {
        padding: .5em;
    }
}

/*=====================================*/
/*=============gallery=================*/
/*=====================================*/

.photoVideo {
    padding-top: 4rem;
}

.galleryBody .nav-item .nav-link {
    padding: 0.225rem;
    max-width: 300px;
    overflow: hidden;
}

.galleryBody .nav-item .nav-link:hover {
    background: #ccc;
}

.galleryBody .nav-item .nav-link img {
    width: 103px;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.galleryBody .nav-item .nav-link .galler-tab-title {
    padding: 0 0.5rem;
}

.galleryBody .nav-item .nav-link .galler-tab-title h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    color: var(--primary);
}

.galleryBody .nav-item .nav-link .galler-tab-title p {
    font-size: 12px;
    margin-bottom: 0;
    color: #333;
}

.galleryBody .nav-item .nav-link img:hover {
    opacity: 1.0;
}

.galleryBody .tab-content {
    height: 300px;
    position: relative;
}
.galleryBody .tab-content .gallery-caption {
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    width: 100%;
    padding: 1rem;
    color: #fff;
    font-size: 14px;
    z-index: 100;
}

.galleryBody .tab-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;

}
.videogallery .tab-content {
    height: 368px;
}
.videogallery .tab-pane {
    position: relative;
}
.videogallery .tab-pane::before {
    content: "\F5C3";
    font-family: "Material Design Icons";
    font-weight: normal;
    font-size: 64px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 100;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.videogallery .tab-pane:hover::before {
    color: red;
}

.videogallery .tab-content img {
    width: 100%;
    height: 368px;
    object-fit: cover;

}
.videogallery .nav .nav-item .nav-link {
    position: relative;
    padding: 0.225rem 0 0;
}
.videogallery .nav .nav-item .nav-link img {
    width: 100%;
    height: 90px;
}
.videogallery .nav .nav-item .nav-link::before {
    content: "\F5C3";
    font-family: "Material Design Icons";
    font-weight: normal;
    font-size: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 100;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.videogallery .nav .nav-item .nav-link:hover::before {
    color: red;
}

/*=====================================*/
/*=============newsBlog=================*/
/*=====================================*/

.newsBlog {
    background: #F9F9F9;
    padding: 4rem 0;
}

.newsBlog .card {
    height: 500px;
    overflow: hidden;
    transition: all ease .35s;
}

.newsBlog .card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,.15);
    transition: all ease .35s;
}

.newsBlog .card::before {
    content: '';
    position: absolute;
    display: block;
    width: 0%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 4px;
    background-image: -webkit-linear-gradient(left,rgba(var(--danger-rgb),0.92) 0%,#FF4141 30%);
    background-image: linear-gradient(to right,rgba(var(--danger-rgb),0.92) 0%,#FF4141 30%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EBFE7C44',endColorstr='#FFFF4141',GradientType=1);
    transition: all ease .35s;
}
.newsBlog .card:hover::before {
    width: 76%;
    transition: all ease .35s;
}

.newsBlog .card .card-header img {
    width: 150px;
    height: 150px;
    border-bottom-right-radius: 50%;
    object-fit: cover;
    border-right: 9px solid var(--primary);
}
.newsBlog .card .card-body {
    height: 200px;
}
.newsBlog .card .card-body h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}
.newsBlog .card .card-body .post-description {
    height: 100px;
}
.newsBlog .card .card-body .main-btn {
    border-radius: 4px;
    min-width: 150px;
    padding: 10px 15px;
    visibility: hidden;
}
.newsBlog .card:hover .card-body .main-btn {
    visibility: visible;
}
.newsBlog .card .post-date {
    display: flex;
    align-items: center;
    margin-top: 35px;
    color: #000;
    font-weight: 600;
}
.newsBlog .card .post-date span {
    display: inline-block;
    margin: 0 5px;
    width: 21px;
    vertical-align: middle;
    height: 1px;
    background-color: #000;
}

.newsBlog .card span.round-shape {
    width: 150px;
    height: 150px;
    background: var(--primary);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.2;
    border-radius: 50%;
    margin-top: -60px;
}



/*=====================================*/
/*=============our-patner==============*/
/*=====================================*/

.our-patner {
    padding: 90px 0px 90px 0px;
}
.our-patner .content-header h1 {
    font-size: 35px;
    font-weight: 500;
    color: #1e1e1e;
}

.our-patner p {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.5;
    color: var(--secondary);
}

.our-patner .nav-item .nav-link {
    padding: 0;
    border: 1px solid #e3e3e3;
}

.our-patner .nav-item .nav-link img {
    width: 120px;
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
    overflow: visible;
    margin: 0 auto;
}

.our-patner .nav-item .nav-link:hover img {
    background: #ffffff;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
    -webkit-box-shadow: 0px 5px 40px -15px;
    box-shadow: 0px 5px 40px -15px;
}


/*=====================================*/
/*===============footer================*/
/*=====================================*/

.footer {
    background: var(--secondary);
    padding: 70px 0;
    border-top: 3px solid var(--green);
}
.footer .logo {
    height: 60px;
}
@media (min-width:992px) {
    .footer-box {
        padding: 2rem 2rem;
    }
    .footer-box  span.left-cover,
    .footer-box  span.right-cover {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 75px;
    }
    .footer-box  span.left-cover {
        background: #20545F;
        left: 0;
        transform: translate(-75px, 0);
    }
    .footer-box  span.right-cover {
        background: #2A6E7B;
        right: 0;
        transform: translate(75px, 0);
    }
}


.footer h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer p {
    font-family: var(--b-font);
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
}

.footer .nav-item .nav-link {
    font-family: var(--b-font);
    font-size: 14px;
    color: #fff;
    padding: 0.5rem 0;
}

.footer .nav-item .nav-link i {
    font-size: 25px;
    color: #fff;
    padding-right: 1rem;
}
.footer-contact p {
    color: #fff;
    margin-bottom: 15px;
}


/*footer-bottom*/

.footer-bottom {
    background: #5d5f61;
    padding: 2rem 0;
}
.footer-bottom p {
    color: #fff;
    margin-bottom: 0;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
}
.footer-bottom a img {
    width: 25px;
}

.footer-bottom li {
    padding: 0.5rem;
}
.footer-bottom li img {
    max-width: 35px;
    height: 35px;
}


/*===============================*/
/*=============back-to-top============*/
/*===============================*/
.scroll-top {
    position: fixed;
    bottom: 107%;
    right: 36px;
    width: 52px;
    height: 52px;
    line-height: 48px;
    font-size: 17px;
    text-align: center;
    color: #fff;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 7px;
    box-shadow: 0 0 10px 0 rgba(79, 169, 160, .8);
    z-index: 999;
    -webkit-transition: all .7s linear;
    -moz-transition: all .7s linear;
    -o-transition: all .7s linear;
    -ms-transition: all .7s linear;
    transition: all .7s linear;
}
.scroll-top:hover {
    color: #fff;
    background: var(--primary);
}

.scroll-top.active {
    bottom: 30px;
}



/*===============================*/
/*=============contact============*/
/*===============================*/

.contact {
    padding: 4rem 0;
}
.contact .form-control {
    border: 1px solid #ddd;
}

/*====================================*/
/*=============page-banner============*/
/*====================================*/

.page-banner {
    position: relative;
    background: #333 url('../img/bg.jpg');
    background-size: cover;
    padding-top: 4rem;
}

.overlay {
    background: rgba(0, 0, 0, .9);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-banner h3 {
    font-size: 34px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}
.page-banner h3 span {
    color: var(--primary);
}
.page-banner .breadcrumb-item a {
    color: #fff;
    margin-bottom: 0;
}
.page-banner .breadcrumb-item {
    color: var(--primary);
    margin-bottom: 0;
}


/*===============================*/
/*=============about============*/
/*===============================*/

.about {
    padding: 4rem 0;
}

.sidebar {
    background: var(--primary);
}
.sidebar .nav-item .nav-link {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    padding: 0.8rem 2rem;
    color: #fff;
    border-bottom: 2px dotted #ccc
}
.sidebar .nav-item:last-child .nav-link {
    border-bottom: 0;
}
.sidebar .nav-item .nav-link:focus, 
.sidebar .nav-item .nav-link:hover, 
.sidebar .sidemenu .nav-item.active .nav-link {
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
}
.sidebar .nav-item .nav-link::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 5px;
    padding-left: 1rem;
    font-size: 12px;
    position: absolute;
    left: 0;
}

/* --------------------------------------
   10. Portfolio
-----------------------------------------*/

.portfolio {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #fff;
}

.portfolio .filter-menu {
    margin-bottom: 60px;
    text-align: center;
}

.portfolio .filter-menu .list-filter {
    display: inline-block;
    margin-bottom: 0;
    padding: 12px 20px;
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    border: 1px solid #d6d6d6;
}

.portfolio .list-filter li {
    display: inline-block;
    margin: 0 15px;
    font-weight: 500;
    letter-spacing: 1.1px;
    line-height: 1;
    cursor: pointer;
    color: #888;
    background: transparent;
    font-size: 14px;
    border-radius: 25px;
}

.portfolio .list-filter .active {
    color: var(--primary-color);
}

.portfolio .portfolio-content .item {
    min-height: 330px;
    max-height: 330px;
    border: 1px solid #e4e4e4;
    margin-bottom: 30px;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
}

.portfolio .portfolio-content .item .demo-image {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-content .item:hover .demo-image img {
    transition: transform 1s ease;
}
.portfolio .portfolio-content .item:hover .demo-image img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.portfolio .item .demo-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(64, 63, 63, 0);
    width: 100%;
    height: 100%;
    margin-top: -100%;
    -webkit-transition-duration: all .6s linear;
    -moz-transition-duration: all .6s linear;
    -o-transition-duration: all .6s linear;
    -ms-transition-duration: all .6s linear;
    transition-duration: all .6s linear;
}

.portfolio .item:hover .demo-image .overlay {
    margin-top: 0;
}
.portfolio .item .demo-image .overlay.video-overlay {
    margin-top: 0;
    cursor: pointer;
}

.portfolio .item .demo-image .overlay .item-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.portfolio .item .demo-image .overlay .item-icons i {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 10px;
}

.portfolio .item .demo-image .overlay.video-overlay .item-icons i {
    background-color: #fff;
    color: var(--dark);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.portfolio .item:hover .demo-image .overlay.video-overlay .item-icons i {
    background-color: #FF0000;
    color: #fff;
}
.portfolio .item .demo-image .overlay .item-icons i:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.portfolio .item .demo-image .overlay .item-icons .icon-img {
    margin-right: 20px;
    cursor: pointer;
}

.portfolio .portfolio-content .item .item-info {
    text-align: center;
    padding: 14px 0 6px;
}

.portfolio .portfolio-content .item .item-info h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .4px;
    text-transform: capitalize;
    color: #3e3e3e;
}

.portfolio .portfolio-content .item:hover .item-info h4 {
    color: var(--primary-color);
}

.portfolio .portfolio-content .item .item-info span {
    letter-spacing: .3px;
    text-transform: capitalize;
    color: #888;
}

.portfolio .my-btn {
    text-align: center;
    margin-top: 20px;
}

.portfolio .my-btn .main-btn {
    min-width: 155px;
}

.main-btn {
    background: var(--primary);
    color: #fff;
    min-width: 175px;
    border-radius: 40px;
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-align: center;
    padding: 13px 25px;
    border: 2px solid var(--primary-color);
    outline: none;
    cursor: pointer;
    z-index: 2;
    margin-right: 14px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    transition: all 0.3s ease;
}
.main-btn:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

/*footer-top*/

.footer-top {
    border-top: 3px solid rgba(var(--green-rgb), 0.2);
    padding: 4rem 0;
}

.footer-top h3 {
    display: block;
    line-height: 30px;
    font-size: 24px;
    text-transform: uppercase;
    color: #191919;
}
.footer-top h1 {
    font-size: 72px;
    line-height: 30px;
    color: #191919;
}
.footer-top .footer-top_text {
    display: block;
    line-height: 30px;
    font-size: 24px;
    font-family: Julius Sans One;
    text-transform: uppercase;
    color: #191919;
}