@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Mukta:200,300,400,500,600,700,800";
/* @import "https://fonts.googleapis.com/css2?family=Khand:wght@700&display=swap"; */

* {
  outline: none !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: Mukta, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  color: #515365;
}
.pt-120 {
  padding-top: 120px !important;
}
/* LINKS */
a {
  color: #515365;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

a:hover {
  color: #ff8763 !important;
  text-decoration: none;
}
p {
  color: #3e3c3c;
}
/* HTMLT TAGS */
img {
  max-width: 100%;
}
.spacing-50 {
  width: 100%;
  display: flex;
  height: 50px;
}

/* FORM ELEMENTS */
input[type="text"] {
  /* width: 420px; */
  max-width: 100%;
  height: 60px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="submit"] {
  height: 60px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0c0c0c;
  background: #81fdc5;
  border: none;
  padding: 0 40px;
}

/* button[type="submit"] {
  height: 60px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0c0c0c;
  background: #81fdc5;
  border: none;
  padding: 0 40px;
}
button[type="submit"] i {
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  transform: translateY(2px);
} */

/* CUSTOM CONTAINER */
@media (min-width: 1170px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1300px;
  }
}

/* SECTION SEPARATOR*/
.section-separator {
  width: 100%;
  display: block;
}
.section-separator hr {
  width: 100%;
  height: 3px;
  background: #ddd;
  border: none;
  margin: 0;
}

/* SECTION AD */
.section-ad {
  width: 100%;
  display: block;
}
.section-ad figure {
  width: 100%;
  display: flex;
  padding: 0;
  margin-bottom: 0;
  background: #f9f7f7;
}

/* SECTION TITLE */
.section-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
}

