/*Google Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&amp;display=swap");

:root {
  --thm-font: "Barlow", sans-serif;
  --thm-b-font: "Roboto", sans-serif;
  --thm-base: #106470;
  --thm-base-second: #ffbd04;
  --thm-base-white: #ffffff;
  --thm-base-hover: #0c9076;
  --thm-base-rgb: 37, 179, 151;
  --thm-base-hue: #f0fdfb; 
  --thm-secondary: #222; 
  --thm-secondary-hover: #070606; 
  --thm-secondary-rgb: 34, 34, 34; 
  --thm-b-text: #686a6f; 
  --thm-border: #e1e1e1; 
}

/* animation */
@keyframes pulseInOut {
  0% {
    opacity: 1;
    transform: scale(0.3);
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}


/* General */
::selection {
  background-color: var(--thm-base);
  color: #fff;
}
html {
  overflow-x: hidden;
}
body {
  font-family: var(--thm-b-font);
  overflow-x: hidden;
  color: var(--thm-b-text);
  font-size: 16px;
  line-height: 1.8;
}

.gallery-thumb {
  position: relative;
}
.gallery-thumb::before {
  content: "\f002";
  position: absolute;
  right: 20px;
  top: 30px;
  font-family: "Font Awesome 5 Pro";
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gallery-thumb:hover::before {
  top: 20px;
  opacity: 1;
  visibility: visible;
}

.object-cover { object-fit: cover; }



.section {
  position: relative;
  padding: 40px 0;
}
.section.section-padding {
  padding: 100px 0 70px;
}
.section.shape-after::after {
  content: "";
  position: absolute;
  background-color: var(--thm-base);
  opacity: 0.3;
  left: 20px;
  right: 20px;
  bottom: -20px;
  top: 20px;
  z-index: -2;
}

.section-title {
  position: relative;
  max-width: 640px;
}
.section-title.centered {
  text-align: center;
  margin: 0 auto 50px;
}
.section-title.flex-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 50px;
  max-width: 100%;
}
.section-title .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  position: relative;
}
.section-title .title.sm {
  font-size: 48px;
}
.section-title .subtitle {
  display: inline-flex;
  color: var(--thm-base);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}
.section-title.has-element .title {
  margin-bottom: 15px;
}
.section-title.has-element .lines {
  display: flex;
  width: 40px;
  height: 2px;
  background-color: var(--thm-base);
  position: relative;
}
.section-title.has-element .lines::before {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  background-color: var(--thm-base);
  width: 32px;
  height: 2px;
}
.section-title.has-element .lines::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  background-color: var(--thm-base);
  width: 48px;
  height: 2px;
}
.section-title.has-element .lines:last-child::before {
  right: auto;
  left: 0;
}
.section-title.has-element .lines:last-child::after {
  right: auto;
  left: 0;
}
.section-title.has-element .circle {
  line-height: 0;
  display: flex;
  margin: 0 4px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--thm-base);
  border-radius: 50%;
}

img {  max-width: 100%; }

ul { padding: 0; margin: 0; list-style-type: none; }

b, strong { font-weight: 600; }

.bg-cover {  background-size: cover; }

.bg-center { background-position: center; }

.pb-24{ padding-bottom: 24px!important; }

.mb-30 { margin-bottom: 30px; }

/* Buttons */
button,
input[type="reset"],
input[type="button"],
input[type="submit"],
.sigma_btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  background-color: var(--thm-base);
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 17px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

button i,
input[type="reset"] i,
input[type="button"] i,
input[type="submit"] i,
.sigma_btn i {
  margin: 0 0 0 10px;
  color: #fff;
  z-index: 1;
}

button:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.sigma_btn:hover,
button:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
.sigma_btn:focus {
  color: #fff;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
  outline: none;
}


/* Style 5 */
button:before,
input[type="reset"]:before,
input[type="button"]:before,
input[type="submit"]:before,
.sigma_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  border-radius: 0;
  background-color: var(--thm-base-hover);
  z-index: -1;
  transition: 0.3s;
}
button:hover:before,
input[type="reset"]:hover:before,
input[type="button"]:hover:before,
input[type="submit"]:hover:before,
.sigma_btn:hover:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.btn-rounded button:before,
.btn-rounded input[type="reset"]:before,
.btn-rounded input[type="button"]:before,
.btn-rounded input[type="submit"]:before,
.btn-rounded .sigma_btn:before {
  border-radius: 6px;
}

button.mfp-close, button.mfp-arrow {
  box-shadow: none;
}

button.mfp-close:before, button.mfp-arrow:before, button.close:before {
  content: none;
}

