﻿@charset "UTF-8";
/**
   Table of Contents

 **/
/*.element {
  color: setcolor(blue);
  color: setcolor(blue, secondary);
}*/
.btn {
  display: inline-flex;
  -webkit-display: inline-flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #122b45;
  color: #ffffff;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  padding: 9px 28px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  position: relative;
  border: thin solid #122b45;
  box-shadow: none !important;
}
.btn:hover {
  background-color: transparent;
  color: #122b45;
  border: thin solid #122b45;
}
@media (max-width: 767px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn.primary {
  background: #2B60AC;
  color: #ffffff;
}
.btn.primary:hover {
  color: #ffffff;
}

#back-to-top {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: -200px;
  transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  right: 15px;
  z-index: 99;
  background: #616161;
  color: #fff;
  padding: 5px 8px;
  border: 1px solid #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
#back-to-top:hover {
  background: #000000;
}
#back-to-top.visible {
  bottom: 0;
  opacity: 1;
}
@media (max-width: 1199px) {
  #back-to-top {
    display: none;
  }
}

.back-btn {
  position: fixed;
  right: 0px;
  bottom: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  -webkit-transition: all ease 0.35s;
  right: -200px;
  z-index: 99;
  background: #616161;
  color: #fff;
  padding: 3px 8px;
  border: 1px solid #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.back-btn span {
  display: inline-block;
  margin-left: 10px;
}
.back-btn:before {
  transform: rotate(182deg);
  -ms-transform: rotate(182deg);
  -o-transform: rotate(182deg);
  -webkit-transform: rotate(182deg);
  line-height: 2;
}
.back-btn:hover {
  background: #000000;
  transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  -webkit-transition: all ease 0.35s;
  right: 0;
}
.back-btn.visible {
  right: -50px;
  opacity: 1;
  transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
}
.back-btn.visible:hover {
  transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  -webkit-transition: all ease 0.35s;
  right: 0;
}
@media (max-width: 1199px) {
  .back-btn {
    display: none;
  }
}