/* SEARCH BOX */
.search-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  background: #fff;
}
.search-box .close-button {
  position: absolute;
  right: 50px;
  top: 30px;
  font-size: 22px;
  cursor: pointer;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.search-box .close-button:hover {
  transform: scale(1.2);
}
.search-box .container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
.search-box .container form {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.search-box .container input[type="search"] {
  width: 60vw;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  background: none;
}
.search-box .container h6 {
  width: 100%;
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
}
.search-box .container ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.search-box .container ul li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  list-style: none;
}
.search-box .container ul li a {
  display: inline-block;
  text-decoration: underline;
}
.search-box .container ul li a:hover {
  color: #777;
  text-decoration: none;
}
.search-box.active {
  opacity: 1;
  visibility: visible;
}

/* SIDE WIDGET */
.side-widget {
  width: 400px;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 99999;
  background: #135487;
  padding: 20px 36px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.side-widget .close-button {
  position: absolute;
  right: 36px;
  top: 20px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.side-widget .close-button:hover {
  transform: scale(1.2);
}
.side-widget .logo {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.side-widget .logo img {
  height: 35px;
}
.side-widget .logo h1 {
  margin-bottom: 0px;
  font-size: 38px;
  font-family: "Mukta", sans-serif;
  color: #fff;
  letter-spacing: 2px;
}
.side-widget .logo h1 span {
  color: #ff8763;
}
.side-widget .inner {
  width: 100%;
  max-height: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow-y: auto;
}
.side-widget .inner .widget {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  color: #fff;
}
.side-widget .inner .widget .widget-title {
  width: 100%;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}
.side-widget .inner .widget:last-child {
  margin-bottom: 0;
}
.side-widget .inner .account {
  width: 100%;
  display: none;
  align-items: center;
  line-height: 40px;
  color: #fff;
  margin-bottom: 20px;
}
.side-widget .inner .account i {
  font-size: 20px;
  margin-right: 8px;
}
.side-widget .inner .account a {
  color: #fff;
  font-weight: 600;
}
.side-widget .inner .site-menu {
  width: 100%;
  display: block;
}
.side-widget .inner .site-menu ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.side-widget .inner .site-menu ul li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  padding: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.side-widget .inner .site-menu ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.side-widget .inner .site-menu ul li ul {
  display: none;
  padding-left: 15px;
  margin: 15px 0;
}
.side-widget .inner .site-menu ul li ul li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: none;
}
.side-widget .inner .site-menu ul li i {
  width: 6px;
  height: 6px;
  display: inline-block;
}
.side-widget .inner .site-menu ul li a {
  display: inline-block;
  color: #fff;
  font-weight: 600;
}
.side-widget .inner .site-menu ul li.search-wrap {
  border: solid thin #ddd;
  border-radius: 5px;
  padding: 5px 10px;
  background: #fff;
}
.side-widget .inner .site-menu ul li.search-wrap input {
  border: none;
  border-right: solid thin #eee;
  width: 90%;
}
.side-widget .inner .site-menu ul li.search-wrap a i {
  padding: 0px 5px;
  font-size: 16px;
  color: #000;
}
.side-widget button.language.pull-right {
  background: #3e91d6;
  width: 100%;
}
.side-widget .inner .side-newsletter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}
.side-widget .inner .side-newsletter p {
  width: 100%;
  display: block;
}
.side-widget .inner .side-newsletter form {
  width: 100%;
  display: block;
}
.side-widget .inner .side-newsletter input[type="email"] {
  max-width: 100%;
  margin-bottom: 10px;
  border: none;
}
.side-widget .inner .side-newsletter label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.side-widget .inner .side-newsletter input[type="checkbox"] {
  display: inline-block;
  background: #ededed;
}
.side-widget .inner .side-newsletter input[type="checkbox"]:checked {
  border: 4px solid #ededed;
  background: #0c0c0c;
}
.side-widget.active {
  left: 0;
}

/* STICKY NAVBAR */
.sticky-navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 6;
  top: -100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  padding: 5px 60px;
}
.sticky-navbar.nav-up {
  top: -100%;
}
.sticky-navbar.nav-down {
  top: 0 !important;
}
.sticky-navbar .logo {
  margin-right: auto;
}
.sticky-navbar .logo img {
  height: 40px;
}
.sticky-navbar.nav-down .logo h1 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 800;
  font-family: Mukta, sans-serif;
  color: #135487;
  letter-spacing: 2px;
}
.sticky-navbar.nav-down .logo h1 span {
  color: #ff8763;
}
.sticky-navbar .site-menu {
  display: inline-block;
  margin: 0 auto;
}
.sticky-navbar .site-menu ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.sticky-navbar .site-menu ul li {
  display: inline-block;
  margin: 0;
  margin-right: 3vw;
  padding: 0;
  list-style: none;
  position: relative;
}
.sticky-navbar .site-menu ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
.sticky-navbar .site-menu ul li i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-bottom: 2px solid #0c0c0c;
  border-left: 2px solid #0c0c0c;
  transform: rotate(-45deg) translateY(-5px);
  margin-left: 10px;
}
.sticky-navbar .site-menu ul li a {
  display: inline-block;
  color: #0c0c0c;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  font-family: Mukta, sans-serif;
}
.sticky-navbar .site-menu ul li a:hover {
  text-decoration: none;
}
.sticky-navbar .site-menu ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 5px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
  mix-blend-mode: multiply;
}
.sticky-navbar .site-menu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 3px;
  height: 5px;
  width: 0;
  background: #81fdc5;
  transition: width 0.25s ease;
  mix-blend-mode: multiply;
}
.sticky-navbar .site-menu ul li a:hover:before {
  width: 100%;
  background: #81fdc5;
  transition: width 0.25s ease;
}
.sticky-navbar .site-menu ul li a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}
.sticky-navbar .site-menu ul li ul {
  position: absolute;
  left: -30px;
  top: calc(100% + 25px);
  z-index: 1;
  background: #fff;
  padding: 30px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  background: #0c0c0c;
}
.sticky-navbar .site-menu ul li ul:before {
  content: "";
  width: 100%;
  height: 27px;
  position: absolute;
  left: 0;
  top: -27px;
}
.sticky-navbar .site-menu ul li ul li {
  width: 100%;
  display: block;
  white-space: nowrap;
  margin-bottom: 7px;
}
.sticky-navbar .site-menu ul li ul li:last-child {
  margin-bottom: 0;
}
.sticky-navbar .site-menu ul li ul li a {
  display: inline-block;
  color: #fff;
  font-weight: 600;
}
.sticky-navbar .site-menu ul li ul li a:hover {
  color: #81fdc5;
}
.sticky-navbar .site-menu ul li ul li a:before {
  display: none;
}
.sticky-navbar .site-menu ul li ul li a:after {
  display: none;
}
.sticky-navbar .search-button {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.sticky-navbar .search-button i {
  display: inline-block;
  font-size: 18px;
  cursor: pointer;
}

/* HEADER */
.header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 5%);
  /* position: fixed; */
  background: #fff;
  z-index: 999;
}
.header .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header-wrap {
  float: left;
  width: 100%;
  padding: 0px 0px;
}
.header .container .left-side {
  float: left;
}
.header .container .left-side .social-media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.header .container .left-side .social-media .social-info {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: calc(100% + 26px);
  z-index: 1;
  background: #fff;
  padding: 15px 25px;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  white-space: nowrap;
  font-weight: 400;
}
.header .container .left-side .social-media .social-info:before {
  content: "";
  width: 100%;
  height: 25px;
  position: absolute;
  left: 0;
  top: -25px;
}
.header .container .left-side .social-media .social-info ol {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.header .container .left-side .social-media .social-info ol li {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 3px 0;
  padding: 0;
  list-style: none;
}
.header .container .left-side .social-media .social-info ol li i {
  width: 24px;
  font-size: 13px;
}
.header .container .left-side .social-media .social-info ol li span {
  width: 50px;
  text-align: right;
  margin-left: auto;
}
.header .container .left-side .social-media .label {
  display: inline-block;
  margin-right: 15px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}
.header .container .left-side .social-media .label:hover .social-info {
  opacity: 1;
  visibility: visible;
}
.header .container .left-side .social-media ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.header .container .left-side .social-media ul li {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.header .container .left-side .social-media ul li a {
  display: inline-block;
  font-size: 16px;
  background: #1d659c;
  color: #fff;
  padding: 9px;
  border-radius: 50px;
  height: 35px;
  width: 35px;
  line-height: 20px;
}
.header .container .left-side .social-media ul li a:hover {
  color: #fff;
  background: #d81f26;
}
.header .container .logo {
  display: flex;
  margin: 0 auto;
  /* justify-content: center; */
}
.header .container .logo.ham {
  display: none;
}
.header .container .logo a {
  display: inline-block;
}
.header .container .logo a .logo-light {
  display: none;
}
.header .container .logo a img {
  height: 100px;
}
.header .container .logo .logo-text {
  margin-bottom: 0px;
  font-size: 38px;
  font-family: "Mukta", sans-serif;
  font-weight: 800;
  color: #135487;
  letter-spacing: 0px;
  padding: 0px 0px 0px 0px;
}
.header .container .logo .logo-text span {
  color: #ff8763;
}
.header .container .right-side {
  float: right;
  justify-content: right;
}
.header .container .right-side ul {
  list-style: none;
  margin-bottom: 0px;
  float: right;
}
.header .container .right-side ul li {
  display: inline-block;
  font-weight: 600;
  margin-right: 15px;
  padding: 5px 0px;
}
.header .container .right-side ul li a {
  font-size: 18px;
  color: #515365;
}
.header .container .right-side ul li input {
  border: none;
  border-right: solid thin #eee;
}
.header .container .right-side ul li.search-wrap {
  border: solid thin #ddd;
  border-radius: 5px;
  padding: 5px 0px;
}
.navbar .site-menu ul li.search-wrap a:hover:before {
  background: none;
}
.navbar .site-menu ul li.search-wrap a:hover:after {
  background: none;
}
.header .container .right-side .dropdown {
  float: left;
}
.header .container .right-side .dropdown i {
  margin-right: 10px;
}
.header .container .right-side .dropdown button {
  padding: 0px;
  background: none;
  border: none;
  color: #225f8f;
}
.header .container .right-side .dropdown button:focus {
  box-shadow: none;
}
.header .container .right-side .dropdown .dropdown-menu.show {
  padding: 0px;
}
.header .container .right-side .dropdown .dropdown-item {
}

.login-reg {
  float: left;
  margin-left: 10%;
}
.login-reg i {
  margin-right: 10px;
}
.login-reg a {
  color: #225f8f;
}

/* NAVBAR */
.navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.navbar .hamburger-menu {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.navbar .hamburger-menu i {
  font-size: 20px;
  color: #175487;
}
.navbar .logo {
  display: none;
}
.navbar .logo .logo-light {
  display: none;
}
.navbar .logo .logo-dark {
  display: inline-block;
  filter: brightness(0) invert(1);
}
.navbar .site-menu {
  display: inline-block;
  width: 100%;
  padding: 15px 0px 10px 0px;
}
.navbar .site-menu ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.navbar .site-menu ul li {
  display: inline-block;
  margin: 0;
  margin-right: 3vw;
  padding: 0;
  list-style: none;
  position: relative;
}
.navbar .site-menu ul li:hover ul {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 24%);
}
.navbar .site-menu ul li .label {
  height: 16px;
  line-height: 16px;
  display: inline-block;
  padding: 0 5px;
  border-radius: 16px;
  background: #81fdc5;
  color: #0c0c0c;
  font-size: 9px;
  font-weight: 600;
  transform: translateY(-6px);
}
.navbar .site-menu ul li a i {
  padding: 0px 5px;
  font-size: 16px;
}
.navbar .site-menu ul li a i:hover {
  border: none;
}
.navbar .site-menu ul li a {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: Mukta, sans-serif;
}
.navbar .site-menu ul li a:hover {
  text-decoration: none;
}
.navbar .site-menu ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 5px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
  mix-blend-mode: multiply;
}
.navbar .site-menu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -10px;
  height: 5px;
  width: 0;
  background: #ff8763;
  transition: width 0.25s ease;
}
.navbar .site-menu ul li a:hover:before {
  width: 100%;
  background: #ff8763;
  transition: width 0.25s ease;
}
.navbar .site-menu ul li a:hover:after {
  width: 100%;
  background: #ff8763;
  transition: all 0s ease;
}
.navbar .site-menu ul li ul {
  position: absolute;
  left: -30px;
  top: calc(100% + 23px);
  z-index: 1;
  background: #fff;
  padding: 20px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  top: 40px;
}
.navbar .site-menu ul li ul:before {
  content: "";
  width: 100%;
  height: 27px;
  position: absolute;
  left: 0;
  top: -27px;
}
.navbar .site-menu ul li ul li {
  width: 100%;
  display: block;
  white-space: nowrap;
  margin-bottom: 7px;
}
.navbar .site-menu ul li ul li:last-child {
  margin-bottom: 0;
}
.navbar .site-menu ul li ul li a {
  display: inline-block;
  color: #fff;
  font-weight: 600;
}
.navbar .site-menu ul li ul li a:hover {
  color: #81fdc5;
}
.navbar .site-menu ul li ul li a:before {
  display: none;
}
.navbar .site-menu ul li ul li a:after {
  display: none;
}
.navbar .search-button {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.navbar .search-button i {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.row {
  counter-reset: figure;
}
.content-section {
  float: left;
  width: 100%;
  display: block;
  padding: 40px 0px;
  position: relative;
}

/* FOOTER */
.footer-img {
  padding: 50px 0px 0px 0px;
  margin-top: 50px;
  float: left;
  width: 100%;
}

.footer {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  background: #1d659c;
  color: #fff;
}

.footer-header {
  float: left;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: solid thin #104d7b75;
}
.footer-header ul {
  float: left;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.footer-header ul li {
  float: left;
  line-height: 25px;
  margin-right: 30px;
}
.footer-header ul li a {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.footer-top {
  float: left;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: solid thin #104d7b75;
}
.footer-top .col-md-2 {
  border-left: solid thin #104d7b75;
}
.footer-head {
  float: left;
  width: 100%;
}
.footer-head .head-text {
  margin-bottom: 0px;
  font-size: 30px;
  font-family: "Mukta", sans-serif;
  font-weight: 800;
  color: #fff;
  border-bottom: solid thin #104d7b75;
  padding-bottom: 20px;
}
.footer-head .head-text span {
  color: #ff8763;
}
.footer-head h2 {
  font-size: 23px;
  font-weight: 800;
  border-bottom: solid thin #104d7b75;
  padding: 14px 0px;
}
.footer-head ul {
  float: left;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.footer-head ul li {
  float: left;
  width: 100%;
  line-height: 25px;
}
.footer-head ul li a {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.footer-info {
  float: left;
  border-right: solid thin #104d7b75;
}
.footer-top-logo {
  float: left;
  width: 100%;
  border-bottom: solid thin #104d7b75;
  margin-bottom: 20px;
}
.footer-top-logo img {
  width: 20%;
  float: left;
  padding-bottom: 20px;
  padding-top: 5px;
  filter: brightness(0) invert(1);
}
.footer-top-logo h1 {
  font-family: sans-serif;
  float: left;
  width: 76%;
  font-size: 27px;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 4%;
  line-height: 1.8;
  margin-bottom: 0px;
}
.footer-top-logo p {
  float: left;
  color: #fff;
  text-align: left;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 10px;
  font-weight: 600;
}
.footer-info ul {
  float: left;
  width: 100%;
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 20px 0px;
  list-style: none;
  border-bottom: solid thin #104d7b75;
}
.footer-info ul li {
  font-size: 16px;
  font-weight: 600;
}

.footer-info h3 {
  float: left;
  width: 100%;
  font-size: 24px;
  margin-bottom: 10px;
}
ul.ad-info {
  float: left;
  width: 100%;
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 20px 0px;
  list-style: none;
  border-bottom: none;
}
ul.ad-info li {
  font-size: 16px;
  font-weight: 600;
}
.footer-team {
  float: left;
}
.footer-team h3 {
  float: left;
  width: 100%;
  border-bottom: solid thin #104d7b75;
  font-size: 30px;
  font-weight: 800;
  font-family: fantasy;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-team ul {
  float: left;
  width: calc(100% - 260px);
  padding: 0px;
  margin: 0px 2% 20px 0px;
  list-style: none;
}
.footer-team ul li {
  font-size: 16px;
  font-weight: 600;
}
.footer-team ul li:first-child {
  font-size: 20px;
}
.footer-nav {
  float: left;
  width: 100%;
  border-left: solid thin #104d7b75;
}
.footer-nav h3 {
  float: left;
  width: 100%;
  border-bottom: solid thin #104d7b75;
  font-size: 30px;
  font-weight: 800;
  font-family: fantasy;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-nav ul {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px 2% 20px 0px;
  list-style: none;
}
.footer-nav ul li {
  font-size: 16px;
  font-weight: 600;
  padding: 3px 10px;
}
.footer-nav ul li a {
  color: #fff;
}
.footer-nav ul li a:hover {
  color: #5ab1f3;
}

ul.footer-list {
  margin: 20px 0px;
}
ul.footer-list li {
  float: left;
  width: 100%;
  line-height: 30px;
}
.footer-head ul.footer-social {
  float: left;
  width: 100%;
  justify-content: left;
  padding-top: 20px;
}
.footer-head ul.footer-social li {
  line-height: 0px;
  margin-right: 10px;
  margin-left: 0px;
  display: contents;
}
.footer-head ul.footer-social li a {
  border: solid 1px #fff;
  border-radius: 5px;
  margin-right: 20px;
}
.footer-head ul.footer-social li a:hover {
  border-color: #ff8763;
}
.footer-head ul.footer-social li i {
  font-size: 14px;
  padding: 8px 9px;
}

.footer .footer-menu {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.footer .footer-menu li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 10px;
  list-style: none;
}
.footer .footer-menu li a {
  color: #fff;
}
.footer .footer-menu li a:hover {
  color: #81fdc5;
  text-decoration: none;
}
.footer .footer-logo {
}
.footer .footer-logo img {
  height: 30px;
}
.footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.footer .footer-social li {
  display: inline-block;
  margin-left: 20px;
  padding: 0;
  list-style: none;
}
.footer .footer-social li:first-child {
  margin-left: 0;
}
.footer .footer-social li a {
  display: inline-block;
  color: #fff;
  font-size: 13px;
}
.footer .footer-social li a:hover {
  color: #5ab1f3;
}
.footer .copyright {
  width: 100%;
  display: block;
  margin-top: 0px;
  text-align: left;
  font-size: 12px;
}
.footer-bottom {
  float: left;
  width: 100%;
  padding: 10px 0px;
}
.footer .copyright img {
  width: 27%;
  filter: brightness(0) invert(1);
}
/* RESPONSIVE MEDIUM  */
@media only screen and (max-width: 1199px), only screen and (max-device-width: 1199px) {
  .main-slider .swiper-pagination {
    display: none;
  }

  .sticky-navbar {
    display: none;
  }

  .side-widget .inner .account {
    display: flex;
  }

  .header .container .left-side .social-media .social-info {
    top: calc(100% + 11px);
  }

  .header {
    padding: 10px 0;
  }

  .header .container .left-side {
    width: 88%;
  }

  .header .container .logo {
    margin: 0;
  }

  .header .container .logo .logo-text {
    float: left;
    font-size: 30px;
  }

  .header .container .right-side {
    /* width: 12%; */
    margin-top: 15px;
  }

  .header .container .right-side .account {
    display: none;
  }

  .header .container .right-side .custom-switch {
    padding: 0;
    margin-right: 0;
  }

  .header .container .right-side .custom-control-label {
    text-indent: -9999px;
  }

  .navbar .site-menu {
    display: none;
  }

  .navbar .logo {
    display: flex;
    align-items: center;
    margin: 0 auto;
  }

  .navbar .logo img {
    height: 25px;
  }

  .search-box .container input[type="search"] {
    width: 100%;
  }

  .search-box .close-button {
    right: 25px;
    top: 15px;
  }

  .community-block ul {
    margin: 0px;
    padding: 0px;
  }
  .community-block ul li {
    margin-bottom: 20px;
  }
  .interview-wrap h2.entry-title {
    font-size: 30px;
  }
  .interview-block {
    margin-bottom: 20px;
  }
  .community-post .blog-bottom .post-image {
    width: 100%;
  }
  .community-post .blog-bottom .post-content {
    width: 100%;
    padding: 20px 15px;
  }
  .latest-blog-right .post-image {
    width: 100% !important;
  }
  .latest-blog-right .post-content {
    width: 100% !important;
  }
  .blog-bottom .post-image {
    width: 100% !important;
  }
  .blog-bottom .post-content {
    width: 100% !important;
  }
  .blog-bottom .post-content h3.post-title {
    margin-top: 20px;
  }
  .page-header .form {
    width: 100% !important;
  }
  .location-block {
    float: left !important;
  }
  .location-block ul {
    margin: 0px;
    padding: 0px;
  }
  .filter-wrap .form-control {
    margin-bottom: 20px;
  }
  .filter-block {
    float: left;
  }
  .header-wrap {
    padding: 0px;
  }
  .page-header .page-title {
    font-size: 32px !important;
  }
  .author-box .content p {
    width: 100% !important;
  }
}
/* RESPONSIVE TABLET  */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .sticky-navbar {
    padding: 25px 30px;
  }

  .content-section {
    padding: 60px 0;
  }

  .side-widget .logo img {
    height: 120px;
  }

  .header .container .logo a img {
    height: 30px;
  }

  .footer .footer-menu {
    text-align: center;
  }

  .footer .footer-logo {
    margin: 30px 0;
  }

  .footer .footer-social {
    justify-content: center;
  }
}
/* RESPONSIVE MOBILE */
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .main-slider .swiper-pagination {
    display: none;
  }

  .sticky-navbar {
    display: none;
  }

  .side-widget .inner .account {
    display: flex;
  }

  .header .container .left-side .social-media .social-info {
    top: calc(100% + 11px);
  }

  .header {
    padding: 10px 0;
  }

  .header .container .left-side {
    width: 88%;
  }

  .header .container .logo {
    margin: 0;
  }

  .header .container .logo .logo-text {
    float: left;
    font-size: 26px;
  }

  .header .container .right-side {
    margin-top: 10px;
  }

  .header .container .right-side .account {
    display: none;
  }

  .header .container .right-side .custom-switch {
    padding: 0;
    margin-right: 0;
  }

  .header .container .right-side .custom-control-label {
    text-indent: -9999px;
  }

  .navbar .site-menu {
    display: none;
  }

  .navbar .logo {
    display: flex;
    align-items: center;
    margin: 0 auto;
  }

  .navbar .logo img {
    height: 25px;
  }

  .search-box .container input[type="search"] {
    width: 100%;
  }

  .search-box .close-button {
    right: 25px;
    top: 15px;
  }

  .community-block ul {
    margin: 0px;
    padding: 0px;
  }
  .community-block ul li {
    margin-bottom: 20px;
  }
  .interview-wrap h2.entry-title {
    font-size: 30px;
  }
  .interview-block {
    margin-bottom: 20px;
  }
  .community-post .blog-bottom .post-image {
    width: 100%;
  }
  .community-post .blog-bottom .post-content {
    width: 100%;
    padding: 20px 15px;
  }
  .latest-blog-right .post-image {
    width: 100% !important;
  }
  .latest-blog-right .post-content {
    width: 100% !important;
  }
  .blog-bottom .post-image {
    width: 100% !important;
  }
  .blog-bottom .post-content {
    width: 100% !important;
  }
  .blog-bottom .post-content h3.post-title {
    margin-top: 20px;
  }
  .page-header .form {
    width: 100% !important;
  }
  .location-block {
    float: left !important;
  }
  .location-block ul {
    margin: 0px;
    padding: 0px;
  }
  .filter-wrap .form-control {
    margin-bottom: 20px;
  }
  .filter-block {
    float: left;
  }
  .header-wrap {
    padding: 0px;
  }
  .page-header .page-title {
    font-size: 32px !important;
  }
  .author-box .content p {
    width: 100% !important;
  }
}

/********************************** Title Holder **********************************************************************************/

.title-holder {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

h2.entry-title {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.4;
  z-index: 2;
  margin-bottom: 0;
  font-family: "Mukta", sans-serif;
  font-size: 36px;
}
.titledot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2962ff;
  margin-right: 7px;
  margin-left: 15px;
  display: inline-block;
  transition: all ease 0.31s;
}
.titleline {
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  flex-grow: 1;
  height: 4px;
  transition: all ease 0.31s;
  line-height: 1.4;
}
.entry-title span {
  color: #2962ff;
}
a.see-all {
  display: inline-block;
  margin-top: 0;
  color: #000;
  background: #fff;
  position: absolute;
  z-index: 2;
  right: 0px;
  top: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.6px;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  line-height: 1.4;
  box-shadow: 0 0 40px 0 rgb(0 0 0 / 9%) !important;
}
a.see-all:hover {
  background-color: #2962ff;
  color: #fff !important;
}

/********************************** Title Holder **********************************************************************************/

.blog-post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.blog-post .post-image {
  letter-spacing: 0;
  overflow: hidden;
  background: #0c0c0c;
  position: relative;
}
.blog-post .post-image img {
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.blog-post .metas {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-post .metas .date {
  display: inline-block;
  font-size: 13px;
}
.blog-post .metas .dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #000;
  border-radius: 50%;
  margin: 0 15px;
}
.blog-post .metas .author {
  display: inline-block;
  font-size: 13px;
}
.blog-post .metas .author a {
  text-decoration: underline;
  font-weight: 600;
}
.blog-post:hover .post-image img {
  transform: scale(1.05);
  opacity: 0.9;
}
.blog-post .post-categories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 0;
}
.blog-post .post-categories li {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.blog-post .post-categories li a {
  height: 24px;
  line-height: 24px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  background: #e9e5e2;
  color: #0c0c0c;
}
.blog-post .post-categories li a:hover {
  text-decoration: none;
  background: #0c0c0c;
  color: #fff;
}

.animi-block {
  position: relative;
  margin: 0px;
}
.animi-block .post-image {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border-radius: 4px;
  background: none;
}
.animi-block .post-image img {
  width: 100%;
}
.animi-block .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.animi-block .metas {
  width: 100%;
  margin-top: 20px;
}
.animi-block .metas .date {
  color: #a5a6aa;
  font-weight: 600;
}
.animi-block .metas .author {
  color: #a5a6aa;
  font-weight: 600;
}
.animi-block .metas .author a {
  color: #0c0c0c;
  text-decoration: none;
}
ul.bio-list {
  margin: 0px;
  padding: 0px;
  list-style: none;
  float: left;
  width: 100%;
  margin-top: 5px;
}
ul.bio-list i {
  margin-right: 15px;
}
ul.bio-list span {
  font-weight: 700;
  font-size: 14px;
}

.abt-wrap {
  background: url(../images/abt-bg.jpg) no-repeat;
  background-size: cover;
  margin: 0px;
}

/********************************** Text Overlay **********************************************************************************/
.text-overlay {
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 3px 0px rgb(243 242 242);
  border-radius: 5px;
  height: 355px;
}
.text-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(rgba(0, 0, 0, 56%))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(0 0 0 / 56%));
}

.text-overlay img {
  width: 100%;
  min-height: 355px;
  object-fit: cover;
  object-position: top;
}
.text-overlay h3 {
  font-family: Mukta, sans-serif;
  font-weight: 800;
  position: absolute;
  padding: 20px 15px 0px 15px;
  line-height: 1;
  bottom: 0;
  left: 0;
}
.text-overlay h3 a {
  color: #fff;
  font-size: 20px;
}

/********************************** Text Overlay Long **********************************************************************************/

.text-overlay-long {
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 3px 0px rgb(243 242 242);
  border-radius: 5px;
  height: 200px;
  margin: 20px 0px;
}
.text-overlay-long::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(rgba(0, 0, 0, 56%))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(0 0 0 / 56%));
}

.text-overlay-long img {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top;
}
.text-overlay-long h3 {
  font-family: Mukta, sans-serif;
  font-weight: 800;
  position: absolute;
  padding: 20px 15px 0px 15px;
  line-height: 1.3;
  bottom: 15px;
  left: 0;
}
.text-overlay-long h3 a {
  color: #fff;
  font-size: 26px;
}

/********************************** Text Overlay Big **********************************************************************************/

.text-overlay-big {
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 3px 0px rgb(243 242 242);
  border-radius: 5px;
  height: 570px;
}
.text-overlay-big::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(rgba(0, 0, 0, 56%))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(0 0 0 / 56%));
}

.text-overlay-big img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: top;
}
.text-overlay-big h3 {
  font-family: Mukta, sans-serif;
  font-weight: 800;
  position: absolute;
  padding: 20px 15px 0px 15px;
  line-height: 1.5;
  bottom: 15px;
  left: 0;
}
.text-overlay-big h3 a {
  color: #fff;
  font-size: 38px;
}