/* Inputs */
input[type="number"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea,
.form-control {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  font-size: 16px;
  color: #686a6f;
  font-weight: 400;
  padding: 15px 60px 15px 25px;
  letter-spacing: 0.1em;
  background-color: #f4f5f8;
  border: 1px solid var(--thm-border);
  border-radius: 0;
  transition: all 300ms ease;
  font-family: var(--thm-b-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='grey' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 17px;
}

textarea { padding: 15px 35px 15px 25px; }

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group > i {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1;
}

i.show-password { cursor: pointer; }

textarea {
  height: auto;
  resize: none;
  line-height: 1;
}

input[type="number"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus,
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--thm-base);
}

input[type="number"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #a5a5a5;
}

.primary-color { color: var(--thm-base); }

.secondary-color { color: var(--thm-secondary); }

.bg-white { background-color: #fff; }

.bg-secondary-1 { background-color: var(--thm-secondary); }

.bg-gray { background-color: #f8f8f8; }

/* Typography */
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a,h1,h2,h3,h4,h5,h6 {
  font-family: var(--thm-b-font);
  font-weight: 600;
  color: var(--thm-secondary);
}

h1,h2,h3,h4,h5,h6 { margin-bottom: 20px; }

h1 { font-size: 52px; }

h2 { font-size: 44px; }

h3 {
  font-size: 36px;
  line-height: 1.2;
}

h4 {
  font-size: 28px;
  line-height: 1.4;
}

h5 {
  font-size: 24px;
  line-height: 1.3;
}

h6 {
  font-size: 18px;
  line-height: 1.7;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--thm-base);
  transition: 0.3s;
  display: inline-block;
}

a:hover,
a:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover {
  color: var(--thm-base-hover);
  text-decoration: none;
}

.sigma_close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.sigma_close:hover span {
  opacity: 1;
}

.sigma_close span {
  position: absolute;
  width: 24px;
  height: 2px;
  opacity: 0.5;
  transition: 0.3s;
  background-color: var(--thm-secondary);
}

.sigma_close span:first-child {
  transform: rotate(45deg);
}

.sigma_close span:last-child {
  transform: rotate(135deg);
}

/* Header */
.sigma_header {
  position: relative;
  background-color: #106470;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
}

.navbar {
  padding: 0;
}
.sigma_logo img {
  max-height: 200px;
}
.sigma_header .sigma_logo-wrapper {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  padding: 10px 0;
  gap: 10px;
}
.sigma_header .sigma_logo-wrapper .sigma_logo {
  max-width: 130px;
}
.sigma_header .sigma_logo-wrapper .sigma_logo-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.sigma_header .sigma_logo-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #fff;
}

.sigma-quota{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: end;
}
.sigma-quota p{
  color: #fff;
  font-style: italic;
}

/* MiniPad  */
@media (max-width: 991px) {
  .sigma_header .sigma_logo-wrapper .sigma_logo-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .sigma_header .sigma_logo-wrapper .sigma_logo-subtitle {
    font-size: 1rem;
    font-weight: 500;
  }
  .sigma_header .sigma_logo-wrapper .sigma_logo {
    max-width: 100px;
  }
}
/* Tablet  */
@media (max-width: 768px) {
  .container {
    max-width: none !important;
  }
  .sigma_header .sigma_logo-wrapper .sigma_logo-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .sigma_header .sigma_logo-wrapper .sigma_logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .sigma_header .sigma_logo-wrapper .sigma_logo {
    max-width: 65px;
  }
}

@media (max-width: 576px) {
  .sigma_header .sigma_logo-wrapper .sigma_logo-title {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .sigma_header .sigma_logo-wrapper .sigma_logo-subtitle {
    display: none;
  }
  .sigma_header .sigma_logo-wrapper .sigma_logo {
    max-width: 45px;
  }
}
@media (max-width: 380px) {
  .sigma_header .sigma_logo-wrapper .sigma_logo-title {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  .sigma_header .sigma_header-controls ul li + li {
    margin-left: 10px!important;
}
}

.sigma_header .navbar-nav {
  flex-direction: row;
}

.sigma_header .navbar-nav li {
  position: relative;
  transition: 0.3s;
}

.sigma_header .navbar-nav li a {
  display: block;
  padding: 30px 15px;
  color: var(--thm-secondary);
  font-weight: 700;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
}

.sigma_header .navbar-nav li a:hover,
.sigma_header .navbar-nav li.active > a {
  color: var(--thm-base);
}

.sigma_header .navbar-nav li .sub-menu {
  position: absolute;
  top: 110%;
  min-width: 250px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.sigma_header .navbar-nav li .sub-menu li a {
  border-bottom: 1px dashed var(--thm-border);
  padding: 15px;
  display: flex;
  font-weight: 500;
  align-items: center;
  position: relative;
}

.sigma_header .navbar-nav li .sub-menu li:last-child a {
  border-bottom: none;
}

.sigma_header .navbar-nav li.menu-item-has-children a{
  padding-right: 30px;
}
.sigma_header .navbar-nav li.menu-item-has-children::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f107";
  right: 10px;
  top: 16px;
  display: flex;
  align-items: center;
  font-size: 18px;
  transition: all .3s ease-in-out;
  transform: rotate(0);
}
.sigma_header .navbar-nav li.menu-item-has-children:hover::after{
  transform: rotate(-180deg);
}
.sigma_header .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.sigma_header .navbar-nav li.menu-item-has-children .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
}

.sigma_header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 55;
}

/* Header top */
.sigma_header-top {
  background-color: #fff;
  border-bottom: 1px solid var(--thm-border);
  padding: 0;
}

.sigma_header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.sigma_header-top-nav {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
  gap: 12px;
}

.sigma_header-top .sigma_header-top-nav li {
  margin: 0;
}

.contact-item{
  gap: 12px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sigma_header-top-contacts .sigma_header-top-nav li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--thm-base-rgb), 0.25);
  display: inline-flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid transparent;
  margin-right: 0;
  transition: all .3s ease-in-out;
}
.sigma_header-top.dark-bg .sigma_header-top-links li a{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.sigma_header-top-nav li.active a{
  color: var(--thm-base)!important;
}

.sigma_header .sigma_header-top-contacts .sigma_header-top-nav li a:hover {
  background-color: var(--thm-base-hover);
  border: 1px solid #fff;
  color: #fff;
}

.sigma_header.style-1 .sigma_header-top-contacts .sigma_header-top-nav li a {
  color: var(--thm-base);
}

.sigma_header-top .sigma_header-top-cta li {
  height: 100%;
}

.sigma_header-top .sigma_header-top-cta li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  background-color: var(--thm-base);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
}
.sigma_header-top .sigma_header-top-cta li a:hover {
  background-color: var(--thm-base-hover);
}

