/*===================== TABLE OF CONTENT =======================
1. Reset
2. Body Style
3. Placeholders & Highlights
4. Container & Grid
5. Headings
6. Buttons
7. Form
8. Paddings & Margins
9. Breadcrumbs
10. Custom Style
11. Header
12. Intro
13. Home Section
14. Main Content
15. Footer
16.  About Pages
17.  Home Table
18.  Calculator Page
19.  Fond Single Page
20.  RobertL
21. Pagination
=============================================================*/
/* ================================================================================== 
1. Reset
===================================================================================== */
*, *::after, *::before { margin: 0; padding: 0; -webkit-box-sizing: inherit; box-sizing: inherit; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a, a:active, a:hover, a:focus { outline: none; } abbr[title] { border-bottom: 1px dotted; } dfn { font-style: italic; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; max-width: 100%; } svg:not(:root) { overflow: hidden; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; margin-top: 30px; margin-bottom: 35px; border-width: 0; border-top: 1px solid #757575; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } input:focus, select:focus, textarea:focus, button:focus { outline: none; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } input, textarea, button, select, a { -webkit-tap-highlight-color: transparent; } a { color: inherit; text-decoration: none; -webkit-transition: all 0.6s ease; -o-transition: all 0.6s ease; transition: all 0.6s ease; } strong { font-weight: 700; }
.fancybox__button--zoo, .fancybox__button--slideshow, .fancybox__button--fullscreen, .fancybox__button--thumbs, .fancybox__button--zoom{
  display: none;
}
.none{
  display: none;
}
ul, ol { padding-left: 4rem; }
/* ================================================================================== 
2. Body Style
===================================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 56.25%;
  word-wrap: break-word;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color:#000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  background-color: #f7f8f9;
}
main{
  position: relative;
  padding-top: 7.1rem;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  main{
    padding-top: 8.9rem;
  }
}
/* ================================================================================== 
3. Placeholders & Highlights
===================================================================================== */
::-webkit-input-placeholder { color: inherit; opacity: 1 !important; }
:-moz-placeholder { color: inherit; opacity: 1; }
::-moz-placeholder { color: inherit; opacity: 1; }
:-ms-input-placeholder { color: inherit; }
::-moz-selection { background-color: #f39200;  color: #fff; }  
::selection { background-color: #f39200; color: #fff }
/* ================================================================================== 
4. Container & Grid
===================================================================================== */
.container {
  position: relative;
  width: 100%;
  max-width: 148rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem;
}
.container-lg{
  max-width: 180rem;
}
.container-xl{
  max-width: 165rem;
}
.container-md{
  max-width: 110rem;
}
/* ================================================================================== 
5. Headings
===================================================================================== */
h1, h2, h3, h4, h5, h6 { margin-bottom: 2rem; font-weight: 600;line-height:1.4; }
.title h1, .title h2, .intro-text h1{ font-size: 2.5rem; color: #7d7d7d;}
p { margin-bottom: 2rem; }
.title{ margin-bottom:4rem; }
.title-center{text-align: center;}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .title h1, .title h2, .intro-text h1{ font-size: 3rem; }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .title h1, .title h2,  h1{ font-size: 3.6rem; }
  .intro-text h1{
    font-size: 5rem;
  }
}
/* ================================================================================== 
6. Buttons
===================================================================================== */
.btn {
	display: inline-block;
	padding: 0.7rem 2.6rem;
	font-weight: 600;
	font-size: 1.4rem;
	border-radius: 0.6rem;
	text-transform: uppercase;
}
.btn-primary{
  background-color: #f39200;
  color: #fff;
}
.btn-secondary{
  background-color: #7d7d7d;
  color: #fff;
}
.btn-primary:hover,  .btn-secondary:hover{
  background-color: #7d7d7d;
}
/* ================================================================================== 
7. Form
===================================================================================== */
input,
textarea, select {
  display: block;
  width: 100%;
  border: 1px solid #dee7ee;
  padding: 1.6rem 1rem;
  outline: none;
  background-color: #ffffff;
  font-size: 1.4rem;
  font-weight: 400;
}
textarea{
  resize: vertical;
  height: 19rem;
}
input:focus,
textarea:focus, select:focus {
  border-color: #f39200;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
button {
  transition: all 0.4s ease-in-out;
  border:0;
}
fieldset{
  border: 0;
  margin-bottom: 2rem;
}
label.check-wrapper {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: none;
}
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #43515a;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.check-wrapper .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #43515a;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* ================================================================================== 
8. Paddings & Margins
===================================================================================== */
.space {
  padding: 5rem 0;
}
.mt-5{
  margin-top: 5rem;
}
.no-pt{
  padding-top: 0 !important;
}
.no-pb{
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .space {
    padding: 5rem 0;
  }
}
/* .menu-item-has-children za wp sub parent*/
/* .current_page_item za wp active link u navigaciji*/
/* ================================================================================== 
9. Breadcrumbs
===================================================================================== */
.breadcrumbs{
  background-color: #e1e1e1;
  padding: 1rem 0;
  font-size: 1.4rem;
}
.breadcrumbs ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.breadcrumbs ul li{
  display: inline-block;
  font-weight: 600;
}
.breadcrumbs ul li::after{
  content: '|';
  display: inline-block;
  margin: 0 1rem;
}
.breadcrumbs ul li a{
  display: inline-block;
  font-weight: 400;
}
.breadcrumbs ul li:last-child:after{
  content: none;
}
/* ================================================================================== 
10. Custom Style
===================================================================================== */
.list ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.list ul li{
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.7rem;
}
.list  ul li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 2rem;
  height: 2rem;
  background-image: url(images/list.svg);
  background-repeat: no-repeat;
  background-size: 2rem;
}
/* ================================================================================== 
11. Header
===================================================================================== */
header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 2rem 0;
  transition: all .4s ease-in-out;
  background-color: #fff;
  z-index: 20;
}
header ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo{
  display: block;
}
.header-logo img{
  display: block;
  width: 17rem;
  height: auto;
}
header nav{
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  overflow-y: auto;
  height: 100%;
  min-height: 100vh;
  transform: translateX(100%);
  transition: all .4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  padding: 1rem;
  padding-top: 10rem;
  z-index: 10;
}
header nav.open{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
header nav li{
  display: block;
}
header nav li a{
  display: block;
  padding: 1rem 2rem;
}
header nav li a:hover, header nav li.current_page_item a{
  color: #f39200;
}
.social{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap:1rem;
  margin-left: auto;
}
.social a{
  display: block;
  opacity: 0.51;
}
.social a:hover{
  opacity: 1;
}
.social a img{
  display: block;
  width: 2.5rem;
  height: auto;
}
.menu-close{
  position: absolute;
  top:1rem;
  right: 3rem;
  font-size: 4rem;
  outline: none;
  cursor: pointer;
}
.menu-toggle{
  order: 3;
  cursor: pointer;
  margin-left: 2rem;
}
.menu-toggle img{
  display: block;
  width: 3rem;
  height: auto;
}
.menu-item-has-children{
  position: relative;
  background-image: url(images/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: top 16px right 10px;
}
.sub-menu{
  display: none;
  padding-left: 3rem;
}
header nav .sub-menu li{
  display: block;
}
header nav .sub-menu li a{
  display: block;
  padding: 0.5rem 1rem;
}
.btn-mobile{
  display: block;
  margin-top: 3rem;
  padding-left: 2rem;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  header nav{
    width: 40rem;
    padding: 3rem;
    padding-top: 10rem;
  }
  .header-logo img{
    width: 24rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .menu-toggle{
    display: none;
  }
  .menu-close{
    display: none;
  }
  header nav{
    margin-left: auto;
    margin-right: 5rem;
    position: static;
    top: auto;
    right: auto;
    width: auto;
    background-color: transparent;
    overflow-y: visible;
    height: auto;
    min-height: auto;
    transform: none;
    transition: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  header nav li{
    display: inline-block;
  }
  header nav li a{
    display: inline-block;
  }
  .social{
    margin-left: 0;
  }
  .sub-menu{
    position: absolute;
    left: 0;
    width: 40rem;
    background-color: #fff;
    transition: all .4s ease-in-out;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible;
  }
  .menu-item-has-children{
    background-position: right center;
  }
  .btn-mobile{
    display: none;
  }
}
/*---------*/
.header-bottom{
  margin-top: 7.36rem;
  padding: 1rem 0;
}
.header-slider{
  width: 100%;
}
.slider-box{
  display: flex !important;
  align-items: center;
  font-size: 1.4rem;
}
.slider-box h4{
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  margin-right: 5px;
}
.slider-box span{
  padding-right: 2rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 1.4rem;
  background-position: right center;
}
.down{
  color: #c63939;
  background-image: url(images/down.svg);
}
.up{
  color: #5faf29;
  background-image: url(images/up.svg);
}
.header-bottom .btn{
  border-radius: 0;
  text-transform: uppercase;
  padding: 1rem;
  text-align: center;
  display: none;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .header-bottom{
    margin-top: 8.56rem;
  }
  .slider-box{
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .header-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  .header-slider{
    width: 89%;
  }
  .header-bottom .btn{
    display: block;
  }
}
/* ================================================================================== 
12. Intro
===================================================================================== */
.intro-slide{
  position: relative;
}
.slide-overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
}
.intro-slide img{
  display: block;
  width: 100%;
  height: 22rem;
  object-fit: cover;
}
.intro-text{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 75rem;
  width: 100%;
  text-align: center;
  color: #fff;
}
.intro-text img{
  width: 20rem;
  height: auto;
  margin: 0 auto;
  margin-top: 2rem;
  height: auto;
}
.intro-text h1{
  color: #fff;
  margin-bottom: 0;
}
.intro-text strong{
  color: #f39200;
  font-weight: 500;
}
.slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  background-repeat: no-repeat;
  background-size: 2.6rem;
  width: 2.6rem;
  height: 2.2rem;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  z-index: 1;
}
.slick-prev{
  left: 1rem;
  background-image: url(images/prev-white.svg);
}
.slick-next{
  right: 1rem;
  background-image: url(images/next-white.svg);
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .slick-prev{
    left: 5.2rem;
  }
  .slick-next{
    right: 5.2rem;
  }
  .intro-slide img{
    height: 38.8rem;
  }
  .intro-text img{
    width: 30rem;
    height: auto;
  }
 
}
/* ================================================================================== 
13. Home Section
===================================================================================== */
.home-section-top{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap:3rem;
  align-items: center;
  padding: 5rem 0;
}
.home-section-top img{
  display: block;
  width: 20rem;
  height: auto;
}
.home-section-title h3{
  font-size: 2.4rem;
  color: #7d7d7d;
  margin-bottom: 0;
  font-weight: 700;
}
.home-section-title p{
  margin-bottom: 0;
}
.home-section-table{
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap:2%
}
.table-column{
  width: 49%;
  margin-bottom: 2rem;
}
.table-cell{
  background-color: #fff;
  padding: 1rem;
  text-align: center;
}
.table-cell:first-child{
  background-color: #efefef;
}
.table-cell:last-child{
  color: #f39200;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .home-section-top{
    flex-direction: row;
    text-align: left;
  }
  .home-section-title{
    padding-left: 3rem;
    border-left: 1px solid #a6a6a6;
  }
  .table-column{
    width: 32%;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .home-section-top img{
    width: 32.4rem;
  }
  .home-section-title h3{
    font-size: 3rem;
  }
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .table-cell:last-child{
    font-size: 2.4rem;
  }
  .table-column{
    width: 15%;
  }
}
@media only screen and (min-width: 76.3125em) {
  /*1221px*/
  .table-cell:last-child{
    font-size: 3rem;
  }
  .home-section-table{
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
  }
  .table-column{
    width: 10%;
    margin-bottom: 0;
  }
}
/* ================================================================================== 
14. Main Content
===================================================================================== */
.content{
  width: 100%;
  margin-bottom: 5rem;
}
.content-aside{
  width: 100%;
  background-color: #fff;
  border-radius: 1rem;
  display: none;
}
body.home .content-aside{
  display: block;
}
.pages-main-wrapper{
  text-align: justify;
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .main-content .container, .pages-main-wrapper, .main-content-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .content{
    width: 65%;
    margin-bottom: 0;
  }
  .content-aside{
    width: 30%;
    display: block;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .content{
    width: 70%;
  }
  .content-aside{
    width: 25%;
  }
}
/*------------*/
.news-rows{
  margin-bottom: 5rem;
}
.news-row{
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1rem;
  padding: 4rem 3rem;
  transition: all .4s ease-in-out;
}
.news-row:hover{
  box-shadow: 0 8px 10px 3px rgba(0,0,0,.03);
}
.news-row:not(:last-child){
  margin-bottom: 3rem;
}
.news-row-image{
  width: 100%;
}
.news-row-text{
  width: 100%;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
}
.news-row-image img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.news-row-text .btn{
  margin-top: auto;
  align-self: flex-start;
}
.news-row-text h3{
  transition: all .4s ease-in-out;
  font-size: 2rem;
}
.news-row-text h3:hover{
  color:#f39200;
}
.date{
  display: block;
  color: #9c9c9c;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 33.75em) {
  /*540px*/
  .news-row{
    flex-direction: row;
    justify-content: space-between;
  }
  .news-row-image{
    width: 30%;
  }
  .news-row-text{
    width: 65%;
    padding-top: 0;
  }
  .news-row-image img{
    height: 100%;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .news-rows{
    margin-bottom: 10rem;
  }
  .news-row-text h3{
    font-size: 2.4rem;
  }
}
.content-lg{
  width: 100%;
}
/*--------------*/
.news-wrapper article{
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 0.6rem;
  background-color: #fff;
  overflow: hidden;
  font-size: 1.4rem;
  margin-bottom: 3rem;
}
.news-wrapper article h3{
  font-size: 1.6rem;
  margin-bottom: 1rem;
  transition: all .4s ease-in-out;
}
.news-wrapper  article h3:hover{
  color: #f39200;
}
.news-image{
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.news-image img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all .4s ease-in-out;
}
.news-image:hover img{
  transform: scale(1.2);
}
.news-text{
  width: 100%;
  padding: 2rem;
}
.news-date{
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 3px;
  background-color: rgba(0,0,0,.5);
  color: #fff;
  font-size: 1.3rem;
  padding: 5px;
  z-index: 1;
}
.news-text p{
  margin-bottom: 0;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .news-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:1%;
  }
  .news-wrapper article{
    width: 49%;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .news-wrapper article{
    justify-content: space-between;
    flex-direction: row;
  }
  .news-image{
    width: 40%;
    margin-bottom: 0;
  }
  .news-image img{
    height: 100%;
  }
  .news-text{
    width: 60%;
  }
  .news-wrapper article{
    margin-bottom: 1rem;
  }
}
/*--------------*/
.content-aside h3 {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 3rem;
}
.aside-news-wrapper h4{
  font-weight: 400;
  margin-bottom: 5px;
  transition: all .4s ease-in-out;
}
.aside-news-wrapper h4:hover{
  color: #f39200;
}
.aside-date{
  color: #f39200;
  display: block;
}
.aside-news-wrapper a{
  display: block;
  margin-bottom: 3rem;
  padding-left: 2rem;
  background-image: url(images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: left top 0.6rem;
}
.aside-news, .aside-row{
  padding: 3rem;
  display: flex;
  flex-direction: column;
}
aside .btn{
  margin-left: auto;
  margin-right: auto;
}
 .aside-row.aside-news:first-child{
  padding-bottom: 0;
}
.aside-row.aside-news:nth-child(2){
  padding-top: 0;
}
.aside-images{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:2rem;
  margin-bottom: 3rem;
}
.aside-images img{
  display: block;
  height: auto;
  width: 17%;
}
.aside-images img:first-child{
  width: 60%;
}
.aside-banner{
  padding: 1rem 3rem;
  background-color: #e7f1e0;
  border-radius:0.6rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.aside-banner span{
  display: block;
  width: 48%;
}
.aside-banner span:nth-child(3){
  font-size: 2rem;
  color: #5faf29;
  font-weight: 700;
}
.aside-row .table-column{
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}
.aside-row .table-cell{
  width: 50%;
  font-size: 1.6rem;
}
.aside-row  .table-cell:first-child {
	background-color: #f7f8f9;
}
.aside-btn{
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.chip{
  display: block;
  width: 12rem;
  margin: 0 auto;
  height: auto;
  margin-bottom: 3rem;
}
.aside-table2 .table-cell:first-child{
  background-color: #dee7ee;
}
.aside-table2 .table-cell:last-child{
  color: #0061b4;
}
.table-sm table{
  width: 100%;
}
.table-sm td{
  padding: 1rem;
  font-size: 1.4rem;
  color: #636363;
  text-align: center;
  vertical-align: middle;
}
.table-sm th{
  padding: 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
  .table-sm td img{
  display: inline-block;
  width: 2.3rem;
  height: auto;
  vertical-align: middle;
}
.aside-row:last-child{
  border-bottom: 0;
}
.awards{
  margin-top: 3rem;
}
.awards-box:not(:last-child){
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #000;
}
.awards-box p{
  margin-bottom: 0;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .aside-banner span:nth-child(3){
    font-size: 2.4rem;
  }
  .content-aside h3 {
    font-size: 2.4rem;
  }
}
/* ================================================================================== 
15. Footer
===================================================================================== */
footer{
  background-color: #fff;
  padding: 5rem 0;
}
footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-logo a{
  display: block;
} 
.footer-logo{
  margin-bottom: 3rem;
}
.footer-logo img{
  display: block;
  width: 17rem;
  height: auto;
  margin: 0 auto;
}
footer .container{
  display: flex;
  flex-direction: column;
  text-align: center;
}
.copyright{
  padding: 1rem 0;
}
.copyright .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
}
footer .social{
  justify-content: center;
}
footer article{
  width: 100%;
  margin-bottom: 3rem;
}
footer article:last-child{
  margin-bottom: 0;
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .copyright .container{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  footer .container{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
  }
  .footer-logo img{
    margin: 0;
  }
  .footer-logo{
    margin-bottom: 0;
  }
  footer .social{
    justify-content: flex-start;
  }
  footer .social a img{
    width: 3.5rem;
  }
  footer article{
    width: 48%;
  }
  footer article:last-child{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
    border-top: 1px solid #e7e7e7;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  footer article:last-child h3{
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  .footer-logo img{
    width: 23rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  footer article{
    width: auto;
    margin-bottom: 0;
  }
  footer article:last-child{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
    border-top: 1px solid #e7e7e7;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
/* ================================================================================== 
16.  About Pages
===================================================================================== */
.team-row{
  margin-bottom: 5rem;
}
.team-row .accordion__head_text span{
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
}
.team-image{
  width: 100%;
  margin-bottom: 5rem;
}
.team-image img{
  display: block;
  width: 100%;
  height: auto;
}
.team-text{
  width: 100%;
}
.title-sub{
  margin-bottom: 3rem;
}
.title-sub h3{
  font-size: 2rem;
  margin: 0;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .team-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .team-image{
    width: 25%;
    position: sticky;
    top: 10rem;
    margin-bottom: 0;
  }
  .team-text{
    width: 100%;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .title-sub h3{
    font-size: 2.4rem;
  }
}
/*----------*/
.docs{
  margin-bottom: 5rem;
}
.docs ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.docs ul li {
	padding-left: 3rem;
	background-image: url(images/doc.svg);
	background-repeat: no-repeat;
	background-size: 2rem;
	margin-bottom: 2rem;
}
.btn-doc{
  width: 3rem;
  height: 5rem;
  background-image: url(images/doc-white.svg);
  background-size: 2rem;
  background-position: center;
  background-repeat: no-repeat;
}
.btn-doc-lg{
  width: auto;
  height: auto;
  background-position: left 2rem center;
  padding-left: 5rem;
}
.btns{
  display: flex;
  flex-direction: row; 
  flex-wrap: wrap;
  gap:2rem;
}
.archive-btn{
  margin-bottom: 3rem;
}
.accordion-wrapper {
  counter-reset: accordion-counter;
  /* margin-top: 10rem; */
}
.accordion {
	padding: 1.3rem 1rem;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	counter-increment: accordion-counter;
	/* border-bottom: 1px solid #e7e7e7; */
	background: #fff;
	margin-bottom: 1rem;
}
.accordion__head {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  gap:1rem;
  cursor: pointer;
  justify-content: flex-end;
}
.accordion__head_text {
  position: relative;
  width: calc(100% - 5rem);
  margin-bottom: 0;
  font-weight: 500;
}
.accordion__head_btn {
  width: 4rem;
  height: 4rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: none;
  background-color: transparent;
}
.accordion__head_btn:before, .accordion__head_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
  height: 2px;
  background-color: #45484f;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.accordion__head_btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0 1.5rem;
}
.accordion--active2 .accordion__body{
  max-height: 100%;
  padding-top: 2rem;
}
.accordion__body_text{
  text-align: justify;
}
/* .accordion:hover {
background-color: #7654B4;
}
.accordion--active {
background-color: #7654B4;
} */
.accordion--active .accordion__head_btn {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.accordion--active .accordion__head_btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.accordion--active .accordion__body {
  margin-top: 3rem;
}
/*--------------*/
.contact-form{
  padding: 5rem 3rem;
  border-radius: .6rem;
  background-color: #fff;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.contact-form  form br{
  display: none;
}
.contact-form form p{
  margin: 0;
}
.contact-map iframe{
  width: 100%;
  display: block;
  height: 50rem;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .contact-form form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact-form fieldset{
    width: 48%;
  }
  .contact-form fieldset.w-100{
    width: 100%;
  }
  .contact-form{
    padding: 5rem;
  }
}
/*----------------*/
.page-image{
  margin-bottom: 5rem;
}
.page-text{
  text-align: justify;
}
.page-image  img{
  display: block;
  height: auto;
}
.pages-row:not(:last-child){
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px dashed #000;
}
.pages-row .title{
  margin-bottom: 2rem;
}
.pages-wrap{
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px dashed #000;
}
/* ================================================================================== 
17.  Home Table
===================================================================================== */
.home-table-responsive{
  margin-bottom: 3rem;
}
.home-table-responsive table{
  width: 100%;
}
.home-table-responsive td img{
  width: 1rem;
  height: auto;
  display: block;
  margin-right: 1rem;
}
.table-img{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home-table-responsive th {
	background-color: #fff;
	text-align: left;
	padding: 1rem;
	font-size: 1.4rem;
	text-transform: uppercase;
}
.home-table-responsive  td{
	font-size: 1.4rem;
  padding: 1rem;
  border-bottom: 1px solid #e7e7e7;
}
.home-table-responsive  th:last-child{
  text-align: right;
}
.home-table-responsive td a{
  text-decoration: underline;
}
.home-table-responsive td a:hover{
  text-decoration: none;
}
.disclaimer{
  font-size: 1.35rem;
  font-weight: 400;
  list-style: 1.8rem;
  margin-top: 7rem;
  opacity: 0.7;
  text-align: justify;
}
.disclaimer h3{
  text-transform: uppercase;
}
/* ================================================================================== 
18.  Calculator Page
===================================================================================== */
.calculator{
  margin-top: 5rem;
}

.calculator form p{
  margin-bottom: 0;
}
.calculator form br{
  display: none;
}

.form-btn .btn {
	border: 0;
	border-radius: 0;
	height: 5rem;
  transition: all .4s ease-in-out;
}
.calculator fieldset.form-btn{
  width: auto;
}
.calc-text{
  text-align: center;
  background-color: #fff;
  margin-top: 2rem;
  padding: 2rem;
  border:1px solid #e7e7e7;
}
.calc-text h2{
  color: #f39200;
  margin: 0;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .calculator form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap:2%
  }
  .calculator fieldset{
    width:33%;
  }
  .calculator fieldset.form-btn{
    width: auto;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .calculator fieldset{
    width: 26.3%;
  }

  .calculator fieldset.form-btn{
    width: 15%;
  }

}
/* ================================================================================== 
19.  Fond Single Page
===================================================================================== */
.tabs {
  width: 100%;
  margin-bottom: 5rem;
}
.tabs a {
	padding: 1rem 2rem;
	display:block;
	background-color: #fff;
	margin-right: 0.5rem;
	font-weight: 600;
  margin-bottom: 1rem;
  transition: none;
}
.tabs a:hover,
.tabs a.active-tab {
  background: #f39200;
  color: #fff;
}
.tabs-container {
  width: 100%;
  display: none;

  margin-top: 1rem;
}
.tabs-container.active-tab {
  display: block;
}
.fond-single-top{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dashed #000;
  margin-bottom: 3rem;
  padding-bottom: 3rem;

}
.fond-top-box{
  width: 48.5%;
}
.fond-top-box p{
  font-size: 1.3rem;
  margin-bottom: 0;
  opacity: 0.6;
}
.fond-top-box h3 {
	font-size: 1.5rem;
}
.tabs-container .title{
  margin-bottom: 3rem;
}
.table-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed #000;
}
.table-item{
  width: 48%;
}
.table-item:first-child{
  font-weight: 600;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .fond-top-box{
    width: 31.3%;
  }

}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .tabs {
    width: 100%;
    display: flex;
    flex-flow: row wrap;

  }
  .tabs a {
    display: inline-block;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .fond-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .fond-text{
    width: 48%;
  }
   
}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  .fond-top-box:last-child{
    width: 10%;
  }
  .fond-top-box{
    width: 18%;
  }

}

/* ================================================================================== 
20.  RobertL
===================================================================================== */
#archive {
	display: none;
}

#finance {
	display: none;
}

#scenario {
	display: none;
}
/* ================================================================================== 
21. Pagination
===================================================================================== */
.pagination{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:1rem
}
.page-numbers{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}
.page-numbers.current, .page-numbers:hover{

  background-color: #f39200;
  color: #fff;
}
.page-numbers.current{
  cursor:text;
}
.page-numbers.next, .page-numbers.prev{
  width: 10rem;
}

.wpcf7-acceptance span.wpcf7-list-item label {
    display: flex;
}

.wpcf7-acceptance span.wpcf7-list-item input {
    width: 20px !important;
  	margin-right: 10px;
}

.wpcf7-acceptance span.wpcf7-list-item {
    margin-left: 0;
}