/********************************** Text Overlay Big **********************************************************************************/

.grad-bg {
  background: linear-gradient(45deg, #fbd5da26 5%, #fbd5da3d 20%, #ffffff 100%);
  width: 100%;
  padding: 30px 0px;
}

ul.count-list li {
  display: inline-block;
  padding: 10px 25px 10px 70px;
  text-align: center;
}
ul.count-list li span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
  margin-right: auto;
  margin-left: auto;
  height: 115px;
  width: 120px;
  line-height: 25px;
  border-radius: 50%;
  font-weight: 800;
  background: #ff9546;
  text-align: center;
  border: 15px solid #ffffff;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  padding: 30px 0px;
}
ul.count-list li b {
  float: left;
  width: 100%;
  font-size: 24px;
  font-weight: 800;
}

.intro {
  float: left;
  width: 100%;
  margin: 0px 0px 30px 0px;
}

.intro h2 {
  font-family: "Mukta", sans-serif;
  padding: 20px 0px;
  letter-spacing: 2px;
  color: #135487;
  font-size: 48px;
  font-weight: 800;
  text-shadow: 2px 2px #a28dcd;
}
.intro span {
  color: #ff8763;
}
.intro p {
  font-family: Mukta, sans-serif;
  font-size: 18px;
  padding: 20px 0;
  text-align: justify;
  color: #fff;
}
.intro a {
  color: #ff8763;
  text-decoration: underline;
  font-weight: 800;
  margin-left: 20px;
}
.intro ul.counter {
  margin: 40px 0px 0px 0px;
  padding: 0px;
  list-style: none;
}
ul.counter li {
  float: left;
  padding: 0 6px;
}
.count-box {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 70%);
  margin-bottom: 12px;
  height: 95px;
  padding: 10px 0px 0px 0px;
  text-align: center;
  position: relative;
}
.count-box:hover {
  background: #ff87637d;
  border: none;
}
.count-box:hover span {
  color: #fff;
}
.count-box:hover strong {
  color: #fff;
}
.count-box span {
  font-family: "Mukta", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #b1adad;
}
.count-box strong {
  color: #ff8763;
  font-size: 30px;
  font-weight: 800;
  display: block;
  line-height: 40px;
  margin: 0;
}