/* Header bottom */
.sigma_header-bottom {
  background-color: var(--thm-secondary);
}
.sigma_header-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.sigma_header .sigma_header-bottom .navbar-nav > li > a {
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.sigma_header .sigma_header-bottom .navbar-nav li a:hover {
  color: var(--thm-base);
}

.sigma_header .sigma_header-bottom-inner .aside-toggle.desktop-toggler {
  display: flex;
  height: 62px;
  width: 62px;
  align-items: center;
  justify-content: center;
  background-color: var(--thm-base);
  transition: 0.3s;
  border-radius: 0;
  border: 0;
}
.sigma_header .sigma_header-bottom-inner .aside-toggle.desktop-toggler span {
  background-color: #fff;
}

/* Header Controls starts */
.sigma_header .sigma_header-controls ul {
  display: flex;
  align-items: center;
}

.sigma_header .sigma_header-controls ul li + li {
  margin-left: 15px;
}

.sigma_header .sigma_header-controls ul li.header-controls-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--thm-border);
  color: var(--thm-secondary);
  font-size: 18px;
  border-radius: 10px;
}


.sigma_header .sigma_header-controls ul li.header-controls-item a:hover {
  background-color: #f8f8f8;
}

.sigma_header .aside-toggle,
.sigma_header .aside-toggle.desktop-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  width: 58px;
  height: 58px;
  border: 1px solid var(--thm-border);
  border-radius: 10px;
  transition: 0.3s;
}

.sigma_header .aside-toggle:hover {
  background-color: #f8f8f8;
}

.sigma_header .aside-toggle {
  display: none;
}

.sigma_header .aside-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: var(--thm-secondary);
  transition: 0.3s;
  transform-origin: right;
}
.sigma_header .aside-toggle:hover span {
  background-color: #fff;
}

.sigma_header .aside-toggle span + span {
  margin-top: 5px;
}

.sigma_header .container-fluid {
  padding-left: 65px;
  padding-right: 65px;
}

.sigma_header-top.dark-bg {
  background-color: var(--thm-secondary);
}
.sigma_header .sigma_header-top {
  border: 0;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .sigma_header .aside-toggle,
  .sigma_header .aside-toggle.desktop-toggler,
  .sigma_header .sigma_header-controls ul li.header-controls-item a {
    width: 36px;
    height: 36px;
  }
  .far {
    font-weight: 400;
    font-size: 16px;
  }
  .sigma_header .aside-toggle span + span {
    margin-top: 3px;
  }
  .sigma_header .aside-toggle span {
    display: block;
    width: 16px;
    height: 2px;
  }
}

.sigma_header .sigma_header-top,
.sigma_header .sigma_header-middle{
  padding-left: 0;
  padding-right: 0;
}

.sigma_header .sigma_header-top-links li a,
.sigma_header .sigma_header-top-links li select {
  display: flex;
  align-items: center;
  color: var(--thm-secondary);
  font-size: 14px;
  font-weight: 400;
}

.sigma_header .sigma_header-top-links li select {
  background-color: transparent;
  height: auto;
  padding: 0;
  border: 0;
  background-image: none;
  -webkit-appearance: auto;
  cursor: pointer;
}

.sigma_header .sigma_header-top-links li a:hover,
.sigma_header .sigma_header-top-links.important-links li a:hover,
.sigma_header .sigma_header-top-links li select:hover {
  color: var(--thm-base-hover);
}

.sigma_header .sigma_header-top-links li a i {
  margin-right: 10px;
}

.sigma_header .sigma_header-top-links li + li {
  margin-left: 10px;
}

.sigma_header .sigma_header-top-links.important-links li a {
  font-size: 16px;
  padding: 30px 0;
  color: var(--thm-secondary);
}

.sigma_header .sigma_header-top-links.important-links li a i {
  width: 40px;
  height: 40px;
  border: 1px solid var(--thm-border);
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-base);
}

.sigma_header .sigma_header-top-links.important-links li p {
  margin: 0;
  line-height: 1.3;
}

.sigma_header .sigma_header-top-links.important-links li + li {
  margin-left: 40px;
}

.sigma_header .sigma_header-bottom{
  background-color: #fff;
}

.sigma_header .sigma_header-bottom .navbar {
  border-top: none;
}

.sigma_header .sigma_header-bottom .navbar-nav > li > a {
  color: var(--thm-secondary);
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 991px) {
  .sigma_header .sigma_header-bottom .navbar-nav > li > a:hover {
    background: var(--thm-base-second);
    color: var(--thm-base-white);
  }
  .sigma_header .sigma_header-bottom .navbar-nav > li.active > a {
    background: var(--thm-base-second);
    color: var(--thm-base-white);
  }
}

.sigma_header .sigma_header-controls ul li.header-controls-item a,
.sigma_header .aside-toggle,
.sigma_header .aside-toggle.desktop-toggler {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

@media (max-width: 576px) {
  .sigma_header .sigma_header-controls ul li.header-controls-item a,
  .sigma_header .aside-toggle,
  .sigma_header .aside-toggle.desktop-toggler {
    width: 40px;
    height: 40px;
  }
}

.sigma_header .sigma_header-controls ul li.header-controls-item a:hover,
.sigma_header .aside-toggle:hover,
.sigma_header .aside-toggle.desktop-toggler:hover {
  background-color: var(--thm-base);
  border-color: #fff;
  color: #fff;
}

.sigma_header.style-5 .aside-toggle.desktop-toggler:hover span {
  background-color: #fff;
}


/* Search Form */
.search-form-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.search-form-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.search-form-wrapper .sigma_close {
  position: absolute;
  top: 60px;
  right: 60px;
  border-color: #fff;
}

.search-form-wrapper .sigma_close span {
  background-color: #fff;
}

.search-form-wrapper form {
  position: relative;
  width: 70%;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
}

.search-form-wrapper.open form {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.search-form-wrapper form input {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  font-size: 40px;
  height: 80px;
  width: 100%;
  outline: none;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 991px) {
  .search-form-wrapper form input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #fff;
    font-size: 30px;
    height: 60px;
  }

  .fal {
    font-weight: 300;
    font-size: 24px;
  }

  .search-form-wrapper .sigma_close {
    position: absolute;
    top: 60px;
    right: 20px;
    border-color: #fff;
  }
}

.search-form-wrapper form input::placeholder {
  color: #fff;
}

.search-form-wrapper .search-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
  color: #fff;
  font-size: 30px;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
  padding: 0;
}

