@import url(https://fonts.googleapis.com/css?family=Podkova:200,300,400,500,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);

body {
  font-family: Podkova;
  
  font-style: normal;
  line-height: 1.5;
}
.sb-section-title {
  font-style: normal;
  line-height: 0.8;
}
.sb-section-subtitle {
  line-height: 0.8;
}
.sb-text {
  font-style: normal;
  line-height: 1.3;
}
.display-1 {
  font-family: 'Podkova', sans-serif;
  font-size: 3.5rem;
}
.display-1 > .sb-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Podkova', sans-serif;
  font-size: 2rem;
}
.display-2 > .sb-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .sb-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Podkova', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .sb-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Podkova', sans-serif;
  font-size: 1rem;
}
.display-7 > .sb-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  border-radius: 0;
  font-weight: 600;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 2px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn-sm {
  font-weight: 600;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #dda844 !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #dda844;
  border-color: #dda844;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #413f9a;
  border-color: #413f9a;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b38400 !important;
  border-color: #b38400 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1;
  border-color: #3e97d1;
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff;
  background-color: #256e9d;
  border-color: #256e9d;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100;
  border-color: #ff4100;
  color: #ffffff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #b32d00;
  border-color: #b32d00;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a;
  border-color: #36d88a;
  color: #ffffff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #1fa263;
  border-color: #1fa263;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1;
  border-color: #c1c1c1;
  color: #ffffff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #9b9b9b;
  border-color: #9b9b9b;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444;
  border-color: #444444;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #ffffff;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #997100;
  color: #997100;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #dda844;
  border-color: #dda844;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #dda844 !important;
  border-color: #dda844 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #992700;
  color: #992700;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b8d56;
  color: #1b8d56;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #dda844 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #333 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #997100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.novinka {
  float:left;
}
.bb1 {
  //border:2px solid #f1f1f1;
}
.bb1 a {
  color:#000;
}
h3.zel {
 color:#413f9a !important;
 
}
.sb-gallery-filter li.active .btn {
  background-color: #dda844;
  border-color: #dda844;
  color: #ffffff;
}
.sb-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #dda844;
}
.sb-plan-header.bg-primary .sb-plan-subtitle,
.sb-plan-header.bg-primary .sb-plan-price-desc {
  color: #fff2cc;
}
.sb-plan-header.bg-success .sb-plan-subtitle,
.sb-plan-header.bg-success .sb-plan-price-desc {
  color: #e1f9ed;
}
.sb-plan-header.bg-info .sb-plan-subtitle,
.sb-plan-header.bg-info .sb-plan-price-desc {
  color: #ffd9cc;
}
.sb-plan-header.bg-warning .sb-plan-subtitle,
.sb-plan-header.bg-warning .sb-plan-price-desc {
  color: #ffffff;
}
.sb-plan-header.bg-danger .sb-plan-subtitle,
.sb-plan-header.bg-danger .sb-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.sb-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.sb-arrow a {
  color: #ffffff;
}
.sb-arrow:hover {
  opacity: .7;
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Podkova', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .sb-iconfont {
  font-size: 1.6rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.fb-page-ramec {
  margin:0 auto !important;
  text-align:center;
}
.sb-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #dda844;
  border-width: 3px;
}
.pruh {
  padding-top:150px;
  height:15px; 
  /*background-image: url("../../../images/background11.jpg");*/
  background:#dda844;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.sb-section__comments .row {
  justify-content: center;
}
/* Forms */
.sb-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .sb-iconfont {
    font-size: 1rem !important;
  }
}