.notice-block {
  float: left;
  width: 100%;
  padding-bottom: 20px;
  margin: 0px;
  background-color: #f7f7f76b;
  box-shadow: 0 0 16px rgb(0 0 0 / 22%);
}
.notice-block h3 {
  background: #1d659c94;
  color: #fff;
  text-align: center;
  padding: 5px 0px;
  font-family: "Mukta", sans-serif;
  font-size: 30px;
  letter-spacing: 2.2px;
}
.notice-block ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.notice-block ul li {
  float: left;
  width: 100%;
  border-bottom: solid thin #bab3dfa1;
  padding: 5px 15px;
  font-weight: 600;
  line-height: 1.4;
}
.notice-block ul li:last-child {
  border: none;
}
.notice-block ul li a {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

/**********************************  Overlay Text **********************************************************************************/
.overlay-text {
  position: relative;
}
.overlay-text .post-image {
  width: 100%;
  display: block;
  margin-bottom: 0;
}
.overlay-text .post-content {
  width: 70%;
  position: absolute;
  left: 36px;
  bottom: 36px;
  padding-left: 10px;
}
.overlay-text .post-content .post-title {
  font-size: 30px;
  font-weight: 800;
  display: inline;
  line-height: 1.7;
  background-color: #0c0c0c;
  box-shadow: 0 0 0 10px #0c0c0c;
}
.overlay-text .post-content .post-title a {
  display: inline;
  color: #fff;
}

/**********************************  Overlay Text **********************************************************************************/

/**********************************  Medium Image **********************************************************************************/

/**********************************  Medium Image **********************************************************************************/

.medium-img {
  position: relative;
}
.medium-img .post-content .post-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}

/**********************************  Small Image **********************************************************************************/

.small-img {
  position: relative;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}
