@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("simpleLightbox.min.css");
@import url("owl.carousel.min.css");
@import url("animate.min.css");

* {
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Poppins", sans-serif;

  background-color: #ffffff;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
  outline: 0;
  font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

img {
  max-width: 100%;
}

a {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
a:hover,
input:hover button:hover {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.form-group input:focus,
.form-group input:active {
  outline: 0px !important;
  box-shadow: none !important;
}

i,
span,
a {
  display: inline-block;
}

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6 a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #082554;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #082554;
  margin: 0px;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #eeeeee;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

p {
  color: #747794;
  font-size: 14px;
}

a,
a:hover,
a:focus {
  /* -webkit-transition: 0.3s; */
  -o-transition-transition: 0.3s;
  /* transition-transition: 0.3s; */
  text-decoration: none;
  outline: 0 solid transparent;
  box-shadow: none;
  color: var(--orange);
  outline: none;
}

*:focus {
  outline: none;
}

.btn.btn-warning {
  background: var(--warning);
  color: #ffffff;
}

.btn.btn-primary {
  background: var(--blue);
  color: #ffffff;
}

.btn.btn-success {
  background: var(--green);
  color: #ffffff;
}

.btn.btn-danger {
  background: var(--danger);
  color: #ffffff;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #ffffff;
}

ul,
ol {
  margin: 0;
}

ul li {
  list-style: none;
  text-decoration: none;
}
ul li:hover,
ul li:focus {
  list-style: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ------------------------ Input ---------------- */
input:required,
textarea:required,
textarea:focus,
select:required,
select:focus,
select:hover,
select:active {
  box-shadow: none !important;
  outline: none;
}

input:invalid,
textarea:invalid {
  box-shadow: none !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.h-100 {
  height: 100% !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.loading {
  display: none;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #179e66;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #868e96;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #868e96;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --blue-dark: #082554;
  --font-family-sans-serif: "Poppins";
  --font-family-monospace: "Poppins";
}

body {
  font-family: "Poppins", sans-serif !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  position: relative;
  width: 100%;
  display: block;
  padding: 0 auto;
  overflow-x: hidden;
}

/* ============================================
   Wrapper
============================================== */
.sw-wrapper {
  position: relative;
  padding: 70px 0px 70px;
  margin: 0px 0px 0px;
}

.side,
.bg-overlay {
  position: relative;
}

.side.bg-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: -280px;
  width: 60%;
  height: 100%;
  background: #f3a712;
  transform: skew(26deg);
  z-index: 1;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #082554;
  content: "";
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.sw-wrapper .text p {
  color: #777777;
  font-size: 17px;
  line-height: 1.6em;
}

.section-tittle,
.section-tittle-2 {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.section-tittle h2,
.section-tittle-2 h2 {
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 500;
  padding: 0px;
}
.section-tittle h2.white {
  color: var(--white);
}

.section-tittle h2.dark {
  color: var(--dark);
}
.section-tittle p,
.section-tittle-2 p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #666666;
  font-weight: normal;
}

.section-tittle .btn,
.section-tittle-2 .btn {
  float: right;
  margin-top: 0px;
}

.section-tittle .btn:focus,
.section-tittle .btn:active,
.section-tittle-2 .btn:focus,
.section-tittle-2 .btn:active {
  box-shadow: none;
  outline: none;
  color: #ffffff !important;
}

/* ===========================================
    HEADER
============================================= */
header {
  box-shadow: 0 0 1rem rgb(0 0 0 / 15%) !important;
}

.navbar-top {
  padding: 5px 0px;
  background: #082554;
}

.social-icons .social-icons-item {
  display: inline-block;
  list-style: none;
  line-height: 10px;
  margin: 0 6px 5px 0;
}

.navbar-top a {
  color: #ffffff;
  font-size: 15px;
}

.navbar-top a i {
  margin-right: 5px;
  color: var(--yellow);
}
.social-icons {
  padding: 0;
  line-height: 0;
}

.social-icons-link {
  display: inline-block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  font-size: 16px;
  text-align: center;
  border-radius: 3px;
  border: 0;
  background: transparent;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-top span {
  font-size: 0.8125rem;
  color: #8f9397;
}

.dropdown-item-text {
  display: block;
  padding: 0.4rem 1.5rem;
  color: #8f9397 !important;
}

.dropdown-item-icon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 0.875rem;
  min-width: 1rem;
  max-width: 1rem;
  margin-right: 0.3rem;
}

nav.navigation {
  width: 100%;
  border: none;
  margin: 0 auto;
  padding: 0px 0px;
  background: #ffffff;
  position: relative;
  top: 0px;
  z-index: 3;
}

nav.navigation .navbar-brand {
  padding: 0.25rem 0.75rem;
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

nav.navigation .navbar-brand img {
  max-height: 50px;
}

.site-title,
.site-description,
.navbar h1 {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
  z-index: 999;
  animation: sticky 1.2s;
}

nav.navigation.sticky button.navbar-toggler .toggler-icon {
  background-color: #082554;
}

.navigation.sticky ul.navbar-nav a {
  padding: 30px 0px 30px;
}

.navigation.sticky ul.navbar-nav a:hover,
.navigation.sticky ul.navbar-nav a:focus {
  position: relative;
}

nav.navigation button.navbar-toggler {
  border-radius: 2px;
  margin-top: 8px;
}

nav.navigation button.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #082554;
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

nav.navigation button.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
nav.navigation button.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

nav.navigation button.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.navbar-expand-lg .navbar-nav {
  margin-right: 90px;
}

nav.navigation li {
  margin-right: 30px;
}

nav.navigation li:last-child {
  margin-right: 0px;
}

nav.navigation ul.navbar-nav a {
  position: relative;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #082554;
  font-weight: 500;
  padding: 32px 0px 32px;
  padding-left: 0px !important;
  padding-right: 0px !important;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav.navigation ul.navbar-nav a:hover,
nav.navigation ul.navbar-nav a:focus,
nav.navigation ul.navbar-nav a:active {
  color: var(--green);
}

nav.navigation ul.navbar-nav a:hover {
  border-color: #ffffff;
}

nav.navigation .dropdown-menu {
  border-top: solid 2px var(--green);
  background: #ffffff;
  white-space: nowrap;
  padding: 0px;
  min-width: 230px;
  max-width: 260px;
  margin-top: 0px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0px;
}

nav.navigation .dropdown-menu li {
  margin-right: 0px;
}

nav.navigation .dropdown-menu li a {
  padding: 7px 11px 7px 11px !important;
  margin: 0px;
  clear: both;
  /* color: ; */
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  display: table;
  line-height: 25px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

nav.navigation .dropdown-menu li a:before {
  display: none;
}

nav.navigation ul.dropdown-menu li a:hover {
  background: transparent;
  color: var(--green);
}

nav.navigation span.badge {
  background: #5cb85c;
  font-weight: normal;
  font-size: 11px;
  margin: 0 4px;
}

nav.navigation span.badge.new {
  background: rgba(255, 0, 0, 0.8);
  color: #fff;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  pointer-events: none;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: 1.2em;
}

.dropdown-submenu > .dropdown-menu {
  top: 0px;
  left: 100%;
  margin-top: -10px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  border-radius: 0 0 7px 7px;
}

.dropdown-submenu > .dropdown-menu:after {
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-xl {
  position: relative;
}

/* ---------------------------------------------
    // TOP SEARCH
-----------------------------------------------*/
.right-bar {
  display: inline-block;
  position: absolute;
  right: 0;
  height: 99%;
  padding: 26px 0px 0px 0px;
  z-index: 3333;
  top: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.right-bar:after {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 80px;
  height: 101%;
  transform: skew(-26deg);
  background: #f3a712;
  z-index: -1;
}

.navigation.sticky .right-bar {
  padding: 24px 0px 0px 0px;
}

.right-bar .right-nav {
  z-index: 333;
  position: relative;
}

.right-bar .right-nav ul li {
  display: inline-block;
}

.right-bar .right-nav li a {
  color: #ffffff;
  border: solid 1px #ffffff;
  padding: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-right: 5px;
}

.top-search {
  background-color: #fff;
  top: 83px;
  right: 0px;
  height: 0px;
  position: absolute;
  opacity: 0;
  width: 300px;
  height: 90px;
  padding: 25px 20px;
  z-index: 1;
  overflow: hidden;
  display: none;
  box-shadow: 2px 6px 28px -22px #dadada;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.top-search.active {
  opacity: 1;
  display: block;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navigation.sticky .top-search {
  top: 73px;
}

.top-search .input-group {
  display: block;
}

.top-search .search-input {
  display: block;
  width: 100%;
  height: 40px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: #212529;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  padding-left: 0px;
  border-radius: 0px;
}

.top-search form {
  width: 100%;
}
.top-search input[type="text"] {
  width: 100%;
  padding-left: 10px;
}
.top-search input[type="text"]:focus,
.top-search input[type="text"]:hover {
  border: solid 1px #cccccc;
}

.top-search .btn-search {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 50px;
  background: #082554;
  border: none;
  border-radius: 0px;
  outline: 0;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.top-search .btn-search:hover,
.top-search .btn-search:focus {
  color: #ffffff;
  outline: 0;
}

@media (max-width: 1026px) {
  nav.navigation li {
    margin-right: 20px;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    top: 0px;
    padding: 15px 15px;
    width: 75%;
    height: 100%;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }

  .navbar-collapse.collapsing {
    left: -75%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }

  .navbar-collapse.show {
    left: 0;
    transition: left 300ms ease-in-out;
  }

  .navbar-toggler.collapsed ~ .navbar-collapse {
    transition: left 500ms ease-in-out;
  }

  nav.navigation .navbar-brand img {
    max-height: 45px;
  }

  .navbar-expand-lg .navbar-nav {
    margin-right: 0px;
  }
  nav.navigation li {
    margin-right: 0px;
    border-bottom: solid 1px #eeeeee;
    text-align: left;
  }

  nav.navigation ul.navbar-nav a {
    color: #111111;
    padding: 10px 5px 10px;
    font-weight: 400;
  }

  .navigation.sticky ul.navbar-nav a {
    color: #111111;
    padding: 10px 5px 10px;
    font-weight: 400;
  }

  nav.navigation ul.navbar-nav a:hover,
  nav.navigation ul.navbar-nav a:visited,
  nav.navigation ul.navbar-nav a:focus,
  nav.navigation ul.navbar-nav a:active {
    color: #333;
    background: transparent;
  }

  .dropdown-toggle::after {
    float: right;
    margin-top: 9px;
    margin-right: 5px;
  }

  nav.navigation ul.navbar-nav a:before {
    display: none;
  }

  .dropdown-submenu a::after {
    transform: rotate(-90deg);
    float: right;
    margin-top: 0px;
  }

  nav.navigation .dropdown-menu,
  .dropdown-submenu > .dropdown-men {
    margin: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
  }

  nav.navigation .dropdown-menu li {
    border: none;
  }

  /* ------------ Header Search ------------------*/
  .right-bar {
    display: inline-block;
    position: absolute;
    right: 90px;
    height: 99%;
    padding: 12px 0px 0px 0px;
    z-index: 3333;
    top: 0;
  }

  .navigation.sticky .right-bar {
    padding: 12px 0px 0px 0px;
  }

  .right-bar ul.right-nav li {
    border-bottom: 0px !important;
  }
}

/* -------------------------------------------------
    breadcrumbs
---------------------------------------------------*/

.sw-breadcrumbs {
  background: #082554 no-repeat top;
  background-size: cover;
  padding: 5px 0 10px;
  position: relative;
  width: 100%;
}

.sw-breadcrumbs h2 {
  font-weight: 600;
  margin: 10px 0px;
  font-size: 30px;
  color: #ffffff;
}

/* Breadcrumbs
====================================*/

.breadcrumbs {
  position: relative;
  float: left;
}

.breadcrumbs ul {
  font-size: 14px;
  padding: 18px 0 0;
  font-weight: 500;
}

.breadcrumbs ul li {
  display: inline-block;
  color: #ffffff;
  margin: 0 2px 0 2px;
}

.breadcrumbs ul li:after {
  content: "\f105";
  margin: 0 0px 0 7px;
  font-family: FontAwesome;
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs ul li:last-child a,
.breadcrumbs ul li a {
  color: var(--white);
}

.breadcrumbs ul li:first-child {
  padding-right: 0;
  margin-left: 0;
}

.breadcrumbs ul li:first-child,
.breadcrumbs ul li:last-child {
  color: var(--white);
}

.breadcrumbs ul li:last-child {
  padding: 0;
  background: none;
}

.breadcrumbs ul li:last-child a:hover,
.breadcrumbs ul li a:hover {
  color: var(--warning);
}

/*-----------------------
// Slider
-------------------------*/
.carousel-fade {
  position: relative;
  background: #f5f2f7;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

.carousel-indicators {
  bottom: 10px;
  z-index: 2;
}

.carousel-indicators li {
  background-color: #111111;
}

.content-header-slides {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  z-index: 1;
}

.carousel-inner .carousel-item > img {
  -webkit-animation: zoom 50s;
  animation: zoom 50s;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5%;
  color: #fff;
  opacity: 0.5;
  text-align: center;
  font-size: 30px;
  transition: all 0.5s ease 0s;
}

.carousel-control-next i,
.carousel-control-prev i {
  background: var(--warning);
  height: 50px;
  width: 50px;
  line-height: 50px;
}

.carousel-fade:hover .carousel-control-next {
  transition: all 0.5s ease 0s;
  right: 20px;
  opacity: 1;
}

.carousel-fade:hover .carousel-control-prev {
  transition: all 0.5s ease 0s;
  left: 20px;
  opacity: 1;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.2, 1.2);
  }
}

/* --------------------------------------------
  // Owl.Carousel
----------------------------------------------- */
.owl-carousel-nav .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  text-align: center;
  line-height: 34px;
  z-index: 10;
  top: 47%;
  margin-top: -15px;
  left: -10px;
  font-size: 35px;
  font-weight: 600;
  color: var(--orange);
  transition: all 0.25s ease 0s;
  opacity: 0;
}

.owl-carousel-nav .owl-next {
  left: auto;
  right: -10px;
}

.owl-carousel-nav:hover .owl-prev {
  opacity: 1;
  left: -10px;
}
.owl-carousel-nav:hover .owl-next {
  opacity: 1;
  right: -10px;
}

/* -------------------------------------------
  4. Feature
----------------------------------------------*/
.single-feature {
  text-align: center;
  margin-top: 30px;
  padding: 30px 15px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  border-top: 3px solid transparent;
  transition: all 0.4s ease;
}
.single-feature:hover,
.single-feature.active {
  border-top-color: #082554;
}

.single-feature:hover {
  transform: scale(1.03);
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.single-feature .icon-head i {
  color: #f3a712;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 100%;
  font-size: 34px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icons-tkro {
  background: url(../img/jurusan/TKRO.ico) no-repeat center;
  width: 90px;
  height: 90px;
  margin: auto;
}
.icons-tkj {
  background: url(../img/jurusan/TKJ.ico) no-repeat center;
  width: 90px;
  height: 90px;
  margin: auto;
}
.icons-akl {
  background: url(../img/jurusan/AKL.ico) no-repeat center;
  width: 90px;
  height: 90px;
  margin: auto;
}
.icons-rpl {
  background: url(../img/jurusan/RPL.ico) no-repeat center;
  width: 90px;
  height: 90px;
  margin: auto;
}
.icons-tp {
  background: url(../img/jurusan/TP.ico) no-repeat center;
  width: 90px;
  height: 90px;
  margin: auto;
}

.single-feature.active .icon-head i,
.single-feature:hover .icon-head i {
  background: #179e66;
  color: #fff;
  border-color: transparent;
}
.single-feature .icon-head i::after {
  position: absolute;
  width: 20px;
  height: 2px;
  z-index: 3;
  opacity: 1;
  line-height: 20px;
  background: #f3a712;
  border-radius: 25px;
  left: 50%;
  bottom: 19px;
  content: "";
  margin-left: -10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-feature.active .icon-head i:after,
.single-feature:hover .icon-head i:after {
  background: #fff;
}
.single-feature h4 {
  margin: 15px 0;
  line-height: inherit;
}
.single-feature h4 a {
  font-size: 18px;
  color: #082554;
  display: inline-block;
}
.single-feature p {
  font-size: 14px;
}
.bizwheel-btn.theme-2 {
  background: #f3a712;
  color: #fff;
  padding: 15px 32px;
}

.single-feature .button {
  margin-top: 15px;
}

.single-feature .button .bizwheel-btn {
  background: transparent;
  color: #666;
  padding: 0;
  height: auto;
  box-shadow: none;
  line-height: initial;
  border: none;
}
.single-feature .button .bizwheel-btn i {
  margin-right: 10px;
  background: #082554;
  color: #fff;
  width: 25px;
  border-radius: 100%;
  height: 25px;
  line-height: 25px;
  text-align: center;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-feature.active .bizwheel-btn i,
.single-feature:hover .bizwheel-btn i {
  color: #fff;
  background: #179e66;
}

/* -------------------------------------------
  5. Abouts Us
----------------------------------------------*/
/* Selamat Datang */
.abouts-wrapper {
  background: #082554;
  overflow: hidden;
}

.abouts-wrapper .img-feature {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.abouts-wrapper .img-feature .headmaster {
  display: block;
  text-align: left;
  padding: 10px 30px;
  opacity: 1;
  position: absolute;
  z-index: 333;
  font-size: 16px;
  background: #f4f9fc;
  color: #082554;
  left: -14px;
  transform: inherit;
  font-weight: 500;
  top: 50%;
  margin-top: -22px;
}

.abouts-wrapper .img-feature .headmaster:before {
  content: "";
  position: absolute;
  left: 0px;
  top: -25px;
  border-left: 14px solid transparent;
  border-top: 12px solid transparent;
  border-bottom: 13px solid #f4f9fc;
}

.abouts-wrapper .feature-des {
  z-index: 2;
}

.abouts-wrapper .feature-des p {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.abouts-wrapper .feature-des .btn {
  margin-top: 10px;
  display: none;
}
/* -------------------------------------------
    6. Blog Grid
----------------------------------------------*/
.single-news {
  background: #fff;
  position: relative;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
  z-index: 2;
  box-shadow: 2px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}

.single-news .news-head {
  overflow: hidden;
  position: relative;
}
.single-news .news-head:before {
  opacity: 0;
  visibility: hidden;
}
.single-news:hover .news-head:before {
  opacity: 0.5;
  visibility: visible;
}
.single-news .news-head:after {
  content: "";
  position: absolute;
  bottom: 0;
  border-top: 10px solid transparent;
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  left: 50%;
  margin-left: -15px;
  z-index: 333;
  z-index: 4444;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-news .news-head.overlay {
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-news .news-head.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #082554;
  content: "";
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.single-news:hover .news-head.overlay::before {
  opacity: 0.8;
}

.single-news:hover .news-head:after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.single-news .news-head img {
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-news:hover .news-head img {
  -webkit-transform: scale(1.05, 1.05) rotate(2deg);
  transform: scale(1.08, 1.08) rotate(2deg);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  filter: grayscale(1);
}

.single-news .news-body {
  padding: 25px;
  background: #fff;
  position: relative;
}
.single-news .news-meta {
  position: absolute;
  width: 100%;
  background: transparent;
  opacity: 0;
  bottom: 20px;
  visibility: hidden;
  text-align: center;
  z-index: 333;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  transform: translateY(-15px);
}
.single-news:hover .news-meta {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.single-news .news-meta li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  border-right: 1px solid #d6d6d6;
  margin-right: 10px;
  padding-right: 10px;
}

.single-news .news-meta li a {
  color: var(--white);
}
.single-news .news-meta li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.single-news .news-meta li i {
  margin-right: 5px;
  color: #f3a712;
}
.single-news .news-meta .author span {
  display: inline-block;
  color: #179e66;
}
.single-news .news-title {
  line-height: 25px;
}
.single-news .news-title a {
  overflow: hidden;
  font-size: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.single-news .news-title:hover a {
  color: #179e66;
}
.single-news .news-text {
  margin-top: 18px;
  font-size: 14px;
}
.single-news .more {
  color: #fff;
  margin-top: 15px;
  display: inline-block;
  font-size: 14px;
  border-radius: 30px;
  background: #179e66;
  padding: 10px 20px;
  border-radius: 0px;
  border: 1px solid transparent;
}
.single-news .more:hover {
  background: #082554;
  color: #fff;
}
.single-news .more i {
  display: inline-block;
  margin-left: 5px;
}

/* -------------------------------------------------
  7. Count
--------------------------------------------------- */
.count-wrapper {
  position: relative;
  color: #ffffff;
  background: #082554;
}

.single-counter {
  display: inline-block;
  position: relative;
  text-align: center;
}

.single-counter .icon {
  position: absolute;
  left: 0;
}
.single-counter .icon:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fff;
  z-index: 3;
  border-radius: 100%;
  opacity: 0.3;
  top: 4px;
  left: -7px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-counter:hover .icon:before {
  background: #f3a712;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.single-counter .icon i {
  color: #179e66;
  width: 70px;
  height: 70px;
  background: #fff;
  text-align: center;
  line-height: 70px;
  border-radius: 100%;
  z-index: 33;
  font-size: 25px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-counter:hover .icon i {
  background: #f3a712;
  color: #fff;
}
.single-counter h3 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.single-counter h3 span {
  display: inline-block;
  color: #f3a712;
  margin-left: 5px;
}
.single-counter p {
  color: #eee;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 2px;
}

.single-counter .conter-content {
  margin-left: 100px;
  border-left: 1px solid #ffffff36;
  padding-left: 20px;
}

.count .count-value h2 {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0px 0px 0px;
}

.count .count-value p {
  font-size: 16px;
  font-weight: 600;
}

/* -------------------------------------------------
  8. Pengumuman & Agenda
--------------------------------------------------- */
.single-post-wrapper {
  position: relative;
}

.single-post-wrapper ul {
  padding: 0px;
  margin: 0px;
}

.single-post-wrapper li {
  list-style: none;
  border-bottom: solid 1px #eeeeee;
  position: relative;
  display: block;
  padding: 0px 0px 20px;
  margin-bottom: 20px;
}

.single-post-wrapper li:last-child {
  border-bottom: 0px;
}

.single-post-list {
  position: relative;
  display: inline-block;
}

.single-post-list .feature-image {
  position: relative;
  float: left;
  margin-right: 20px;
  width: 150px;
  height: auto;
}
.single-post-list .feature-image img {
  width: 150px;
  height: auto;
}

.single-post-list .feature-image-icon {
  position: relative;
  float: left;
  margin-right: 20px;
  width: 150px;
  height: 140px;
  background: var(--green);
  border-radius: 5px;
  text-align: center;
}

.single-post-list .feature-image-icon i {
  font-size: 60px;
  line-height: 130px;
  color: var(--white);
}

.single-post-list:hover .feature-image-icon {
  background: var(--warning);
}

.single-post-list .event_date {
  position: relative;
  float: left;
  width: 150px;
  height: 140px;
  background-color: var(--green);
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.02);
  -moz-box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.02);
}

.single-post-list .event_date h4 {
  font-size: 50px;
  margin: 0;
  margin-top: 10px;
  padding: 5px;
  font-weight: 600;
  color: #ffffff;
}

.single-post-list .event_date h4 span {
  display: block;
  font-size: 14px;
  font-weight: 300;
}

.single-post-list .event_time {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  display: block;
  padding: 5px;
  background: #082554;
  color: var(--warning);
  text-align: center;
}

.single-post-list .single-post-list-content {
  margin-left: 170px;
}

.single-post-list .single-post-list-content h2,
.single-post-list .single-post-list-content h2 a {
  font-size: 22px;
}

.single-post-list .single-post-list-content h3,
.single-post-list .single-post-list-content h3 a {
  font-size: 17px;
}

.single-post-list .single-post-list-content h2:hover,
.single-post-list .single-post-list-content h2 a:hover,
.single-post-list .single-post-list-content h3:hover,
.single-post-list .single-post-list-content h3 a:hover {
  color: var(--green);
}

.single-post-list .single-post-list-content ul.item-meta {
  position: relative;
  padding: 0px;
  margin: 10px 0px;
}

.single-post-list .single-post-list-content ul.item-meta li {
  list-style: none;
  margin: 0px;
  margin-right: 10px;
  display: inline-block;
  border: 0px;
  padding: 0px;
}

.single-post-list .single-post-list-content ul.item-meta li a i,
.single-post-list .single-post-list-content ul.item-meta li i {
  margin-right: 5px;
  color: var(--warning);
}
.single-post-list .single-post-list-content ul.item-meta li a {
  color: #666666;
  font-size: 14px;
}

.single-post-list .single-post-list-content p {
  padding: 0px;
}

/* ----------------------------------------
    BLOG BLOG
-------------------------------------------*/

.blog-latest .single-news {
  margin-bottom: 50px;
}

/*------------------------------------------
  // PAGINATION
--------------------------------------------*/

.pagination-custom .pagination {
  margin-top: 50px;
  text-align: center;
}

.pagination-custom .pagination > li > a,
.pagination > li > span {
  border-radius: 0px;
  margin: 0 2px;
  color: #ffffff;
  padding: 5px;
  height: 40px;
  width: 40px;
  line-height: 30px;
  font-weight: 500;
  font-size: 15px;
  background-color: #082554;
  border: none;
}

.pagination-custom .pagination > li > a:hover {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.pagination-custom .pagination > .active > a,
.pagination > .active > a:focus,
.pagination-custom .pagination > .active > a:hover,
.pagination > .active > span,
.pagination-custom .pagination > .active > span:focus,
.pagination > .active > span:hover {
  color: #ffffff;
  cursor: default;
  background: var(--green);
  border-color: var(--green);
}

/*-------------------------------------------------
  // SEDIEBAR
--------------------------------------------------*/

.sw-sidebar {
  padding-right: 0px;
  padding-left: 20px;
}

.sidebar {
  min-height: 100px;
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.sidebar .sw-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.sidebar .sw-title::before {
  left: 0;
  width: 50px;
  height: 2px;
  content: "";
  bottom: -1px;
  position: absolute;
  background-color: var(--orange);
}

.sidebar > .sw-title h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  color: var(--black);
}

.sidebar > .sidebar-body {
  position: relative;
  display: table;
  width: 100%;
}

.sidebar > .sidebar-body > ul {
  margin: auto;
  padding: 0px;
}

.sidebar > .sidebar-body > ul li {
  display: block;
  overflow: hidden;
  padding: 15px 0px;
}

.sidebar > .sidebar-body > ul li:first-child {
  padding-top: 0px;
}

.sidebar > .sidebar-body > ul li:last-child {
  border-bottom: none;
}

.sidebar > .sidebar-body > ul li .post-thumb {
  display: block;
  float: left;
  position: relative;
  width: 80px;
  overflow: hidden;
}

.sidebar > .sidebar-body > ul li .post-thumb img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  -moz-border-radius: 50%;
}

.sidebar > .sidebar-body > ul li .post-entry-info {
  display: block;
  float: left;
  margin-right: 10px;
  position: relative;
  width: 80px;
  height: 75px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background-color: var(--green);
  line-height: 77px;
  font-size: 35px;
}

.sidebar > .sidebar-body > ul li .post-entry-info i {
  color: #fff;
}

.sidebar > .sidebar-body > ul li .post-entry-date {
  display: block;
  float: left;
  margin-right: 10px;
  position: relative;
  width: 80px;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
  border-radius: 5px;
}

.sidebar > .sidebar-body > ul li .post-entry-date span.entry-day {
  display: block;
  font-size: 38px;
  font-weight: bold;
  line-height: 26px;
  overflow: hidden;
  padding: 12px 0 12px;
  background: #eeeeee;
  font-weight: bold;
  color: #111111;
  overflow: hidden;
  text-shadow: #cccccc 1px 1px, #cccccc 2px 2px, #cccccc 3px 3px, #cccccc 4px 4px, #cccccc 5px 5px, #cccccc 6px 6px, #cccccc 7px 7px, #cccccc 8px 8px, #cccccc 9px 9px, #cccccc 10px 10px, #cccccc 11px 11px, #cccccc 12px 12px,
    #cccccc 13px 13px, #cccccc 14px 14px, #cccccc 15px 15px, #cccccc 16px 16px, #cccccc 17px 17px, #cccccc 18px 18px, #cccccc 19px 19px, #cccccc 20px 20px, #cccccc 21px 21px, #cccccc 22px 22px, #cccccc 23px 23px, #cccccc 24px 24px,
    #cccccc 25px 25px, #cccccc 26px 26px, #cccccc 27px 27px, #cccccc 28px 28px, #cccccc 29px 29px, #cccccc 30px 30px, #cccccc 31px 31px, #cccccc 32px 32px, #cccccc 33px 33px, #cccccc 34px 34px, #cccccc 35px 35px, #cccccc 36px 36px,
    #cccccc 37px 37px, #cccccc 38px 38px, #cccccc 39px 39px, #cccccc 40px 40px, #cccccc 41px 41px, #cccccc 42px 42px, #cccccc 43px 43px, #cccccc 44px 44px, #cccccc 45px 45px, #cccccc 46px 46px, #cccccc 47px 47px, #cccccc 48px 48px,
    #cccccc 49px 49px, #cccccc 50px 50px, #cccccc 51px 51px, #cccccc 52px 52px, #cccccc 53px 53px, #cccccc 54px 54px, #cccccc 55px 55px, #cccccc 56px 56px, #cccccc 57px 57px, #cccccc 58px 58px;
}

.sidebar > .sidebar-body > ul li .post-entry-date span.entry-month {
  background: #082554 none repeat scroll 0 0;
  color: #fdc800;
  font-size: 13px;
  font-weight: 500;
  line-height: 12px;
  padding: 8px 5px;
  text-transform: uppercase;
  width: 100%;
  position: relative;
  display: block;
}

.sidebar > .sidebar-body > ul li .post-entry-download {
  display: block;
  float: left;
  margin-right: 10px;
  position: relative;
  width: 70px;
  height: 60px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background-color: var(--green);
  line-height: 60px;
  font-size: 25px;
}

.sidebar > .sidebar-body > ul li .post-entry-download i {
  color: #fff;
}

.sidebar > .sidebar-body > ul li .post-info {
  margin: 0px 0px 5px 85px;
}

.sidebar > .sidebar-body > ul li .post-info a {
  display: block;
  font-size: 15px;
  color: #111111;
  font-weight: 600;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar > .sidebar-body > ul li .post-info a:hover {
  color: var(--orange);
}

.sidebar > .sidebar-body > ul li .post-info span.author {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  margin-right: 4px;
}

.sidebar > .sidebar-body > ul li .post-info span {
  font-size: 13px;
  color: #444444;
  font-weight: 500;
}

.sidebar > .sidebar-body > ul li .post-info span i {
  color: var(--orange);
  margin-right: 3px;
}

/* -------------------------------------
   // RECENT POST
-------------------------------------*/
.sidebar > .sidebar-body > .recent_post > ul {
  margin: auto;
  padding: 0px;
  counter-reset: section;
}

.sidebar > .sidebar-body > .recent_post ul li {
  display: block;
  overflow: hidden;
  border-bottom: solid 1px #dedede;
  padding: 10px 0px;
}
.sidebar > .sidebar-body > .recent_post ul li:first-child {
  padding-top: 0px;
}

.sidebar > .sidebar-body > .recent_post ul li:before {
  counter-increment: section;
  content: counters(section, "");
  float: left;
  z-index: 1;
  position: relative;
  font-size: 50px;
  font-weight: bold;
  color: #cccccc;
  margin: 13px 15px 0px -6px;
  line-height: 30px;
  width: 35px;
  height: 50px;
  text-align: center;
  transition: all 0.4s ease 0s;
}

.sidebar > .sidebar-body > .recent_post ul li:hover:before {
  transition: all 0.5s;
  transition: 0.5s;
  color: var(--orange);
}

.sidebar > .sidebar-body > .recent_post ul li:last-child {
  border-bottom: none;
}

.sidebar > .sidebar-body > .recent_post ul li .post-info {
  margin-top: 5px;
}

.sidebar > .sidebar-body > .recent_post ul li .post-info a {
  display: block;
  font-size: 15px;
  color: #111111;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar > .sidebar-body > .recent_post ul li .post-info a:hover {
  color: var(--orange);
}

.sidebar > .sidebar-body > .recent_post ul li .post-info span {
  font-size: 13px;
  color: #444444;
  font-weight: 500;
}
.sidebar > .sidebar-body > .recent_post ul li .post-info span i {
  margin-right: 3px;
  color: var(--orange);
}
/* -------------------------------------
   // SEARCH
----------------------------------------*/
.sidebar-search {
  background: #fff;
  margin-bottom: 20px;
}

.sidebar-search .form-control {
  border-radius: none !important;
}

.sidebar-search input {
  border-radius: none !important;
  height: 45px;
  border-right: 0px;
  border-radius: 0px;
  background: #082554;
  border: 0px;
  outline: 0;
}

.sidebar-search input[type="text"]:focus,
.sidebar-search input[type="text"]:active {
  outline: 0;
  background: #082554;
}

.sidebar-search input[type="text"]::-webkit-input-placeholder {
  color: #ffffff;
}

.sidebar-search input[type="text"]:-ms-input-placeholder {
  color: #ffffff;
}

.sidebar-search input[type="text"]::placeholder {
  color: #ffffff;
}

.sidebar-search .btn-search {
  background: #082554;
  color: #ffffff;
  height: 45px;
  width: 45px;
  box-shadow: none;
  border-radius: 0px;
  padding: 0px;
}

.sidebar-search .btn-search:focus {
  outline: 0;
}

/* -------------------------------------
  // CATEGORY
---------------------------------------- */
.sidebar > .category {
  padding: 0px;
  list-style: none;
  margin: 0 auto;
}

.sidebar > .sidebar-body > .category > ul {
  padding: 0px;
  list-style: none;
  margin: 0 auto;
}

.sidebar > .sidebar-body > .category > ul > li {
  padding: 10px 0;
  position: relative;
  list-style: none;
  display: table;
  width: 100%;
  margin: 0px;
  border-bottom: solid 1px #eeeeee;
}

.sidebar > .sidebar-body > .category > ul > li:after {
  content: "\f1db";
  font-family: FontAwesome;
  float: left;
  line-height: 26px;
  font-size: 12px;
  color: var(--orange);
}

.sidebar > .sidebar-body > .category > ul > li:last-child {
  border-bottom: 0px;
}

.sidebar > .sidebar-body > .category > ul > li span {
  float: right;
  position: relative;
  padding: 0px 7px;
  height: 20px;
  font-size: 15px;
}

.sidebar > .sidebar-body > .category > ul > li > a {
  color: #111;
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  text-decoration: none;
  padding-left: 10px;
}

.sidebar > .sidebar-body > .category > ul > li > a i {
  margin-right: 5px;
  color: #333;
}

.sidebar > .sidebar-body > .category > ul > li > a:hover {
  color: var(--orange);
}

/* ------------------------------------------------
   // TAGS
--------------------------------------------------- */

.sidebar > .sidebar-body > .tags {
  padding: 0px;
  list-style: none;
  margin: 0 auto;
}

.sidebar > .sidebar-body > .tags > ul {
  padding: 0px;
  list-style: none;
  margin: 0 auto;
}

.sidebar > .sidebar-body > .tags > ul > li {
  list-style: none;
  display: inline-block;
  margin: 2px 2px 5px;
}

.sidebar > .sidebar-body > .tags > ul > li > a {
  background: var(--light);
  padding: 8px 10px;
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  display: inline-block;
}

.sidebar > .sidebar-body > .tags > ul > li > a:hover {
  background: var(--green);
  color: #ffffff;
}

/*----------------------------------------
  // BLOG DETAILS
------------------------------------------*/

article .blog-details {
  position: relative;
  margin-bottom: 20px;
}

article .blog-details img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  position: relative;
}

article .blog-details img:hover {
  opacity: 0.8;
}

article .blog-details .entry-content {
  position: relative;
}

article .blog-details h1.title,
article .blog-details .entry-content h1.title {
  line-height: 35px;
  margin-bottom: 15px;
}

article .blog-details h1.title a,
article .blog-details .entry-content h1.title a {
  font-size: 35px;
  font-weight: 600 !important;
  margin-bottom: 5px;
  padding: 0px;
  text-decoration: none;
  color: #082554;
  line-height: 40px;
}

article .blog-details h1.title a:hover,
article .blog-details .entry-content h1.title:hover {
  color: var(--orange);
}

article .blog-details ul.meta,
article .blog-details .entry-content ul.meta {
  font-size: 13px;
  margin: 0px 0px 25px 0px;
  padding: 0px 0 15px 0;
  border-bottom: solid 1px #eeeeee;
}

article .blog-details .entry-content ul.meta li,
article .blog-details ul.meta li {
  margin-right: 10px;
  list-style: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

article .blog-details ul.meta li i,
article .blog-details .entry-content ul.meta li a i {
  margin-right: 5px;
  color: #666666;
}

article .blog-details ul.meta li img,
article .blog-details .entry-content ul.meta li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  margin: 0px;
  margin-right: 3px;
}

article .blog-details ul.meta li a {
  color: #666666;
}

article .blog-details ul.meta li a:hover,
article .blog-details .entry-content ul.meta li a:hover {
  color: var(--orange);
}

article .blog-details .entry-content {
  overflow: hidden;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif !important;
}

article .blog-details .entry-content p::-moz-selection,
article .blog-details .entry-content::-moz-selection {
  background: #fff6ea;
}
article .blog-details .entry-content p::selection,
article .blog-details .entry-content::selection {
  background: #fff6ea;
}

article .blog-details .entry-content .video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

article .blog-details .entry-content .video iframe,
article .blog-details .entry-content .video object,
article .blog-details .entry-content .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

article .blog-details .entry-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  position: relative;
  border: solid 4px var(--light);
}

article .blog-details .entry-content img:hover {
  opacity: 0.8;
}

article .blog-details .entry-content a {
  color: var(--orange);
  text-decoration: underline;
  position: relative;
  font-weight: 500;
}

article .blog-details .entry-content a:hover {
  color: var(--green);
}

article .blog-details .entry-content .btn {
  margin: 5px 0px 0px;
}

article .blog-details .entry-content a.btn {
  color: #ffffff;
  text-decoration: none;
  margin-right: 10px;
}

article .blog-details .entry-content a.btn.btn-default {
  background: #eeeeee;
  color: #333333;
}

article .blog-details .entry-content a.btn:before {
  display: none;
}

article .blog-details .entry-content p {
  color: #222222;
  font-size: 17px;
  line-height: 27px;
}

article .blog-details .entry-content ul {
  padding: 0px;
  margin: 15px 0px 15px 10px;
}

article .blog-details .entry-content ol {
  padding-left: 30px;
}

article .blog-details .entry-content ul li,
article .blog-details .entry-content ol li {
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}

article .blog-details .entry-content ul li a:before,
article .blog-details .entry-content ol li a:before {
  display: none;
}

article .blog-details .entry-content ul li:before {
  content: "\f05d";
  font-family: FontAwesome;
  line-height: 20px;
  display: inline-block;
  text-align: center;
  color: #222222;
  font-size: 15px;
  margin-right: 5px;
  border-radius: 50%;
  margin-right: 10px;
}

article .blog-details .entry-content .card-body ol {
  padding-left: 20px;
}

article .blog-details .entry-content .card-body li {
  margin-bottom: 10px;
}

article .blog-details .entry-content .card-body li:last-child {
  margin-bottom: 0px;
}

article .blog-details .entry-content .card-body a {
  color: #333333 !important;
  font-weight: 400;
  text-decoration: none;
}

article .blog-details .entry-content .card-body a:hover {
  text-decoration: underline;
}

article .blog-details .entry-content blockquote {
  overflow: hidden;
  background-color: var(--green);
  padding: 90px 40px 50px !important;
  position: relative;
  text-align: left;
  z-index: 1;
  margin: 20px 0px 20px 0px;
  border: 0px;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 300;
  font-size: 19px !important;
  color: #ffffff;
}

article .blog-details .entry-content blockquote::before {
  color: #eee;
  position: absolute;
  left: 40px;
  top: 30px;
  z-index: -1;
  content: "";
  width: 62px;
  height: 44px;
  background: url(../img/quote-2.png) center center/auto no-repeat local;
}

article .blog-details .entry-content blockquote p {
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 19px !important;
  color: #ffffff;
}

article .blog-details .entry-content table {
  position: relative;
  min-width: 60%;
  max-width: 100%;
  margin: 10px 0px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.03);
}

article .blog-details .entry-content table thead {
  background: #0591ff;
  color: #fdc800;
  font-size: 17px;
}

article .blog-details .entry-content table td,
article .blog-details .entry-content table th {
  border: 1px solid #eeeeee;
  padding: 8px 8px;
  font-size: 16px;
}

/* -----------------------------------------------
    // SHARE SOCIAL MEDIA
------------------------------------------------- */

.blog-details .tag-share {
  border: 1px solid #f1f1f1;
  padding: 25px 25px 35px;
  margin: 55px 0 0;
  color: #333;
  font-weight: 500;
  -webkit-box-shadow: 0px 9px 32.8px 7.2px rgb(0 0 0 / 3%);
  box-shadow: 0px 9px 32.8px 7.2px rgb(0 0 0 / 3%);
}

.blog-details .tag-share .tag {
  position: relative;
  display: flex;
}

.blog-details .tag-share .tag h5 {
  float: left;
  font-weight: 200;
  font-size: 14px;
}

.blog-details .tag-share .tag ul {
  list-style: none;
  position: relative;
  left: 10px;
}

.blog-details .tag-share ul li {
  float: left;
  margin-right: 10px;
}

.blog-details .tag-share ul li:last-child {
  margin-right: 0px;
}

.blog-details .tag-share .tag a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  color: #627381;
  display: block;
}

.blog-details .tag-share .tag a:hover {
  color: #ed1c24;
}

.blog-details .tag-share .share {
  margin-top: 20px;
  position: relative;
  display: flex;
}

.blog-details .tag-share .share h5 {
  float: left;
  font-weight: 200;
  font-size: 14px;
  margin-top: 10px;
}

.blog-details .tag-share .share ul {
  list-style: none;
  position: relative;
  left: 10px;
}

.blog-details .tag-share .share li {
  float: left;
  margin-right: 10px;
}

.blog-details .tag-share .share ul > li:first-child a {
  color: #3c5ba4;
}

.blog-details .tag-share .share ul > li:first-child a {
  color: #3c5ba4;
}

.blog-details .tag-share .share ul > li:nth-child(2) a {
  color: #47a0d9;
}

.blog-details .tag-share .share ul > li:nth-child(3) a {
  color: #0073b1;
}

.blog-details .tag-share .share ul > li:nth-child(4) a {
  color: #00b300;
}

.blog-details .tag-share .share a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  color: #627381;
}

.blog-details .tag-share .share a:hover {
  color: var(--orange);
}

/* ------------------------------------------------
    // BLOG DETAILS PAGINATION
---------------------------------------------------*/
.blog-details .more-posts {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0px 9px 32.8px 7.2px rgb(0 0 0 / 3%);
  box-shadow: 0px 9px 32.8px 7.2px rgb(0 0 0 / 3%);
}

.blog-details .more-posts .previous-post,
.blog-details .more-posts .next-post {
  font-size: 17px;
  font-weight: 300;
  color: #939ba2;
  padding: 30px;
}

.blog-details .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #e8e8e8;
}

.blog-details .more-posts > div {
  width: 50%;
  float: left;
}

.blog-details .more-posts > div > a {
  display: inline-block;
}
.blog-details .more-posts .post-control-link {
  color: #939ba2;
  font-weight: 400;
}

.blog-details .more-posts .previous-post i,
.blog-details .more-posts .next-post i {
  position: relative;
  top: 2px;
}

.blog-details .more-posts .post-control-link:hover {
  color: var(--orange);
}

/* ----------------------------------------------
    COMMENTS
-------------------------------------------------*/
.comment-wrapper {
  margin-top: 40px;
  position: relative;
}

.comment-wrapper h3 {
  font-size: 20px;
}

.comment-wrapper .comment-body {
  padding: 0px 0px;
}

/* -------------------------------------------------
    // Gallery
--------------------------------------------------- */

.isotop-nav {
  padding-bottom: 50px;
}

.isotop-nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.isotop-nav li {
  list-style: none;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  padding: 8px 12px;
  font-size: 14px;
  transition: 0.4s;
  border-radius: 3px;
  -moz-border-radius: 3px;
  margin: 2px;
  background-color: #eeeeee;
  color: #002147;
}

.isotop-nav li:hover,
.isotop-nav li.active {
  background: var(--green);
  color: #ffffff;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.07);
}

.portfolio {
  position: relative;
  display: table;
  width: 100%;
}

.isotop-active {
  margin: 0 auto;
}

.single-portfolio {
  margin-bottom: 30px;
}

.single-portfolio .portfolio-head.overlay::before {
  opacity: 0;
  visibility: hidden;
}
.single-portfolio:hover .portfolio-head.overlay::before {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-portfolio .portfolio-content.hover {
  position: absolute;
  bottom: 0;
  padding: 15px 20px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  top: 0;
}
.single-portfolio:hover .portfolio-content.hover {
  opacity: 1;
  visibility: visible;
}
.single-portfolio .portfolio-content.hover h4 a {
  color: #fff !important;
}
.single-portfolio .portfolio-content.hover p {
  color: #eee;
}
.single-portfolio .portfolio-content .zoom {
  height: 70px;
  width: 70px;
  line-height: 68px;
  text-align: center;
  font-size: 20px;
  color: #179e66;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -35px;
  margin-top: -35px;
  display: block;
  z-index: 34;
  background: #fff;
  border-radius: 50px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-portfolio .portfolio-content .zoom:hover {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
.single-portfolio {
  position: relative;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-portfolio .portfolio-head {
  position: relative;
  z-index: 0;
}
.single-portfolio img {
  display: block;
  width: 100%;
  z-index: 1;
  transition: all 0.8s ease;
}
.single-portfolio .more {
  height: 50px;
  width: 50px;
  opacity: 0;
  line-height: 51px;
  text-align: center;
  color: #fff;
  background: #f3a712;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  bottom: 0;
  font-size: 17px;
  border-radius: 100%;
  box-shadow: 0px 5px 5px #00000024;
  z-index: 333;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  visibility: hidden;
}
.single-portfolio .more:hover {
  background: #fff;
  color: #f3a712;
}
.single-portfolio:hover .more {
  opacity: 1;
  visibility: visible;
}
.single-portfolio .portfolio-content {
  position: relative;
  top: -30px;
  text-align: left;
  width: 78%;
  padding: 18px 20px;
  border-left: 3px solid #179e66;
  background: #fff;
  left: 15px;
  display: inline-block;
  z-index: 22;
  margin-bottom: -30px;
  -webkit-box-shadow: -2px 2px 6px #0000002e;
  -moz-box-shadow: -2px 2px 6px #0000002e;
  box-shadow: -2px 2px 6px #0000002e;
}
.single-portfolio .portfolio-content h4 {
  line-height: 24px;
  font-size: 18px;
}
.single-portfolio .portfolio-content h4 a {
  font-size: 18px;
  color: #082554;
  text-transform: capitalize;
}
.single-portfolio .portfolio-content h4:hover a {
  opacity: 0.8;
  color: #179e66;
}
.single-portfolio .portfolio-content p {
  font-size: 14px;
  margin: 0px;
}

/* ------------------------------------------------
  // Team
--------------------------------------------------*/
.single-team {
  background: #fff;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0px 4px 10px #0000001a;
  -moz-box-shadow: 0px 4px 10px #0000001a;
  box-shadow: 0px 4px 10px #0000001a;
}
.single-team .team-head {
  position: relative;
}

.team-head img {
  height: 30%;
  width: 70%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* border-radius: 50%; */
  filter: grayscale(100%);
  transition: filter 0.25s;
}

.team-head img:hover {
  filter: grayscale(0%);
}

.single-team .team-arrow {
  position: absolute;
  top: -24px;
  z-index: 333;
  left: 10px;
}
.single-team .team-arrow a {
  left: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  background: #2e2751;
  display: block;
  color: #fff !important;
  border-radius: 100%;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 10px #0000001a;
  -moz-box-shadow: 0px 0px 10px #0000001a;
  box-shadow: 0px 0px 10px #0000001a;
}

.single-team .team-arrow a:hover {
  background: #f3a712;
  color: #fff !important;
}
.single-team .t-content {
  text-align: center;
  padding: 15px 5px;
  position: relative;
}
.single-team .t-content .name {
  line-height: 22px;
}
.single-team .t-content .name a {
  font-size: 9px;
  color: #2e2751;
  text-transform: capitalize;
}
.single-team .t-content .name a:hover {
  color: #179e66;
}
.single-team .t-content .designation {
  position: relative;
  font-size: 12px;
  display: block;
  padding-bottom: 12px;
  margin-top: 5px;
}
.single-team .t-content .designation::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 50px;
  margin-left: -25px;
  background: #f3a712;
}
.single-team .t-content .text {
  font-size: 14px;
}
.single-team .t-content p {
  line-height: 22px;
}
.single-team .team-social {
  margin: 0;
  background: #fff;
  position: absolute;
  text-align: left;
  right: 10px;
  top: 10px;
  width: 48px;
  border-radius: 30px;
  height: auto;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
  border-radius: 0px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.28);
}
.single-team.active .team-social {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.single-team .team-social li {
  display: inline-block;
  display: block;
  margin: 0;
  text-align: center;
  margin-bottom: 5px;
}
.single-team .team-social li:last-child {
  margin: 0;
}
.single-team .team-social li a {
  display: block;
  font-size: 15px;
  color: #2e2751;
  line-height: 30px;
  display: inline-block;
}
.single-team .team-social li a:hover {
  color: #f3a712;
}
.team-grid .single-team {
  margin-top: 30px;
}

/* ------------------------------------------------
    Table 
---------------------------------------------------*/
.table-area {
  background: var(--orange);
  background-repeat: no-repeat;
  background-size: cover;
}

.table-responsive {
  min-height: 0.01%;
  overflow-y: hidden;
  overflow-x: hidden;
}

.table-section table {
  overflow: hidden;
}

.table-section .table th {
  border-top: 0px;
  background: var(--warning);
}

.table-section table thead {
  color: #111111;
  padding: 10px 0px;
}

.table > thead > tr > td,
.table > thead > tr > th {
  border-bottom: 0px;
  padding: 12px 20px 12px;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
  position: absolute;
  top: 15px !important;
}

.table > tbody > tr > td {
  vertical-align: middle;
  padding: 10px 20px 10px;
  color: #111111;
  font-size: 15px;
}

.table > tbody > tr > td a {
  color: #ffffff;
}

.table > tbody > tr > td a:hover {
  color: #111111;
}

.table-section .pagination > li > a,
.pagination > li > span {
  border-radius: 0px !important;
  margin: 0;
  color: #333;
  padding: 5px 10px;
  height: auto;
  width: auto;
  line-height: 22px;
}

.icons-word {
  background: url(../img/word.png) no-repeat center;
  width: 40px;
  height: 40px;
  margin: auto;
}

.icons-excel {
  background: url(../img/excel.png) no-repeat center;
  width: 40px;
  height: 40px;
  margin: auto;
}

.icons-ppt {
  background: url(../img/powerpoint.png) no-repeat center;
  width: 40px;
  height: 40px;
  margin: auto;
}

.icons-zip {
  background: url(../img/zip.png) no-repeat center;
  width: 40px;
  height: 40px;
  margin: auto;
}

.icons-pdf {
  background: url(../img/pdf.png) no-repeat center;
  width: 40px;
  height: 40px;
  margin: auto;
}

.icons-default {
  background: url(../img/icons-default.png) no-repeat center;
  width: 40px;
  height: 40px;
  margin: auto;
}
/* ------------------------------------------------
    // SUPPORT
--------------------------------------------------*/
.support-wrapper {
  background: #f4f9fc;
  padding: 30px 0px;
}

.single-clients-logo {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}

.single-clients-logo a {
  text-align: center;
  display: block;
  background-color: #ffffff;
  padding: 30px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-clients-logo a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-height: 100%;
  width: 100%;
}

.single-clients-logo a:hover {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.single-clients-logo a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*======================================
  Contact Form CSS
========================================*/
.contact-form-area {
  background: #fff;
  padding: 40px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
  border-top: 2px solid #179e66;
}
.contact-form-area h4 {
  font-size: 22px;
  font-weight: 600;
}
.contact-form-area .form-group {
  margin: 0;
  margin-top: 20px;
}
.contact-form-area .form-group input {
  height: 50px;
  border: 1px solid rgba(204, 204, 204, 0.58);
  width: 100%;
  display: block;
  border-radius: 0px;
  padding: 0px 40px 0 15px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 14px;
  font-weight: normal;
}
.contact-form-area .form-group input:focus {
  border-color: #7e868f;
}
.contact-form-area .form-group input:hover {
  border-color: #7e868f;
}
.contact-form-area .form-group textarea {
  height: 170px;
  border: 1px solid #dfdfdf;
  width: 100%;
  display: block;
  border-radius: 5px;
  padding: 15px;
  resize: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0px;
  padding-right: 40px;
  font-weight: normal;
}
.contact-form-area .form-group {
  position: relative;
}
.contact-form-area .form-group .icon {
  position: absolute;
  right: 15px;
  z-index: 33;
  color: #f3a712;
  top: 12px;
}
.contact-form-area .form-group.button {
  text-align: center;
  margin: 20px 0 0 !important;
}
.contact-form-area .form-group.textarea .icon {
  top: 15px;
  right: 15px;
}
.contact-form-area .btn.theme-2 {
  padding: 15px 32px;
}

/* Faq Form */
.contact-form-area.faq-form {
  background: #082554;
  padding: 30px;
}
.contact-form-area.faq-form .form-group {
  margin-top: 0px;
  margin-bottom: 20px;
}
.contact-form-area.faq-form .form-group input {
  background: transparent;
  border: none;
  color: #ccc;
  border-bottom: 1px solid #ffffff52;
}
.contact-form-area.faq-form .form-group input::-webkit-input-placeholder {
  opacity: 1;
  color: #ccc !important;
}
.contact-form-area.faq-form .form-group input::-moz-placeholder {
  opacity: 1;
  color: #ccc !important;
}
.contact-form-area.faq-form .form-group input::-ms-input-placeholder {
  opacity: 1;
  color: #ccc !important;
}
.contact-form-area.faq-form .form-group textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #ccc !important;
}
.contact-form-area.faq-form .form-group textarea::-moz-placeholder {
  opacity: 1;
  color: #ccc !important;
}
.contact-form-area.faq-form .form-group textarea::-ms-input-placeholder {
  opacity: 1;
  color: #ccc !important;
}
.contact-form-area.faq-form .form-group textarea {
  background: transparent;
  height: 120px;
  border: none;
  border-bottom: 1px solid #ffffff52;
  color: #ccc;
}
.contact-form-area.faq-form .form-group.button {
  text-align: left;
}
.contact-form-area.faq-form .form-group.button .theme-2:hover {
  background: #fff;
  color: #f3a712;
}
/* Servic Form  */
.contact-form-area.service {
  padding: 0;
  box-shadow: none;
  background: transparent;
  border: none;
}
.contact-form-area.service .form-group textarea {
  height: 120px;
}

.single-contact-box {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}
.single-contact-box .c-icon {
  float: left;
  margin-right: 20px;
}
.single-contact-box:last-child {
  margin: 0;
}
.single-contact-box i {
  font-size: 25px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #082554;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-contact-box:hover i {
  background: #179e66;
  color: #fff;
}
.single-contact-box h4 {
  color: #082554;
  display: block;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  margin-bottom: 0px;
  line-height: inherit;
  margin-bottom: 5px;
}

.google-map iframe{
  width: 100%;
}

#screen {
  border: none;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}

@media only screen and (max-width: 500px) {
  .navbar-scrensize .scrensize-logo {
    display: none;
  }
}

/*----------------------------------------
    404 
----------------------------------------*/

.error-404 {
  text-align: center;
}

.not-found {
  margin: auto;
}

.not-found img {
  width: auto;
  margin: auto;
  margin-bottom: 30px;
}

.error-404 h1 {
  color: #cccccc;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 10px;
  line-height: 80px;
  margin-bottom: 15px;
}

.error-404 h3 {
  color: #cccccc;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.error-404 p {
  color: #999999;
  font-size: 16px;
  line-height: 26px;
}

.error-404 a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-top: 40px;
  padding: 15px 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.error-404 a:hover {
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------
    FOOTER
--------------------------------------------------- */

footer {
  background: #179e66 url(../img/map.png) no-repeat;
  background-size: cover;
  padding: 20px 0px 0px;
  position: relative;
}

footer .footer-area {
  position: relative;
}

footer .footer-widget {
  padding: 18px 0px;
}

.footer-widget .title_widget {
  position: relative;
  margin-bottom: 35px;
}

.footer-widget .title_widget h3 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 15px;
  padding-bottom: 10px;
}

.footer-widget .title_widget h3::before {
  content: "";
  position: absolute;
  left: -0px;
  top: 38px;
  height: 3px;
  width: 20px;
  background-color: #fdc800;
}

.footer-widget .footer_content {
  margin-top: 20px;
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

.footer-widget .footer_content p {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
}

.footer-widget .footer_content p a {
  color: #ffffff;
}

.footer-widget .footer_content .about-us {
  padding: 10px 0px;
}

.footer-widget .footer_content .about-us img {
  margin-bottom: 20px;
}

.footer-widget .footer_content ul {
  padding: 0px;
}

.footer-widget .footer_content li {
  padding: 0px;
  list-style: none;
}

/*--------- POST ------------*/

.footer-widget .footer_content > ul {
  margin: auto;
  padding: 0px;
}

.footer-widget .footer_content > ul li {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}

.footer-widget .footer_content > ul li .post-thumb {
  display: block;
  float: left;
  margin-right: 10px;
  position: relative;
  width: 65px;
  overflow: hidden;
}

.footer-widget .footer_content > ul li .post-thumb img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  border: solid 4px #ffffff;
}

.footer-widget .footer_content > ul li .post-info {
  margin-top: 5px;
}

.footer-widget .footer_content > ul li .post-info a {
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 3px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.footer-widget .footer_content > ul li .post-info a:hover {
  color: var(--warning);
}

.footer-widget .footer_content > ul li .post-info span {
  font-size: 12px;
  color: #ffffff;
  font-weight: 200;
}

.footer-widget .footer_content > ul li .post-info span i {
  color: var(--warning);
}

/*--- social media --*/

.footer-widget .footer-media {
  position: relative;
  margin-top: 10px;
  display: block;
}

.footer-widget .footer-media h3 {
  font-size: 17px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 15px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.footer-widget .footer-media ul {
  display: inline-flex;
}

.footer-widget .footer-media li {
  margin-right: 20px;
}

.footer-widget .footer-media li:last-child {
  margin-right: 0px;
}

.footer-widget .footer-media li a {
  display: inline-block;
  line-height: 35px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
}

.footer-widget .footer-media li a:hover {
  color: var(--warning);
}

/*------ CATEGORY ---------------- */

.footer-widget .category {
  padding: 0px;
  list-style: none;
  margin: 0 auto;
}

.footer-widget .category > ul {
  padding: 0px;
  list-style: none;
  margin: 0 auto;
}

.footer-widget .category > ul > li {
  margin-bottom: 0px;
  position: relative;
  padding-left: 25px;
  line-height: 35px;
}

.footer-widget .category > ul > li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  margin-top: -5px;
  background: #ffffff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer-widget .category > ul > li > a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.category > ul > li > a i {
  color: #fdc800;
  margin-right: 5px;
}

.footer-widget .category > ul > li:hover:before {
  background: var(--warning);
}
.footer-widget .category > ul > li > a:hover {
  color: var(--warning);
}

/*---- ADRESS ---*/

.footer-widget .footer_content ul.address {
  position: relative;
  line-height: 1.6;
  margin: 0px 0px;
  color: #ffffff;
}

.footer-widget .footer_content ul.address li {
  padding: 0px 0px;
  margin: 0px 0px 15px;
}

.footer-widget .footer_content ul.address li a {
  color: #ffffff;
}

.footer-widget .footer_content ul.address > li i {
  margin-right: 10px;
  color: #ffffff;
  float: left;
  line-height: 28px;
  border: solid 1px #ffffff;
  font-size: 14px;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
}

.footer-widget .footer_content ul.address span {
  padding-left: 20px;
  display: block;
}

/* --------------------------------
	COPYRIGHT
---------------------------------- */

.copyright {
  border-top: 1px solid #ebebeb3b;
  padding: 20px 0px;
}

.copyright p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 27px;
  font-weight: 300;
}

.copyright p a {
  color: #ffffff;
}

.copyright ul {
  padding: 0px;
  margin: 0px;
  float: right;
}

.copyright ul li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  margin-right: 20px;
}

.copyright ul li:last-child {
  margin-right: 0px;
}

.copyright ul li i {
  font-size: 13px;
  margin-right: 10px;
  color: var(--warning);
}
/*-------------------------------------------------*/

/* =  BOTTON UP
/*-------------------------------------------------*/

.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: var(--green);
  background-color: #ffffff;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 45px;
  opacity: 0;
  border-radius: 50%;
  font-size: 15px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 15px rgb(0 0 0 / 32%);
  box-shadow: 0px 0px 15px rgb(0 0 0 / 32%);
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.go-top:hover {
  background: var(--green);
  color: #ffffff;
}

/* ------------------------ ANIMATION CSS ----------------*/

@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

@-webkit-keyframes imageChange {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes imageChange {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes imageChangeTwo {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes imageChangeTwo {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (min-width: 1920px) {
  .carousel-inner .item > img {
    width: auto;
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 1025px) {
  /* ------------ Service Area ------------*/
  .service-area .service-wrapper {
    margin-right: 0;
    margin-left: 0;
    padding: 40px 0px 10px;
  }
  .service-area .service-inner-area {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
  }
  .service-box {
    border-right: 0px;
    padding: 15px 15px 15px 15px;
    background: #ffffff;
    color: #333333;
    min-height: 185px;
    max-height: 185px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
  }

  .service-box .service-box-content {
    -webkit-box-flex: 4;
    -moz-flex: 4;
    -webkit-flex: 4;
    flex: 4;
  }

  .service-box .service-box-content h3,
  .service-box .service-box-content h3 a {
    color: #002147;
    line-height: 25px;
  }

  /* -----   Profile ---------------*/
  .abouts .abouts-img {
    position: relative;
    margin: 40px 30px 0px;
  }

  /*  Sidebar ----*/
  .sw-sidebar {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 780px) {
  /* Header ----------------*/
  .navigation .top-search,
  .navigation.sticky .top-search {
    top: 57px;
  }

  .top-search {
    right: 40px;
  }

  /* -----   Profile ---------------*/
  .feature-des-p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

  .abouts-wrapper .feature-des .btn {
    display: inline-block;
  }

  /*  Sidebar ----*/
  .sw-sidebar {
    padding-left: 0px;
  }

  /*Blog Details---*/
  article .blog-details h1.title a,
  article .blog-details .entry-content h1.title a {
    font-size: 25px;
    line-height: 32px;
  }

  /* Counter -----*/

  .single-counter .icon {
    position: relative;
    text-align: center;
  }
  .single-counter .icon:before {
    display: none;
  }
  .single-counter .conter-content {
    margin: auto;
    margin-left: 0px;
    border-left: 0px;
    padding-left: 0px;
  }
}

@media only screen and (max-width: 480px) {
  /* Header ----------------*/
  .navigation .top-search,
  .navigation.sticky .top-search {
    top: 57px;
  }

  .top-search {
    right: 40px;
  }

  /* Section Title ---------*/
  .section-title h2 {
    font-size: 20px;
  }
  .section-title .sub-title {
    margin-top: 5px;
  }

  /* Search Top -----------*/
  .top-search {
    top: 55px;
  }

  /* breadcrumbs -----*/
  .sw-breadcrumbs {
    padding: 50px 0 20px;
    position: relative;
    width: 100%;
  }

  .sw-breadcrumbs h2 {
    margin: 20px 0px 5px;
  }

  .breadcrumbs ul {
    font-size: 14px;
    padding: 5px 0 0;
  }

  /* Abouts --------*/
  .side.bg-overlay:after {
    display: none;
  }

  .abouts-wrapper .img-feature {
    margin-bottom: 20px;
  }

  .abouts-wrapper .img-feature .headmaster {
    top: 70%;
  }

  /* Counter -----*/
  .single-counter {
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    display: block;
  }
  .single-counter .icon {
    position: relative;
    text-align: center;
  }
  .single-counter .icon:before {
    display: none;
  }
  .single-counter .conter-content {
    margin: auto;
    margin-left: 0px;
    border-left: 0px;
  }

  /* Pengemuman dan Agenda ------*/
  .single-post-list .feature-image-icon {
    margin-right: 20px;
    width: 100px;
    height: 100px;
  }

  .single-post-list .feature-image-icon i {
    font-size: 40px;
    line-height: 100px;
  }

  .single-post-list .single-post-list-content {
    margin-left: 120px;
  }

  .single-post-wrapper li {
    padding: 0px 0px 0px;
  }

  .single-post-list .event_date {
    margin-right: 20px;
    width: 100px;
    height: 100px;
  }

  .single-post-list .event_date h4 {
    font-size: 30px;
    margin-top: 5px;
  }

  .single-post-list .single-post-list-content p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Table ----*/
  .table-responsive {
    overflow-x: auto !important;
  }

  /*  Sidebar ----*/
  .sw-sidebar {
    padding-left: 0px;
  }

  /* Pane Nav ---------*/
  .prev-link-wrapper .image-prev {
    display: none;
  }
  .next-link-wrapper .image-next {
    display: none;
  }

  footer .footer-widget {
    padding: 8px 0px;
  }
}
