/*
Theme Name: Portland
Theme URI: //template.portland.itembridge.com/
Author: InfoStyle
Author URI: https://themeforest.net/user/itembridgethemes
Description: Portland responsive theme
Version: 1.0.3
License: ThemeForest Regular & Extended License
License URI: http://themeforest.net/licenses/regular_extended

[Table of contents]
1. Typography ---------------- #line 33
  1.1. Title ----------------- #line 71
  1.2. Text ------------------ #line 122
  1.3. Images ---------------- #line 146
  1.4. Lists ----------------- #line 175
  1.5. Blockquote ------------ #line 206
  1.6. Table ----------------- #line 233
  1.7. Forms ----------------- #line 280
  1.8. Video ----------------- #line 720
  1.9. Retina ---------------- #line 751
2. Helper Classes ------------ #line 766
3. Main ---------------------- #line 806
4. Preloader ----------------- #line 839
5. Background ---------------- #line 993
6. Header -------------------- #line 1139
7. Footer -------------------- #line 1544
8. Structure ----------------- #line 1612
9. Carousels ----------------- #line 1766
10. Content ------------------ #line 1820
*/
/******************************************************************************
  Typography
*******************************************************************************/


h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  line-height: 1;
  letter-spacing: .2em;
  margin-top: 0;
  text-transform: uppercase;
}

h1, .h1 {
  font-weight: 300;
  letter-spacing: .1em;
}

h2, .h2 {
  font-weight: 400;
  letter-spacing: .1em;
}

h3, .h3 {
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .1em;
}

h4, .h4 {
  font-weight: 700;
  margin-bottom: 25px;
}

h5, .h5 {
  font-weight: 500;
  margin-bottom: 20px;
}

h6, .h6 {
  font-weight: 500;
  margin-bottom: 15px;
}

p {
  margin-bottom: 30px;
}
p:last-child {
  margin-bottom: 0;
}
a {
  position: relative;
  text-decoration: none;
  transition: color 0.5s, border-color 0.5s;
  vertical-align: top;
}
.logo-resp {

  margin-top: 20px;
} 

img {
  height: 200px;
  max-width: 100%;
  margin-top: -5px;
}

svg {
  max-width: 100%;
}

.lead {
  font-size: 18px;
  font-size: 1.28571rem;
  line-height: 1.67;
}
.lead a {
  font-size: 20px;
  font-weight: 600;
  color: black;
  text-decoration: none !important;
}

.caption {
  color: black;
  line-height: 1.3;
  margin-bottom: 30px;
}
.caption figcaption {
  margin-top: 23px;
}

ul,
ol {
  margin-bottom: 30px;
  padding-left: 17px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}
ul li {
  padding-left: 17px;
  position: relative;
}
ul li:before {
  border-left: 5px solid #000;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  display: inline-block;
  content: "";
  height: 0;
  margin: -3px 0 0 -14px;
  position: absolute;
  top: 1em;
  width: 0;
}


/******************************************************************************
  Helper Classes
*******************************************************************************/
@media (max-width: 767px) {
  .xs-text-center {
    text-align: center;
  }
  .logo-resp {
    width: 75px;
    height: auto;
  } 
  .h1-section-title{
    margin-top: 100px;
    font-size: 25px;
  }
  .lead {
    font-size: 15px;
  }
  .lead .email{
    font-size: 15px;
  }
  .lead .tel{
    font-size: 15px;
  }
  .xs-text-left {
    text-align: left;
  }
  img {
    height: auto;
    max-width: 100%;
    margin-top: -5px;
  }

  .xs-text-right {
    text-align: right;
  }
}
@media (max-width: 1000px) {
  .sm-text-center {
    text-align: center;
  }
  .h1-section-title{
    font-weight: 600;
    font-size: 25px;
  }

  .sm-text-left {
    text-align: left;
  }

  .sm-text-right {
    text-align: right;
  }
}
.relative {
  position: relative;
}

/******************************************************************************
  Main
*******************************************************************************/
html {
  height: 100%;
  font-size: 14px;
  word-wrap: break-word;
}

body {
  color: black;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  line-height: 2.2;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 767px) {
  body {
    overflow: auto;
  }
}

*:focus {
  outline: none;
}

/******************************************************************************
  Preloader
*******************************************************************************/
@keyframes expand {
  0% {
    width: 2px;
    height: 2px;
    top: 24px;
    left: 24px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    opacity: 0.2;
  }
}
.preloader {
  background: #fff;
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 999;
}
.preloader span {
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  position: absolute;
  top: 50%;
  width: 60px;
}
.preloader span:before, .preloader span:after {
  -webkit-animation: expand 3s;
  animation: expand 3s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  border: solid 3px #000;
  border-radius: 50%;
  content: " ";
  height: 2px;
  left: 24px;
  opacity: 0;
  position: absolute;
  top: 24px;
  width: 2px;
}
.preloader span:after {
  -webkit-animation-delay: 1.5s;
}