.small-img .post-image {
  width: 150px;
  display: inline-block;
  margin-bottom: 0;
}
.small-img .post-content {
  width: calc(100% - 170px);
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
}
.small-img .post-content .post-title {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

/**********************************  Small Image **********************************************************************************/

.top-stories {
  float: left;
  width: 100%;
  background-color: #fbf8f5;
  background-image: url(../images/bg-1.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 80px 0 65px 0;
}
.top-stories .animi-block img {
  height: 229px;
  object-position: top;
  object-fit: cover;
  border-radius: 4px;
}

.interview-wrap {
  float: left;
  width: 100%;
  z-index: 2;
}
.interview-block {
  position: relative;
  margin: 0;
}
.interview-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 59%, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.interview-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.interview-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.5s ease;
}

.interview-block:hover .interview-img img {
  transform: scale(1.05);
  opacity: 0.9;
}
.interview-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.5s ease;
  padding: 25px;
}
.interview-content h3 a {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}
.interview-content .post-categories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 0;
}
.interview-content .post-categories li {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.interview-content .post-categories li a {
  height: 24px;
  line-height: 24px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  background: #e9e5e2;
  color: #0c0c0c;
}
.interview-content .post-categories li a:hover {
  text-decoration: none;
  background: #0c0c0c;
  color: #fff;
}

.left-big,
.left-big-content,
.right-small {
  float: left;
  width: 100%;
}
.left-big-img img {
  width: 100%;
  height: 395px;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.5s ease;
}

.left-big:hover .left-big-img img {
  transform: scale(1.05);
  opacity: 0.9;
}
.left-big-content h3 {
  margin: 20px 0px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.right-small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.5s ease;
}

.right-small:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.right-small h3 {
  margin: 20px 0px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}
.right-small p {
  /* text-align: justify; */
  color: #707070;
  font-size: 16px;
  line-height: 25px;
}

.video-wrap {
  float: left;
  width: 100%;
  margin: 0px;
}

.main-video {
  float: left;
  width: 100%;
}
.main-video iframe {
  width: 100%;
}
.main-video h3 {
  font-family: "Mukta", sans-serif;
  color: #fff;
}
.main-video h3 a {
  font-size: 45px;
}
.main-video ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.main-video ul li {
  float: left;
  margin-right: 3%;
}
.main-video ul li a {
  height: 24px;
  line-height: 24px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  background: #e9e5e2;
  color: #0c0c0c;
}
.main-video ul li a:hover {
  background: #ff8763;
  color: #000 !important;
}

.video-bottom {
  float: left;
  width: 100%;
  margin: 30px 0px;
}
.video-bottom h3 {
  font-size: 22px !important;
}
.video-bottom h3 a {
}
.video-bottom img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  object-position: top;
}

.left-img-block,
.left-img {
  float: left;
  width: 100%;
}

.single-header {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.single-title-block {
  position: relative;
  margin: 0;
}
.single-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 59%, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.single-head-title {
  float: left;
  width: 100%;
  margin-top: 0px;
  border-top: solid thin #eee;
  border-bottom: solid thin #eee;
}
.single-head-title h2 {
  color: #515365;
  margin: 0px;
  padding: 20px 0px;
  font-size: 36px;
  font-weight: 600;
}

h1.single-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.5s ease;
  padding: 35px;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}
.single-content {
  float: left;
  width: 100%;
}
.single-content img {
  margin-bottom: 20px;
}
.single-content p {
  font-size: 18px;
  color: #555;
  text-align: justify;
}
.single-content blockquote {
  width: 100%;
  margin-bottom: 30px;
  margin-top: 10px;
  font-size: 30px;
  position: relative;
  line-height: 1.2;
  padding: 36px;
  border-left: 5px solid #eee;
  color: #555;
  text-align: center;
}
.single-content blockquote:before {
  left: 20px;
  top: 20px;
  content: "“";
  font-size: 80px;
  line-height: 1;
  position: absolute;
  opacity: 0.2;
}
.single-content .alignleft {
  float: left;
  margin-right: 20px;
}
.single-content img.fullwidth {
  margin: 20px 0px;
}

.single-sidebar {
  width: 100%;
  float: left;
  z-index: 3;
}
.single-sidebar .tab-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.single-sidebar .tab-content .tab-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  background: #fbfbfb;
}
.single-sidebar .tab-content .tab-nav li {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-sidebar .tab-content .tab-nav li a {
  width: 100%;
  height: 60px;
  line-height: 60px;
  float: left;
  font-weight: 600;
  padding: 0;
  text-align: center;
}

ul.img-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
ul.img-list li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: inline-block;
}
ul.img-list li:first-child {
  margin-top: 20px;
}
ul.img-list li:last-child {
  border: none;
  margin: 0px;
}
ul.img-list li img {
  width: 150px;
  float: left;
  margin-right: 15px;
  height: 100px;
  object-fit: fill;
}
ul.img-list li h3 {
  color: #000;
  font-size: 18px;
}

.newsletter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  padding: 40px 20px;
  float: left;
  background: url(../images/news-bg.png);
  margin-bottom: 30px;
}
.newsletter h3 {
  width: 100%;
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #000;
}
.newsletter p {
  width: 100%;
  display: block;
}
.newsletter form {
  width: 100%;
  display: block;
}
.newsletter input[type="email"] {
  max-width: 100%;
  margin-bottom: 10px;
  border: none;
  width: 420px;
  height: 60px;
  padding: 0 30px;
  border: solid thin #ddd;
}
.newsletter label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  color: #000;
}
.newsletter input[type="checkbox"] {
  display: inline-block;
  background: #ededed;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  transform: translateY(2px);
  appearance: none;
}
.newsletter input[type="submit"] {
  height: 40px;
  width: 100%;
  background: #1d659c;
  color: #fff;
}
.newsletter input[type="submit"]:hover {
  background: #ff8763;
}

.related-box {
  position: relative;
  margin: 0;
}
.related-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 59%, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.related-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.related-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.5s ease;
}

.related-box:hover .related-img img {
  transform: scale(1.05);
  opacity: 0.9;
}
.related-title {
  float: left;
  width: 100%;
  margin: 20px 0px;
}
.related-title h3 {
  font-size: 22px;
  line-height: 1.2;
}
.related-title h3 a {
  color: #0c0c0c;
  font-weight: 800;
}
ul.related-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
ul.related-list li {
  float: left;
  width: 100%;
}
ul.related-list li img {
  height: 100px;
  border: solid thin #ddd;
  float: left;
}
.related-content {
  border: solid thin #f1ecec;
  float: left;
  width: 100%;
}

a.cat-button {
  background: #ff8763;
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
  font-weight: 800;
}
a.cat-button:hover {
  box-shadow: 0 2px 4px #c7ae2b, 0 4px 12px rgb(15 10 10 / 20%);
  color: #fff !important;
}

.location-map iframe {
  border: none;
}
.location-map ul {
  margin: 15px 0px 0px 0px;
  padding: 0;
  list-style: none;
}
.location-map ul li {
  width: 100%;
  float: left;
  display: flex;
  align-items: baseline;
  font-size: 16px;
  line-height: 25px;
  padding-bottom: 10px;
}
.location-map ul li i {
  color: #f78763;
  margin-right: 15px;
}

.right-box {
  float: left;
  width: 100%;
  border: solid thin #f1ecec;
  background: #fff;
  border-radius: 5px;
  margin: 20px 0px;
  padding: 20px 0px;
}
.right-box ul {
  list-style: none;
  padding: 0px 20px;
}
.right-box ul li {
  float: left;
  width: 100%;
  padding: 5px 0px;
}
.right-box ul li i {
  color: #f78763;
  margin-right: 15px;
}

.banner-wrap {
  display: block;
}
.home-banner {
  background: url(../images/abt-bg.jpg) no-repeat;
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #999;
}
.home-banner h2 {
  font-size: 50px;
  font-family: "Mukta", sans-serif;
  color: #fff;
  /* letter-spacing: 2px; */
  text-align: center;
  padding: 120px 0px;
  margin-bottom: 70px;
}
.home-banner h2 span {
  color: #ff8763;
}
.slide-wrap {
  float: left;
  width: 100%;
  position: relative;
  z-index: 999;
  margin-top: -120px;
}
.icon-list {
  float: left;
  width: 100%;
  background: #1d659c;
}
.icon-list ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.icon-list ul li {
  color: #fff;
  text-align: center;
  border: solid thin #0c4c7c75;
  width: 50%;
  float: left;
}
.icon-list ul li a {
  padding: 5px 10px;
  color: #fff;
}
.icon-list ul li a:hover {
}
.icon-list ul li i {
  float: left;
  width: 100%;
  font-size: 35px;
  margin-bottom: 5px;
}
.icon-list ul li span {
  float: left;
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  margin: 10px 0px;
}
a.all-btn {
  float: left;
  width: 100%;
  background: #ed673c;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 10px;
}
a.all-btn span {
  float: right;
  padding-right: 20px;
}
a.all-btn:hover {
  background: #f78763;
  color: #fff !important;
}