.search-form-wrapper .search-btn:before {
  content: none;
}
.search-form-wrapper .search-btn i {
  transition: 0.3s;
}

.search-form-wrapper .search-btn:hover i {
  color: var(--thm-base);
}

/*Aside Mobile Menu*/
.sigma_aside .sigma_close {
  position: absolute;
  right: 10px;
  top: 15px;
}

.sigma_aside {
  position: fixed;
  top: 0;
  right: -330px;
  width: 330px;
  height: 100%;
  z-index: 99;
  background-color: #fff;
  transition: 0.3s;
  overflow-y: auto;
}

.sigma_aside-overlay.aside-trigger{ display: none; }

.sigma_aside .sigma_logo-wrapper {
  padding: 10px 15px 40px;
}
.sigma_aside .sigma_logo_sidebar {
  width: 120px;
}

.sigma_aside .navbar-nav li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: var(--thm-secondary);
  font-weight: 600;
  border-bottom: 1px solid var(--thm-border);
}

.sigma_aside .navbar-nav li a:hover {
  color: var(--thm-base);
}

.sigma_aside .navbar-nav li.menu-item-has-children > a:after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f107";
  right: 18px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.sigma_aside .navbar-nav li .sub-menu {
  display: none;
}

.sigma_aside .navbar-nav li .sub-menu {
  background-color: #f8f8f8;
}

.sigma_aside-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}

.aside-open .sigma_aside {
  right: 0;
}


/*-------------- Video Icon & Ratings General style --------------------------- */
.sigma_video-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--thm-base);
  font-size: 20px;
  transition: 0.3s;
}

.sigma_video-btn:hover {
  background-color: var(--thm-base);
  color: #fff;
}

.sigma_video-btn:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  animation-name: pulseInOut;
  opacity: 0;
  border-radius: 50%;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.sigma_video-btn:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  animation-name: pulseInOut;
  opacity: 0;
  border-radius: 50%;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
}


/* Swiper Slider  */
#section-hero{
  padding: 15px 0;
}
.heroSlider {
  width: 100%;
  height: 640px;
  display: flex;
}
@media (max-width: 768px) {
  .heroSlider .swiper {
    width: 100%;
    height: 480px;
    display: flex;
  }
}

.heroSlider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.heroSlider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroSlider .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
}
.heroSlider .swiper-pagination-bullet-active{
  background-color: var(--thm-base-second);
}

.heroSlider .swiper-bottom{
  position: absolute;
  bottom: 0;
  background: #106470;
  color: #fff;
  width: 100%;
  padding-bottom: 20px;
}

.heroSlider .swiper-bottom a{
  display: block;
  text-align: left;
  padding: 20px 0 0 20px;
  min-height: 104px;
}

@media (max-width: 768px) {
  .heroSlider .swiper-bottom{
    padding-bottom: 10;
  }
  .heroSlider .swiper-bottom a{
    padding: 15px 0 0 15px;
  }
}

.swiper-bottom a h2{
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--thm-base);

}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 32px!important;
  font-weight: 600;
}