a.news {
  color:#000;
  text-decoration:underline;
}
a.news:hover {
  color:#dda844;
}
a.butonnews {
    background:#413f9a;; 
    color:#fff; padding:10px;
}
a.butonnews:hover {
  background:#b8ad8e;
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #dda844;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #dda844;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.sb-footer-content li::before,
.sb-footer .sb-contacts li::before {
  background: #dda844;
}
.sb-footer-content li a:hover,
.sb-footer .sb-contacts li a:hover {
  color: #dda844;
}
/* Headers*/
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.scroll-background {
  background-repeat: repeat-x !important;
}
.cid-qwqKgwJGAU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqKgwJGAU .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqKgwJGAU .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqKgwJGAU .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqKgwJGAU .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqKgwJGAU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqKgwJGAU .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqKgwJGAU .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqKgwJGAU .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqKgwJGAU .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqKgwJGAU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqKgwJGAU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqKgwJGAU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqKgwJGAU .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqKgwJGAU .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqKgwJGAU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqKgwJGAU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqKgwJGAU .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqKgwJGAU .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqKgwJGAU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqKgwJGAU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqKgwJGAU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqKgwJGAU .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqKgwJGAU .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqKgwJGAU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqKgwJGAU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqKgwJGAU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqKgwJGAU .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqKgwJGAU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqKgwJGAU .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqKgwJGAU .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqKgwJGAU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqKgwJGAU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqKgwJGAU .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqKgwJGAU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqKgwJGAU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqKgwJGAU .dropdown-item.active,
.cid-qwqKgwJGAU .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqKgwJGAU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqKgwJGAU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqKgwJGAU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqKgwJGAU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqKgwJGAU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqKgwJGAU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqKgwJGAU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqKgwJGAU .navbar-buttons {
  text-align: center;
}
.cid-qwqKgwJGAU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqKgwJGAU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqKgwJGAU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqKgwJGAU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqKgwJGAU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqKgwJGAU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqKgwJGAU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqKgwJGAU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqKgwJGAU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqKgwJGAU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqKgwJGAU .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqKgwJGAU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqKgwJGAU .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqKgwJGAU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqKgwJGAU .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwkmGb6Z4X {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../images/background7.jpg");
}
.cid-qwkmGb6Z4X .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qwkmGb6Z4X .sb-section-title {
  color: #232323;
}
.cid-qwkmGb6Z4X .sb-section-title span {
  color: #dda844;
}
.cid-qwkmGb6Z4X .sb-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-qwkmOnkLpq {
  background: #ffffff;
}
.cid-qwkmOnkLpq .image-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 768px) {
  .cid-qwkmOnkLpq .image-block {
    width: 100% !important;
  }
}
.cid-qwl7Wj56Gn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwl7Wj56Gn .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwl7Wj56Gn .card {
  margin-bottom: 2rem;
}
.cid-qwl7Wj56Gn .card-box {
  padding-top: 2rem;
}
.cid-qwl7Wj56Gn .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwl7Wj56Gn .btn {
  margin: .3rem;
}
.cid-qwl7Wj56Gn .sb-section-title {
  margin: 0;
}
.cid-qwl7Wj56Gn .sb-section-title span {
  color: #dda844;
}
.cid-qwl7Wj56Gn .card-underline,
.cid-qwl7Wj56Gn .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwl7Wj56Gn .card-underline .line,
.cid-qwl7Wj56Gn .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwl7Wj56Gn .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwl7Wj56Gn .card-underline .line {
  background: #dda844;
}
.cid-qwl7Wj56Gn .card-title,
.cid-qwl7Wj56Gn .card-underline {
  text-align: left;
}
.cid-qwl7Wj56Gn .card-box > p,
.cid-qwl7Wj56Gn .sb-section-btn {
  text-align: left;
}
.cid-qwl7Wj56Gn .card-title,
.cid-qwl7Wj56Gn .card-underline SPAN {
  color: #000000;
}
.cid-qwl7XuaHFi {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwl7XuaHFi .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwl7XuaHFi .card {
  margin-bottom: 2rem;
}
.cid-qwl7XuaHFi .card-box {
  padding-top: 2rem;
}
.cid-qwl7XuaHFi .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwl7XuaHFi .btn {
  margin: .3rem;
}
.cid-qwl7XuaHFi .sb-section-title {
  margin: 0;
}
.cid-qwl7XuaHFi .card-underline,
.cid-qwl7XuaHFi .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwl7XuaHFi .card-underline .line,
.cid-qwl7XuaHFi .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwl7XuaHFi .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwl7XuaHFi .card-underline .line {
  background: #dda844;
}
.cid-qwl7XuaHFi .card-box > p,
.cid-qwl7XuaHFi .sb-section-btn {
  text-align: left;
}
.cid-qwl7XuaHFi .card-title,
.cid-qwl7XuaHFi .card-underline {
  text-align: left;
}
.cid-qwknI45hs5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qwknI45hs5 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qwknI45hs5 .video-block {
    width: 100% !important;
  }
  .cid-qwknI45hs5 .btn {
    margin: 0.5rem 0.5rem;
  }
}
.cid-qwknI45hs5 span {
  color: #dda844;
}
.cid-qwknI45hs5 .underline {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.cid-qwknI45hs5 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwknI45hs5 .row {
  margin-top: 1rem;
}
.cid-qwknI45hs5 .sb-section-subtitle {
  margin-bottom: 1rem;
}
.cid-qwknMnbKTT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qwknSmOAk3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwknSmOAk3 a:link {
  text-decoration: none;
}
.cid-qwknSmOAk3 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwknSmOAk3 .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwknSmOAk3 .inner-text {
  line-height: 3em;
}
.cid-qwknSmOAk3 .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwknSmOAk3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwknSmOAk3 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwknSmOAk3 .content-text,
.cid-qwknSmOAk3 .inner-text {
  color: #c1c1c1;
}
.cid-qwpaRB8mz8 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/pexels-photo-457446-1-1920x1277.jpg");
}
.cid-qwpaRB8mz8 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwpaRB8mz8 .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwpaRB8mz8 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwpaRB8mz8 .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwpaRB8mz8 .sb-section-title {
  text-align: center;
}
.cid-qwkv8Dwbvg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwkv8Dwbvg .sb-title {
  text-align: center;
}
.cid-qwkv8Dwbvg .sb-text {
  text-align: center;
}
.cid-qwkv8Dwbvg span {
  color: #dda844;
}
.cid-qwkv9rCAWy {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qwkv9rCAWy .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qwkv9rCAWy .image-block {
    width: 100% !important;
  }
}
.cid-qwkv9F8ynH {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qwkv9F8ynH .sb-text,
.cid-qwkv9F8ynH .sb-section-text {
  letter-spacing: 0.03rem;
}
.cid-qwkv9F8ynH .sb-section-title {
  margin-left: -0.2rem;
  color: #000000;
  text-align: left;
}
.cid-qwkv9F8ynH .sb-section-title span {
  color: #dda844;
}
.cid-qwkv9F8ynH .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qwkv9F8ynH .sb-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qwkv9F8ynH .sb-section-subtitle {
  color: #000000;
}
.cid-qwkv9T0Ilf {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qwkv9T0Ilf .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qwkv9T0Ilf .image-block {
    width: 100% !important;
  }
}
.cid-qwkva6F3jx {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qwkva6F3jx .sb-text,
.cid-qwkva6F3jx .sb-section-text {
  letter-spacing: 0.03rem;
}
.cid-qwkva6F3jx .sb-section-title {
  margin-left: -0.2rem;
  color: #000000;
  text-align: left;
}
.cid-qwkva6F3jx .sb-section-title span {
  color: #dda844;
}
.cid-qwkva6F3jx .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qwkva6F3jx .sb-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qwkva6F3jx .sb-section-subtitle {
  color: #000000;
}
.cid-qwpCJvPjEq {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpCJvPjEq .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpCJvPjEq .card {
  margin-bottom: 2rem;
}
.cid-qwpCJvPjEq .card-box {
  padding-top: 2rem;
}
.cid-qwpCJvPjEq .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpCJvPjEq .btn {
  margin: .3rem;
}
.cid-qwpCJvPjEq .sb-section-title {
  margin: 0;
}
.cid-qwpCJvPjEq .sb-section-title span {
  color: #dda844;
}
.cid-qwpCJvPjEq .card-underline,
.cid-qwpCJvPjEq .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpCJvPjEq .card-underline .line,
.cid-qwpCJvPjEq .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpCJvPjEq .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpCJvPjEq .card-underline .line {
  background: #dda844;
}
.cid-qwpCJvPjEq .card-title,
.cid-qwpCJvPjEq .card-underline {
  text-align: left;
}
.cid-qwpCJvPjEq .card-box > p,
.cid-qwpCJvPjEq .sb-section-btn {
  text-align: left;
}
.cid-qwpCJvPjEq .card-title,
.cid-qwpCJvPjEq .card-underline SPAN {
  color: #000000;
}
.cid-qwpCLlDyO9 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpCLlDyO9 .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpCLlDyO9 .card {
  margin-bottom: 2rem;
}
.cid-qwpCLlDyO9 .card-box {
  padding-top: 2rem;
}
.cid-qwpCLlDyO9 .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpCLlDyO9 .btn {
  margin: .3rem;
}
.cid-qwpCLlDyO9 .sb-section-title {
  margin: 0;
}
.cid-qwpCLlDyO9 .card-underline,
.cid-qwpCLlDyO9 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpCLlDyO9 .card-underline .line,
.cid-qwpCLlDyO9 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpCLlDyO9 .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpCLlDyO9 .card-underline .line {
  background: #dda844;
}
.cid-qwpCLlDyO9 .card-box > p,
.cid-qwpCLlDyO9 .sb-section-btn {
  text-align: left;
}
.cid-qwpCLlDyO9 .card-title,
.cid-qwpCLlDyO9 .card-underline {
  text-align: left;
}
.cid-qwl7PHjxvm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwl7PHjxvm a:link {
  text-decoration: none;
}
.cid-qwl7PHjxvm .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwl7PHjxvm .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwl7PHjxvm .inner-text {
  line-height: 3em;
}
.cid-qwl7PHjxvm .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwl7PHjxvm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwl7PHjxvm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwl7PHjxvm .content-text,
.cid-qwl7PHjxvm .inner-text {
  color: #c1c1c1;
}
.cid-qwqLh5EHL5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLh5EHL5 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLh5EHL5 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLh5EHL5 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLh5EHL5 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLh5EHL5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLh5EHL5 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLh5EHL5 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLh5EHL5 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLh5EHL5 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLh5EHL5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLh5EHL5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLh5EHL5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLh5EHL5 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLh5EHL5 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLh5EHL5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLh5EHL5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLh5EHL5 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLh5EHL5 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLh5EHL5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLh5EHL5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLh5EHL5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLh5EHL5 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLh5EHL5 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLh5EHL5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLh5EHL5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLh5EHL5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLh5EHL5 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLh5EHL5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLh5EHL5 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLh5EHL5 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLh5EHL5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLh5EHL5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLh5EHL5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLh5EHL5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLh5EHL5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLh5EHL5 .dropdown-item.active,
.cid-qwqLh5EHL5 .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLh5EHL5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLh5EHL5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLh5EHL5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLh5EHL5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLh5EHL5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLh5EHL5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLh5EHL5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLh5EHL5 .navbar-buttons {
  text-align: center;
}
.cid-qwqLh5EHL5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLh5EHL5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLh5EHL5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLh5EHL5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLh5EHL5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLh5EHL5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLh5EHL5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLh5EHL5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLh5EHL5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLh5EHL5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLh5EHL5 .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLh5EHL5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLh5EHL5 .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLh5EHL5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLh5EHL5 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwp9TkCSmo {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/pexels-photo-374592-1-1920x1280.jpg");
}
.cid-qwp9TkCSmo .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwp9TkCSmo .sb-section-title span {
  color: #dda844;
}
.cid-qwp9TkCSmo .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwp9TkCSmo .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwp9TkCSmo .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwp9TkCSmo .sb-section-title {
  text-align: center;
}
.cid-qwkw8P8H1r {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwkw8P8H1r .sb-title {
  text-align: center;
}
.cid-qwkw8P8H1r .sb-text {
  text-align: center;
}
.cid-qwkw8P8H1r span {
  color: #dda844;
}
.cid-qwkw9B8yy5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qwkw9B8yy5 .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qwkw9B8yy5 .image-block {
    width: 100% !important;
  }
}
.cid-qwkw9R1VuN {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qwkw9R1VuN .sb-text,
.cid-qwkw9R1VuN .sb-section-text {
  letter-spacing: 0.03rem;
}
.cid-qwkw9R1VuN .sb-section-title {
  margin-left: -0.2rem;
  color: #000000;
  text-align: left;
}
.cid-qwkw9R1VuN .sb-section-title span {
  color: #dda844;
}
.cid-qwkw9R1VuN .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qwkw9R1VuN .sb-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qwkw9R1VuN .sb-section-subtitle {
  color: #000000;
}
.cid-qwkwa4XRTR {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qwkwa4XRTR .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qwkwa4XRTR .image-block {
    width: 100% !important;
  }
}
.cid-qwkwdqoaOB {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qwkwdqoaOB .sb-text,
.cid-qwkwdqoaOB .sb-section-text {
  letter-spacing: 0.03rem;
}
.cid-qwkwdqoaOB .sb-section-title {
  margin-left: -0.2rem;
  color: #000000;
  text-align: left;
}
.cid-qwkwdqoaOB .sb-section-title span {
  color: #dda844;
}
.cid-qwkwdqoaOB .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qwkwdqoaOB .sb-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qwkwdqoaOB .sb-section-subtitle {
  color: #000000;
}
.cid-qwpD22if4F {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpD22if4F .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpD22if4F .card {
  margin-bottom: 2rem;
}
.cid-qwpD22if4F .card-box {
  padding-top: 2rem;
}
.cid-qwpD22if4F .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpD22if4F .btn {
  margin: .3rem;
}
.cid-qwpD22if4F .sb-section-title {
  margin: 0;
}
.cid-qwpD22if4F .sb-section-title span {
  color: #dda844;
}
.cid-qwpD22if4F .card-underline,
.cid-qwpD22if4F .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpD22if4F .card-underline .line,
.cid-qwpD22if4F .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpD22if4F .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpD22if4F .card-underline .line {
  background: #dda844;
}
.cid-qwpD22if4F .card-title,
.cid-qwpD22if4F .card-underline {
  text-align: left;
}
.cid-qwpD22if4F .card-box > p,
.cid-qwpD22if4F .sb-section-btn {
  text-align: left;
}
.cid-qwpD22if4F .card-title,
.cid-qwpD22if4F .card-underline SPAN {
  color: #000000;
}
.cid-qwpD36GeoP {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpD36GeoP .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpD36GeoP .card {
  margin-bottom: 2rem;
}
.cid-qwpD36GeoP .card-box {
  padding-top: 2rem;
}
.cid-qwpD36GeoP .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpD36GeoP .btn {
  margin: .3rem;
}
.cid-qwpD36GeoP .sb-section-title {
  margin: 0;
}
.cid-qwpD36GeoP .card-underline,
.cid-qwpD36GeoP .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpD36GeoP .card-underline .line,
.cid-qwpD36GeoP .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpD36GeoP .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpD36GeoP .card-underline .line {
  background: #dda844;
}
.cid-qwpD36GeoP .card-box > p,
.cid-qwpD36GeoP .sb-section-btn {
  text-align: left;
}
.cid-qwpD36GeoP .card-title,
.cid-qwpD36GeoP .card-underline {
  text-align: left;
}
.cid-qwl7KLFYDa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwl7KLFYDa a:link {
  text-decoration: none;
}
.cid-qwl7KLFYDa .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwl7KLFYDa .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwl7KLFYDa .inner-text {
  line-height: 3em;
}
.cid-qwl7KLFYDa .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwl7KLFYDa .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwl7KLFYDa .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwl7KLFYDa .content-text,
.cid-qwl7KLFYDa .inner-text {
  color: #c1c1c1;
}
.cid-qwqM6deo1L .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qwqM6deo1L .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qwqM6deo1L .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qwqM6deo1L .navbar .navbar-collapse {
  transition: none;
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqM6deo1L .navbar.collapsed.opened {
  text-align: center;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  justify-content: flex-start;
}
.cid-qwqM6deo1L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qwqM6deo1L .navbar.collapsed.opened .navbar-toggler {
  order: -1;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-qwqM6deo1L .navbar.collapsed.opened .navbar-collapse {
  flex-basis: initial;
}
.cid-qwqM6deo1L .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-qwqM6deo1L .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qwqM6deo1L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqM6deo1L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqM6deo1L .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqM6deo1L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqM6deo1L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qwqM6deo1L .navbar.opened {
    text-align: center;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    justify-content: flex-start;
  }
  .cid-qwqM6deo1L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qwqM6deo1L .navbar.opened .navbar-toggler {
    order: -1;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-qwqM6deo1L .navbar.opened .navbar-collapse {
    flex-basis: initial;
  }
  .cid-qwqM6deo1L .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-qwqM6deo1L .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qwqM6deo1L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqM6deo1L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqM6deo1L .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqM6deo1L .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqM6deo1L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqM6deo1L .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-qwqM6deo1L .navbar .navbar-brand {
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-qwqM6deo1L .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qwqM6deo1L .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqM6deo1L .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqM6deo1L .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqM6deo1L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqM6deo1L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqM6deo1L .dropdown-item.active,
.cid-qwqM6deo1L .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqM6deo1L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqM6deo1L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqM6deo1L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqM6deo1L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qwqM6deo1L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qwqM6deo1L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqM6deo1L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqM6deo1L .navbar-buttons {
  text-align: center;
}
.cid-qwqM6deo1L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqM6deo1L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qwqM6deo1L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqM6deo1L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqM6deo1L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqM6deo1L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqM6deo1L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqM6deo1L nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqM6deo1L nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqM6deo1L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqM6deo1L .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qwqM6deo1L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-qwqM6deo1L a.nav-link:focus {
  outline: none;
}
.cid-qwqM6deo1L .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwpbikd4ba {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/pexels-photo-206445-1-1920x1280.jpg");
}
.cid-qwpbikd4ba .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwpbikd4ba .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwpbikd4ba .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwpbikd4ba .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwpbikd4ba .sb-section-title {
  text-align: center;
}
.cid-qwpcXXDYqP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpcXXDYqP .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
}
.cid-qwpcXXDYqP .card {
  margin-bottom: 2rem;
}
.cid-qwpcXXDYqP .card-box {
  padding-top: 2rem;
}
.cid-qwpcXXDYqP .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpcXXDYqP .btn {
  margin: .3rem;
}
.cid-qwpcXXDYqP .sb-section-title {
  margin: 0;
}
.cid-qwpcXXDYqP .card-underline,
.cid-qwpcXXDYqP .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpcXXDYqP .card-underline .line,
.cid-qwpcXXDYqP .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpcXXDYqP .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpcXXDYqP .card-underline .line {
  background: #dda844;
}
.cid-qwpcXCf3FR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-qwpcXCf3FR .sb-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-qwpcXCf3FR .sb-section-title {
  margin: 0;
}
.cid-qwpcXCf3FR .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpcXCf3FR .underline .line {
  width: 3rem;
  height: 2px;
  background: #c1c1c1;
  display: inline-block;
}
.cid-qwpcXCf3FR .card-img {
  text-align: initial;
}
.cid-qwpcXCf3FR .row-item {
  padding-bottom: 2rem;
}
.cid-qwpcXCf3FR .row-item:hover .card-img .sb-iconfont {
  color: #dda844 !important;
}
@media (max-width: 767px) {
  .cid-qwpcXCf3FR .card-img,
  .cid-qwpcXCf3FR .sb-text,
  .cid-qwpcXCf3FR .sb-card-title,
  .cid-qwpcXCf3FR .sb-section-subtitle,
  .cid-qwpcXCf3FR .sb-section-title,
  .cid-qwpcXCf3FR .underline {
    text-align: center !important;
  }
}
.cid-qwpcXCf3FR .sb-text {
  text-align: center;
  color: #ffffff;
}
.cid-qwpcXCf3FR .sb-card-title,
.cid-qwpcXCf3FR .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-qwpcXCf3FR .sb-section-title,
.cid-qwpcXCf3FR .underline {
  color: #ffffff;
}
.cid-qwpcXCf3FR .sb-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-qwpcYno8a8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpcYno8a8 .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwpcYno8a8 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwpcYno8a8 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpcYno8a8 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpcYno8a8 .process-icon,
.cid-qwpcYno8a8 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qwpcYno8a8 .wrapper,
.cid-qwpcYno8a8 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qwpcYno8a8 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.cid-qwpcYno8a8 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qwpcYno8a8 .icon-container a {
  display: inherit;
}
.cid-qwpcYno8a8 .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #dda844 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #000000;
  z-index: 1;
}
.cid-qwpcYno8a8 .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qwpcYno8a8 .icon-main:hover .icon-wrapper {
  background-color: #dda844 !important;
}
.cid-qwpcYno8a8 .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.cid-qwpcYno8a8 .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-qwpcYno8a8 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qwpcYno8a8 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qwpcYno8a8 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qwpcYno8a8 .sb-section-title {
  margin: 0;
}
.cid-qwpcYno8a8 .sb-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qwpcYEuT16 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-qwpcYEuT16 .stats-item:hover span {
  color: #dda844;
}
.cid-qwpcYEuT16 .stats-item {
  padding: 80px 20px;
}
.cid-qwpcYEuT16 .stats-item:nth-child(2n) {
  background-color: #444444;
}
.cid-qwpcYEuT16 .stats-item:nth-child(odd) {
  background-color: #333333;
}
.cid-qwpcYEuT16 .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-qwpcYEuT16 .sb-iconfont {
  font-size: 50px;
}
.cid-qwpcYEuT16 .heading {
  margin: 20px 0;
  color: #232323;
}
.cid-qwpcYEuT16 .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .cid-qwpcYEuT16 .stats-item:first-child {
    background: #444444;
  }
  .cid-qwpcYEuT16 .stats-item:nth-child(2n) {
    background: #333333;
  }
  .cid-qwpcYEuT16 .stats-item:nth-child(0n+3) {
    background: #333333 none repeat scroll 0 center;
  }
  .cid-qwpcYEuT16 .stats-item:last-child {
    background: #444444;
  }
}
.cid-qwpcYEuT16 .counter {
  text-align: center;
  color: #ffffff;
}
.cid-qwpcYEuT16 .sb-card-title,
.cid-qwpcYEuT16 .sb-iconfont {
  text-align: center;
  color: #ffffff;
}
.cid-qwpcZ1gswh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpcZ1gswh .sb-section-title {
  margin: 0;
}
.cid-qwpcZ1gswh .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpcZ1gswh .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpcZ1gswh .media-row {
  display: flex;
  justify-content: center;
}
.cid-qwpcZ1gswh .team-item {
  transition: all .2s;
  margin: 2rem 0;
}
.cid-qwpcZ1gswh .team-item .item-image {
  position: relative !important;
}
.cid-qwpcZ1gswh .team-item .item-image img {
  width: 100%;
}
.cid-qwpcZ1gswh .team-item .item-image::after {
  background: #000000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}
.cid-qwpcZ1gswh .team-item .item-name p {
  margin-bottom: 0;
}
.cid-qwpcZ1gswh .team-item .item-role p {
  margin-bottom: 0;
}
.cid-qwpcZ1gswh .team-item .item-caption {
  background: #444444;
}
.cid-qwpcZ1gswh .item-social {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.cid-qwpcZ1gswh .item-social li {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-qwpcZ1gswh .item-social li a span {
  border-radius: 50%;
  background-color: #444444;
  color: white;
  font-size: 14px;
  width: 3em;
  margin: 2px;
  height: 3em;
  line-height: 3em;
  display: block;
  padding: 0.1rem 0.9rem;
}
.cid-qwpcZ1gswh .item-social li a span:hover {
  background-color: #efefef;
  color: #000000;
}
.cid-qwpcZ1gswh .team-item:hover .item-social > li.social-1 {
  transition-delay: .1s;
  opacity: 1;
  visibility: visible;
}
.cid-qwpcZ1gswh .team-item:hover .item-social > li.social-2 {
  transition-delay: .2s;
  opacity: 1;
  visibility: visible;
}
.cid-qwpcZ1gswh .team-item:hover .item-social > li.social-3 {
  transition-delay: .3s;
  opacity: 1;
  visibility: visible;
}
.cid-qwpcZ1gswh .team-item:hover .item-social > li.social-4 {
  transition-delay: .4s;
  opacity: 1;
  visibility: visible;
}
.cid-qwpcZ1gswh .team-item:hover .item-social > li.social-5 {
  transition-delay: .5s;
  opacity: 1;
  visibility: visible;
}
.cid-qwpcZ1gswh .team-item:hover .item-social > li.social-6 {
  transition-delay: .6s;
  opacity: 1;
  visibility: visible;
}
.cid-qwpcZ1gswh .team-item:hover .item-image::after {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
}
.cid-qwpcZ1gswh .builderCard .item-image::after {
  border-bottom-left-radius: 5rem;
}
.cid-qwpcZ1gswh .item-name {
  color: #ffffff;
}
.cid-qwpcZ1gswh .item-role P {
  color: #ffffff;
}
.cid-qwpcZk7jip {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qwpcZk7jip .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpcZk7jip .photo-split {
  padding: 0;
}
.cid-qwpcZk7jip .photo-split img {
  width: 100%;
}
.cid-qwpcZk7jip .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpcZk7jip .counter-container ul {
  display: -webkit-flex;
  flex-direction: column;
}
.cid-qwpcZk7jip .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qwpcZk7jip .counter-container ul li:before {
  color: #dda844;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-qwpcZk7jip .wrap-block {
  padding: 3rem 3rem;
}
.cid-qwpcZk7jip .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qwpcZk7jip .wrap-block ul li {
  display: inline-block;
}
.cid-qwpcZk7jip .wrap-block ul li span {
  text-align: center;
}
.cid-qwpcZk7jip .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qwpcZk7jip .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpcZk7jip .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpcZk7jip .sb-list,
.cid-qwpcZk7jip .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qwpcZk7jip .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qwpcZk7jip .sb-section-title,
  .cid-qwpcZk7jip .sb-section-subtitle,
  .cid-qwpcZk7jip .sb-text {
    text-align: center !important;
  }
  .cid-qwpcZk7jip .social-list {
    text-align: center !important;
  }
}
.cid-qwpdlY3J9h {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qwpdlY3J9h .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qwpdlY3J9h .video-block {
    width: 100% !important;
  }
  .cid-qwpdlY3J9h .btn {
    margin: 0.5rem 0.5rem;
  }
}
.cid-qwpdlY3J9h .underline {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.cid-qwpdlY3J9h .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpdlY3J9h .row {
  margin-top: 1rem;
}
.cid-qwpdlY3J9h .sb-section-subtitle {
  margin-bottom: 1rem;
}
.cid-qwpdmx7ZQq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-qwpdmx7ZQq .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #232323;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpdmx7ZQq .content-row {
  flex-direction: row-reverse;
}
.cid-qwpdmx7ZQq .photo-split {
  padding: 0;
}
.cid-qwpdmx7ZQq .photo-split img {
  width: 100%;
}
.cid-qwpdmx7ZQq .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpdmx7ZQq .counter-container ul {
  display: -webkit-flex;
  flex-direction: column;
}
.cid-qwpdmx7ZQq .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qwpdmx7ZQq .counter-container ul li:before {
  color: #dda844;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-qwpdmx7ZQq .wrap-block {
  padding: 3rem 3rem;
}
.cid-qwpdmx7ZQq .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qwpdmx7ZQq .wrap-block ul li {
  display: inline-block;
}
.cid-qwpdmx7ZQq .wrap-block ul li span {
  text-align: center;
}
.cid-qwpdmx7ZQq .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qwpdmx7ZQq .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpdmx7ZQq .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpdmx7ZQq .sb-list,
.cid-qwpdmx7ZQq .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qwpdmx7ZQq .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qwpdmx7ZQq .sb-section-title,
  .cid-qwpdmx7ZQq .sb-section-subtitle,
  .cid-qwpdmx7ZQq .sb-text {
    text-align: center !important;
  }
  .cid-qwpdmx7ZQq .social-list {
    text-align: center !important;
  }
}
.cid-qwpDhtRBgx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpDhtRBgx .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDhtRBgx .card {
  margin-bottom: 2rem;
}
.cid-qwpDhtRBgx .card-box {
  padding-top: 2rem;
}
.cid-qwpDhtRBgx .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDhtRBgx .btn {
  margin: .3rem;
}
.cid-qwpDhtRBgx .sb-section-title {
  margin: 0;
}
.cid-qwpDhtRBgx .sb-section-title span {
  color: #dda844;
}
.cid-qwpDhtRBgx .card-underline,
.cid-qwpDhtRBgx .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDhtRBgx .card-underline .line,
.cid-qwpDhtRBgx .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDhtRBgx .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDhtRBgx .card-underline .line {
  background: #dda844;
}
.cid-qwpDhtRBgx .card-title,
.cid-qwpDhtRBgx .card-underline {
  text-align: left;
}
.cid-qwpDhtRBgx .card-box > p,
.cid-qwpDhtRBgx .sb-section-btn {
  text-align: left;
}
.cid-qwpDhtRBgx .card-title,
.cid-qwpDhtRBgx .card-underline SPAN {
  color: #000000;
}
.cid-qwpDi5aJ4M {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpDi5aJ4M .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDi5aJ4M .card {
  margin-bottom: 2rem;
}
.cid-qwpDi5aJ4M .card-box {
  padding-top: 2rem;
}
.cid-qwpDi5aJ4M .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDi5aJ4M .btn {
  margin: .3rem;
}
.cid-qwpDi5aJ4M .sb-section-title {
  margin: 0;
}
.cid-qwpDi5aJ4M .card-underline,
.cid-qwpDi5aJ4M .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDi5aJ4M .card-underline .line,
.cid-qwpDi5aJ4M .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDi5aJ4M .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDi5aJ4M .card-underline .line {
  background: #dda844;
}
.cid-qwpDi5aJ4M .card-box > p,
.cid-qwpDi5aJ4M .sb-section-btn {
  text-align: left;
}
.cid-qwpDi5aJ4M .card-title,
.cid-qwpDi5aJ4M .card-underline {
  text-align: left;
}
.cid-qwpdeqAw3d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwpdeqAw3d a:link {
  text-decoration: none;
}
.cid-qwpdeqAw3d .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpdeqAw3d .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpdeqAw3d .inner-text {
  line-height: 3em;
}
.cid-qwpdeqAw3d .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwpdeqAw3d .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpdeqAw3d .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpdeqAw3d .content-text,
.cid-qwpdeqAw3d .inner-text {
  color: #c1c1c1;
}
.cid-qwqLop3MdT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLop3MdT .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLop3MdT .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLop3MdT .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLop3MdT .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLop3MdT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLop3MdT .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLop3MdT .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLop3MdT .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLop3MdT .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLop3MdT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLop3MdT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLop3MdT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLop3MdT .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLop3MdT .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLop3MdT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLop3MdT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLop3MdT .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLop3MdT .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLop3MdT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLop3MdT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLop3MdT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLop3MdT .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLop3MdT .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLop3MdT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLop3MdT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLop3MdT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLop3MdT .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLop3MdT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLop3MdT .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLop3MdT .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLop3MdT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLop3MdT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLop3MdT .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLop3MdT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLop3MdT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLop3MdT .dropdown-item.active,
.cid-qwqLop3MdT .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLop3MdT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLop3MdT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLop3MdT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLop3MdT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLop3MdT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLop3MdT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLop3MdT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLop3MdT .navbar-buttons {
  text-align: center;
}
.cid-qwqLop3MdT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLop3MdT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLop3MdT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLop3MdT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLop3MdT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLop3MdT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLop3MdT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLop3MdT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLop3MdT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLop3MdT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLop3MdT .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLop3MdT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLop3MdT .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLop3MdT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLop3MdT .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwpn5oPmm0 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/pexels-photo-442559-1-1920x1280.jpg");
}
.cid-qwpn5oPmm0 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwpn5oPmm0 .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwpn5oPmm0 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwpn5oPmm0 .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwpn5oPmm0 .sb-section-title {
  text-align: center;
}
.cid-qwpn32daOq {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpn32daOq .sb-section-title {
  letter-spacing: 0.1em;
  color: #444444;
  text-align: center;
}
.cid-qwpn32daOq .sb-section-title span {
  color: #dda844;
}
.cid-qwpn32daOq .sb-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
  text-align: center;
}
.cid-qwpn32daOq .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  color: #444444;
}
.cid-qwpn32daOq .progressbar-title {
  color: white;
}
.cid-qwpn32daOq .progress {
  width: 100%;
  height: 11px;
  border-radius: 0;
}
.cid-qwpn32daOq .progress_elements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-qwpn32daOq .progress_elements > div {
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-qwpn32daOq .progress-bar {
  height: 11px;
  background-color: #dda844;
}
.cid-qwpn32daOq .title-wrap {
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-qwpn32daOq .progressbar-number {
  display: inline-block;
}
.cid-qwpn32daOq .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-qwpn32daOq .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpn32daOq .progress_value {
  position: relative;
  color: #dda844;
}
.cid-qwpn32daOq progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpn32daOq progress::-webkit-progress-value {
  background: #dda844;
}
.cid-qwpn32daOq progress[value]::-moz-progress-bar {
  background: #dda844;
}
.cid-qwpn32daOq progress::-ms-fill {
  background: #dda844;
}
.cid-qwpn32daOq .progress1 .progressbar-number:before {
  content: '100';
}
.cid-qwpn32daOq .progress2 .progressbar-number:before {
  content: '95';
}
.cid-qwpn32daOq .progress3 .progressbar-number:before {
  content: '89';
}
.cid-qwpn32daOq .progress4 .progressbar-number:before {
  content: '28';
}
.cid-qwpn32daOq .progress5 .progressbar-number:before {
  content: '10';
}
.cid-qwpn32daOq .progress-bar-1 {
  width: 100%;
}
.cid-qwpn32daOq .progress-bar-2 {
  width: 95%;
}
.cid-qwpn32daOq .progress-bar-3 {
  width: 89%;
}
.cid-qwpn32daOq .progress-bar-4 {
  width: 28%;
}
.cid-qwpn32daOq .progress-bar-5 {
  width: 10%;
}
.cid-qwpn3xi2ad {
  background-image: url("../../images/background7.jpg");
}
.cid-qwpn3xi2ad .sb-section {
  padding: 0;
}
.cid-qwpn3xi2ad .first-col,
.cid-qwpn3xi2ad .second-col {
  padding: 0 5%;
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-qwpn3xi2ad .second-col {
  background-color: #000000;
}
.cid-qwpn3xi2ad .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpn3xi2ad .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpn3xi2ad .social-media {
  display: -webkit-flex;
  padding-left: 0;
}
.cid-qwpn3xi2ad .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpn3xi2ad .social-media ul li {
  padding-right: 0.6rem;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-qwpn3xi2ad .about-content {
    padding: 0 1rem;
  }
  .cid-qwpn3xi2ad .typed-text {
    text-align: center;
  }
  .cid-qwpn3xi2ad .second-col {
    padding: 1rem;
  }
  .cid-qwpn3xi2ad .social-media {
    justify-content: center;
    padding: 0 1rem;
  }
  .cid-qwpn3xi2ad .social-media ul li {
    padding: 0 0.3rem;
  }
}
.cid-qwpn3xi2ad .sb-section-title {
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.cid-qwpn3xi2ad .sb-section-title span {
  color: #dda844;
}
.cid-qwpn3xi2ad .sb-section-subtitle {
  color: #ffffff;
  letter-spacing: 0.03em;
}
.cid-qwpn3xi2ad .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cid-qwpn3xi2ad .progressbar-title {
  color: white;
}
.cid-qwpn3xi2ad .progress {
  width: 100%;
  height: 5px;
  border-radius: 0;
}
.cid-qwpn3xi2ad .progress_elements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-qwpn3xi2ad .progress_elements > div {
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-qwpn3xi2ad .progress-bar {
  height: 5px;
  background-color: #dda844;
}
.cid-qwpn3xi2ad .title-wrap {
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-qwpn3xi2ad .progressbar-number {
  display: inline-block;
}
.cid-qwpn3xi2ad .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-qwpn3xi2ad .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpn3xi2ad .progress_value {
  position: relative;
  color: #dda844;
}
.cid-qwpn3xi2ad progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpn3xi2ad progress::-webkit-progress-value {
  background: #dda844;
}
.cid-qwpn3xi2ad progress[value]::-moz-progress-bar {
  background: #dda844;
}
.cid-qwpn3xi2ad progress::-ms-fill {
  background: #dda844;
}
.cid-qwpn3xi2ad .progress1 .progressbar-number:before {
  content: '100';
}
.cid-qwpn3xi2ad .progress2 .progressbar-number:before {
  content: '63';
}
.cid-qwpn3xi2ad .progress3 .progressbar-number:before {
  content: '41';
}
.cid-qwpn3xi2ad .progress4 .progressbar-number:before {
  content: '28';
}
.cid-qwpn3xi2ad .progress5 .progressbar-number:before {
  content: '10';
}
.cid-qwpn3xi2ad .progress-bar-1 {
  width: 100%;
}
.cid-qwpn3xi2ad .progress-bar-2 {
  width: 63%;
}
.cid-qwpn3xi2ad .progress-bar-3 {
  width: 41%;
}
.cid-qwpn3xi2ad .progress-bar-4 {
  width: 28%;
}
.cid-qwpn3xi2ad .progress-bar-5 {
  width: 10%;
}
.cid-qwpnmtj1c7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-qwpnmtj1c7 .sb-section-title {
  letter-spacing: 0.1em;
}
.cid-qwpnmtj1c7 .sb-section-title span {
  color: #dda844;
}
.cid-qwpnmtj1c7 .sb-section-subtitle {
  color: #ffffff;
  letter-spacing: 0.03em;
}
.cid-qwpnmtj1c7 .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cid-qwpnmtj1c7 .progressbar-title {
  color: white;
}
.cid-qwpnmtj1c7 .progress {
  width: 100%;
  height: 5px;
  border-radius: 0;
}
.cid-qwpnmtj1c7 .progress_elements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-qwpnmtj1c7 .progress_elements > div {
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-qwpnmtj1c7 .progress-bar {
  height: 5px;
  background-color: #dda844;
}
.cid-qwpnmtj1c7 .title-wrap {
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-qwpnmtj1c7 .progressbar-number {
  display: inline-block;
}
.cid-qwpnmtj1c7 .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-qwpnmtj1c7 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpnmtj1c7 .progress_value {
  position: relative;
  color: #dda844;
}
.cid-qwpnmtj1c7 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpnmtj1c7 progress::-webkit-progress-value {
  background: #dda844;
}
.cid-qwpnmtj1c7 progress[value]::-moz-progress-bar {
  background: #dda844;
}
.cid-qwpnmtj1c7 progress::-ms-fill {
  background: #dda844;
}
.cid-qwpnmtj1c7 .progress1 .progressbar-number:before {
  content: '100';
}
.cid-qwpnmtj1c7 .progress2 .progressbar-number:before {
  content: '63';
}
.cid-qwpnmtj1c7 .progress3 .progressbar-number:before {
  content: '41';
}
.cid-qwpnmtj1c7 .progress4 .progressbar-number:before {
  content: '28';
}
.cid-qwpnmtj1c7 .progress5 .progressbar-number:before {
  content: '10';
}
.cid-qwpnmtj1c7 .progress-bar-1 {
  width: 100%;
}
.cid-qwpnmtj1c7 .progress-bar-2 {
  width: 63%;
}
.cid-qwpnmtj1c7 .progress-bar-3 {
  width: 41%;
}
.cid-qwpnmtj1c7 .progress-bar-4 {
  width: 28%;
}
.cid-qwpnmtj1c7 .progress-bar-5 {
  width: 10%;
}
.cid-qwpnmWhmNH {
  background-image: url("../../images/pexels-photo-457446-1-1920x1277.jpg");
}
.cid-qwpnmWhmNH .sb-section {
  padding: 0;
}
.cid-qwpnmWhmNH .first-col,
.cid-qwpnmWhmNH .second-col {
  padding: 0 5%;
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-qwpnmWhmNH .second-col {
  background-color: #444444;
}
.cid-qwpnmWhmNH .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #444444;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpnmWhmNH .icon-transition span:hover {
  background-color: #efefef;
}
.cid-qwpnmWhmNH .social-media {
  display: -webkit-flex;
  padding-left: 0;
}
.cid-qwpnmWhmNH .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpnmWhmNH .social-media ul li {
  padding-right: 0.6rem;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-qwpnmWhmNH .about-content {
    padding: 0 1rem;
  }
  .cid-qwpnmWhmNH .typed-text {
    text-align: center;
  }
  .cid-qwpnmWhmNH .second-col {
    padding: 1rem;
  }
  .cid-qwpnmWhmNH .social-media {
    justify-content: center;
    padding: 0 1rem;
  }
  .cid-qwpnmWhmNH .social-media ul li {
    padding: 0 0.3rem;
  }
}
.cid-qwpnmWhmNH .sb-section-title {
  letter-spacing: 0.1em;
  margin-bottom: 0;
  text-align: center;
}
.cid-qwpnmWhmNH .sb-section-title span {
  color: #dda844;
}
.cid-qwpnmWhmNH .sb-section-subtitle {
  color: #cccccc;
  letter-spacing: 0.03em;
}
.cid-qwpnmWhmNH .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  color: #efefef;
}
.cid-qwpnmWhmNH .progressbar-title {
  color: white;
}
.cid-qwpnmWhmNH .progress {
  width: 100%;
  height: 25px;
  border-radius: 0;
}
.cid-qwpnmWhmNH .progress_elements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-qwpnmWhmNH .progress_elements > div {
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-qwpnmWhmNH .progress-bar {
  height: 25px;
  background-color: #c1c1c1;
}
.cid-qwpnmWhmNH .title-wrap {
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-qwpnmWhmNH .progressbar-number {
  display: inline-block;
}
.cid-qwpnmWhmNH .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-qwpnmWhmNH .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpnmWhmNH .progress_value {
  position: relative;
  color: #c1c1c1;
}
.cid-qwpnmWhmNH progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qwpnmWhmNH progress::-webkit-progress-value {
  background: #c1c1c1;
}
.cid-qwpnmWhmNH progress[value]::-moz-progress-bar {
  background: #c1c1c1;
}
.cid-qwpnmWhmNH progress::-ms-fill {
  background: #c1c1c1;
}
.cid-qwpnmWhmNH .progress1 .progressbar-number:before {
  content: '79';
}
.cid-qwpnmWhmNH .progress2 .progressbar-number:before {
  content: '45';
}
.cid-qwpnmWhmNH .progress3 .progressbar-number:before {
  content: '100';
}
.cid-qwpnmWhmNH .progress4 .progressbar-number:before {
  content: '71';
}
.cid-qwpnmWhmNH .progress5 .progressbar-number:before {
  content: '10';
}
.cid-qwpnmWhmNH .progress-bar-1 {
  width: 79%;
}
.cid-qwpnmWhmNH .progress-bar-2 {
  width: 45%;
}
.cid-qwpnmWhmNH .progress-bar-3 {
  width: 100%;
}
.cid-qwpnmWhmNH .progress-bar-4 {
  width: 71%;
}
.cid-qwpnmWhmNH .progress-bar-5 {
  width: 10%;
}
.cid-qwpnmWhmNH H3 {
  text-align: center;
}
.cid-qwpnmWhmNH .sb-text,
.cid-qwpnmWhmNH .sb-section-btn {
  text-align: center;
}
.cid-qwpnmWhmNH .sb-section-title SPAN {
  color: #dda844;
}
.cid-qwpDnRaYmt {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpDnRaYmt .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDnRaYmt .card {
  margin-bottom: 2rem;
}
.cid-qwpDnRaYmt .card-box {
  padding-top: 2rem;
}
.cid-qwpDnRaYmt .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDnRaYmt .btn {
  margin: .3rem;
}
.cid-qwpDnRaYmt .sb-section-title {
  margin: 0;
}
.cid-qwpDnRaYmt .sb-section-title span {
  color: #dda844;
}
.cid-qwpDnRaYmt .card-underline,
.cid-qwpDnRaYmt .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDnRaYmt .card-underline .line,
.cid-qwpDnRaYmt .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDnRaYmt .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDnRaYmt .card-underline .line {
  background: #dda844;
}
.cid-qwpDnRaYmt .card-title,
.cid-qwpDnRaYmt .card-underline {
  text-align: left;
}
.cid-qwpDnRaYmt .card-box > p,
.cid-qwpDnRaYmt .sb-section-btn {
  text-align: left;
}
.cid-qwpDnRaYmt .card-title,
.cid-qwpDnRaYmt .card-underline SPAN {
  color: #000000;
}
.cid-qwpDovWIdm {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpDovWIdm .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDovWIdm .card {
  margin-bottom: 2rem;
}
.cid-qwpDovWIdm .card-box {
  padding-top: 2rem;
}
.cid-qwpDovWIdm .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDovWIdm .btn {
  margin: .3rem;
}
.cid-qwpDovWIdm .sb-section-title {
  margin: 0;
}
.cid-qwpDovWIdm .card-underline,
.cid-qwpDovWIdm .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDovWIdm .card-underline .line,
.cid-qwpDovWIdm .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDovWIdm .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDovWIdm .card-underline .line {
  background: #dda844;
}
.cid-qwpDovWIdm .card-box > p,
.cid-qwpDovWIdm .sb-section-btn {
  text-align: left;
}
.cid-qwpDovWIdm .card-title,
.cid-qwpDovWIdm .card-underline {
  text-align: left;
}
.cid-qwps79JTWU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwps79JTWU a:link {
  text-decoration: none;
}
.cid-qwps79JTWU .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwps79JTWU .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwps79JTWU .inner-text {
  line-height: 3em;
}
.cid-qwps79JTWU .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwps79JTWU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwps79JTWU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwps79JTWU .content-text,
.cid-qwps79JTWU .inner-text {
  color: #c1c1c1;
}
.cid-qwqLq2D9wj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLq2D9wj .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLq2D9wj .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLq2D9wj .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLq2D9wj .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLq2D9wj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLq2D9wj .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLq2D9wj .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLq2D9wj .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLq2D9wj .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLq2D9wj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLq2D9wj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLq2D9wj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLq2D9wj .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLq2D9wj .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLq2D9wj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLq2D9wj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLq2D9wj .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLq2D9wj .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLq2D9wj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLq2D9wj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLq2D9wj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLq2D9wj .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLq2D9wj .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLq2D9wj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLq2D9wj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLq2D9wj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLq2D9wj .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLq2D9wj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLq2D9wj .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLq2D9wj .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLq2D9wj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLq2D9wj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLq2D9wj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLq2D9wj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLq2D9wj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLq2D9wj .dropdown-item.active,
.cid-qwqLq2D9wj .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLq2D9wj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLq2D9wj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLq2D9wj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLq2D9wj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLq2D9wj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLq2D9wj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLq2D9wj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLq2D9wj .navbar-buttons {
  text-align: center;
}
.cid-qwqLq2D9wj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLq2D9wj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLq2D9wj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLq2D9wj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLq2D9wj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLq2D9wj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLq2D9wj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLq2D9wj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLq2D9wj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLq2D9wj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLq2D9wj .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLq2D9wj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLq2D9wj .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLq2D9wj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLq2D9wj .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwpruimvcw {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/pexels-photo-373289-1-1920x1280.jpg");
}
.cid-qwpruimvcw .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwpruimvcw .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwpruimvcw .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwpruimvcw .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwpruimvcw .sb-section-title {
  text-align: center;
}
.cid-qwprXlYIsG .modal-body .close {
  background: #1b1b1b;
}
.cid-qwprXlYIsG .modal-body .close span {
  font-style: normal;
}
.cid-qwprXlYIsG .carousel-inner > .active,
.cid-qwprXlYIsG .carousel-inner > .next,
.cid-qwprXlYIsG .carousel-inner > .prev {
  display: table;
}
.cid-qwprXlYIsG .carousel-control .icon-next,
.cid-qwprXlYIsG .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qwprXlYIsG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qwprXlYIsG .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qwprXlYIsG .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qwprXlYIsG .boxed-slider > div {
  position: relative;
}
.cid-qwprXlYIsG .container img {
  width: 100%;
}
.cid-qwprXlYIsG .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qwprXlYIsG .sb-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qwprXlYIsG .sb-table-cell {
  padding: 0;
}
.cid-qwprXlYIsG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qwprXlYIsG .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qwprXlYIsG .sb-overlay {
  z-index: 1;
}
.cid-qwprXlYIsG .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qwprXlYIsG .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qwprXlYIsG .carousel-item .container {
    width: 100%;
  }
}
.cid-qwprXlYIsG .carousel-item-next.carousel-item-left,
.cid-qwprXlYIsG .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qwprXlYIsG .active.carousel-item-right,
.cid-qwprXlYIsG .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qwprXlYIsG .active.carousel-item-left,
.cid-qwprXlYIsG .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qwprXlYIsG .sb-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
}
.cid-qwprXlYIsG .sb-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-qwprXlYIsG .sb-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-qwprXlYIsG .sb-slider .carousel-control .sb-iconfont {
  font-size: 2rem;
}
.cid-qwprXlYIsG .sb-slider .carousel-control:hover {
  background-color: #dda844;
}
@media (max-width: 767px) {
  .cid-qwprXlYIsG .sb-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qwprXlYIsG .sb-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qwprXlYIsG .sb-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qwprXlYIsG .sb-slider .carousel-indicators li.active,
.cid-qwprXlYIsG .sb-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #dda844;
}
.cid-qwprXlYIsG .sb-slider .carousel-indicators li::after,
.cid-qwprXlYIsG .sb-slider .carousel-indicators li::before {
  content: none;
}
.cid-qwprXlYIsG .sb-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qwprXlYIsG .sb-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qwprXlYIsG .sb-slider > .container img {
  width: 100%;
}
.cid-qwprXlYIsG .sb-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qwprXlYIsG .sb-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qwprXlYIsG .sb-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qwprXlYIsG .sb-slider .sb-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qwprXlYIsG .sb-slider .sb-table-cell {
  padding: 0;
}
.cid-qwprXlYIsG .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-qwprXlYIsG .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qwprXlYIsG .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qwprXlYIsG .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qwprXlYIsG .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qwprXlYIsG .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qwprXlYIsG .sb-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qwprXlYIsG .sb-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qwprXMOA8P {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwprXMOA8P .sb-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qwprXMOA8P .sb-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qwprXMOA8P .sb-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qwprXMOA8P .sb-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qwprXMOA8P .sb-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qwprXMOA8P .sb-gallery-item > div:hover::before {
  opacity: .5;
}
.cid-qwprXMOA8P .sb-gallery-filter-all > a {
  padding: 30px;
  color: #444444;
}
.cid-qwprXMOA8P .sb-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-qwprXMOA8P .sb-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-qwprXMOA8P .sb-gallery-filter .btn:hover {
  background: transparent;
  color: #dda844;
}
.cid-qwprXMOA8P .sb-gallery-filter ul {
  display: block;
}
.cid-qwprXMOA8P .sb-gallery-filter ul li {
  position: relative;
}
.cid-qwprXMOA8P .sb-gallery-filter li.active .btn {
  color: #dda844;
  background: transparent;
}
.cid-qwprXMOA8P .sb-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #dda844;
}
.cid-qwprXMOA8P .sb-gallery-filter li.active::after,
.cid-qwprXMOA8P .sb-gallery-filter li:hover::after {
  transform: translateX(-50%) scale(1);
  background: #dda844;
}
.cid-qwprXMOA8P .sb-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-qwprXMOA8P .sb-gallery-item > div:hover .sb-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-qwprXMOA8P .sb-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-qwprXMOA8P .icon-focus:before {
  content: '\e95e';
}
.cid-qwprXMOA8P .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-qwprXMOA8P .sb-section-title {
  margin: 0;
}
.cid-qwprXMOA8P .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwprXMOA8P .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwprY4MBhh {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwprY4MBhh .sb-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qwprY4MBhh .sb-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qwprY4MBhh .sb-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qwprY4MBhh .sb-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qwprY4MBhh .sb-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qwprY4MBhh .sb-gallery-item > div:hover::before {
  opacity: .6;
}
.cid-qwprY4MBhh .sb-gallery-filter-all > a {
  padding: 30px;
  color: #444444;
}
.cid-qwprY4MBhh .sb-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-qwprY4MBhh .sb-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-qwprY4MBhh .sb-gallery-filter .btn:hover {
  background: transparent;
  color: #dda844;
}
.cid-qwprY4MBhh .sb-gallery-filter ul {
  display: block;
}
.cid-qwprY4MBhh .sb-gallery-filter ul li {
  position: relative;
}
.cid-qwprY4MBhh .sb-gallery-filter li.active .btn {
  color: #dda844;
  background: transparent;
}
.cid-qwprY4MBhh .sb-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #dda844;
}
.cid-qwprY4MBhh .sb-gallery-filter li.active::after,
.cid-qwprY4MBhh .sb-gallery-filter li:hover::after {
  transform: translateX(-50%) scale(1);
  background: #dda844;
}
.cid-qwprY4MBhh .sb-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qwprY4MBhh .sb-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-qwprY4MBhh .icon-focus:before {
  content: '\e95e';
}
.cid-qwprY4MBhh .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-qwprY4MBhh .sb-section-title {
  margin: 0;
}
.cid-qwprY4MBhh .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwprY4MBhh .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwprYogtKu {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwprYogtKu .sb-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qwprYogtKu .sb-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qwprYogtKu .sb-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qwprYogtKu .sb-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qwprYogtKu .sb-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qwprYogtKu .sb-gallery-item > div:hover::before {
  opacity: .5;
}
.cid-qwprYogtKu .sb-gallery-filter-all > a {
  padding: 30px;
  color: #444444;
}
.cid-qwprYogtKu .sb-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-qwprYogtKu .sb-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-qwprYogtKu .sb-gallery-filter .btn:hover {
  background: transparent;
  color: #dda844;
}
.cid-qwprYogtKu .sb-gallery-filter ul {
  display: block;
}
.cid-qwprYogtKu .sb-gallery-filter ul li {
  position: relative;
}
.cid-qwprYogtKu .sb-gallery-filter li.active .btn {
  color: #dda844;
  background: transparent;
}
.cid-qwprYogtKu .sb-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #dda844;
}
.cid-qwprYogtKu .sb-gallery-filter li.active::after,
.cid-qwprYogtKu .sb-gallery-filter li:hover::after {
  transform: translateX(-50%) scale(1);
  background: #dda844;
}
.cid-qwprYogtKu .sb-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-qwprYogtKu .sb-gallery-item > div:hover .sb-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-qwprYogtKu .sb-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-qwprYogtKu .icon-focus:before {
  content: '\e95e';
}
.cid-qwprYogtKu .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-qwprYogtKu .sb-section-title {
  margin: 0;
}
.cid-qwprYogtKu .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwprYogtKu .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-qwpDsWnubv {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpDsWnubv .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDsWnubv .card {
  margin-bottom: 2rem;
}
.cid-qwpDsWnubv .card-box {
  padding-top: 2rem;
}
.cid-qwpDsWnubv .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDsWnubv .btn {
  margin: .3rem;
}
.cid-qwpDsWnubv .sb-section-title {
  margin: 0;
}
.cid-qwpDsWnubv .sb-section-title span {
  color: #dda844;
}
.cid-qwpDsWnubv .card-underline,
.cid-qwpDsWnubv .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDsWnubv .card-underline .line,
.cid-qwpDsWnubv .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDsWnubv .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDsWnubv .card-underline .line {
  background: #dda844;
}
.cid-qwpDsWnubv .card-title,
.cid-qwpDsWnubv .card-underline {
  text-align: left;
}
.cid-qwpDsWnubv .card-box > p,
.cid-qwpDsWnubv .sb-section-btn {
  text-align: left;
}
.cid-qwpDsWnubv .card-title,
.cid-qwpDsWnubv .card-underline SPAN {
  color: #000000;
}
.cid-qwpDtILJjA {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpDtILJjA .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDtILJjA .card {
  margin-bottom: 2rem;
}
.cid-qwpDtILJjA .card-box {
  padding-top: 2rem;
}
.cid-qwpDtILJjA .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDtILJjA .btn {
  margin: .3rem;
}
.cid-qwpDtILJjA .sb-section-title {
  margin: 0;
}
.cid-qwpDtILJjA .card-underline,
.cid-qwpDtILJjA .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDtILJjA .card-underline .line,
.cid-qwpDtILJjA .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDtILJjA .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDtILJjA .card-underline .line {
  background: #dda844;
}
.cid-qwpDtILJjA .card-box > p,
.cid-qwpDtILJjA .sb-section-btn {
  text-align: left;
}
.cid-qwpDtILJjA .card-title,
.cid-qwpDtILJjA .card-underline {
  text-align: left;
}
.cid-qwpsrcQOSR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwpsrcQOSR a:link {
  text-decoration: none;
}
.cid-qwpsrcQOSR .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpsrcQOSR .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpsrcQOSR .inner-text {
  line-height: 3em;
}
.cid-qwpsrcQOSR .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwpsrcQOSR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpsrcQOSR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpsrcQOSR .content-text,
.cid-qwpsrcQOSR .inner-text {
  color: #c1c1c1;
}
.cid-qwqLsudVP8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLsudVP8 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLsudVP8 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLsudVP8 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLsudVP8 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLsudVP8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLsudVP8 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLsudVP8 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLsudVP8 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLsudVP8 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLsudVP8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLsudVP8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLsudVP8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLsudVP8 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLsudVP8 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLsudVP8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLsudVP8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLsudVP8 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLsudVP8 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLsudVP8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLsudVP8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLsudVP8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLsudVP8 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLsudVP8 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLsudVP8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLsudVP8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLsudVP8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLsudVP8 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLsudVP8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLsudVP8 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLsudVP8 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLsudVP8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLsudVP8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLsudVP8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLsudVP8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLsudVP8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLsudVP8 .dropdown-item.active,
.cid-qwqLsudVP8 .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLsudVP8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLsudVP8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLsudVP8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLsudVP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLsudVP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLsudVP8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLsudVP8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLsudVP8 .navbar-buttons {
  text-align: center;
}
.cid-qwqLsudVP8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLsudVP8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLsudVP8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLsudVP8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLsudVP8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLsudVP8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLsudVP8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLsudVP8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLsudVP8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLsudVP8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLsudVP8 .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLsudVP8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLsudVP8 .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLsudVP8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLsudVP8 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwptjYmtoF {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/pexels-photo-515166-1-1920x1281.jpg");
}
.cid-qwptjYmtoF .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwptjYmtoF .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwptjYmtoF .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwptjYmtoF .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwptjYmtoF .sb-section-title {
  text-align: center;
}
.cid-qwptmnx4dJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/05.jpg");
}
.cid-qwptmnx4dJ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-qwptmnx4dJ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-qwptmnx4dJ .carousel-item .wrap-img {
  text-align: center;
}
.cid-qwptmnx4dJ .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-qwptmnx4dJ .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #444444;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 26%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-qwptmnx4dJ .carousel-control.carousel-control-prev {
  left: 29px;
}
.cid-qwptmnx4dJ .carousel-control.carousel-control-prev:hover {
  left: 15px;
}
.cid-qwptmnx4dJ .carousel-control.carousel-control-next {
  right: 29px;
}
.cid-qwptmnx4dJ .carousel-control.carousel-control-next:hover {
  right: 15px;
}
.cid-qwptmnx4dJ .carousel-control .sb-iconfont {
  font-size: 1rem;
}
.cid-qwptmnx4dJ .carousel-control:hover {
  background-color: #dda844;
}
@media (max-width: 767px) {
  .cid-qwptmnx4dJ .carousel-control {
    display: none;
  }
  .cid-qwptmnx4dJ .sb-section-title {
    padding-bottom: 0;
  }
  .cid-qwptmnx4dJ .slider-clients {
    padding: 2rem 1rem;
  }
}
.cid-qwptmnx4dJ .cloneditem-1,
.cid-qwptmnx4dJ .cloneditem-2,
.cid-qwptmnx4dJ .cloneditem-3,
.cid-qwptmnx4dJ .cloneditem-4,
.cid-qwptmnx4dJ .cloneditem-5 {
  display: none;
}
.cid-qwptmnx4dJ .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-qwptmnx4dJ .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-qwptmnx4dJ .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides2 .cloneditem-1,
  .cid-qwptmnx4dJ .carousel-inner.slides2 .cloneditem-2,
  .cid-qwptmnx4dJ .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-qwptmnx4dJ .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides3 .cloneditem-1,
  .cid-qwptmnx4dJ .carousel-inner.slides3 .cloneditem-2,
  .cid-qwptmnx4dJ .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-qwptmnx4dJ .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides4 .cloneditem-1,
  .cid-qwptmnx4dJ .carousel-inner.slides4 .cloneditem-2,
  .cid-qwptmnx4dJ .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-qwptmnx4dJ .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides5 .cloneditem-1,
  .cid-qwptmnx4dJ .carousel-inner.slides5 .cloneditem-2,
  .cid-qwptmnx4dJ .carousel-inner.slides5 .cloneditem-3,
  .cid-qwptmnx4dJ .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-qwptmnx4dJ .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-qwptmnx4dJ .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-qwptmnx4dJ .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-qwptmnx4dJ .carousel-inner.slides6 .cloneditem-1,
  .cid-qwptmnx4dJ .carousel-inner.slides6 .cloneditem-2,
  .cid-qwptmnx4dJ .carousel-inner.slides6 .cloneditem-3,
  .cid-qwptmnx4dJ .carousel-inner.slides6 .cloneditem-4,
  .cid-qwptmnx4dJ .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-qwptmnx4dJ .sb-section-title {
  margin: 0;
}
.cid-qwptmnx4dJ .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwptmnx4dJ .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwptmnx4dJ .slider-clients {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qwptmF34gi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../images/background7.jpg");
}
.cid-qwptmF34gi .sb-section-title {
  margin: 0;
}
.cid-qwptmF34gi .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwptmF34gi .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffffff;
  display: inline-block;
}
.cid-qwptmF34gi .slider-testimonials {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qwptmF34gi .carousel-item {
  justify-content: center;
}
.cid-qwptmF34gi .carousel-item.active,
.cid-qwptmF34gi .carousel-item-next,
.cid-qwptmF34gi .carousel-item-prev {
  display: flex;
}
.cid-qwptmF34gi .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #000000;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 46%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-qwptmF34gi .carousel-control.carousel-control-prev {
  left: -25px;
}
.cid-qwptmF34gi .carousel-control.carousel-control-prev:hover {
  left: -30px;
}
.cid-qwptmF34gi .carousel-control.carousel-control-next {
  right: -25px;
}
.cid-qwptmF34gi .carousel-control.carousel-control-next:hover {
  right: -30px;
}
.cid-qwptmF34gi .carousel-control .sb-iconfont {
  font-size: 1rem;
}
.cid-qwptmF34gi .carousel-control:hover {
  background-color: #dda844;
}
.cid-qwptmF34gi .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-qwptmF34gi .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 767px) {
  .cid-qwptmF34gi .carousel-control-prev,
  .cid-qwptmF34gi .carousel-control-next {
    display: none;
  }
  .cid-qwptmF34gi .sb-section-title {
    padding-bottom: 0;
  }
  .cid-qwptmF34gi .slider-testimonials {
    padding: 2rem 1rem;
  }
}
@media (max-width: 230px) {
  .cid-qwptmF34gi .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-qwptmF34gi .carousel-row:hover .carousel-control {
  visibility: visible;
}
.cid-qwptmF34gi .user_name,
.cid-qwptmF34gi .user_desk {
  text-align: right;
}
.cid-qwpDxqyrOa {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpDxqyrOa .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDxqyrOa .card {
  margin-bottom: 2rem;
}
.cid-qwpDxqyrOa .card-box {
  padding-top: 2rem;
}
.cid-qwpDxqyrOa .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDxqyrOa .btn {
  margin: .3rem;
}
.cid-qwpDxqyrOa .sb-section-title {
  margin: 0;
}
.cid-qwpDxqyrOa .sb-section-title span {
  color: #dda844;
}
.cid-qwpDxqyrOa .card-underline,
.cid-qwpDxqyrOa .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDxqyrOa .card-underline .line,
.cid-qwpDxqyrOa .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDxqyrOa .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDxqyrOa .card-underline .line {
  background: #dda844;
}
.cid-qwpDxqyrOa .card-title,
.cid-qwpDxqyrOa .card-underline {
  text-align: left;
}
.cid-qwpDxqyrOa .card-box > p,
.cid-qwpDxqyrOa .sb-section-btn {
  text-align: left;
}
.cid-qwpDxqyrOa .card-title,
.cid-qwpDxqyrOa .card-underline SPAN {
  color: #000000;
}
.cid-qwpDycxowZ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpDycxowZ .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDycxowZ .card {
  margin-bottom: 2rem;
}
.cid-qwpDycxowZ .card-box {
  padding-top: 2rem;
}
.cid-qwpDycxowZ .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDycxowZ .btn {
  margin: .3rem;
}
.cid-qwpDycxowZ .sb-section-title {
  margin: 0;
}
.cid-qwpDycxowZ .card-underline,
.cid-qwpDycxowZ .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDycxowZ .card-underline .line,
.cid-qwpDycxowZ .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDycxowZ .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDycxowZ .card-underline .line {
  background: #dda844;
}
.cid-qwpDycxowZ .card-box > p,
.cid-qwpDycxowZ .sb-section-btn {
  text-align: left;
}
.cid-qwpDycxowZ .card-title,
.cid-qwpDycxowZ .card-underline {
  text-align: left;
}
.cid-qwptpI36cZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwptpI36cZ a:link {
  text-decoration: none;
}
.cid-qwptpI36cZ .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwptpI36cZ .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwptpI36cZ .inner-text {
  line-height: 3em;
}
.cid-qwptpI36cZ .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwptpI36cZ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwptpI36cZ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwptpI36cZ .content-text,
.cid-qwptpI36cZ .inner-text {
  color: #c1c1c1;
}
.cid-qwqLvo4tc2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLvo4tc2 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLvo4tc2 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLvo4tc2 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLvo4tc2 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLvo4tc2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLvo4tc2 .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLvo4tc2 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLvo4tc2 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLvo4tc2 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLvo4tc2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLvo4tc2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLvo4tc2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLvo4tc2 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLvo4tc2 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLvo4tc2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLvo4tc2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLvo4tc2 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLvo4tc2 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLvo4tc2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLvo4tc2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLvo4tc2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLvo4tc2 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLvo4tc2 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLvo4tc2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLvo4tc2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLvo4tc2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLvo4tc2 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLvo4tc2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLvo4tc2 .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLvo4tc2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLvo4tc2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLvo4tc2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLvo4tc2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLvo4tc2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLvo4tc2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLvo4tc2 .dropdown-item.active,
.cid-qwqLvo4tc2 .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLvo4tc2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLvo4tc2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLvo4tc2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLvo4tc2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLvo4tc2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLvo4tc2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLvo4tc2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLvo4tc2 .navbar-buttons {
  text-align: center;
}
.cid-qwqLvo4tc2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLvo4tc2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLvo4tc2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLvo4tc2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLvo4tc2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLvo4tc2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLvo4tc2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLvo4tc2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLvo4tc2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLvo4tc2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLvo4tc2 .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLvo4tc2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLvo4tc2 .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLvo4tc2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLvo4tc2 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwpu7xib9k {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/024.jpg");
}
.cid-qwpu7xib9k .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwpu7xib9k .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwpu7xib9k .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwpu7xib9k .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwpu7xib9k .sb-section-title {
  text-align: center;
}
.cid-qwpu2RSeOM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qwpu2RSeOM .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #ffffff;
}
.cid-qwpu2RSeOM .price-item {
  background: #444444;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-qwpu2RSeOM .price-tage {
  background: #222222 none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-qwpu2RSeOM .pricing-footer {
  display: flex;
  justify-content: center;
}
.cid-qwpu2RSeOM .price-tage > span {
  letter-spacing: 2px;
}
.cid-qwpu2RSeOM .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-qwpu2RSeOM .table-content > li {
  list-style: none;
  border-bottom: 1px solid #373737;
  padding: 1em 1em;
}
.cid-qwpu2RSeOM .table-content > li:last-child {
  border-bottom: 1px solid #353535;
}
.cid-qwpu2RSeOM .table-content > li:nth-child(2n) {
  background: #373737 none repeat scroll 0 0;
}
.cid-qwpu2RSeOM .costs {
  color: #ffffff;
}
.cid-qwpu2RSeOM .costs-title {
  color: #ffffff;
}
.cid-qwpu2RSeOM .table-content LI {
  color: #ffffff;
}
.cid-qwpQOvNKqi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpQOvNKqi .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #232323;
}
.cid-qwpQOvNKqi .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-qwpQOvNKqi .price-tage {
  background: #808080 none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-qwpQOvNKqi .pricing-footer {
  display: flex;
  justify-content: center;
}
.cid-qwpQOvNKqi .price-tage > span {
  letter-spacing: 2px;
}
.cid-qwpQOvNKqi .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-qwpQOvNKqi .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em 1em;
}
.cid-qwpQOvNKqi .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-qwpQOvNKqi .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-qwpQOvNKqi .costs {
  color: #ffffff;
}
.cid-qwpQOvNKqi .costs-title {
  color: #ffffff;
}
.cid-qwpu3nojP0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpu3nojP0 .main-heading-content {
  margin-bottom: 5rem;
}
.cid-qwpu3nojP0 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpu3nojP0 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpu3nojP0 .form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  display: block;
  line-height: 1.42857;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
}
.cid-qwpu3nojP0 .form-control,
.cid-qwpu3nojP0 textarea {
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.cid-qwpu3nojP0 .google-map {
  width: 100%;
  height: 30rem;
}
.cid-qwpu3nojP0 .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-qwpu3nojP0 a:link {
  text-decoration: none;
}
.cid-qwpu3nojP0 .sb-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qwpu3nojP0 .sb-section-title,
.cid-qwpu3nojP0 .underline {
  text-align: center;
  color: #232323;
}
.cid-qwpu3KepPm {
  padding-top: 90px;
  padding-bottom: 120px;
  background-color: #000000;
}
.cid-qwpu3KepPm .sb-section-heading {
  margin-bottom: 1.5em;
  color: #ffffff;
  text-align: left;
}
.cid-qwpu3KepPm .input-main {
  width: 99.6%;
  margin-left: .1em;
}
.cid-qwpu3KepPm .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-qwpu3KepPm .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-qwpu3KepPm .input-wrap input {
  border: 1px solid #ddd;
  padding-left: .5em;
  height: 2.5em;
  width: 96%;
}
.cid-qwpu3KepPm .form-group textarea {
  height: 15em;
  background-color: white;
  padding: 0.5em 0.6em;
  width: 98%;
}
.cid-qwpDBEuGhY {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpDBEuGhY .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDBEuGhY .card {
  margin-bottom: 2rem;
}
.cid-qwpDBEuGhY .card-box {
  padding-top: 2rem;
}
.cid-qwpDBEuGhY .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDBEuGhY .btn {
  margin: .3rem;
}
.cid-qwpDBEuGhY .sb-section-title {
  margin: 0;
}
.cid-qwpDBEuGhY .sb-section-title span {
  color: #dda844;
}
.cid-qwpDBEuGhY .card-underline,
.cid-qwpDBEuGhY .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDBEuGhY .card-underline .line,
.cid-qwpDBEuGhY .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDBEuGhY .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDBEuGhY .card-underline .line {
  background: #dda844;
}
.cid-qwpDBEuGhY .card-title,
.cid-qwpDBEuGhY .card-underline {
  text-align: left;
}
.cid-qwpDBEuGhY .card-box > p,
.cid-qwpDBEuGhY .sb-section-btn {
  text-align: left;
}
.cid-qwpDBEuGhY .card-title,
.cid-qwpDBEuGhY .card-underline SPAN {
  color: #000000;
}
.cid-qwpDCgUNjk {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpDCgUNjk .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDCgUNjk .card {
  margin-bottom: 2rem;
}
.cid-qwpDCgUNjk .card-box {
  padding-top: 2rem;
}
.cid-qwpDCgUNjk .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDCgUNjk .btn {
  margin: .3rem;
}
.cid-qwpDCgUNjk .sb-section-title {
  margin: 0;
}
.cid-qwpDCgUNjk .card-underline,
.cid-qwpDCgUNjk .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDCgUNjk .card-underline .line,
.cid-qwpDCgUNjk .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDCgUNjk .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDCgUNjk .card-underline .line {
  background: #dda844;
}
.cid-qwpDCgUNjk .card-box > p,
.cid-qwpDCgUNjk .sb-section-btn {
  text-align: left;
}
.cid-qwpDCgUNjk .card-title,
.cid-qwpDCgUNjk .card-underline {
  text-align: left;
}
.cid-qwpu6j5dGd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwpu6j5dGd a:link {
  text-decoration: none;
}
.cid-qwpu6j5dGd .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpu6j5dGd .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpu6j5dGd .inner-text {
  line-height: 3em;
}
.cid-qwpu6j5dGd .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwpu6j5dGd .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpu6j5dGd .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpu6j5dGd .content-text,
.cid-qwpu6j5dGd .inner-text {
  color: #c1c1c1;
}
.cid-qwqLx6iqUT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLx6iqUT .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLx6iqUT .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLx6iqUT .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLx6iqUT .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLx6iqUT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLx6iqUT .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLx6iqUT .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLx6iqUT .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLx6iqUT .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLx6iqUT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLx6iqUT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLx6iqUT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLx6iqUT .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLx6iqUT .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLx6iqUT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLx6iqUT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLx6iqUT .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLx6iqUT .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLx6iqUT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLx6iqUT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLx6iqUT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLx6iqUT .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLx6iqUT .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLx6iqUT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLx6iqUT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLx6iqUT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLx6iqUT .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLx6iqUT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLx6iqUT .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLx6iqUT .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLx6iqUT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLx6iqUT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLx6iqUT .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLx6iqUT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLx6iqUT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLx6iqUT .dropdown-item.active,
.cid-qwqLx6iqUT .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLx6iqUT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLx6iqUT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLx6iqUT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLx6iqUT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLx6iqUT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLx6iqUT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLx6iqUT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLx6iqUT .navbar-buttons {
  text-align: center;
}
.cid-qwqLx6iqUT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLx6iqUT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLx6iqUT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLx6iqUT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLx6iqUT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLx6iqUT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLx6iqUT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLx6iqUT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLx6iqUT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLx6iqUT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLx6iqUT .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLx6iqUT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLx6iqUT .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLx6iqUT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLx6iqUT .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwpuOtPeSp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/pexels-photo-236907-1-1920x1280.jpg");
}
.cid-qwpuOtPeSp .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwpuOtPeSp .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwpuOtPeSp .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwpuOtPeSp .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwpuOtPeSp .sb-section-title {
  text-align: center;
}
.cid-qwpuQ62OUk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpuQ62OUk a:link {
  text-decoration: none;
}
.cid-qwpuQ62OUk .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpuQ62OUk .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpuQ62OUk .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpuQ62OUk .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpuQ62OUk .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-qwpuQ62OUk .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-qwpuQ62OUk .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-qwpuQ62OUk .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-qwpuQ62OUk .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-qwpuQ62OUk .plan-title,
.cid-qwpuQ62OUk .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-qwpuQ62OUk .plan-title {
  color: #444444;
}
.cid-qwpuQ62OUk .plan-title:hover {
  color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-qwpuQ62OUk .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-qwpuQ62OUk .sb-section-title span {
  color: #dda844;
}
.cid-qwpuQlvwGX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qwpuQlvwGX a:link {
  text-decoration: none;
}
.cid-qwpuQlvwGX .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #444444;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpuQlvwGX .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpuQlvwGX .inner-text {
  line-height: 3em;
}
.cid-qwpuQlvwGX .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwpuQlvwGX .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpuQlvwGX .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpuQlvwGX .content-text,
.cid-qwpuQlvwGX .inner-text {
  color: #444444;
  text-align: center;
}
.cid-qwpv1UHkRa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../images/background7.jpg");
}
.cid-qwpv1UHkRa a:link {
  text-decoration: none;
}
.cid-qwpv1UHkRa .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpv1UHkRa .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpv1UHkRa .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpv1UHkRa .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpv1UHkRa .foot-menu {
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-qwpv1UHkRa .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-qwpv1UHkRa .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-qwpv1UHkRa .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-qwpv1UHkRa .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-qwpv1UHkRa .plan-title,
.cid-qwpv1UHkRa .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-qwpv1UHkRa .plan-title {
  color: #444444;
}
.cid-qwpv1UHkRa .plan-title:hover {
  color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-qwpv1UHkRa .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-qwpv1UHkRa .sb-section-title span {
  color: #dda844;
}
.cid-qwpv1UHkRa .sb-section-title {
  text-align: center;
}
.cid-qwpv0uSO2w {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-qwpv0uSO2w a:link {
  text-decoration: none;
}
.cid-qwpv0uSO2w .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpv0uSO2w .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpv0uSO2w .inner-text {
  line-height: 3em;
}
.cid-qwpv0uSO2w .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwpv0uSO2w .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpv0uSO2w .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpv0uSO2w .content-text,
.cid-qwpv0uSO2w .inner-text {
  color: #c1c1c1;
}
.cid-qwpEaZnTkD {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpEaZnTkD .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpEaZnTkD .card {
  margin-bottom: 2rem;
}
.cid-qwpEaZnTkD .card-box {
  padding-top: 2rem;
}
.cid-qwpEaZnTkD .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpEaZnTkD .btn {
  margin: .3rem;
}
.cid-qwpEaZnTkD .sb-section-title {
  margin: 0;
}
.cid-qwpEaZnTkD .sb-section-title span {
  color: #dda844;
}
.cid-qwpEaZnTkD .card-underline,
.cid-qwpEaZnTkD .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpEaZnTkD .card-underline .line,
.cid-qwpEaZnTkD .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpEaZnTkD .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpEaZnTkD .card-underline .line {
  background: #dda844;
}
.cid-qwpEaZnTkD .card-title,
.cid-qwpEaZnTkD .card-underline {
  text-align: left;
}
.cid-qwpEaZnTkD .card-box > p,
.cid-qwpEaZnTkD .sb-section-btn {
  text-align: left;
}
.cid-qwpEaZnTkD .card-title,
.cid-qwpEaZnTkD .card-underline SPAN {
  color: #000000;
}
.cid-qwpEbWGh8K {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpEbWGh8K .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpEbWGh8K .card {
  margin-bottom: 2rem;
}
.cid-qwpEbWGh8K .card-box {
  padding-top: 2rem;
}
.cid-qwpEbWGh8K .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpEbWGh8K .btn {
  margin: .3rem;
}
.cid-qwpEbWGh8K .sb-section-title {
  margin: 0;
}
.cid-qwpEbWGh8K .card-underline,
.cid-qwpEbWGh8K .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpEbWGh8K .card-underline .line,
.cid-qwpEbWGh8K .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpEbWGh8K .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpEbWGh8K .card-underline .line {
  background: #dda844;
}
.cid-qwpEbWGh8K .card-box > p,
.cid-qwpEbWGh8K .sb-section-btn {
  text-align: left;
}
.cid-qwpEbWGh8K .card-title,
.cid-qwpEbWGh8K .card-underline {
  text-align: left;
}
.cid-qwpuUPmHx7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwpuUPmHx7 a:link {
  text-decoration: none;
}
.cid-qwpuUPmHx7 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwpuUPmHx7 .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwpuUPmHx7 .inner-text {
  line-height: 3em;
}
.cid-qwpuUPmHx7 .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwpuUPmHx7 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwpuUPmHx7 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwpuUPmHx7 .content-text,
.cid-qwpuUPmHx7 .inner-text {
  color: #c1c1c1;
}
.cid-qwqLzuxe3q .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLzuxe3q .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLzuxe3q .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLzuxe3q .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLzuxe3q .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLzuxe3q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLzuxe3q .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLzuxe3q .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLzuxe3q .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLzuxe3q .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLzuxe3q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLzuxe3q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLzuxe3q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLzuxe3q .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLzuxe3q .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLzuxe3q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLzuxe3q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLzuxe3q .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLzuxe3q .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLzuxe3q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLzuxe3q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLzuxe3q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLzuxe3q .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLzuxe3q .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLzuxe3q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLzuxe3q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLzuxe3q .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLzuxe3q .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLzuxe3q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLzuxe3q .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLzuxe3q .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLzuxe3q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLzuxe3q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLzuxe3q .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLzuxe3q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLzuxe3q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLzuxe3q .dropdown-item.active,
.cid-qwqLzuxe3q .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLzuxe3q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLzuxe3q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLzuxe3q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLzuxe3q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLzuxe3q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLzuxe3q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLzuxe3q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLzuxe3q .navbar-buttons {
  text-align: center;
}
.cid-qwqLzuxe3q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLzuxe3q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLzuxe3q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLzuxe3q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLzuxe3q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLzuxe3q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLzuxe3q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLzuxe3q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLzuxe3q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLzuxe3q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLzuxe3q .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLzuxe3q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLzuxe3q .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLzuxe3q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLzuxe3q .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwl9hfvSLK {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/024.jpg");
}
.cid-qwl9hfvSLK .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwl9hfvSLK .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwl9hfvSLK .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwl9hfvSLK .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwl9hfvSLK .sb-section-title {
  text-align: center;
}
.cid-qwkAfYbiKm {
  background-image: url("../../images/paul-gilmore-235239-2000x1125.jpg");
}
.cid-qwkAfYbiKm .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qwkAfYbiKm .sb-section-title {
  color: #232323;
}
.cid-qwkAfYbiKm .sb-section-title span {
  color: #dda844;
}
.cid-qwkAfYbiKm .sb-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-qwkAgWAcPr {
  background-image: url("../../images/background2.jpg");
}
.cid-qwkAgWAcPr .sb-text,
.cid-qwkAgWAcPr .typed-text,
.cid-qwkAgWAcPr .sb-section-text {
  letter-spacing: 0.03rem;
}
.cid-qwkAgWAcPr .btn {
  margin-left: 4px !important;
}
.cid-qwkAgWAcPr .animated-element {
  color: #dda844;
}
.cid-qwkAgWAcPr .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #dda844;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-qwkHDg3aEI {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../images/pexels-photo-374592-1-1920x1280.jpg");
}
.cid-qwkHDg3aEI .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qwkHDg3aEI .sb-section-title {
  color: #232323;
}
.cid-qwkHDg3aEI .sb-section-title span {
  color: #dda844;
}
.cid-qwkHDg3aEI .sb-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-qwkAiFfhmj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/background4.jpg");
}
.cid-qwkAiFfhmj .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qwkAiFfhmj .sb-text {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cid-qwkAiFfhmj .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qwkAiFfhmj .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qwkAjFgF4p {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../images/pexels-photo-457446-1-1920x1277.jpg");
}
.cid-qwkAjFgF4p .row {
  margin-left: -5rem;
}
.cid-qwkAjFgF4p .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-qwkAjFgF4p .sb-section-title,
.cid-qwkAjFgF4p .sb-section-subtitle {
  color: #232323;
}
.cid-qwkAjFgF4p .sb-section-subtitle span {
  font-weight: bold;
}
.cid-qwkAjFgF4p .sb-text {
  color: #232323;
  font-weight: 100;
}
.cid-qwkAjFgF4p .sb-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-qwkAjFgF4p .row {
    margin-left: -15px;
  }
}
.cid-qwkAkhr8XH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/background5.jpg");
}
.cid-qwkAkhr8XH .sb-text,
.cid-qwkAkhr8XH .sb-section-text {
  letter-spacing: 0.03rem;
}
.cid-qwkAkhr8XH .sb-section-title {
  margin-left: -0.2rem;
}
.cid-qwkAkhr8XH .sb-section-title span {
  color: #dda844;
}
.cid-qwkAkhr8XH .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qwkAkhr8XH .sb-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qwpD9xHQUd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qwpD9xHQUd .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpD9xHQUd .card {
  margin-bottom: 2rem;
}
.cid-qwpD9xHQUd .card-box {
  padding-top: 2rem;
}
.cid-qwpD9xHQUd .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpD9xHQUd .btn {
  margin: .3rem;
}
.cid-qwpD9xHQUd .sb-section-title {
  margin: 0;
}
.cid-qwpD9xHQUd .sb-section-title span {
  color: #dda844;
}
.cid-qwpD9xHQUd .card-underline,
.cid-qwpD9xHQUd .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpD9xHQUd .card-underline .line,
.cid-qwpD9xHQUd .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpD9xHQUd .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpD9xHQUd .card-underline .line {
  background: #dda844;
}
.cid-qwpD9xHQUd .card-title,
.cid-qwpD9xHQUd .card-underline {
  text-align: left;
}
.cid-qwpD9xHQUd .card-box > p,
.cid-qwpD9xHQUd .sb-section-btn {
  text-align: left;
}
.cid-qwpD9xHQUd .card-title,
.cid-qwpD9xHQUd .card-underline SPAN {
  color: #000000;
}
.cid-qwpDacd1Kl {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwpDacd1Kl .card-title {
  letter-spacing: 0.03em;
  color: #232323;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDacd1Kl .card {
  margin-bottom: 2rem;
}
.cid-qwpDacd1Kl .card-box {
  padding-top: 2rem;
}
.cid-qwpDacd1Kl .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qwpDacd1Kl .btn {
  margin: .3rem;
}
.cid-qwpDacd1Kl .sb-section-title {
  margin: 0;
}
.cid-qwpDacd1Kl .card-underline,
.cid-qwpDacd1Kl .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwpDacd1Kl .card-underline .line,
.cid-qwpDacd1Kl .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwpDacd1Kl .card-underline {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.cid-qwpDacd1Kl .card-underline .line {
  background: #dda844;
}
.cid-qwpDacd1Kl .card-box > p,
.cid-qwpDacd1Kl .sb-section-btn {
  text-align: left;
}
.cid-qwpDacd1Kl .card-title,
.cid-qwpDacd1Kl .card-underline {
  text-align: left;
}
.cid-qwl8E1aWoA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwl8E1aWoA a:link {
  text-decoration: none;
}
.cid-qwl8E1aWoA .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwl8E1aWoA .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwl8E1aWoA .inner-text {
  line-height: 3em;
}
.cid-qwl8E1aWoA .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwl8E1aWoA .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwl8E1aWoA .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwl8E1aWoA .content-text,
.cid-qwl8E1aWoA .inner-text {
  color: #c1c1c1;
}
.cid-qwqLmL2AQw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLmL2AQw .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLmL2AQw .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLmL2AQw .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLmL2AQw .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLmL2AQw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLmL2AQw .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLmL2AQw .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLmL2AQw .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLmL2AQw .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLmL2AQw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLmL2AQw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLmL2AQw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLmL2AQw .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLmL2AQw .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLmL2AQw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLmL2AQw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLmL2AQw .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLmL2AQw .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLmL2AQw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLmL2AQw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLmL2AQw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLmL2AQw .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLmL2AQw .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLmL2AQw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLmL2AQw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLmL2AQw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLmL2AQw .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLmL2AQw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLmL2AQw .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLmL2AQw .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLmL2AQw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLmL2AQw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLmL2AQw .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLmL2AQw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLmL2AQw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLmL2AQw .dropdown-item.active,
.cid-qwqLmL2AQw .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLmL2AQw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLmL2AQw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLmL2AQw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLmL2AQw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLmL2AQw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLmL2AQw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLmL2AQw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLmL2AQw .navbar-buttons {
  text-align: center;
}
.cid-qwqLmL2AQw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLmL2AQw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLmL2AQw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLmL2AQw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLmL2AQw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLmL2AQw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLmL2AQw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLmL2AQw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLmL2AQw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLmL2AQw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLmL2AQw .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLmL2AQw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLmL2AQw .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLmL2AQw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLmL2AQw .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwp6hYEfIk {
  background-image: url("../../images/background7.jpg");
}
.cid-qwp6hYEfIk .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qwp6hYEfIk .sb-section-title {
  color: #232323;
}
.cid-qwp6hYEfIk .sb-section-title span {
  color: #dda844;
}
.cid-qwp6hYEfIk .sb-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-qwp6nn5O7b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwp6nn5O7b .sb-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-qwp6nn5O7b .sb-section-title {
  margin: 0;
}
.cid-qwp6nn5O7b .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwp6nn5O7b .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwp6nn5O7b .card-img {
  text-align: initial;
}
.cid-qwp6nn5O7b .row-item {
  padding-bottom: 2rem;
}
.cid-qwp6nn5O7b .row-item:hover .card-img .sb-iconfont {
  color: #dda844 !important;
}
@media (max-width: 767px) {
  .cid-qwp6nn5O7b .card-img,
  .cid-qwp6nn5O7b .sb-text,
  .cid-qwp6nn5O7b .sb-card-title,
  .cid-qwp6nn5O7b .sb-section-subtitle,
  .cid-qwp6nn5O7b .sb-section-title,
  .cid-qwp6nn5O7b .underline {
    text-align: center !important;
  }
}
.cid-qwp6r2y7kn {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-qwp6r2y7kn .stats-item:hover span {
  color: #dda844;
}
.cid-qwp6r2y7kn .stats-item {
  padding: 80px 20px;
}
.cid-qwp6r2y7kn .stats-item:nth-child(2n) {
  background-color: #efefef;
}
.cid-qwp6r2y7kn .stats-item:nth-child(odd) {
  background-color: #cccccc;
}
.cid-qwp6r2y7kn .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-qwp6r2y7kn .sb-iconfont {
  font-size: 50px;
}
.cid-qwp6r2y7kn .heading {
  margin: 20px 0;
  color: #232323;
}
.cid-qwp6r2y7kn .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .cid-qwp6r2y7kn .stats-item:first-child {
    background: #efefef;
  }
  .cid-qwp6r2y7kn .stats-item:nth-child(2n) {
    background: #cccccc;
  }
  .cid-qwp6r2y7kn .stats-item:nth-child(0n+3) {
    background: #cccccc none repeat scroll 0 center;
  }
  .cid-qwp6r2y7kn .stats-item:last-child {
    background: #efefef;
  }
}
.cid-qwp6r2y7kn .counter {
  text-align: center;
  color: #000000;
}
.cid-qwp6r2y7kn .sb-card-title,
.cid-qwp6r2y7kn .sb-iconfont {
  text-align: center;
  color: #000000;
}
.cid-qwp6nIW8dS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwp6nIW8dS .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwp6nIW8dS .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwp6nIW8dS .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwp6nIW8dS .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwp6nIW8dS .process-icon,
.cid-qwp6nIW8dS .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qwp6nIW8dS .wrapper,
.cid-qwp6nIW8dS .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qwp6nIW8dS .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.cid-qwp6nIW8dS .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qwp6nIW8dS .icon-container a {
  display: inherit;
}
.cid-qwp6nIW8dS .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #dda844 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #000000;
  z-index: 1;
}
.cid-qwp6nIW8dS .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qwp6nIW8dS .icon-main:hover .icon-wrapper {
  background-color: #dda844 !important;
}
.cid-qwp6nIW8dS .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.cid-qwp6nIW8dS .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-qwp6nIW8dS .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qwp6nIW8dS .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qwp6nIW8dS .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qwp6nIW8dS .sb-section-title {
  margin: 0;
}
.cid-qwp6nIW8dS .sb-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qwp7mofCwK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qwp7mofCwK .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwp7mofCwK .photo-split {
  padding: 0;
}
.cid-qwp7mofCwK .photo-split img {
  width: 100%;
}
.cid-qwp7mofCwK .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwp7mofCwK .counter-container ul {
  display: -webkit-flex;
  flex-direction: column;
}
.cid-qwp7mofCwK .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qwp7mofCwK .counter-container ul li:before {
  color: #dda844;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-qwp7mofCwK .wrap-block {
  padding: 3rem 3rem;
}
.cid-qwp7mofCwK .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qwp7mofCwK .wrap-block ul li {
  display: inline-block;
}
.cid-qwp7mofCwK .wrap-block ul li span {
  text-align: center;
}
.cid-qwp7mofCwK .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qwp7mofCwK .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwp7mofCwK .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwp7mofCwK .sb-list,
.cid-qwp7mofCwK .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qwp7mofCwK .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qwp7mofCwK .sb-section-title,
  .cid-qwp7mofCwK .sb-section-subtitle,
  .cid-qwp7mofCwK .sb-text {
    text-align: center !important;
  }
  .cid-qwp7mofCwK .social-list {
    text-align: center !important;
  }
}
.cid-qwp7i8xVDe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwp7i8xVDe a:link {
  text-decoration: none;
}
.cid-qwp7i8xVDe .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwp7i8xVDe .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwp7i8xVDe .inner-text {
  line-height: 3em;
}
.cid-qwp7i8xVDe .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwp7i8xVDe .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwp7i8xVDe .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwp7i8xVDe .content-text,
.cid-qwp7i8xVDe .inner-text {
  color: #c1c1c1;
}
.cid-qwqM2Ejuau .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qwqM2Ejuau .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qwqM2Ejuau .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qwqM2Ejuau .navbar .navbar-collapse {
  transition: none;
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqM2Ejuau .navbar.collapsed.opened {
  text-align: center;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  justify-content: flex-start;
}
.cid-qwqM2Ejuau .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qwqM2Ejuau .navbar.collapsed.opened .navbar-toggler {
  order: -1;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-qwqM2Ejuau .navbar.collapsed.opened .navbar-collapse {
  flex-basis: initial;
}
.cid-qwqM2Ejuau .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-qwqM2Ejuau .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qwqM2Ejuau .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqM2Ejuau .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqM2Ejuau .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqM2Ejuau .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqM2Ejuau .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qwqM2Ejuau .navbar.opened {
    text-align: center;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    justify-content: flex-start;
  }
  .cid-qwqM2Ejuau .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qwqM2Ejuau .navbar.opened .navbar-toggler {
    order: -1;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-qwqM2Ejuau .navbar.opened .navbar-collapse {
    flex-basis: initial;
  }
  .cid-qwqM2Ejuau .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-qwqM2Ejuau .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qwqM2Ejuau .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqM2Ejuau .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqM2Ejuau .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqM2Ejuau .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqM2Ejuau .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqM2Ejuau .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-qwqM2Ejuau .navbar .navbar-brand {
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-qwqM2Ejuau .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qwqM2Ejuau .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqM2Ejuau .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqM2Ejuau .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqM2Ejuau .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqM2Ejuau .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqM2Ejuau .dropdown-item.active,
.cid-qwqM2Ejuau .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqM2Ejuau .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqM2Ejuau .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqM2Ejuau .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqM2Ejuau .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qwqM2Ejuau .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qwqM2Ejuau .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqM2Ejuau ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqM2Ejuau .navbar-buttons {
  text-align: center;
}
.cid-qwqM2Ejuau button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqM2Ejuau button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qwqM2Ejuau button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqM2Ejuau button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqM2Ejuau button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqM2Ejuau button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqM2Ejuau nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqM2Ejuau nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqM2Ejuau nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqM2Ejuau nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqM2Ejuau .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qwqM2Ejuau a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-qwqM2Ejuau a.nav-link:focus {
  outline: none;
}
.cid-qwqM2Ejuau .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.uvodban .th-dark1 {
  color:#000;
}
.uvodban .th-dark2 .animated-element{
  color:#666;
}
.uvodban h1.th-light1 span {
  background: rgba(0,0,0,0.6);
  padding:10px;
  margin-bottom:10px;
}
.uvodban .th-light1 .animated-element{
  background: rgba(0,0,0,0.6);
  padding-left:10px;
}





.uvodban1 {
  background-image: url("../../../images/background3.jpg");
}
.uvodban2 {
  background-image: url("../../../images/background1.jpg");
}
.uvodban3 {
  background-image: url("../../../images/background2.jpg");
}
.uvodban .sb-text,
.uvodban .typed-text,
.uvodban .sb-section-text {
  letter-spacing: 0.03rem;
}
.uvodban .btn {
  margin-left: 4px !important;
}
.uvodban .animated-element {
  color: #dda844;
}
.uvodban .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #dda844;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.aktuality {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.aktuality .sb-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.aktuality .sb-section-title {
  margin: 0;
}
.aktuality .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.aktuality .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.aktuality .card-img {
  text-align: initial;
}
.aktuality .row-item {
  padding-bottom: 2rem;
}
.aktuality .row-item:hover .card-img .sb-iconfont {
  color: #dda844 !important;
}
@media (max-width: 767px) {
  .aktuality .card-img,
  .aktuality .sb-text,
  .aktuality .sb-card-title,
  .aktuality .sb-section-subtitle,
  .aktuality .sb-section-title,
  .aktuality .underline {
    text-align: center !important;
  }
}
.pocitadla {
  padding-top: 0px;
  padding-bottom: 0px;
}
.pocitadla .stats-item:hover span {
  color: #dda844;
}
.pocitadla .stats-item {
  padding: 80px 20px;
}
.pocitadla .stats-item:nth-child(2n) {
  background-color: #efefef;
}
.pocitadla .stats-item:nth-child(odd) {
  background-color: #cccccc;
}
.pocitadla .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.pocitadla .sb-iconfont {
  font-size: 50px;
}
.pocitadla .heading {
  margin: 20px 0;
  color: #232323;
}
.pocitadla .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .pocitadla .stats-item:first-child {
    background: #efefef;
  }
  .pocitadla .stats-item:nth-child(2n) {
    background: #cccccc;
  }
  .pocitadla .stats-item:nth-child(0n+3) {
    background: #cccccc none repeat scroll 0 center;
  }
  .pocitadla .stats-item:last-child {
    background: #efefef;
  }
}
.pocitadla .counter {
  text-align: center;
  color: #000000;
}
.pocitadla .sb-card-title,
.pocitadla .sb-iconfont {
  text-align: center;
  color: #000000;
}

.maintext {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #ffffff;
}


.dulinfo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;

}

.social {
  padding-top: 15px;
  padding-bottom: 15px;
}



.social h2 {
  color:#fff;

}

.social p {
  color:#fff;
  
}

.social p a {
 color:#fff;
 text-decoration:underline;
 font-weight:bold;

}
.bgsocial {
    background: url("../../../images/bg_social.png") repeat-y center top;
}

.fb-like-box, .fb-like-box span, .fb-like-box span iframe[style] { width: 100% !important; }


.fcbg {
    background: url("../../../images/bg_fcb.png") repeat-x left top;

}

.dulinfo .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.dulinfo .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.dulinfo .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.dulinfo .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.dulinfo .underline .line2 {
  width: 22rem;
  height: 1px;
  background: #413f9a;
  display: inline-block;
}
.dulinfo .process-icon,
.dulinfo .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.dulinfo .wrapper,
.dulinfo .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.dulinfo .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.dulinfo .icon-container {
  display: inline-flex;
  position: relative;
}
.dulinfo .icon-container a {
  display: inherit;
}
.dulinfo .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #dda844 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #000000;
  z-index: 1;
}
.dulinfo .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.dulinfo .icon-main:hover .icon-wrapper {
  background-color: #dda844 !important;
}
.dulinfo .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.dulinfo .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  /*border-radius: 50%;*/
  border-radius:50% 0 50% 0;
  font-size: 50px;
  color: #ffffff;
}
.dulinfo .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .dulinfo .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .dulinfo .third-elem .wrapper:before {
    display: none;
  }
}
.dulinfo .sb-section-title {
  margin: 0;
}
.dulinfo .sb-section-subtitle {
  color: #232323;
  text-align: center;
}
.textinfo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.textinfo .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.textinfo .photo-split {
  padding: 0;
}
.textinfo .photo-split img {
  width: 100%;
}
.textinfo .icon-transition span:hover {
  background-color: #dda844;
}
.textinfo .counter-container ul {
  display: -webkit-flex;
  flex-direction: column;
}
.textinfo .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.textinfo .counter-container ul li:before {
  color: #dda844;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.textinfo .wrap-block {
  padding: 2em 8rem 2em 8rem;
}
.textinfo .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.textinfo .wrap-block ul li {
  display: inline-block;
}
.textinfo .wrap-block ul li span {
  text-align: center;
}
.textinfo .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.textinfo .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.textinfo .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.textinfo .sb-list,
.textinfo .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .textinfo .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .textinfo .sb-section-title,
  .textinfo .sb-section-subtitle,
  .textinfo .sb-text {
    text-align: center !important;
  }
  .textinfo .social-list {
    text-align: center !important;
  }
}
.paticka {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #413f9a;
}
.paticka a:link {
  text-decoration: none;
}

.paticka a.link {
  color:#fff;
  text-decoration:underline !important;
}
.paticka .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.paticka .icon-transition span:hover {
  background-color: #dda844;
}
.paticka .inner-text {
  line-height: 3em;
}
.paticka .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.paticka .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.paticka .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.paticka .content-text,
.paticka .inner-text {
  color: #fff;
}
.fotogalerie a {
  max-height:165px;
  overflow:hidden;
  display:block;
}   
.lang {
  width:80px;
  text-align:right;
}
.lang a {
  background:#413f9a;
  border-radius:50%;
  color:#fff;
  padding:5px;
}
.lang a.active {
  font-weight:bold;
}
.hlavni .navbar {
  min-height: 120px;
  transition: all .3s;
  background: #ffffff;
  border-bottom:2px solid #dda844;
}
.hlavni .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.hlavni .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.hlavni .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.hlavni .navbar .dropdown-item:focus border {
  outline: none;
}
.hlavni .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlavni .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.hlavni .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.hlavni .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.hlavni .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.hlavni .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlavni .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlavni .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.hlavni .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.hlavni .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.hlavni .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlavni .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.hlavni .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .hlavni .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .hlavni .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlavni .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlavni .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .hlavni .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .hlavni .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .hlavni .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .hlavni .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlavni .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .hlavni .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .hlavni .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .hlavni .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.hlavni .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.hlavni .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.hlavni .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.hlavni .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.hlavni .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlavni .navbar-brand .navbar-logo a {
  outline: none;
}
.hlavni .dropdown-item.active,
.hlavni .dropdown-item:active {
  background-color: transparent;
}
.hlavni .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlavni .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlavni .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlavni .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlavni .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.hlavni .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlavni ul.navbar-nav {
  flex-wrap: wrap;
}
.hlavni .navbar-buttons {
  text-align: center;
}
.hlavni button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.hlavni button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.hlavni button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.hlavni button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.hlavni button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.hlavni button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.hlavni nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.hlavni nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.hlavni nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.hlavni nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.hlavni .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.hlavni a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.hlavni .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.hlavni .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.hlavni .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwp7IdM9cG {
  background-image: url("../../images/background1.jpg");
}
.cid-qwp7IdM9cG .sb-section-title {
  color: #ffffff;
}
.cid-qwp7IdM9cG .sb-section-title span {
  color: #dda844;
}
.cid-qwp7IdM9cG .sb-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-qwp7NQoeoN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwp7NQoeoN .sb-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-qwp7NQoeoN .sb-section-title {
  margin: 0;
}
.cid-qwp7NQoeoN .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwp7NQoeoN .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwp7NQoeoN .card-img {
  text-align: initial;
}
.cid-qwp7NQoeoN .row-item {
  padding-bottom: 2rem;
}
.cid-qwp7NQoeoN .row-item:hover .card-img .sb-iconfont {
  color: #dda844 !important;
}
@media (max-width: 767px) {
  .cid-qwp7NQoeoN .card-img,
  .cid-qwp7NQoeoN .sb-text,
  .cid-qwp7NQoeoN .sb-card-title,
  .cid-qwp7NQoeoN .sb-section-subtitle,
  .cid-qwp7NQoeoN .sb-section-title,
  .cid-qwp7NQoeoN .underline {
    text-align: center !important;
  }
}
.cid-qwp7Omxrm3 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-qwp7Omxrm3 .stats-item:hover span {
  color: #dda844;
}
.cid-qwp7Omxrm3 .stats-item {
  padding: 80px 20px;
}
.cid-qwp7Omxrm3 .stats-item:nth-child(2n) {
  background-color: #efefef;
}
.cid-qwp7Omxrm3 .stats-item:nth-child(odd) {
  background-color: #cccccc;
}
.cid-qwp7Omxrm3 .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-qwp7Omxrm3 .sb-iconfont {
  font-size: 50px;
}
.cid-qwp7Omxrm3 .heading {
  margin: 20px 0;
  color: #232323;
}
.cid-qwp7Omxrm3 .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .cid-qwp7Omxrm3 .stats-item:first-child {
    background: #efefef;
  }
  .cid-qwp7Omxrm3 .stats-item:nth-child(2n) {
    background: #cccccc;
  }
  .cid-qwp7Omxrm3 .stats-item:nth-child(0n+3) {
    background: #cccccc none repeat scroll 0 center;
  }
  .cid-qwp7Omxrm3 .stats-item:last-child {
    background: #efefef;
  }
}
.cid-qwp7Omxrm3 .counter {
  text-align: center;
  color: #000000;
}
.cid-qwp7Omxrm3 .sb-card-title,
.cid-qwp7Omxrm3 .sb-iconfont {
  text-align: center;
  color: #000000;
}
.cid-qwp7OBL0P1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwp7OBL0P1 .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwp7OBL0P1 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwp7OBL0P1 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwp7OBL0P1 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwp7OBL0P1 .process-icon,
.cid-qwp7OBL0P1 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qwp7OBL0P1 .wrapper,
.cid-qwp7OBL0P1 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qwp7OBL0P1 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.cid-qwp7OBL0P1 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qwp7OBL0P1 .icon-container a {
  display: inherit;
}
.cid-qwp7OBL0P1 .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #dda844 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #000000;
  z-index: 1;
}
.cid-qwp7OBL0P1 .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qwp7OBL0P1 .icon-main:hover .icon-wrapper {
  background-color: #dda844 !important;
}
.cid-qwp7OBL0P1 .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.cid-qwp7OBL0P1 .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-qwp7OBL0P1 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qwp7OBL0P1 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qwp7OBL0P1 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qwp7OBL0P1 .sb-section-title {
  margin: 0;
}
.cid-qwp7OBL0P1 .sb-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qwp7P4cVtm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qwp7P4cVtm .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwp7P4cVtm .photo-split {
  padding: 0;
}
.cid-qwp7P4cVtm .photo-split img {
  width: 100%;
}
.cid-qwp7P4cVtm .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwp7P4cVtm .counter-container ul {
  display: -webkit-flex;
  flex-direction: column;
}
.cid-qwp7P4cVtm .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qwp7P4cVtm .counter-container ul li:before {
  color: #dda844;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-qwp7P4cVtm .wrap-block {
  padding: 3rem 3rem;
}
.cid-qwp7P4cVtm .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qwp7P4cVtm .wrap-block ul li {
  display: inline-block;
}
.cid-qwp7P4cVtm .wrap-block ul li span {
  text-align: center;
}
.cid-qwp7P4cVtm .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qwp7P4cVtm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwp7P4cVtm .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwp7P4cVtm .sb-list,
.cid-qwp7P4cVtm .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qwp7P4cVtm .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qwp7P4cVtm .sb-section-title,
  .cid-qwp7P4cVtm .sb-section-subtitle,
  .cid-qwp7P4cVtm .sb-text {
    text-align: center !important;
  }
  .cid-qwp7P4cVtm .social-list {
    text-align: center !important;
  }
}
.cid-qwp7Q6SX4c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwp7Q6SX4c a:link {
  text-decoration: none;
}
.cid-qwp7Q6SX4c .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwp7Q6SX4c .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwp7Q6SX4c .inner-text {
  line-height: 3em;
}
.cid-qwp7Q6SX4c .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwp7Q6SX4c .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwp7Q6SX4c .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwp7Q6SX4c .content-text,
.cid-qwp7Q6SX4c .inner-text {
  color: #c1c1c1;
}
.cid-qwqLa3i44G .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qwqLa3i44G .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qwqLa3i44G .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qwqLa3i44G .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qwqLa3i44G .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qwqLa3i44G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqLa3i44G .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qwqLa3i44G .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #dda844;
}
.cid-qwqLa3i44G .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qwqLa3i44G .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qwqLa3i44G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqLa3i44G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqLa3i44G .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqLa3i44G .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qwqLa3i44G .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qwqLa3i44G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqLa3i44G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qwqLa3i44G .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qwqLa3i44G .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qwqLa3i44G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqLa3i44G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqLa3i44G .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqLa3i44G .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qwqLa3i44G .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qwqLa3i44G .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqLa3i44G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqLa3i44G .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qwqLa3i44G .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qwqLa3i44G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qwqLa3i44G .navbar .navbar-toggler {
    flex-basis: 30%;
  }
}
.cid-qwqLa3i44G .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qwqLa3i44G .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqLa3i44G .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqLa3i44G .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqLa3i44G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqLa3i44G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqLa3i44G .dropdown-item.active,
.cid-qwqLa3i44G .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqLa3i44G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqLa3i44G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqLa3i44G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqLa3i44G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qwqLa3i44G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qwqLa3i44G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqLa3i44G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqLa3i44G .navbar-buttons {
  text-align: center;
}
.cid-qwqLa3i44G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqLa3i44G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qwqLa3i44G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqLa3i44G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLa3i44G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqLa3i44G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqLa3i44G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLa3i44G nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqLa3i44G nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqLa3i44G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqLa3i44G .navbar-dropdown {
  padding: 0rem 1rem;
  position: fixed;
}
.cid-qwqLa3i44G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qwqLa3i44G .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qwqLa3i44G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qwqLa3i44G .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qwp86XJV2F {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../images/background3.jpg");
}
.cid-qwp86XJV2F .row {
  margin-left: -5rem;
}
.cid-qwp86XJV2F .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-qwp86XJV2F .sb-section-title,
.cid-qwp86XJV2F .sb-section-subtitle {
  color: #232323;
}
.cid-qwp86XJV2F .sb-section-subtitle span {
  font-weight: bold;
}
.cid-qwp86XJV2F .sb-text {
  color: #232323;
  font-weight: 100;
}
.cid-qwp86XJV2F .sb-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-qwp86XJV2F .row {
    margin-left: -15px;
  }
}
.cid-qwp87uisa2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwp87uisa2 .sb-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-qwp87uisa2 .sb-section-title {
  margin: 0;
}
.cid-qwp87uisa2 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwp87uisa2 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwp87uisa2 .card-img {
  text-align: initial;
}
.cid-qwp87uisa2 .row-item {
  padding-bottom: 2rem;
}
.cid-qwp87uisa2 .row-item:hover .card-img .sb-iconfont {
  color: #dda844 !important;
}
@media (max-width: 767px) {
  .cid-qwp87uisa2 .card-img,
  .cid-qwp87uisa2 .sb-text,
  .cid-qwp87uisa2 .sb-card-title,
  .cid-qwp87uisa2 .sb-section-subtitle,
  .cid-qwp87uisa2 .sb-section-title,
  .cid-qwp87uisa2 .underline {
    text-align: center !important;
  }
}
.cid-qwp88ux8S2 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-qwp88ux8S2 .stats-item:hover span {
  color: #dda844;
}
.cid-qwp88ux8S2 .stats-item {
  padding: 80px 20px;
}
.cid-qwp88ux8S2 .stats-item:nth-child(2n) {
  background-color: #efefef;
}
.cid-qwp88ux8S2 .stats-item:nth-child(odd) {
  background-color: #cccccc;
}
.cid-qwp88ux8S2 .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-qwp88ux8S2 .sb-iconfont {
  font-size: 50px;
}
.cid-qwp88ux8S2 .heading {
  margin: 20px 0;
  color: #232323;
}
.cid-qwp88ux8S2 .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .cid-qwp88ux8S2 .stats-item:first-child {
    background: #efefef;
  }
  .cid-qwp88ux8S2 .stats-item:nth-child(2n) {
    background: #cccccc;
  }
  .cid-qwp88ux8S2 .stats-item:nth-child(0n+3) {
    background: #cccccc none repeat scroll 0 center;
  }
  .cid-qwp88ux8S2 .stats-item:last-child {
    background: #efefef;
  }
}
.cid-qwp88ux8S2 .counter {
  text-align: center;
  color: #000000;
}
.cid-qwp88ux8S2 .sb-card-title,
.cid-qwp88ux8S2 .sb-iconfont {
  text-align: center;
  color: #000000;
}
.cid-qwp88H3mmP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qwp88H3mmP .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwp88H3mmP .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qwp88H3mmP .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qwp88H3mmP .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qwp88H3mmP .process-icon,
.cid-qwp88H3mmP .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qwp88H3mmP .wrapper,
.cid-qwp88H3mmP .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qwp88H3mmP .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #444444;
  opacity: .4;
}
.cid-qwp88H3mmP .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qwp88H3mmP .icon-container a {
  display: inherit;
}
.cid-qwp88H3mmP .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #dda844 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #000000;
  z-index: 1;
}
.cid-qwp88H3mmP .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qwp88H3mmP .icon-main:hover .icon-wrapper {
  background-color: #dda844 !important;
}
.cid-qwp88H3mmP .icon-main:hover .icon-number {
  background-color: #444444 !important;
  color: #ffffff !important;
}
.cid-qwp88H3mmP .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-qwp88H3mmP .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qwp88H3mmP .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qwp88H3mmP .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qwp88H3mmP .sb-section-title {
  margin: 0;
}
.cid-qwp88H3mmP .sb-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qwp89Bh7mX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qwp89Bh7mX .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwp89Bh7mX .photo-split {
  padding: 0;
}
.cid-qwp89Bh7mX .photo-split img {
  width: 100%;
}
.cid-qwp89Bh7mX .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwp89Bh7mX .counter-container ul {
  display: -webkit-flex;
  flex-direction: column;
}
.cid-qwp89Bh7mX .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qwp89Bh7mX .counter-container ul li:before {
  color: #dda844;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-qwp89Bh7mX .wrap-block {
  padding: 3rem 3rem;
}
.cid-qwp89Bh7mX .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qwp89Bh7mX .wrap-block ul li {
  display: inline-block;
}
.cid-qwp89Bh7mX .wrap-block ul li span {
  text-align: center;
}
.cid-qwp89Bh7mX .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qwp89Bh7mX .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwp89Bh7mX .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwp89Bh7mX .sb-list,
.cid-qwp89Bh7mX .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qwp89Bh7mX .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qwp89Bh7mX .sb-section-title,
  .cid-qwp89Bh7mX .sb-section-subtitle,
  .cid-qwp89Bh7mX .sb-text {
    text-align: center !important;
  }
  .cid-qwp89Bh7mX .social-list {
    text-align: center !important;
  }
}
.cid-qwp8au2agy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-qwp8au2agy a:link {
  text-decoration: none;
}
.cid-qwp8au2agy .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qwp8au2agy .icon-transition span:hover {
  background-color: #dda844;
}
.cid-qwp8au2agy .inner-text {
  line-height: 3em;
}
.cid-qwp8au2agy .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qwp8au2agy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qwp8au2agy .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qwp8au2agy .content-text,
.cid-qwp8au2agy .inner-text {
  color: #c1c1c1;
}
.cid-qwqKHgIG9H .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-qwqKHgIG9H .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-qwqKHgIG9H .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qwqKHgIG9H .navbar .navbar-collapse {
  transition: none;
  justify-content: flex-end;
  z-index: 1;
}
.cid-qwqKHgIG9H .navbar.collapsed.opened {
  text-align: center;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  justify-content: flex-start;
}
.cid-qwqKHgIG9H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qwqKHgIG9H .navbar.collapsed.opened .navbar-toggler {
  order: -1;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-qwqKHgIG9H .navbar.collapsed.opened .navbar-collapse {
  flex-basis: initial;
}
.cid-qwqKHgIG9H .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-qwqKHgIG9H .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qwqKHgIG9H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qwqKHgIG9H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qwqKHgIG9H .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qwqKHgIG9H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qwqKHgIG9H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qwqKHgIG9H .navbar.opened {
    text-align: center;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    justify-content: flex-start;
  }
  .cid-qwqKHgIG9H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qwqKHgIG9H .navbar.opened .navbar-toggler {
    order: -1;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-qwqKHgIG9H .navbar.opened .navbar-collapse {
    flex-basis: initial;
  }
  .cid-qwqKHgIG9H .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-qwqKHgIG9H .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qwqKHgIG9H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qwqKHgIG9H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qwqKHgIG9H .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qwqKHgIG9H .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qwqKHgIG9H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qwqKHgIG9H .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-qwqKHgIG9H .navbar .navbar-brand {
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-qwqKHgIG9H .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-qwqKHgIG9H .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qwqKHgIG9H .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qwqKHgIG9H .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qwqKHgIG9H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qwqKHgIG9H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qwqKHgIG9H .dropdown-item.active,
.cid-qwqKHgIG9H .dropdown-item:active {
  background-color: transparent;
}
.cid-qwqKHgIG9H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qwqKHgIG9H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qwqKHgIG9H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qwqKHgIG9H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-qwqKHgIG9H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qwqKHgIG9H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qwqKHgIG9H ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qwqKHgIG9H .navbar-buttons {
  text-align: center;
}
.cid-qwqKHgIG9H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qwqKHgIG9H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qwqKHgIG9H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qwqKHgIG9H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqKHgIG9H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qwqKHgIG9H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qwqKHgIG9H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqKHgIG9H nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qwqKHgIG9H nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qwqKHgIG9H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qwqKHgIG9H .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qwqKHgIG9H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-qwqKHgIG9H a.nav-link:focus {
  outline: none;
}
.cid-qwqKHgIG9H .sb-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}

table.formular th,table.formular td {
  padding-top:6px;
  padding-bottom:6px;
}

table.formular th {
  width:300px;
}

table.formular select {
  padding:5px;
}

.maintext {
  border-bottom:40px solid #dda844;
}


.maintext h1 {
  border-bottom:3px solid #413f9a;
  padding-bottom:10px;
  margin-bottom:10px;
}

.maintext h3 {
  font-size:24px;
  color:#413f9a;
  margin-top:1em;
}

.maintext ul.download {
  margin-left:50px;  
}

.maintext a {
  text-decoration:underline;
}

.maintext a:hover {
  text-decoration:underline;
  font-weight:bold;
}

.maintext input.submit {
  background:#413f9a;
  color:#fff;
  padding:10px;
  border:1px solid #0da818;
  padding-left:20px;
  padding-right:20px;
  margin-left:300px;
  cursor:hand;
}

.maintext input.submit:hover {
  background:#333;
  border:1px solid #000;
}

.maintext ul {
  margin-left:0;
  margin-bottom:20px;
  padding:0;
}



.maintext ul ul {
  margin-left:2em;
}

.maintext ul.steps li {
  float:left;
  list-style:none;
  margin-right:1px;
  margin-bottom:1px;
  text-align:left;
  
}

.maintext ul.steps li a {
  background:#413f9a;
  color:#fff;
  text-align:left;
  padding-left:15px;
  padding-right:15px;
  padding-top:5px;
  padding-bottom:5px;
  display:block;
  font-size:22px;
  line-height:1.0;
  text-decoration:none;
}

.maintext ul.steps li a:hover {
  background:#666;
}

.maintext ul.steps li a small {
  font-size:14px;
}

.maintext ul.steps li a.active {
  background:#000;
  color:#fff;
}

.maintext ul.steps li a.active {
  padding-bottom:20px;
}

.maintext .cleaner {
  clear:Both;
}

.maintext .boxik {
  
  margin-bottom:30px;
  padding:20px;
  
}

.maintext .boxik:hover {
  background:#f1f1f1;
}

.maintext .zobrazitbutton {
  background:#413f9a;
  color:#fff;
  padding:10px;
}

.maintext .ifr {
  border:0;
}

.maintext iframe {
  border-bottom:20px solid #eeeeee !important;
}

.dulinfo .zobrazitbutton {
  background:#413f9a;
  color:#fff;
  padding:10px;
}

#photos {
  /* Prevent vertical gaps */
  line-height: 0;
   
  -webkit-column-count: 6;
  -webkit-column-gap:   0px;
  -moz-column-count:    6;
  -moz-column-gap:      0px;
  column-count:         6;
  column-gap:           0px;  
}

#photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
  border:1px solid #fff;
}

@media (max-width: 1200px) {
  #photos {
  -moz-column-count:    4;
  -webkit-column-count: 4;
  column-count:         4;
  }
}
@media (max-width: 1000px) {
  #photos {
  -moz-column-count:    3;
  -webkit-column-count: 3;
  column-count:         3;
  }
}
@media (max-width: 800px) {
  #photos {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}
@media (max-width: 400px) {
  #photos {
  -moz-column-count:    1;
  -webkit-column-count: 1;
  column-count:         1;
  }
}


.error-ok {
  background:red;
  color:#fff;
  padding:10px;
  margin-bottom:20px;
}

.error-ok2 {
  background:blue;
  color:#fff;
  padding:10px;
  margin-bottom:20px;
}

.red {
  color:red;
}

table.prihlasky {
  border:1px solid #999;
  width:100%;
}

table.prihlasky tr th, table.prihlasky tr td {
  padding:5px;
  border:1px solid #ddd;
}

table.prihlasky tr th a, table.prihlasky tr td a {
  font-weight:Bold;
}

table.prihlasky tr th {
  background:#413f9a;
  color:#fff;
}

table.kalendar-strava tr td, table.kalendar-strava tr th  {
  border:1px solid #ddd;
  padding:5px;
  text-align:center;
}

table.kalendar-strava tr th {
  background:#333;
  color:#fff;
  text-align:center;
}

.player {
  background:#413f9a;
  color:#fff;
}

.live a {
  color:#413f9a;
  font-weight:bold;
  text-decoration:underline;
}

.hlavni .navbar .prouzek

 {
background:#413f9a !important;
padding: .15rem 1.5rem;
}