#carousel-example-2 {
  background: #fff;
  background: #fff;
  border: solid 25px #fff;
  background-color: #f7f7f76b;
  box-shadow: 0 0 16px rgb(0 0 0 / 22%);
}
#carousel-example-2 .view img {
  width: 100%;
  height: 345px;
  border: 0;
  object-fit: cover;
}
.carousel-caption {
  float: left;
  width: 100%;
  background: #0000003b;
  bottom: 0px;
  left: 0px;
}
.carousel-caption h3 {
  text-align: left;
  font-size: 30px;
  padding: 0px 20px;
}

.profile-header {
  background: #fff;
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 16%);
  margin-bottom: 15px;
  position: relative;
}

.profile-slider {
  float: left;
  width: 100%;
  position: relative;
}
.profile-slider:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 -120px 55px -30px rgb(0 0 0 / 50%);
  border-top-left-radius: 5px;
}

.profile-slider img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 345px;
  object-position: top;
  object-fit: cover;
  width: 100%;
}

.profile-section {
  position: relative;
  padding: 30px 30px 20px 30px;
  z-index: 3;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  float: left;
  width: 100%;
  border: solid thin #e6ecfe;
}
.profile-section .share-button {
  position: absolute;
  right: 38px;
  top: -30px;
}
.profile-section .share-button .share-btn {
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-right: 20px;
}
.profile-section .share-button i {
  color: #fff;
  font-size: 20px;
}
.bg-fb {
  background: #3b5998;
}
.bg-twitter {
  background: #00acee;
}
.bg-youtube {
  background: #c02525;
}
.bg-instagram {
  background: #da4343;
}
.profile-name {
  float: left;
  width: 100%;
}
.profile-name h1 {
  color: #515365;
  font-size: 22px;
  font-weight: 600;
}
.profile-name span {
  color: #9a9fbf;
}
.location-block {
  float: right;
  color: #515365;
  font-size: 16px;
  display: flex;
}
.location-block ul {
  list-style: none;
}
.location-block ul li i {
  margin-right: 15px;
  color: #f78763;
  line-height: 30px;
}

.profile-pic {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 250px;
  text-align: center;
  max-width: 200px;
  z-index: 4;
}
.profile-pic .author-thumb img {
  border-radius: 100%;
  border: 6px solid #fff;
  border: 6px solid #fff;
  margin: 0 auto;
  overflow: hidden;
  width: 132px;
  height: 132px;
  object-fit: cover;
  background-color: #888da8;
}
.profile-info-block {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin: 50px 0px 15px 0px;
}
.profile-info-block h3 {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6ecf5;
  color: #515365;
  padding: 20px;
}

table.openingHours {
  width: 100%;
  margin: 25px 0px;
}
table.openingHours tr {
  font-size: 16px;
  color: #515365;
}
table.openingHours tr td {
  padding: 0px 20px;
}

.profile-overview {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin: 50px 0px 15px 0px;
}
.profile-overview h2 {
  font-size: 20px;
  line-height: 22px;
  color: #000;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6ecf5;
  color: #515365;
  padding: 20px;
}
.profile-overview h3 {
  padding: 20px 20px 0px 20px;
  margin: 0px;
  font-size: 22px;
  color: #515365;
}
.profile-overview p {
  padding: 20px;
  text-align: justify;
  color: #888da8;
  font-size: 16px;
}
.profile-location {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin: 50px 0px 15px 0px;
}
.profile-location iframe {
  width: 100%;
}

.suggestion-block {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin: 10px 0px 20px 0px;
  padding: 10px;
  float: left;
  width: 100%;
}
.suggestion-block ul {
  list-style: none;
  margin: 0px;
  padding: 0px 20px;
}
.suggestion-block ul li {
  float: left;
  width: 100%;
  padding: 5px 0px;
  color: #515365;
}
.suggestion-block ul li i {
  color: #f78763;
  margin-right: 15px;
}

.profile-block {
  float: left;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  border: solid thin #f8f6f6;
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 6%);
  margin-bottom: 30px;
}
.profile-block:hover {
  box-shadow: 0px 2px 15px rgb(44 73 100 / 8%);
}

.profile-block img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.profile-content {
  float: left;
  padding: 20px;
}
.profile-content h2 {
  font-size: 23px;
  font-weight: 500;
}
.profile-content .location-block {
  width: 100%;
  float: left;
  display: block;
}
.profile-content .location-block ul {
  padding: 0px;
  margin: 0px;
}
.profile-content .location-block ul li {
  font-size: 14px;
}
.profile-content button {
  float: left;
  width: 100%;
  margin-top: 20px;
  color: #000;
  background: #fff;
  z-index: 2;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  line-height: 1.4;
  border: none;
  background: #1d659c;
  color: #fff;
}
.profile-content button:last-child {
  margin-top: 20px;
}
.profile-content button:hover {
  background: #ff8763;
}

a.profile-btn {
  float: left;
  width: 45%;
  margin-right: 5%;
  margin-top: 20px;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  line-height: 1.4;
  border: solid thin #f1f1f173;
  background: #f9f9f9;
  color: #515365;
}
a.profile-btn:last-child {
  float: right;
  margin-right: 0px;
  width: 48%;
}
a.profile-btn:hover {
  background: #ff8763;
  color: #fff !important;
}

.profile-detail {
  float: left;
  width: 100%;
}
.profile-detail h2 {
  font-size: 26px;
  font-weight: 500;
}
.profile-detail .location-block {
  float: left;
}
.profile-detail .location-block ul {
  padding: 0px;
}
.profile-detail .border-right {
  border-right: solid thin #f6f3f3;
}