.news-item{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-item .sigma_post-details-meta {
  display: flex;
  justify-content: space-between;
}
.news-item .sigma_post-details-meta span{
  font-size: 12px;

}
.news-item:hover .news-img img{
  transform: scale(1.1);
}

.news-img{
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding-bottom: 62.86%;
  display: block;
}

.news-img img{
  transition: all .3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.news-title{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #090c02;
  display: flex;
  flex-direction: column;
  gap: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.news-gallery{
  margin-bottom: 24px;
}

.news-slider{
  height: 480px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .news-slider{
    height: 300px;
    margin-bottom: 20px;
  }
}
.news-slider .swiper-slide{
  position: relative;
  padding-bottom: 58.9%;
  display: block;
}

.news-slider .swiper-slide img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 0;
}

.news-thumb-slider .swiper-slide{
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}
.news-thumb-slider .swiper-slide img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section-about p{
  text-align: justify;
  text-indent: 36.0pt;
}

.publications-title{
  text-align: center;
  font-size: 24px;
}
.publications-items{
  padding: 20px 0;
}
.publications-items .row{
  row-gap: 20px;
}
.publications-item{
  border-radius: 12px;
  border: 1px solid var(--thm-base);
  padding: 10px;
}
.publications-item:hover .publications-item-img img{
  transform: scale(1.1);
}

.publications-item-img{
  /* margin-bottom: 16px; */
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 75.62%;
  display: block;
  height: 100%;
}
.publications-item-img img{
  transition: all .3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.publications-item-desc{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 12px;
}
.publications-item-title{
  margin: 0;
  font-size: 36px;
  line-height: 36px;
}
.publications-item-text,
.publications-item p{
  font-size: 18px;
  line-height: 24px;
}
.publications-item-link{
  margin-top: auto;
  /* margin: 0 auto; */
  width: fit-content;
}


#section-team .row{ row-gap: 24px; }

.team-item{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px;
  border: 1px solid var(--thm-base);
  border-radius: 10px;
}
.team-item .sigma_post-details-meta {
  display: flex;
  justify-content: space-between;
}
.team-item .sigma_post-details-meta span{
  font-size: 12px;
}

.team-img{
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding-bottom: 62.86%;
  display: block;
}

.team-img img{
  transition: all .3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.team-title{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #090c02;
  display: flex;
  flex-direction: column;
  gap: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

/* Report Section  */
.section-reports .row{
  row-gap: 20px;
}
#section-reports .row{
  row-gap: 20px;
}
.report-item{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  padding: 35px 25px;
  border-radius: 10px;
  height: 100%;
  border: 1px solid var(--thm-base-hover);
}
.report-item img{
  width: 24px;
  height: 24px;
  transition: all .3s ease-in-out;
}
.report-item:hover img{
  transform: scale(1.2);
}
.report-title{
  font-size: 24px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 24px;
}
.report-item:hover{
  border-color: var(--thm-base);
  color: var(--thm-base);
}
.report-item h3{
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
  transition: all .3s ease-in-out;
}
.report-item:hover h3{
  color: var(--thm-base);
}

.bg-white{
  background: #fff!important;
}
.bg-theme{
  background: var(--thm-base);
}

#section-subheader{
  background: rgba(16, 99, 112, 0.30);
}

#crumbs{
  padding: 15px 0;
}
.crumbs-links{
  display: flex;
  gap: 15px;
  align-items: center;
}
.crumbs-links li::after{
  content: '/';
  margin-left: 10px;
  color: var(--thm-base);
  font-size: 20px;
}
.crumbs-links li:last-child:after{
  content: '';
}
.crumbs-links li a{
  font-size: 20px;
}
@media (max-width: 768px) {
  .crumbs-links li a{
    font-size: 14px;
  }
  .crumbs-links li::after{
    content: '/';
    margin-left: 5px;
    color: var(--thm-base);
    font-size: 14px;
  }
  .crumbs-links{
    display: flex;
    gap: 10px;
    align-items: center;
  }
}

.section-header{
  display: flex;
  justify-content: space-between;
}
.section-header-title{
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 24px;
    color: #000;
}
.section-header-link{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.section-header-link:hover img{
  transform: translateX(5px);
}
.section-header-link img{
  width: 20px;
  height: 20px;
  transition: all .3s ease-in-out;
}

#section-contact-form{
  padding: 30px 0;
}

hr {
  border-top: 1px solid var(--thm-border);
  margin: 30px 0;
}

/* Pagination */
.pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-link,
.pagination .page-item .page-link {
  border-radius: 0;
}

.pagination .page-link {
  color: var(--thm-secondary);
  background-color: #fff;
  border: 1px solid var(--thm-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  margin-left: 15px;
}

.pagination .page-item.active .page-link {
  background-color: var(--thm-base);
  border-color: var(--thm-base);
}

.pagination .page-item:not(.active) .page-link:hover,
.pagination .page-item:not(.active) .page-link:focus {
  color: var(--thm-base);
  outline: none;
}

/* Style 1 */
.sigma_post {
  position: relative;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  margin-bottom: 30px;
  transition: 0.3s;
}

.sigma_post .sigma_post-thumb {
  position: relative;
  overflow: hidden;
}

.sigma_post .sigma_post-thumb a:first-child {
  display: block;
}

.sigma_post .sigma_post-thumb img {
  transition: 0.3s;
  width: 100%;
}

.sigma_post .sigma_post-thumb:hover img {
  transform: scale(1.1);
}

.sigma_post .sigma_post-categories {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
}

.sigma_post .sigma_post-categories a,
.widget.widget-sigma-recent-posts.style-3
  .sigma_recent-post
  .sigma_post-categories
  a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  background-color: var(--thm-base);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border-radius: 26px;
  transition: 0.3s;
}

.sigma_post .sigma_post-categories a:hover,
.widget.widget-sigma-recent-posts.style-3
  .sigma_recent-post
  .sigma_post-categories
  a:hover {
  background-color: var(--thm-base-hover);
}

.sigma_post .sigma_post-categories a + a {
  margin-left: 10px;
}

.sigma_post.style-2 img {
  width: 100%;
}

.sigma_post.style-3,
.sigma_post.style-4 {
  background-color: transparent;
  box-shadow: none;
}

.sigma_post.style-3 .sigma_post-thumb {
  border-radius: 0;
}


/* Style 5 */
.sigma_post.style-5 {
  border-radius: 0;
  overflow: hidden;
}

.widget.widget-sigma-recent-posts.style-3
  .sigma_recent-post
  .author-info
  .author-name {
  color: var(--thm-secondary);
  display: block;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
}

.widget.widget-sigma-recent-posts.style-3
  .sigma_recent-post
  .author-info
  .author-name:hover {
  color: var(--thm-base-hover);
}


/* Post-list */
.sigma_post.sigma_post-list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.sigma_post-list + .sigma_post-list {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--thm-border);
}

.sigma_post.sigma_post-list .sigma_post-thumb {
  width: 270px;
  margin-right: 30px;
}

.sigma_post.sigma_post-list .sigma_post-thumb img {
  width: auto;
}

.sigma_post.sigma_post-list.post-format-audio .embed-responsive-16by9::before {
  padding-top: 100%;
}

/*Blog: Misc*/
.sigma_post h5 {
  font-size: 34px;
}

.col-lg-6 .sigma_post h5 {
  font-size: 28px;
}

.sigma_related-posts .sigma_post h5,
.col-lg-4 .sigma_post h5,
.col-lg-5 .sigma_post h5 {
  font-size: 22px;
}

.col-lg-5 .sigma_post.sigma_post-list .sigma_post-thumb {
  width: auto;
}

.col-lg-3 .sigma_post h5 {
  font-size: 22px;
}

.col-lg-4 .sigma_post.post-format-audio .embed-responsive-16by9::before {
  padding-top: 46.25%;
}

.col-lg-3 .sigma_post.post-format-audio .embed-responsive-16by9::before {
  padding-top: 66.25%;
}

/*  post format Video */
.post-format-video .sigma_video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*-------------- Blog Widgets --------------------------- */
.sidebar .widget {
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.sidebar .widget + .widget {
  margin-top: 50px;
}

.sidebar .widget .widget-title {
  position: relative;
  margin-bottom: 30px;
  font-size: 22px;
}

.sidebar .widget .widget-title::before {
  content: "";
  background-color: var(--thm-base);
  width: 3px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
}

.sidebar .widget .btn-link {
  margin-top: 10px;
}

/*-------------- Blog details Sections --------------------------- */

.sigma_post-details-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sigma_post-details-meta span {
  display: inline-block;
  margin: 0 20px 5px 0;
  font-family: var(--thm-font);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.sigma_post-details-meta span i {
  margin-right: 5px;
  color: var(--thm-base);
}

.sigma_post-details-meta-item {
  flex: 1;
}
.sigma_post-details .sigma_sm {
  display: flex;
  align-items: center;
}
.sigma_post-details .sigma_sm li + li {
  margin-left: 15px;
}
.sigma_post-details .sigma_sm li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: var(--thm-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sigma_post-details .sigma_sm li a:hover {
  background-color: var(--thm-base);
  color: #fff;
}

.sigma_post-details .detail-menu-list {
  background-color: #fff;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  margin: 50px 0 40px;
}

.sigma_post-details .detail-menu-list .menu {
  padding: 26px 20px;
  border-right: 1px solid var(--thm-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sigma_post-details .detail-menu-list .menu a {
  color: var(--thm-secondary);
  opacity: 0.4;
  font-size: 18px;
  font-weight: 500;
}

.sigma_post-details .detail-menu-list .menu a:hover,
.sigma_post-details .detail-menu-list .menu.nav-item .nav-link.active {
  opacity: 1;
}

.sigma_post-details .spacer {
  height: 50px;
}

/* Style 2 */
.sigma_post-details.style-2 .sigma_post-details-inner,
.sigma_post-details.style-5 .sigma_post-details-inner {
  border: 2px solid var(--thm-border);
  padding: 30px;
}

/* Style 3 */
.sigma_post-details.style-3 {
  text-align: center;
}

.sigma_post-details.style-3 .sigma_post-details-meta-item .sigma_sm,
.sigma_post-details.style-3 .sigma_post-details-categories,
.sigma_post-details.style-3 .sigma_post-details-meta {
  justify-content: center;
}

.sigma_post-details.style-3 .sigma_general-list ul li i {
  display: none;
}

.entry-content > img {
  margin-bottom: 20px;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-thumb{
  width: 100%;
}
.gallery-thumb img{
  max-height: 150px;
  width: 100%;
  object-fit: cover;
}

.sigma_post-details.style-4 .sigma_general-list ul li i {
  background-color: rgba(var(--thm-base-rgb), 0.1);
  color: var(--thm-base);
  box-shadow: none;
}


.sigma_post-details.style-4 hr {
  margin: 25px 0;
  opacity: 0;
}

/* Style 5 */

.sigma_post-details.style-5 .sigma_post-details-meta span {
  margin: 0;
  position: relative;
}

.sigma_post-details.style-5 .sigma_post-details-meta span + span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background-color: var(--thm-b-text);
  opacity: 0.3;
}

.sigma_post-details.style-5 .sigma_post-details-meta span + span {
  padding-left: 30px;
  margin-left: 30px;
}

.sigma_post-details.style-5 .sigma_general-list ul li span {
  color: var(--thm-b-text);
  font-weight: 400;
}
.sigma_post-details.style-5 .sigma_general-list ul li + li {
  margin-top: 10px;
}

.sigma_post-details.style-5 .sigma_post-details-meta-item .sigma_sm li + li {
  margin-left: 10px;
}
.sigma_post-details.style-5 .sigma_post-details-meta-item .sigma_sm li a,
.sigma_post-details.style-6 .sigma_post-details-meta-item .sigma_sm li a {
  background-color: transparent;
  color: var(--thm-b-text);
}
.sigma_post-details.style-5 .sigma_post-details-meta-item .sigma_sm li a:hover,
.sigma_post-details.style-6 .sigma_post-details-meta-item .sigma_sm li a:hover {
  background-color: transparent;
  color: var(--thm-base);
}

.sigma_post-details.style-6 .entry-content img {
  margin-bottom: 25px;
  border-radius: 6px;
}

.sigma_post-details.style-6 .sigma_post-details-meta span {
  margin-bottom: 0;
}
.sigma_post-details.style-6 .sigma_post-details-meta {
  margin-bottom: 12px;
}

.sigma_post-details.style-6 .sigma_post-details-meta-item {
  display: flex;
  align-items: center;
}

.sigma_post-details.style-6 .sigma_post-details-meta-item .sigma_sm li a {
  width: auto;
  height: auto;
}
.sigma_post-details.style-6 .sigma_sm li + li {
  margin-left: 20px;
}

.sigma_social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.sigma_social-icons li + li {
  margin-left: 10px;
}

.sigma_social-icons li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-base);
  background-color: #f4f5f8;
  font-size: 15px;
  border-radius: 50%;
  transition: 0.3s;
}

.sigma_social-icons li a:hover {
  background-color: var(--thm-base);
  color: #fff;
}

.sigma_social-icons.has-border li a {
  background-color: transparent;
  border: 1px solid var(--thm-border);
  color: var(--thm-base);
}

.sigma_social-icons.has-border li a:hover {
  background-color: var(--thm-base);
  border-color: var(--thm-base);
  color: #fff;
}


/*-------------- Contact Form --------------------------- */
.sigma_form .sigma_form-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sigma_form button.btn-block + button.btn-block {
  margin-top: 15px;
}

.sigma_contact-map {
  width: 100%;
  height: 600px;
  position: relative;
}
@media (max-width: 576px) {
  .sigma_contact-map {
    width: 100%;
    height: 400px;
    position: relative;
  }
}

.sigma_contact-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.sigma_contact-wrapper .sigma_contact-blocks {
  padding: 50px 30px;
  border: 2px solid var(--thm-border);
  border-top: 0;
  border-radius: 6px;
}

.sigma_contact-wrapper .sigma_contact-map {
  height: 350px;
}

/* contact block */

.sigma_contact-block + .sigma_contact-block {
  margin-top: 20px;
}

.sigma_contact-block p {
  margin-bottom: 5px;
}

/* contact block style 2 */

.sigma_contact-block.style-2 {
  display: flex;
  align-items: center;
}

.sigma_contact-block.style-2 .icon,
.sigma_contact-block.style-3 .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--thm-base);
  margin-right: 15px;
  font-size: 18px;
}

.sigma_contact-block.style-2 p {
  margin-bottom: 0;
}

/* contact block style 3 */

.sigma_contact-block.style-3 {
  display: flex;
  align-items: flex-start;
}

.sigma_contact-block.style-3 .icon {
  color: var(--thm-base);
  background-color: transparent;
  font-size: 30px;
  margin-right: 10px;
}

/* style 3 */
.sigma_form.style-3 {
  max-width: 545px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .sigma_form.style-3 {
    max-width: 440px;
  }
}
@media (max-width: 991px) {
  .sigma_form.style-3 {
    max-width:none;
  }
}

.sigma_form-image {
  height: 100vh;
}

.sigma_form-image img {
  width: 100%;
  height: 100%;
}

.sigma_contact.extra-padding {
  padding-bottom: 150px;
}
.sigma_contact-map.is-absolute {
  position: relative;
  margin-top: -150px;
  z-index: 1;
}

.sigma_contact-map.is-absolute iframe {
  background-color: #fff;
  padding: 10px;
  height: 400px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
}

/*-------------- Footer Sections --------------------------- */
.sigma_footer {
  background-color: #f7f7f7;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.sigma_footer-logo{
  width: 120px;
}

/* style 1 */
.sigma_footer .sigma_footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
}

.sigma_footer .sigma_footer-links li {
  position: relative;
}

.sigma_footer .sigma_footer-links li + li {
  margin-left: 20px;
}

.sigma_footer .sigma_footer-links li a {
  position: relative;
  color: var(--thm-b-text);
  font-weight: 500;
}

.sigma_footer .sigma_footer-links li a:hover,
.sigma_footer .sigma_footer-copyright p a:hover {
  color: var(--thm-base);
}

.sigma_footer .sigma_footer-copyright {
  margin-top: 25px;
}

.sigma_footer .sigma_footer-copyright p a {
  color: var(--thm-secondary);
  font-weight: 600;
}

.sigma_footer .sigma_footer-bottom {
  border-top: 1px solid var(--thm-border);
  padding: 30px 0;
  margin-top: 30px;
  text-align: center;
}

.sigma_footer form span {
  opacity: 0.5;
  font-size: 14px;
  display: block;
  margin-top: 8px;
}

.sigma_footer .sigma_footer-widget .widget-title {
  margin-bottom: 20px;
}

.sigma_footer .sigma_footer-widget {
  padding-bottom: 50px;
  height: 100%;
}

.sigma_footer .sigma_footer-contact li,
.sigma-call {
  display: flex;
  align-items: center;
}

.sigma_footer .sigma_footer-contact li + li {
  margin-top: 20px;
}

.sigma_footer .sigma_footer-contact li i {
  color: var(--thm-secondary);
  font-size: 22px;
  margin-right: 20px;
}
.sigma_footer .sigma_footer-contact li p,
.sigma-call p {
  margin-bottom: 0;
}

.sigma-call i {
  color: var(--thm-base);
  font-size: 32px;
  margin-right: 18px;
}
.sigma-call h5 {
  color: var(--thm-secondary);
  margin-bottom: 0;
  line-height: 1;
}

/* style 2 */
.sigma_footer .sigma_footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sigma_footer.style-2 .sigma_footer-links,
.sigma_footer.style-2 .sigma_footer-copyright {
  margin: 0;
}

.sigma_footer.style-2 select {
  width: 180px;
}

/* style 3 */
.sigma_footer.style-3 .sigma_footer-links,
.sigma_footer.style-5 .sigma_footer-links,
.sigma_footer.style-7 .sigma_footer-links {
  flex-direction: column;
  align-items: start;
  margin: 0;
}

.sigma_footer.style-3 .sigma_footer-links li + li,
.sigma_footer.style-5 .sigma_footer-links li + li,
.sigma_footer.style-7 .sigma_footer-links li + li {
  margin-left: 0;
  margin-top: 14px;
}

/* style 4 */
.sigma_footer.style-4 .sigma_footer-top {
  border-bottom: 1px solid var(--thm-border);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

/* style 5 */

.sigma_footer.style-5 .sigma_footer-bottom {
  margin-top: 50px;
}

.sigma_footer.style-5.has-newsletter {
  padding-top: 160px;
}

.sigma_footer.style-5 .sigma_footer-bottom .sigma_footer-links,
.sigma_footer.style-6 .sigma_footer-bottom .sigma_footer-links {
  flex-direction: row;
}

.sigma_footer.style-5 .sigma_footer-bottom .sigma_footer-links li + li,
.sigma_footer.style-6 .sigma_footer-bottom .sigma_footer-links li + li {
  margin-left: 15px;
  padding-left: 15px;
  margin-top: 0;
}

.sigma_footer.style-5 .sigma_footer-bottom .sigma_footer-links li + li:before,
.sigma_footer.style-6 .sigma_footer-bottom .sigma_footer-links li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background-color: #999b9f;
}

.sigma_footer.style-5 .sigma_info-wrapper.style-18 {
  background-color: #1c1e22;
}

.sigma_footer.style-5 .sigma_footer-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

/* footer newsletter */
.sigma_footer-newsletter {
  position: relative;
  margin-bottom: -80px;
  z-index: 2;
}

.sigma_footer-newsletter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--thm-base);
}