@media (min-width: 1200px) {
  /*=== Append and Prepend ===*/
  .desk-hide {
    display: none;
  }

  /*=== Append and prepend ====*/
  /*==== Menu ====*/
  .main-nav > ul {
    margin: 0;
    padding: 0;
  }
  .main-nav > ul > li {
    display: inline-block;
    position: relative;
    margin: 0 12px;
  }
  .main-nav > ul > li:last-child {
    margin: 0;
  }
  .main-nav > ul > li:last-child ul {
    left: auto;
    right: 0;
  }
  .main-nav > ul > li > a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    position: relative;
    color: #122b45;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.7rem;
  }
  .main-nav > ul > li > a:after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background: #122b45;
    transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
  }
  .main-nav > ul > li:hover > a {
    transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    color: #616161;
  }
  .main-nav > ul > li:hover > a:after {
    width: 100%;
  }
  .main-nav > ul > li:hover > ul {
    display: block;
  }
  .main-nav > ul > li ul {
    background: #ffffff;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 250px;
    display: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  }
  .main-nav > ul > li ul li {
    display: block;
    border-bottom: 1px solid #ccc;
    position: relative;
  }
  .main-nav > ul > li ul li:last-child {
    border: 0;
  }
  .main-nav > ul > li ul li a {
    font-size: 0.9rem;
    padding: 8px 20px;
    display: block;
    text-decoration: none;
  }
  .main-nav > ul > li ul li:hover > ul {
    display: block;
    left: 250px;
    top: 0;
  }
  .main-nav > ul > li ul li:hover > a {
    color: #122b45;
  }
  .main-nav > ul > li ul li.submenu::after {
    content: "";
    font-family: "fontello";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #616161;
    font-size: 10px;
  }

  .mob-btn {
    display: none;
  }

  /*==== Menu End ====*/
}
@media (max-width: 1199px) {
  /*==== Menu ====*/
  .main-nav {
    position: fixed;
    width: 260px;
    top: 0;
    right: -260px;
    background: #122b45;;
    height: 100%;
    transition: all ease 0.2s;
    z-index: 1005;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
  }
  .main-nav ul {
    margin: 0;
    padding: 0;
    display: block;
    margin-top: 0px;
  }
  .main-nav ul.mnav {
    margin-bottom: 30px;
  }
  .main-nav ul li {
    display: block;
    border-bottom: 1px solid #656b74;
    position: relative;
    text-transform: capitalize;
    font-size: 13px;
  }
  .main-nav ul li span {
    display: none;
  }
  .main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    display: block;
    padding: 10px;
    padding-right: 40px;
  }
  .main-nav ul li a:hover {
    background: #2D2D2D;
  }
  .main-nav ul li.submenu i {
    position: absolute;
    width: 43px;
    height: 39px;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: all ease 0.5s;
  }
  .main-nav ul li.submenu i:after {
    content: "";
    height: 0;
    width: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid #b3b3b3;
    position: absolute;
    right: 17px;
    top: 18px;
    z-index: 10;
  }
  .main-nav ul ul {
    margin: 0;
    display: none;
  }
  .main-nav ul ul li:last-child {
    border-bottom: 0;
  }
  .main-nav ul ul li:first-child {
    border-top: 1px solid #656b74;
  }
  .main-nav ul ul li a {
    padding-left: 20px;
  }
  .main-nav ul ul li ul a {
    padding-left: 30px;
  }

  .show-menu .main-nav {
    right: 0;
  }
  .show-menu .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }

  .mob-btn {
    position: absolute;
    float: right;
    padding: 5px 7px;
    margin: 0px;
    background-color: transparent;
    cursor: pointer;
    right: 15px;
    top: 33px;
  }

  /*==== Menu End ====*/
  /*=== Append and Prepend ===*/

  /*==== Append and Prepend End ====*/
}
@media (max-width: 1199px) and (max-width: 991px) {
  .mob-btn {
    top: 28px;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .mob-btn {
    top: 30px;
  }
}
@media (max-width: 1199px) {
  .mob-btn span {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    background: #646464;
  }
}
@media (max-width: 1199px) {
  .mob-btn span + span {
    margin-top: 5px;
  }
}
@media (max-width: 1199px) {
  .extra-link {
    display: none;
  }
}
.breadcrumb {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item {
  text-transform: capitalize;
}
.breadcrumb-item:hover {
  color: #122b45;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 10px;
  padding-left: 0;
  color: #616161;
  font-family: "fontello";
  content: "";
  padding-left: 10px;
  font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #616161;
}

.main-nav ul li.current-menu-item > a, .main-nav ul li.current_page_item > a,
.main-nav ul li.current-page-ancestor > a, .main-nav ul li.current_page_parent > a,
.main-nav ul li.current-menu-parent > a, .main-nav ul li.current-menu-ancestor > a {
  font-weight: 500;
}
.main-nav ul li.current-menu-item > a:after, .main-nav ul li.current_page_item > a:after,
.main-nav ul li.current-page-ancestor > a:after, .main-nav ul li.current_page_parent > a:after,
.main-nav ul li.current-menu-parent > a:after, .main-nav ul li.current-menu-ancestor > a:after {
  width: 100%;
}

.site-footer ul li.current-menu-item > a, .site-footer ul li.current_page_item > a,
.site-footer ul li.current-page-ancestor > a, .site-footer ul li.current_page_parent > a,
.site-footer ul li.current-menu-parent > a, .site-footer ul li.current-menu-ancestor > a {
  color: #122b45 !important;
}

.wp_pagination {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.wp_pagination ol,
.wp_pagination .wp-paginate {
  display: inline-block;
  float: right;
}
.wp_pagination ol li,
.wp_pagination .wp-paginate li {
  display: inline-block;
  float: left;
  font-size: 1.7rem;
  line-height: 1.4;
  padding: 0 3px;
}
.wp_pagination ol li + li,
.wp_pagination .wp-paginate li + li {
  margin-top: 0;
}
.wp_pagination ol li .page,
.wp_pagination ol li .next,
.wp_pagination ol li .prev,
.wp_pagination .wp-paginate li .page,
.wp_pagination .wp-paginate li .next,
.wp_pagination .wp-paginate li .prev {
  align-items: center;
  -webkit-align-items: center;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #281107;
  display: inline-flex;
  font-size: 2rem;
  font-weight: 400;
  height: 34px;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  text-align: center;
  transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
}
.wp_pagination ol li .next,
.wp_pagination ol li .prev,
.wp_pagination .wp-paginate li .next,
.wp_pagination .wp-paginate li .prev {
  background-color: #616161;
  color: #ffffff;
  text-transform: uppercase;
}
.wp_pagination ol li .next:hover,
.wp_pagination ol li .prev:hover,
.wp_pagination .wp-paginate li .next:hover,
.wp_pagination .wp-paginate li .prev:hover {
  background-color: #000000;
}
.wp_pagination ol li .page,
.wp_pagination .wp-paginate li .page {
  margin-left: 7px;
  margin-right: 7px;
  padding-left: 2px;
  padding-right: 2px;
}
.wp_pagination ol li .page:hover,
.wp_pagination .wp-paginate li .page:hover {
  color: #616161;
}
.wp_pagination ol li .current,
.wp_pagination .wp-paginate li .current {
  color: #616161;
}

/* ================================
            Slick Slider
================================= */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider *:focus {
  outline: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 33px;
  width: 33px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  background: rgba(45, 101, 184, 0.5);
  transform: translate(0, -50%);
  padding: 0;
  border: 0;
  outline: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
  background: #122b45;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  color: #ffffff;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "fontello";
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -60px;
}
@media (max-width: 1450px) {
  .slick-prev {
    left: 0;
  }
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -60px;
}
@media (max-width: 1450px) {
  [dir=rtl] .slick-prev {
    left: 0;
  }
}
.slick-prev:before {
  content: "";
}
[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -60px;
}
@media (max-width: 1450px) {
  .slick-next {
    right: 0;
  }
}
[dir=rtl] .slick-next {
  left: -60px;
  right: auto;
}
@media (max-width: 1450px) {
  [dir=rtl] .slick-next {
    right: 0;
  }
}
.slick-next:before {
  content: "";
}
[dir=rtl] .slick-next:before {
  content: "";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: cener;
  padding: 0 15px;
  right: 0;
  margin: 0;
}
@media (min-width: 1200px) {
  .slick-dots li {
    margin: 0 10px 0 0;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  background: #122b45;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  text-indent: -9999px;
  border: none;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  font-family: "fontello";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
  background-color: #2D65B8;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 1;
}
@media (max-width: 767px) {
  .slick-dots li {
    margin: 0 5px;
  }
  .slick-dots li button {
    border-width: 1px;
    height: 12px;
    width: 12px;
  }
}

.resp-tabs-list li {
  display: inline-block;
  margin: 0 4px 0 0;
  padding: 13px 15px;
  list-style: none;
  cursor: pointer;
  float: left;
}

.resp-tabs-container {
  padding: 0px;
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border: 1px solid #5AB1D0;
  border-bottom: none;
  margin-bottom: -1px;
  padding: 12px 14px 14px 14px;
  border-top: 4px solid #122b45;
  border-bottom: 0px #fff solid;
}

.resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

.resp-content-active, .resp-accordion-active {
  display: block;
}

.resp-tab-content {
  border: 1px solid #c1c1c1;
  border-top-color: #5AB1D0;
}

h2.resp-accordion {
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1;
  margin-bottom: 0px;
  padding: 10px 15px;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1;
  background: blue;
}

.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 15px 15px;
  margin: 0 0 4px;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  float: left;
  width: 68%;
  min-height: 250px;
  border-radius: 4px;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  margin-right: -1px;
  padding: 14px 15px 15px 14px;
  border-top: 1px solid;
  border: 1px solid #5AB1D0;
  border-left: 4px solid #5AB1D0;
  margin-bottom: 4px;
  border-right: 1px #FFF solid;
}

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 14px;
  position: relative;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.resp-arrow:after {
  position: absolute;
  content: "";
  font-family: "fontello";
  right: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

h2.resp-tab-active {
  background: #f1f1f1;
}

.resp-easy-accordion h2.resp-accordion {
  display: block;
}

.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1 !important;
}

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active {
  display: block;
}

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1;
}

@media (max-width: 767px) {
  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    display: block;
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #C1C1C1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }

  .resp-accordion-closed {
    display: none !important;
  }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;
  }
}
/* ================================
        Popup and Popover
================================= */
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  position: relative;
}