.social-block {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin: 10px 0px 20px 0px;
  float: left;
  width: 100%;
}
.social-block h3 {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6ecf5;
  color: #515365;
  padding: 10px 20px;
}
.social-block ul {
  list-style: none;
  margin: 0px;
  padding: 0px 20px;
}
.social-block ul li {
  float: left;
  padding: 5px 15px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.social-block ul li.fb-icon {
  background: #3b5998;
}
.social-block ul li.twitter-icon {
  background: #00acee;
}
.social-block ul li.youtube-icon {
  background: #ff0000;
}
.social-block ul li.insta-icon {
  background: #fb3958;
}
.social-block ul li i {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.numbers-block {
  padding: 25px 20px;
  float: left;
  width: 100%;
  background: #fafafa;
  border-radius: 5px;
  border: solid thin #f8f6f6;
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 6%);
  margin-bottom: 30px;
}
.numbers-block:hover {
  box-shadow: 0px 2px 15px rgb(44 73 100 / 8%);
}
.numbers-block ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.numbers-block ul li {
  float: left;
  width: 100%;
  color: #515365;
  padding-bottom: 15px;
  display: flex;
  line-height: 20px;
  font-size: 16px;
}
.numbers-block ul li:first-child {
  font-size: 16px;
  font-weight: 600;
}
.numbers-block ul li i:first-child {
  font-size: 16px;
  font-weight: 600;
}
.numbers-block ul li:last-child {
  padding-bottom: 0px;
}
.numbers-block ul li i {
  margin-right: 15px;
  line-height: 20px;
  color: #f78763;
}
.numbers-block p {
  float: left;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 20px;
  text-align: justify;
}

.pagination {
  width: 100%;
  display: flex;
  margin: 0;
  margin-top: 40px;
}
.pagination .page-item {
  display: inline-block;
}
.pagination .page-item .page-link {
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  border-radius: 0 !important;
  font-size: 16px;
  font-weight: 600;
  color: #515365;
  outline: none !important;
}

.pagination .page-item.active .page-link {
  background: #1d659c;
  border-color: transparent;
  color: #fff;
}
.pagination .page-link:hover {
  background: #ff8763;
  color: #fff !important;
}
.search-filter {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.search-filter ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.search-filter ul li {
  float: left;
  margin-right: 13px;
  background: #fafafa;
  border: solid thin #f8f6f6;
  padding: 5px 12px;
  margin-bottom: 20px;
  cursor: pointer;
}
.search-filter ul li:hover {
  background: #f2ecec;
}
.search-filter ul li a {
  color: #515365;
}
.search-filter ul li a:hover {
  color: #515365;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* padding: 80px 0 0px 0px; */
  background: url(../images/breadcrumb-bg.jpeg) no-repeat;
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #999;
}
.page-header .col-12 {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.page-header small {
  width: 100%;
  display: block;
  font-weight: 600;
  opacity: 0.6;
}
.page-header .page-title {
  width: 100%;
  display: inline-block;
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 0;
  margin-bottom: 25px;
  color: #175487;
  font-family: "Mukta", sans-serif;
  letter-spacing: 0px;
}
.page-header p {
  font-size: 20px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  width: 100%;
}
.page-header .breadcrumb {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  background: none;
  margin: 0;
  margin-left: auto;
}
.page-header .breadcrumb ul {
  display: inline-block;
  margin-bottom: 0;
  padding: 0;
}
.page-header .breadcrumb ul li {
  display: inline-block;
  margin-right: 15px;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}
.page-header .breadcrumb ul li a {
  display: inline-block;
  font-weight: 400;
}
.page-header .breadcrumb ul li:last-child {
  margin-right: 0;
}
.page-header .breadcrumb ul li:last-child:after {
  display: none;
}
.page-header .breadcrumb ul li:after {
  content: "";
  width: 1px;
  height: 15px;
  background: #0c0c0c;
  display: inline-block;
  margin-left: 17px;
  transform: translateY(4px) rotate(22deg);
}

.page-header .form {
  margin-top: 0px;
  padding-bottom: 30px;
}
.page-header .form input {
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 5%);
}
.form {
  position: relative;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
.form span {
  position: absolute;
  right: 17px;
  top: 13px;
  padding: 2px;
  border-left: 1px solid #d1d5db;
}

.left-pan {
  padding-left: 7px;
}

.left-pan i {
  padding-left: 10px;
}

.form-input {
  height: 50px !important;
  text-indent: 0px;
  border-radius: 5px;
  padding: 20px !important;
  border: none !important;
}

.form-input:focus {
  box-shadow: none;
  border: none;
}
.latest-blog-wrap {
  float: left;
  width: 100%;
}
.latest-blog {
  float: left;
  width: 100%;
}
.latest-blog img {
  width: 100%;
}
.latest-blog h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 20px 0px;
}
.latest-blog-right {
  float: left;
  width: 100%;
  position: relative;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border: solid thin #1a1f2308;
}
.latest-blog-right:hover {
  box-shadow: -1px 1px 9px 0px rgb(26 31 35 / 7%);
}
.latest-blog-right .post-image {
  float: right;
  width: 250px;
  margin-bottom: 0;
  overflow: hidden;
  background: #0c0c0c;
  position: relative;
}
.latest-blog-right .post-image img {
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  min-height: 167px;
  max-height: 167px;
  object-position: top;
  object-fit: fill;
}
.latest-blog-right:hover .post-image img {
  transform: scale(1.05);
  opacity: 0.9;
}
.latest-blog-right .post-content {
  width: calc(100% - 280px);
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
}
.latest-blog-right .post-content .post-title {
  font-size: 24px;
  font-weight: 600;
}
.latest-blog-right .post-content .post-title a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #0c0c0c 1px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #0c0c0c 1px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #0c0c0c 1px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}
.latest-blog-right .post-categories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 20px 0px 0px 0px;
}
.latest-blog-right .post-categories li {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.latest-blog-right .post-categories li a {
  height: 24px;
  line-height: 24px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
  background: #e9e5e2;
  color: #0c0c0c;
}
.latest-blog-right .post-categories li a:hover {
  text-decoration: none;
  background: #0c0c0c;
  color: #fff;
}

.blog-bottom-wrap {
  float: left;
  width: 100%;
  border-top: solid thin #1a1f230a;
  padding: 30px 0px;
}

.blog-bottom {
  float: left;
  width: 100%;
  position: relative;
  align-items: center;
  margin-bottom: 0px;
  padding: 20px 0px;
  background: #fff;
  border-bottom: solid thin #1a1f230f;
}
.blog-bottom:last-child {
  margin-bottom: 0px;
}
.blog-bottom .post-image {
  float: left;
  width: 250px;
  margin-bottom: 0;
  overflow: hidden;
  background: #0c0c0c;
  position: relative;
  margin-right: 20px;
}
.blog-bottom .post-image img {
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  min-height: 167px;
  max-height: 167px;
  object-position: top;
  object-fit: fill;
}
.blog-bottom:hover .post-image img {
  transform: scale(1.05);
  opacity: 0.9;
}
.blog-bottom .post-content {
  width: calc(100% - 280px);
  display: flex;
  flex-wrap: wrap;
}
.blog-bottom .post-content .post-title {
  font-size: 24px;
  font-weight: 600;
}
.blog-bottom .post-content .post-title a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #0c0c0c 1px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #0c0c0c 1px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #0c0c0c 1px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}
.blog-bottom .post-content p {
  text-align: justify;
}
.blog-bottom .post-categories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 20px 0px 0px 0px;
}
.blog-bottom .post-categories li {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.blog-bottom .post-categories li a {
  height: 24px;
  line-height: 24px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
  background: #e9e5e2;
  color: #0c0c0c;
}
.blog-bottom .post-categories li a:hover {
  text-decoration: none;
  background: #0c0c0c;
  color: #fff;
}
a.right-btn {
  background: linear-gradient(to right, #1d659c 0%, rgb(29 101 156 / 50%) 100%);
  float: left;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 10px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 20px 0px;
}
a.right-btn i {
  margin-right: 10px;
}
a.right-btn:hover {
  background: linear-gradient(to right, #f78763 0%, rgb(243 137 104 / 57%) 100%);
  color: #fff !important;
}

.blog-rightside .icon-list {
  background: #fff;
}
.blog-rightside .icon-list ul li {
  border: solid thin #1a1f230f;
}
.blog-rightside .icon-list ul li a {
  color: #818080;
}

.events-wrap {
  float: left;
  width: 100%;
  background-color: #fff;
  padding: 80px 0 65px 0;
}
.events-wrap .numbers-block h3 {
  font-size: 21px;
  margin-bottom: 20px;
  font-weight: 600;
}
.events-wrap .numbers-block ul li:first-child {
  font-weight: 500;
}
.events-wrap .numbers-block ul li:last-child {
  float: right;
}
.events-wrap .numbers-block {
  padding: 0px;
}
.events-wrap .numbers-block img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
}
.events-wrap .numbers-block h3 {
  padding: 0px 20px;
}
.events-wrap .numbers-block ul {
  padding: 0px 20px;
}
.events-wrap .numbers-block ul li {
  width: auto;
}
.events-wrap .numbers-block p {
  padding: 0px 20px;
  margin: 5px 0px 20px 0px;
}

.new-blog {
  float: left;
  width: 100%;
}
.new-blog img {
  border-radius: 10px;
  height: 380px;
  object-fit: cover;
  object-position: top;
}
.new-blog h3 {
  font-size: 24px;
  margin: 20px 0px;
  font-weight: 800;
}

.older-blog {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}
.older-blog h3 {
  font-size: 23px;
  font-weight: 600;
}
.older-blog p {
  font-size: 16px;
  float: left;
  width: 100%;
  line-height: 25px;
  margin: 10px 0px;
}

.community-block {
  float: left;
  width: 100%;
  background: #f7f7f7;
  margin: 50px 0px 0px 0px;
  padding: 40px 0px;
}
.community-block ul {
  float: left;
  width: 100%;
  list-style: none;
}

.community-block ul li {
  float: left;
}
.community-block ul li a {
  float: left;
  box-shadow: 0px 30px 50px rgb(26 31 35 / 7%);
  padding: 10px;
  background: #fff;
  width: 100%;
  border-radius: 50px;
}
.community-block ul li a:hover {
  background: #ff8763;
  color: #fff !important;
}

.community-block ul li span {
  border-radius: 50%;
  background: #f7f7f9;
  float: left;
  padding: 15px 20px;
  font-size: 26px;
  font-weight: 600;
  width: 70px;
  height: 70px;
  text-align: center;
  margin-right: 5%;
}
.community-block ul li a:hover span {
  color: #515365;
}
.community-block ul li a span:hover {
  color: #515365;
}
.community-block ul li b {
  float: left;
  font-size: 20px;
}

.community-box {
  float: left;
  width: 100%;
  background: #fafafa;
  border-radius: 5px;
  border: solid thin #f8f6f6;
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 6%);
  margin-bottom: 30px;
}
.community-box:hover {
  box-shadow: 0px 2px 15px rgb(44 73 100 / 8%);
}
.community-box h3 {
  font-size: 20px;
  padding: 20px 17px 10px 17px;
}
.community-header {
  float: left;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin-bottom: 50px;
}
.community-header h1 {
  float: left;
  width: 100%;
  padding: 10px;
  font-size: 32px;
  font-weight: 900;
}
.community-header p {
  float: left;
  width: 100%;
  padding: 0px 10px;
  font-size: 16px;
}
.community-content {
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin-bottom: 50px;
}
.community-left {
  float: left;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin-bottom: 15px;
  padding: 10px;
}
.community-left iframe {
  height: 250px;
}
.community-left table {
  float: left;
  margin: 20px 0px;
  width: 100%;
}
.community-left table tr {
  border: solid thin #e6ecf5;
}
.community-left table td {
  border: solid thin #e6ecf5;
  padding: 10px;
}
.community-left table th {
  padding: 10px;
}

.community-places {
  float: left;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin-bottom: 15px;
  padding: 20px 10px 0px 10px;
}
.community-places ul {
  list-style: none;
  float: left;
  width: 100%;
  padding: 0px 10px;
  margin: 0px;
}
.community-places ul li {
  float: left;
  border: solid thin #e6ecf5;
  margin-right: 2%;
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}
.community-places ul li:hover {
  border-color: #ff8763;
  color: #ff8763;
}
.community-post {
  float: left;
  width: 100%;
  box-shadow: 0px 1px 2px rgb(26 31 35 / 7%);
  margin-bottom: 30px;
}
.community-post .blog-bottom {
  border: 1px solid #e6ecf5;
  padding: 0px;
}
.community-post .blog-bottom .post-content {
  margin: 20px 0px 0px 0px;
}
.community-post .blog-bottom .post-content .post-title {
  font-size: 22px;
}
.community-post .blog-bottom .post-content p {
  float: left;
  width: 100%;
  margin: 0px 0px 5px 0px;
}

.filter-wrap {
  float: left;
  width: 100%;
  border: solid thin #ececec;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 5%);
  padding: 0px;
  border-radius: 5px;
  margin-bottom: 40px;
}
.filter-wrap .form-control {
  border: 1px solid #ececec;
}
.filter-wrap .filter-form {
  float: left;
  border: solid thin #ececec;
  border-radius: 5px;
  width: 100%;
}
.filter-wrap .filter-form span {
  position: absolute;
  right: 30px;
  top: 1px;
  padding: 2px;
  border-left: 1px solid #ececec;
}
.filter-wrap .filter-form .left-pan i {
  padding-left: 10px;
  line-height: 35px !important;
}

.filter-wrap .filter-form input {
  border-radius: 5px;
  height: 38px !important;
}
.filter-block {
  float: left;
  width: 100%;
}
.filter-block h3 {
  background: #e6e6e6;
  float: left;
  width: 100%;
  padding: 10px 15px;
  font-size: 20px;
}
.filter-block ul {
  list-style: none;
  float: left;
  width: 100%;
  margin: 0px;
  padding: 15px 20px;
}
.filter-block .check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: left;
  width: 100%;
  font-weight: 600;
}

.filter-block .check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filter-block .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.filter-block .check-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.filter-block .check-container input:checked ~ .checkmark {
  background-color: #2196f3;
}

.filter-block .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.filter-block .check-container input:checked ~ .checkmark:after {
  display: block;
}

.filter-block .check-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.activity a.profile-btn {
  width: 100%;
  float: left;
  margin-right: 0px;
}
button.language.pull-right {
  background: #1d659c;
  border: none;
  color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
  text-transform: uppercase;
  font-weight: 600;
}
button.language.pull-right:hover {
  background: #ff8763;
}
button.language img {
  height: 20px;
  margin-right: 10px;
}

.site-menu .form-control-borderless {
  border: none;
}

.site-menu .form-control-borderless:hover,
.form-control-borderless:active,
.form-control-borderless:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

ul.breadcrumb-wrap {
  padding: 5px 0px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  list-style: none;
}

ul.breadcrumb-wrap li {
  float: left;
  margin-right: 0px;
}
ul.breadcrumb-wrap li a {
  font-size: 16px;
  font-weight: 400;
  padding-right: 0px;
}
ul.breadcrumb-wrap li:last-child a {
  color: #ff8763;
}
.cat-box {
  background-color: #f7f7f6;
  border-radius: 10px;
  padding: 46px 27px 38px 27px;
}
.cat-box i {
  text-align: center;
  font-size: 45px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.cat-box h3 {
  font-size: 18px;
  text-align: center;
  color: #222;
  margin: 20px 0px;
  font-weight: 700;
}
.cat-box:hover {
  background-color: #fff !important;
  -webkit-box-shadow: 0 30px 40px 0 rgb(131 132 135 / 15%);
  -moz-box-shadow: 0 30px 40px 0 rgba(131, 132, 135, 0.15);
  box-shadow: 0 30px 40px 0 rgb(131 132 135 / 15%);
}
.cat-box:hover i {
  color: #ff8763;
}
.cat-box:hover a {
  color: #ff8763;
}

.things-block {
  position: relative;
  margin-bottom: 30px;
}
.things-block::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.things-block img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}
.things-content {
  position: absolute;
  left: 20px;
  bottom: 10px;
}
.things-content h4 {
  font-size: 30px;
}
.things-content h4 a {
  color: #ffffff;
}
.things-content p {
  color: #fff;
}
.local-head h3 {
}

.local-content h2.entry-title {
  font-size: 26px;
}
.business-banner {
  float: left;
  width: 100%;
}
.business-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: 1px solid #e6ecf5;
}