.sigma_footer-newsletter {
  box-shadow: none;
  padding-left: 0;
}

/*-------------- Progress & Media Sections --------------------------- */
.sigma_counter {
  margin-bottom: 30px;
  position: relative;
}

.sigma_counter span {
  position: relative;
  display: flex;
  color: var(--thm-base);
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
}

.sigma_counter span.plus {
  font-size: 22px;
  margin: 0;
}

.sigma_counter p {
  color: var(--thm-secondary);
  font-weight: 600;
  line-height: 1.3;
}

.sigma_counter i {
  font-size: 40px;
  color: var(--thm-secondary);
  display: block;
  margin-bottom: 20px;
}

.sigma_counter.style-4 {
  text-align: center;
  display: flex;
  justify-content: center;
}

.sigma_counter.style-4 .sigma_counter-inner {
  min-width: 120px;
}

.sigma_counter.style-4 span {
  justify-content: center;
  color: #fff;
  align-items: baseline;
}

.sigma_counter.style-4 p {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-bottom: 0;
}

.sigma_counter.style-4 span.plus {
  font-size: 16px;
}

.sigma_counter.style-4 .sigma_counter-dots {
  display: grid;
  grid-template-columns: 7px 7px;
  grid-template-rows: 7px 7px;
  column-gap: 7px;
  grid-row-gap: 8px;
}