.close {
  background-color: #616161;
  border: none;
  color: #ffffff;
  display: inline-block;
  font-weight: lighter;
  height: 30px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  width: 30px;
}
.close:before, .close:after {
  background-color: #ffffff;
  content: "";
  height: 50%;
  left: 14px;
  position: absolute;
  transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  top: 6px;
  width: 2px;
}
.close:before {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.close:hover {
  background-color: #122b45;
}
.close:hover:before {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.close:hover:after {
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
  padding: 0;
  text-align: center;
}

.modal-body {
  position: relative;
  padding: 15px;
}
.modal-body .input-holder textarea {
  resize: none;
  height: 90px;
  padding: 20px;
}
.modal-body .input-holder input[type=submit] {
  float: right;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  overflow: hidden;
  /* &:first-of-type,
  &:first-of-type .acc_head {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  &:last-of-type,
  &:last-of-type .acc_content {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  } */
}
.accordionjs .acc_section .acc_head {
  background: #EDEEF3;
  cursor: pointer;
  display: block;
  padding: 15px 20px;
  position: relative;
  margin-bottom: 5px;
  font-size: 1.2rem;
  position: relative;
  transition: all ease 0.05s;
  -o-transition: all ease 0.05s;
  -webkit-transition: all ease 0.05s;
  padding-right: 45px;
  font-weight: 500;
}
.accordionjs .acc_section .acc_head:after {
  font-family: "fontello";
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #2B60AC;
}
.accordionjs .acc_section .acc_content {
  padding: 20px;
}
.accordionjs .acc_section.acc_active > {
  transition: all ease 0.05s;
  -o-transition: all ease 0.05s;
  -webkit-transition: all ease 0.05s;
}
.accordionjs .acc_section.acc_active > .acc_content {
  display: block;
}
.accordionjs .acc_section.acc_active > .acc_head:after {
  content: "";
}

.align-both {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.alignV-center {
  display: flex;
  flex-wrap: wrap;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.alignV-bottom {
  display: flex;
  flex-wrap: wrap;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
}

.alignH-right {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

.alignH-bottom {
  display: flex;
  flex-wrap: wrap;
}

.alignH-center {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.center-both {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.center-vertical {
  display: flex;
  flex-wrap: wrap;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.center-horizontal {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

/* =====     Forms     ===== */
input {
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
}

::-webkit-input-placeholder {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 1;
}

:-moz-placeholder {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 1;
}

::-moz-placeholder {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 1;
}

.inline {
  display: block;
}
.inline div {
  display: inline-block;
  float: left;
  margin-right: 20px;
}

input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
.input,
textarea,
select,
.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #000000;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  height: 40px;
  padding: 0 20px;
  width: 100%;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
.input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: 0;
}
@media (max-width: 1199px) {
  input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
.input,
textarea,
select,
.form-control {
    border-width: 1px;
    height: 40px;
    padding: 0 10px;
  }
}

textarea.form-control {
  height: 100px;
  padding: 15px 20px;
  resize: none;
}
@media (max-width: 1199px) {
  textarea.form-control {
    padding-left: 10px;
    padding-right: 10px;
  }
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
}
select:focus, select:active {
  outline: none;
}

option {
  -moz-appearance: none;
  -webkit-appearance: none;
}

.input-holder {
  margin-bottom: 15px;
  position: relative;
  *zoom: 1;
}
.input-holder:after, .input-holder:before {
  content: "";
  display: block;
}
.input-holder:after {
  clear: both;
}
.input-holder.error input,
.input-holder.error textarea {
  border-color: #616161;
}
.input-holder .error,
.input-holder .newerror {
  background-color: #616161;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  color: #ffffff;
  display: inline-block;
  font-size: 11px;
  right: 0;
  line-height: 1;
  padding: 5px 5px;
  position: absolute;
  top: -19px;
}
.input-holder .error:after,
.input-holder .newerror:after {
  border-bottom: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #616161;
  bottom: -5px;
  content: "";
  right: 10px;
  position: absolute;
}
.input-holder .newerror {
  top: -20px;
}
@media (max-width: 767px) {
  .input-holder .newerror {
    top: -25px;
  }
}



/*  ===============
  1. Reset
===============  */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  padding-top: 0px;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: "Averta", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 1.5rem;
  }
}

p {
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  text-align: inherit;
  color: #616161;
}
p + p {
  padding-top: 15px;
}
@media (max-width: 767px) {
  p + p {
    padding-top: 10px;
  }
}
p b,
p strong {
  font-weight: 700;
}
p a {
  color: #616161;
}
p a:hover {
  color: #122b45;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after, .clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  clear: both;
}

svg:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: none;
  outline: none;
}

svg {
  transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
}

a,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
  text-shadow: none;
  -webkit-text-shadow: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
}
a:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  text-decoration: none;
  border-color: #2098D1;
}

a {
  color: inherit;
  display: inline-block;
}

a[href^=tel] {
  color: inherit;
  cursor: default;
}

b,
strong {
  font-weight: 600;
}

img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
}
img.alignright {
  display: inline;
  float: right;
  margin: 24px 0 24px 20px;
}
img.alignleft {
  display: inline;
  float: left;
  margin: 24px 20px 24px 0;
}
img.aligncenter {
  clear: both;
  display: block;
  margin: 10px auto;
}
img.alignnone {
  display: inline;
  margin: 10px;
}
@media (max-width: 767px) {
  img {
    clear: both;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    width: auto;
  }
  img.alignleft, img.alignright, img.aligncenter, img.alignnone {
    clear: both;
    display: block;
    float: none;
    margin: 10px auto 7px;
  }
}

article,
aside,
div,
main,
nav,
section,
figure {
  *zoom: 1;
}
article:after, article:before,
aside:after,
aside:before,
div:after,
div:before,
main:after,
main:before,
nav:after,
nav:before,
section:after,
section:before,
figure:after,
figure:before {
  content: "";
  display: block;
}
article:after,
aside:after,
div:after,
main:after,
nav:after,
section:after,
figure:after {
  clear: both;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul + h1, ul + h2, ul + h3, ul + h4, ul + h5, ul + h6, ul + ul, ul + ol,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6,
ol + ul,
ol + ol {
  margin-top: 24px;
}

p + h1, p + h2, p + h3, p + h4, p + h5, p + h6, p + ul, p + ol {
  margin-top: 24px;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal.fade.show {
  opacity: 1;
}

.modal-open {
  padding-right: 0 !important;
  overflow-y: auto;
  z-index: 9999;
}

.fluid-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1910px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 100%;
}

.less-gutters {
  margin-right: -7px;
  margin-left: -7px;
}
.less-gutters > [class*=col-] {
  padding-right: 7px;
  padding-left: 7px;
}
.more-gutters {
  margin-right: -23px;
  margin-left: -23px;
}
.more-gutters > [class*=col-] {
  padding-right: 23px;
  padding-left: 23px;
}

.inner-sec ol li
{
list-style:auto;
}

#fr td
{
padding:10px;
}