.business-content {
  float: left;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e6ecf5;
  margin-bottom: 30px;
  padding: 10px;
}
.business-content img {
  float: left;
  width: 100%;
  height: 150px;
  margin-right: 15px;
  object-fit: cover;
}
.business-content h1 {
  padding: 0px;
  font-size: 20px;
  font-size: 24px;
  font-weight: 600;
}
.business-content ul {
  float: left;
  list-style: none;
  padding: 0px;
}
.business-content ul li {
  float: left;
  margin-right: 20px;
}
.business-content ul li i {
  margin-right: 10px;
}
.business-btns {
  float: left;
  width: 100%;
}
.business-btns button {
  float: left;
  background: #007bff;
  border: none;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  margin-right: 20px;
}
.business-btns button:hover {
  background: #ff8763;
}
ul.social-btns li {
  float: left;
  padding: 2px 12px;
  margin-right: 10px;
  margin-bottom: 10px;
}
ul.social-btns li.fb-icon {
  background: #3b5998;
}
ul.social-btns li.twitter-icon {
  background: #00acee;
}
ul.social-btns li.youtube-icon {
  background: #ff0000;
}
ul.social-btns li.insta-icon {
  background: #fb3958;
}
ul.social-btns li i {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  padding-left: 0px;
  margin-right: 0px;
}
.business-left {
  float: left;
  width: 100%;
  border: solid thin #e6ecf5;
  padding: 20px;
}
.business-left p {
  font-size: 16px;
  text-align: justify;
}
.category-wrap .profile-block img {
  height: 165px;
  object-fit: cover;
}
.category-wrap .profile-content {
  padding-bottom: 5px;
}

.single-bread.page-header {
  background: none;
  padding-bottom: 10px;
}
.single-bread ul.breadcrumb-wrap {
  margin: 0px;
  padding: 0px;
}
.single-bread ul.breadcrumb-wrap li:last-child {
  font-weight: 800;
  font-size: 16px;
  color: #ff8763;
}

.post-meta {
  float: left;
  width: 100%;
}
.post-meta ul {
  list-style: none;
  padding: 0px;
  margin: 10px 0px;
  float: left;
  width: 100%;
}
.post-meta ul li {
  margin-right: 20px;
}
.post-meta ul li img {
  border-radius: 50%;
  border: solid 2px #135487;
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 20px;
}
.post-meta ul li span {
  font-size: 16px;
  font-weight: 800;
}

/* AUTHOR BOX */
.author-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.author-box figure {
  width: 140px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.author-box figure img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.author-box .content {
  width: 100%;
  display: inline-block;
  margin-left: 10px;
  text-align: center;
}
.author-box .content h6 {
  width: 100%;
  display: block;
  font-weight: 600;
  font-size: 20px;
}
.author-box .content h5 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}
.author-box .content small {
  width: 100%;
  display: block;
  opacity: 0.6;
  margin-bottom: 10px;
}
.author-box .content .social {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  padding: 0;
}
.author-box .content .social li {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.author-box .content .social li a {
  display: inline-block;
  font-size: 12px;
  opacity: 0.6;
}
.author-box .content .social li a:hover {
  color: #0c0c0c;
  opacity: 1;
}

.author-box .content p {
  width: calc(100% - 335px);
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.author-posts {
  float: left;
  width: 100%;
  margin: 30px 0px;
}
.author-posts .related-img img {
  height: 200px;
}

.content-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  height: 390px;
  padding: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 15px 15px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 15px 15px 0 rgb(0 0 0 / 10%);
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 50px;
}
.content-img:before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#43659e), to(#3199ccab));
  background-image: -o-linear-gradient(#43659e 0%, #3199ccab 100%);
  background-image: linear-gradient(#43659e 0%, #3199ccab 100%);
  opacity: 0.71;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  content: "";
}
.content-img figure {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
}
.content-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-img .content {
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 5;
  width: 100%;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
  top: 40px;
}
.content-img .content h3 {
  font-size: 27px;
  font-weight: 800;
}

.content-img .content h3 a {
  color: #fff;
}
.content-img .content p {
  color: #fff;
}
.content-img .btn--outline,
a.btn--outline {
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  padding: 15px 40px;
  color: #ffffff;
  border: solid 2px #ffffff;
}
.content-img a.btn.button {
  background: #23689b;
  color: #fff;
  border-radius: 50px;
}

.want-list {
  float: left;
  width: 100%;
  text-align: center;
}
.want-list h3 {
  font-weight: 600;
}
.want-list p {
  font-size: 18px;
  padding: 10px;
}
a.enlist-btn {
  background: #135487;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 17px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
a.enlist-btn:hover {
  background: #ff8763;
  color: #fff !important;
}