.sigma_counter.style-4 .sigma_counter-dots span {
  width: 7px;
  height: 7px;
  background-color: var(--thm-base);
  line-height: 1;
  margin-bottom: 0;
}

.sigma_counter.style-4 .sigma_counter-dots span:first-child {
  grid-column: 2;
}

/*-------------- To Top Sections --------------------------- */
.sigma_top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.sigma_top i {
  transition: 0.3s;
}

.sigma_top:hover {
  background-color: var(--thm-base);
  color: #fff;
}

.sigma_top:hover i {
  transform: translateY(-3px);
}

.sigma_top.active {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}


/* Responsive */
@media (max-width: 1199px) and (min-width: 991px) {


  .col-lg-5 .sigma_post.sigma_post-list h5 {
    font-size: 20px;
  }

  .col-lg-5 .sigma_post.sigma_post-list .sigma_post-thumb {
    margin-right: 20px;
    width: 180px;
  }

  .sigma_post-details .detail-menu-list .menu a {
    font-size: 16px;
  }

  .sigma_contact-image.style-6 {
    width: calc(100% - 540px);
  }

  .sigma_contact-block.style-3 {
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .widget.widget-follow .sigma_btn {
    padding: 17px 20px;
  }
}

@media (max-width: 991px) {
  /* utility classes */
  h1 {
    font-size: 40px;
  }

  .mb-lg-30 {
    margin-bottom: 30px;
  }

  .col-lg-reverse {
    flex-direction: column-reverse;
  }

  .sigma_general-list ul li span,
  body {
    font-size: 14px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title.centered {
    margin: 0 auto 30px;
  }

  /* header */
  .sigma_header .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sigma_header .aside-toggle {
    display: flex;
  }

  .sigma_header .navbar-nav,
  .sigma_header-bottom,
  .sigma_header .aside-toggle.desktop-toggler {
    display: none;
  }

  .sigma_form.style-3 {
    padding: 0 30px;
  }

  .pagination {
    margin-bottom: 40px;
  }

}

@media (min-width: 991px) {

}

@media (max-width: 767px) {

  h4 {
    font-size: 22px;
  }

  .section-title .title.sm,
  .section-title .title {
    font-size: 36px;
  }

  .section {
    padding: 40px 0;
  }
  .section.section-padding {
    padding: 60px 0 30px;
  }

  .entry-content img {
    width: 100%;
  }

  .sigma_post h5 {
    font-size: 22px;
  }

  .sigma_post.post-format-video .sigma_video-btn {
    width: 80px;
    height: 80px;
  }

  .sigma_post.sigma_post-list {
    display: block;
  }

  .sigma_post.sigma_post-list .sigma_post-thumb {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .sigma_post-details .detail-menu-list .menu {
    border-right: 0;
    border-bottom: 1px solid var(--thm-border);
  }



  /* sigma_form */
  .sigma_form.style-4 {
    margin: 0 20px;
    left: 0;
  }
  /* contact style 5 */

  .sigma_form.style-5 {
    padding: 30px;
  }

  /* footer style 2 */
  .sigma_footer .sigma_footer-top {
    flex-direction: column;
  }

  .sigma_footer .sigma_footer-top > div:not(:first-of-type):not(:last-of-type) {
    margin: 25px 0;
  }
}

@media (max-width: 576px) {
  /* utility classes */
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }

  .section-title.flex-title {
    display: block;
  }

  .search-form-wrapper form {
    width: 100%;
  }

  /* Buttons & inputs */
  button,
  input[type="reset"],
  input[type="button"],
  input[type="submit"],
  .sigma_btn {
    padding: 12px 18px;
  }

  input[type="number"],
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  select,
  .form-control {

    padding: 15px 60px 15px 25px;
  }


  .sigma_post.post-format-video .sigma_video-btn {
    width: 60px;
    height: 60px;
  }

  .sigma_form.style-2 .sigma_buttons button {
    display: block;
    width: 100%;
  }

  .sigma_form.style-2 .sigma_buttons button + button {
    margin-left: 0;
    margin-top: 15px;
  }

  .sigma_footer.style-3 .sigma_footer-widget {
    text-align: center;
  }

  .sigma_footer.style-3 .sigma_footer-links {
    align-items: center;
  }

  .sigma_counter.style-2 {
    border-left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
  }

  /* Post details */
  .sigma_post-details-meta {
    display: block;
  }
  .sigma_post-details-meta span {
    display: block;
    margin: 0 0 10px;
  }
  .sigma_post-details-meta-item + .sigma_post-details-meta-item {
    margin-top: 20px;
  }
  .sigma_post-details.style-2 .sigma_post-details-inner {
    border: 0;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .container {
    /* max-width: none !important; */
  }
}

@media (min-width: 576px) {
  .container {
    /* max-width: none !important; */
  }
}

@media (min-width: 992px) {
  .container {
      max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
  }
}

.container-md{
  max-width: 800px;
}

.mb-30{
  margin-bottom: 30px;
}