/******************************************************************************
  Background
*******************************************************************************/
@keyframes moveclouds {
  0% {
    margin-left: 100%;
  }
  100% {
    margin-left: -100%;
  }
}
@-webkit-keyframes moveclouds {
  0% {
    margin-left: 100%;
  }
  100% {
    margin-left: -100%;
  }
}
@keyframes moveclouds2 {
  0% {
    margin-left: 100%;
  }
  50% {
    margin-left: 100%;
  }
  100% {
    margin-left: -100%;
  }
}
@-webkit-keyframes moveclouds2 {
  0% {
    margin-left: 100%;
  }
  50% {
    margin-left: 100%;
  }
  100% {
    margin-left: -100%;
  }
}
.background {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.background .layer {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.background .background-image.page-bg-4 {
  background-image: url(../img/bg-labir.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  opacity: 30%;
}


/******************************************************************************
  Header
*******************************************************************************/
.site-header {
  height: 113px;
  left: 0;
  padding: 10px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .site-header {
    height: 93px;
  }
}
@media (max-width: 767px) {
  .site-header {
    height: 117px;
    padding-top: 15px;
    position: relative;
  }
}
.site-header .header-wrap {
  display: table;
  height: 100%;
  margin: 0;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
}
@media (max-width: 991px) {
  .site-header .header-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .site-header .header-wrap {
    display: block;
    height: auto;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 767px) {
  .site-header .header-wrap .header-box {
    display: block;
  }
}


@media (max-width: 767px) {
  .site-header .header-wrap .header-box .main-menu {
    width: 100%;
  }
}


@media (max-width: 767px) {
  .site-header .header-wrap .header-box .main-menu ul li {
    border-right: 0 none;
  }
}

@media (max-width: 767px) {
  .site-header .header-wrap .header-box .main-menu ul li:before, .site-header .header-wrap .header-box .main-menu ul li:after {
    display: block;
  }
}


.site-header .header-wrap .header-box .main-menu ul li:last-child {
  border-right: 0 none;
}
@media (max-width: 767px) {
  .site-header .header-wrap .header-box .main-menu ul li:last-child {
    float: right;
  }
}




/******************************************************************************
  Footer
*******************************************************************************/
.site-footer {
  bottom: 0;
  color: black;
  font-size: 1.2rem;
  height: 134px;
  left: 0;
  line-height: 1.2;
  padding: 10px 0;
  position: absolute;
  width: 100%;
  z-index: 1;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .site-footer {
    height: 126px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    height: 91px;
    margin-bottom: 50px;
  }
}

.site-footer .copyright {
  margin-top: 55px;
  display: inline-block;
  vertical-align: middle;
}

.site-footer .social a {
  border: 2px solid transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: black;
  display: inline-block;
  font-size: 15px;
  height: 34px;
  line-height: 32px;
  margin: 0;
  -webkit-transition: color 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border 0.2s ease-in-out;
  vertical-align: top;
  width: 34px;
}
.site-footer .social a:hover {
  border-color: black;
  color: black;
}


/******************************************************************************
  Structure
*******************************************************************************/
.main {
  height: 100%;
  overflow: hidden;
  padding-top: 213px;
  padding-bottom: 134px;
  width: 100%;
}
@media (max-width: 991px) {
  .main {
    padding-top: 93px;
    padding-bottom: 126px;
  }
}
@media (max-width: 767px) {
  .main {
    height: auto;
    min-height: calc(100% - 117px - 91px);
    padding-top: 0;
    padding-bottom: 0;
  }
}
.main .section {
  height: 0;
  overflow: hidden;
  position: absolute;
  table-layout: fixed;
  visibility: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .main .section {
    display: block;
    position: relative;
  }
}
.main .section.active {
  height: 100%;
  height: calc(100% - 113px - 134px);
  visibility: visible;
}
@media (max-width: 991px) {
  .main .section.active {
    height: calc(100% - 93px - 126px);
  }
}
@media (max-width: 767px) {
  .main .section.active {
    height: auto;
  }
}
.main .section .section-wrap {
  display: table;
  height: 100%;
  overflow-y: auto;
  table-layout: fixed;
  width: 100%;
}
.main .section .section-wrap .section-content {
  display: table-cell;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: middle;
  width: 100%;
}
@media (max-width: 767px) {
  .main .section .section-wrap .section-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.intro-page .main,
.no-footer .main {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .intro-page .main,
  .no-footer .main {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .intro-page .main,
  .no-footer .main {
    height: auto;
    min-height: calc(100% - 117px - 30px);
  }
}
.intro-page .main .section,
.no-footer .main .section {
  height: calc(100% - 113px - 30px);
}
@media (max-width: 767px) {
  .intro-page .main .section,
  .no-footer .main .section {
    height: auto;
  }
}

.section .mCustomScrollBox {
  height: auto;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0;
}

.section .section-content > .mCustomScrollBox,
.section .section-content > .mCustomScrollBox > .mCSB_container {
  overflow: visible;
}

.section.scroll-content .section-wrap,
.section.scroll-content .section-wrap .section-content {
  display: block;
  height: 100%;
}
.section.scroll-content .section-wrap > .mCustomScrollBox,
.section.scroll-content .section-wrap .section-content > .mCustomScrollBox {
  height: 100%;
  overflow: hidden;
}
.section.scroll-content .section-wrap > .mCustomScrollBox > .mCSB_container,
.section.scroll-content .section-wrap .section-content > .mCustomScrollBox > .mCSB_container {
  overflow: hidden;
}

/******************************************************************************
  Content
*******************************************************************************/
/* Coming Soon */
#home .section-content > .container {
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  #home .section-content > .container {
    margin-top: 180px;
   margin-bottom: 150px;
  }
}
@media (max-width: 767px) {
  #home .section-content > .container {
    margin-bottom: 0;
  margin-top: 50px;
  }
}



