/*
Theme Name: Trolly
Theme URI:
Author: Tom Lev
Author URI:
Description: Trolly Theme
Version: 1.0.0
License:
License URI:
Text Domain: trolly
*/
/** MIXINS **/
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, ul, ol, button, input, table {
  margin: 0;
  padding: 0;
}

.overflow-hidden {
  height: 100vh !important;
  overflow: hidden !important;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
img.alignleft {
  margin-right: 15px;
}
img.alignright {
  margin-left: 15px;
}

i {
  display: inline-block;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  font: inherit;
}

input[type=submit],
button {
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  font: inherit;
  border: 0;
  background: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.cf:after {
  content: "";
  clear: both;
  overflow: hidden;
  display: block;
  visibility: hidden;
  margin: 0;
  padding: 0;
  height: 0;
  width: 0;
}

.align-left,
.alignleft {
  float: left;
}

.align-right,
.alignright {
  float: right;
}

.span10 {
  width: 10%;
}

.span20 {
  width: 20%;
}

.span25 {
  width: 25%;
}

.span26 {
  width: 26.66%;
}

.span30 {
  width: 30%;
}

.span33 {
  width: 33.33%;
}

.span40 {
  width: 40%;
}

.span45 {
  width: 45%;
}

.span50 {
  width: 50%;
}

.span55 {
  width: 55%;
}

.span60 {
  width: 60%;
}

.span66 {
  width: 66.66%;
}

.span70 {
  width: 70%;
}

.span75 {
  width: 75%;
}

.span80 {
  width: 80%;
}

.span100 {
  width: 100%;
}

body {
  font-family: "Assistant";
  font-weight: normal;
  font-size: 18px;
  color: #333;
}

a {
  color: #1b6496;
  text-decoration: none;
}

h2,
h3 {
  font-weight: normal;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta {
  margin-top: 30px;
  text-align: center;
}

.btn, #contact .post-content .wpcf7 .wpcf7-form input[type=submit] {
  padding: 6px 20px 8px;
  display: inline-block;
  background: #ea53a3;
  text-align: center;
  font-weight: normal;
  color: #fff;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  -ms-border-radius: 19px;
  border-radius: 19px;
}

.btn-hollow {
  padding: 5px 20px;
  background: none;
  border: 1px solid #013442;
  color: #333;
  font-weight: normal;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
}

.separator {
  width: 100%;
  height: 1px;
  margin-top: 40px;
  background: #d8d8d8;
}

.btn-nav {
  order: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 3;
}
.btn-nav span {
  width: 30px;
  height: 2px;
  display: block;
  position: relative;
  background: #013442;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-nav span:before, .btn-nav span:after {
  width: 36px;
  height: 2px;
  display: block;
  content: "";
  position: absolute;
  background: #013442;
  left: -3px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-nav span:before {
  top: -10px;
}
.btn-nav span:after {
  bottom: -10px;
}
.btn-nav.active span {
  background: transparent;
}
.btn-nav.active span:before, .btn-nav.active span:after {
  background: #fff;
}
.btn-nav.active span:before {
  transform: rotate(45deg);
  top: 0;
}
.btn-nav.active span:after {
  transform: rotate(-45deg);
  bottom: 0;
}

.search-form {
  position: relative;
}
.search-form input[name=q] {
  width: 100%;
  height: 60px;
  padding: 10px 20px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  font-size: 24px;
  color: #333;
  transition: all 0.3s ease;
}
.search-form input[name=q]:focus {
  background: white;
}
.search-form .btn-search {
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  font-size: 24px;
  color: #666;
}
.search-form .btn-search.inactive {
  display: none;
}
.search-form .search-loader {
  display: none;
}
.search-form .search-loader.active {
  display: block;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  font-size: 24px;
  color: #666;
}
.search-form .search-results {
  width: 100%;
  max-height: 240px;
  padding-top: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
}
.search-form .search-results .row {
  width: 100%;
}
.search-form .search-results .row a {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  color: #333;
}
.search-form .search-results .row a .post-title {
  text-align: right;
}

.newsletter {
  padding: 30px;
  background: #1b6496;
  text-align: center;
}
.newsletter .newsletter-intro {
  margin-bottom: 10px;
  color: #fff;
  font-style: normal;
  font-size: inherit;
}
.newsletter .yikes-easy-mc-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter .yikes-easy-mc-form .form-field-description {
  color: #fff;
  font-style: normal;
  font-size: inherit;
}
.newsletter .yikes-easy-mc-form label[for=yikes-easy-mc-form-1-EMAIL] {
  width: 65%;
  max-width: 400px;
  margin: 0 !important;
  order: 2;
}
.newsletter .yikes-easy-mc-form .yikes-easy-mc-email {
  height: 44px;
  margin: 0 !important;
  padding: 5px 20px;
  border: 0;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  text-align: left;
  direction: ltr;
}
.newsletter .yikes-easy-mc-form .yikes-easy-mc-submit-button {
  width: 35%;
  max-width: 150px;
  height: 44px;
  margin: 0 !important;
  border: 0;
  background: #013442;
  border-radius: 0 22px 22px 0;
  order: 1;
}
.newsletter .edit-link {
  display: none;
}

.sb_instagram_header {
  float: none !important;
}
.sb_instagram_header a {
  float: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.sb_instagram_header a .sbi_header_text {
  width: auto;
  float: none;
  display: inline-block;
  direction: ltr;
  padding-top: 0;
}
.sb_instagram_header a .sbi_header_text h3, .sb_instagram_header a .sbi_header_text p {
  float: none;
}
.sb_instagram_header a .sbi_header_text h3 {
  margin: 0 0 0 10px !important;
  padding: 0 !important;
  font-size: 1.3rem;
}
.sb_instagram_header a .sbi_header_img {
  width: 50px;
  margin: 0 !important;
  float: none;
  display: inline-block;
}

#header {
  width: 100%;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
#header #logo {
  order: 2;
}
#header #logo img {
  height: 40px;
}
#header #nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  background: #1b6496;
  color: #fff;
  transition: all 0.3s ease;
  opacity: 0;
  text-align: center;
}
#header #nav.active {
  z-index: 4;
  opacity: 1;
  visibility: visible;
}
#header #nav.active .logo img {
  height: 50px;
}
#header #nav .logo {
  position: absolute;
  top: 10px;
  left: 20px;
}
#header #nav .logo img {
  height: 40px;
  transition: all 0.3s ease;
}
#header #nav .btn-nav {
  position: absolute;
  top: 55px;
  right: 40px;
  transition: all 0.3s ease;
}
#header #nav .btn-nav span {
  background: #fff;
}
#header #nav .btn-nav span:before, #header #nav .btn-nav span:after {
  background: #fff;
}
#header #nav .btn-nav.active {
  z-index: 10;
}
#header #nav .btn-nav.active span {
  background: transparent;
}
#header #nav .search {
  width: 100%;
  padding: 0 20px;
  position: absolute;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  top: 110px;
  z-index: 3;
}
#header #nav #primary-menu {
  width: 100%;
  margin-top: 190px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
#header #nav #primary-menu li {
  width: 100%;
}
#header #nav #primary-menu li a {
  display: block;
  padding: 5px;
  color: #fff;
  font-size: 30px;
}
#header #nav .call-to-action .btn-hollow {
  padding: 10px 20px;
  border-radius: 24px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 20px;
}
#header #nav .social {
  width: 100%;
  position: absolute;
  bottom: 50px;
}
#header #nav .social .social-links {
  font-size: 32px;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
#header #nav .social .social-links a {
  display: block;
  padding: 15px;
  color: #fff;
}

#footer {
  padding: 30px 20px;
  background: #eee;
  text-align: center;
}
#footer a {
  color: #333;
}
#footer .social > h3 {
  font-size: inherit;
}
#footer .social .social-links {
  font-size: 32px;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
#footer .social .social-links a {
  display: block;
  padding: 15px;
}
#footer .footer-like {
  margin-bottom: 20px;
  text-align: center;
}
#footer .footer-like .footer-like-title {
  margin-bottom: 10px;
}
#footer #footer-menu {
  list-style: none;
}
#footer #footer-menu li a {
  padding: 6px 10px;
}
#footer .call-to-action {
  margin: 30px 0;
}
#footer .call-to-action .btn-hollow {
  padding: 10px 20px;
  border-radius: 23px;
}
#footer .copyrights .logo img {
  height: 50px;
}

.site-main {
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.site-main .post-header {
  width: 100%;
  height: 250px;
  position: relative;
  z-index: 1;
}
.site-main .post-header .post-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.site-main .post-header .post-image:before {
  display: block;
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.site-main .post-header .post-image a {
  width: 100%;
  height: 100%;
  display: block;
}
.site-main .post-header .post-image a img {
  max-width: initial;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.site-main .post-header .post-image a img.landscape {
  width: auto;
  height: 100%;
}
.site-main .post-header .post-image a img.portrait {
  width: 100%;
  height: auto;
}
.site-main .post-header .container {
  height: 100%;
  position: relative;
  z-index: 2;
}
.site-main .post-header .container h1 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-weight: normal;
  line-height: 1.1;
  color: #fff;
}
.site-main .post-header .container h1 a {
  color: #fff;
}
.site-main .post-content {
  padding-top: 20px;
  padding-bottom: 30px;
  overflow: hidden;
  line-height: 1.4;
}
.site-main .post-content a {
  font-weight: 600;
}
.site-main .post-content .wp-caption {
  max-width: 100%;
  margin: 20px auto;
}
.site-main .post-content .wp-caption.alignleft {
  margin-right: 20px;
}
.site-main .post-content .wp-caption.alignright {
  margin-left: 20px;
}
.site-main .post-content .wp-caption .wp-caption-text {
  font-size: 0.9rem;
}
.site-main .post-content p,
.site-main .post-content ol,
.site-main .post-content ul {
  margin-top: 15px;
}
.site-main .post-content p:first-child:first-of-type,
.site-main .post-content ol:first-child:first-of-type,
.site-main .post-content ul:first-child:first-of-type {
  margin-top: 0;
}
.site-main .post-content ol,
.site-main .post-content ul {
  padding-right: 20px;
}
.site-main .post-content h2 {
  margin-top: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1b6496;
}
.site-main .post-content h2 + p,
.site-main .post-content h2 + ul,
.site-main .post-content h2 + ol {
  margin-top: 10px;
}
.site-main .post-content h3,
.site-main .post-content h4,
.site-main .post-content h5,
.site-main .post-content h6 {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}
.site-main .post-content h3 + p,
.site-main .post-content h3 + ul,
.site-main .post-content h3 + ol,
.site-main .post-content h4 + p,
.site-main .post-content h4 + ul,
.site-main .post-content h4 + ol,
.site-main .post-content h5 + p,
.site-main .post-content h5 + ul,
.site-main .post-content h5 + ol,
.site-main .post-content h6 + p,
.site-main .post-content h6 + ul,
.site-main .post-content h6 + ol {
  margin-top: 10px;
}
.site-main .post-content h4 {
  font-size: 1.3rem;
}
.site-main .post-content b,
.site-main .post-content strong {
  font-weight: 600;
}
.site-main .post-content iframe {
  width: 100%;
  max-width: 100% !important;
  margin-top: 15px !important;
  overflow: hidden;
  border: 0;
}
.site-main .post-content .wp-embedded-content {
  width: 100%;
  font-family: "Assistant" !important;
}
.site-main .post-content .wp-embedded-content .wp-embed {
  font-family: "Assistant" !important;
}

#homepage {
  padding-top: 0;
}
#homepage .section_1 {
  height: 180vw;
  padding: 124px 20px 0;
  position: relative;
  color: #fff;
  text-align: center;
}
#homepage .section_1 .btn-nav {
  position: absolute;
  top: 55px;
  right: 40px;
  z-index: 1;
  transition: all 0.3s ease;
}
#homepage .section_1 .btn-nav span {
  background: #fff;
}
#homepage .section_1 .btn-nav span:before, #homepage .section_1 .btn-nav span:after {
  background: #fff;
}
#homepage .section_1 .btn-nav.active {
  z-index: 10;
}
#homepage .section_1 .btn-nav.active span {
  background: transparent;
}
#homepage .section_1 .logo {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
#homepage .section_1 .logo img {
  height: 90px;
}
#homepage .section_1 .tagline {
  font-size: 30px;
  position: relative;
  z-index: 1;
}
#homepage .section_1 .search {
  margin: 130px 14px 0;
}
#homepage .section_1 .bottom-tagline {
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1rem;
}
#homepage .section_1 .background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#homepage .section_1 .background-image-mobile {
  display: block;
}
#homepage .section_1 .background-image-desktop {
  display: none;
}
#homepage .section_2 {
  padding-top: 30px;
}
#homepage .section_2 .container > h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.7rem;
}
#homepage .section_2 .container .ad-homepage {
  position: relative;
  overflow: hidden;
}
#homepage .section_2 .container .ad-patch {
  width: 60px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-bottom-right-radius: 15px;
  background: #d8d8d8;
  color: #333;
  text-align: center;
  font-size: 14px;
}
#homepage .section_3 {
  padding-top: 30px;
  text-align: center;
}
#homepage .section_3 > h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.7rem;
}
#homepage .section_4 {
  padding-top: 30px;
  text-align: center;
}
#homepage .section_4 .container > h2 {
  margin-bottom: 20px;
  font-size: 1.7rem;
}
#homepage .section_4 .container .cta {
  margin-top: 10px;
}
#homepage .section_5 {
  padding-top: 30px;
  text-align: center;
}
#homepage .section_5 > h2 {
  margin-bottom: 20px;
  font-size: 1.7rem;
}
#homepage .section_5 .destinations {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#homepage .section_5 .destinations .destination {
  width: calc(50% - 10px);
  margin-bottom: 15px;
}
#homepage .section_5 .destinations .destination a .destination-image {
  width: 100%;
  height: 90px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
#homepage .section_5 .destinations .destination a .destination-image img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#homepage .section_5 .destinations .destination a .destination-title {
  font-size: 1.5rem;
  color: #333;
}
#homepage .section_6 {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
#homepage .section_6 > h2 {
  margin-bottom: 20px;
  font-size: 1.7rem;
}

.page-template-page-homepage {
  padding-top: 0;
}
.page-template-page-homepage #header {
  transition: all 0.3s ease;
  top: -100%;
}
.page-template-page-homepage #header.active {
  top: 0%;
}

#contact .post-content .wpcf7 .wpcf7-form input[type=text],
#contact .post-content .wpcf7 .wpcf7-form input[type=email],
#contact .post-content .wpcf7 .wpcf7-form input[type=tel],
#contact .post-content .wpcf7 .wpcf7-form select,
#contact .post-content .wpcf7 .wpcf7-form textarea {
  width: 100%;
  padding: 7px 15px;
  font-size: 1.5rem;
  border: 1px solid #1b6496;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
}
#contact .post-content .wpcf7 .wpcf7-form .your-subject {
  position: relative;
}
#contact .post-content .wpcf7 .wpcf7-form .your-subject:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  position: absolute;
  top: 3px;
  left: 15px;
  transform: rotate(-90deg);
  z-index: 1;
  background: url(images/btn-arrow-left.svg) center center no-repeat;
}
#contact .post-content .wpcf7 .wpcf7-form select {
  position: relative;
}
#contact .post-content .wpcf7 .wpcf7-form input[type=submit] {
  width: auto;
}

#articles .cta {
  margin-bottom: 40px;
}

#authors .container .authors {
  padding-top: 20px;
}

#page-city .post-nav {
  width: 100%;
  padding: 10px 20px;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 2;
  background: linear-gradient(90deg, #013442 0%, #1b6496 100%);
}
#page-city .post-nav a {
  color: #fff;
  font-size: 1.7rem;
}
#page-city .post-nav a i {
  vertical-align: middle;
}
#page-city .section_1 {
  margin-top: 52px;
  position: relative;
}
#page-city .section_1 h1 {
  min-width: 250px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, 50%);
  color: #fff;
  text-align: center;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  font-weight: normal;
  background: #1b6496;
  background: linear-gradient(90deg, #013442 0%, #1b6496 100%);
}
#page-city .section_1 h1 a {
  display: block;
  padding: 4px 15px 8px;
  color: #fff;
}
#page-city .section_1 .background-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#page-city .section_1 .background-image:before {
  width: 100%;
  height: 60%;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: transparent;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
#page-city .section_1 .background-image img {
  transform: translateY(-50%);
  top: 50%;
  position: relative;
}
#page-city .section_2 {
  padding-top: 60px;
  text-align: center;
}
#page-city .section_2 .container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}
#page-city .section_2 .container ul li {
  width: 33.33%;
  margin-bottom: 25px;
}
#page-city .section_2 .container ul li a {
  width: 63px;
  height: 63px;
  margin: 0 auto 5px;
  padding: 0;
  background: #d8d8d8;
  display: block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#page-city .section_2 .container ul li a:hover {
  background: #1b6496;
}
#page-city .section_2 .container ul li a:hover i {
  color: #fff;
}
#page-city .section_2 .container ul li a i {
  color: #666;
  transition: all 0.3s ease;
  font-size: 1.7rem;
}
#page-city .section_2 .container ul li a.active {
  background: #1b6496;
}
#page-city .section_2 .container ul li a.active i {
  color: #fff;
}
#page-city .section_2 .container ul li span {
  font-size: 1.3rem;
}
#page-city .section_2 .container .separator {
  margin-top: 10px;
}
#page-city .section_3 {
  padding: 20px 0;
  display: none;
  background: #f4f4f4;
}
#page-city .section_4 {
  padding: 20px 0;
  display: none;
  background: #f4f4f4;
}
#page-city .section_4 .container > h2 {
  margin-bottom: 30px;
  text-align: center;
}
#page-city .section_5 .social_video {
  padding-top: 30px;
}
#page-city .section_5 .social_video .container > h2 {
  margin-bottom: 30px;
  text-align: center;
}
#page-city .section_6 {
  padding-top: 30px;
}
#page-city .section_6 .container > h2 {
  text-align: center;
  margin-bottom: 30px;
}
#page-city .section_7 {
  padding-top: 30px;
}
#page-city .section_7 .container > h2 {
  text-align: center;
  margin-bottom: 30px;
}
#page-city .section_8 {
  padding-top: 30px;
  text-align: center;
}
#page-city .section_8 .container > h2 {
  text-align: center;
  margin-bottom: 30px;
}
#page-city .section_8 .container .authors {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#page-city .section_8 .container .authors .author {
  width: calc(33.33% - 10px);
  margin-bottom: 20px;
}
#page-city .section_8 .container .authors .author .author-image {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 100%;
  overflow: hidden;
}
#page-city .section_8 .container .authors .author .author-image img {
  width: 100%;
}
#page-city .section_8 .container .authors .author .author-title {
  font-size: 14px;
  color: #1b6496;
}
#page-city .section_8 .container .cta {
  margin-top: 10px;
}
#page-city .section_9 {
  padding-top: 60px;
  text-align: center;
  font-size: 1.5rem;
}
#page-city .section_9 + .section_2 {
  padding-top: 40px;
}
#page-city .section_9 .container .cities {
  display: flex;
  flex-wrap: wrap;
}
#page-city .section_9 .container .cities .city {
  width: 50%;
}
#page-city .section_9 .container .cities .city a {
  display: block;
  padding: 5px;
}
#page-city .section_9 .container .separator {
  margin-top: 30px;
}
#page-city .section_10 {
  padding-top: 60px;
  text-align: center;
}

#author .section_1 .author-image {
  width: 100%;
  height: 135px;
  margin-bottom: 50px;
  position: relative;
}
#author .section_1 .author-image .background-image {
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#author .section_1 .author-image .background-image:after {
  width: 200%;
  height: 200%;
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  background-image: url(images/logo-white-pattern.svg);
  background-size: 40px;
}
#author .section_1 .author-image .profile-image {
  width: 152px;
  height: 152px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translate(-50%);
  z-index: 3;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}
#author .section_1 .author-image .profile-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 2;
}
#author .section_1 .author-image .profile-image-background {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  background: #fff;
}
#author .section_1 .author-meta {
  text-align: center;
}
#author .section_1 .author-meta > h1 {
  font-weight: normal;
  line-height: 1;
}
#author .section_1 .author-meta .author-title {
  color: #1b6496;
  font-size: 1.5rem;
}
#author .section_1 .author-meta .author-description {
  margin: 10px auto;
}
#author .section_2 {
  padding: 20px 0 30px;
}
#author .section_2 .container > h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.7rem;
}

#single {
  overflow: hidden;
}
#single .post-nav {
  width: 100%;
  padding: 10px 20px;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 2;
  background: linear-gradient(90deg, #013442 0%, #1b6496 100%);
}
#single .post-nav a {
  color: #fff;
  font-size: 1.7rem;
}
#single .post-nav a i {
  vertical-align: middle;
}
#single .post-header {
  margin-top: 52px;
}
#single .post-body {
  display: flex;
}
#single .post-body .post-main {
  width: 100%;
}
#single .post-body .post-main .post-content {
  padding-bottom: 0;
}
#single .post-body .post-main .post-content a {
  text-decoration: underline;
}
#single .post-body .post-main .post-excerpt {
  padding-top: 25px;
}
#single .post-body .post-main .post-share {
  padding-top: 30px;
}
#single .post-body .post-main .post-share .at-share-tbx-element .at-share-btn {
  margin: 0 0 0 5px;
}
#single .post-body .post-main .follow-us {
  margin-top: 20px;
}
#single .post-body .post-main .follow-us > h3 {
  margin-bottom: 10px;
}
#single .post-body .post-main .follow-us i {
  margin-left: 5px;
}
#single .post-body .post-main .post-meta {
  padding-top: 25px;
  font-weight: 600;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#single .post-body .post-main .post-meta .meta-author {
  font-size: 1.5rem;
}
#single .post-body .post-main .post-meta .meta-title {
  width: 100%;
}
#single .post-body .post-main .post-meta .meta-date {
  margin-right: 6px;
}
#single .post-body .post-main .post-meta .post-views {
  position: absolute;
  top: 30px;
  left: 0;
  text-align: center;
}
#single .post-body .post-main .post-meta .post-views i {
  margin-left: 3px;
}
#single .post-body .post-main .post-author {
  margin-top: 30px;
  display: block;
  padding: 15px;
  background: #f4f4f4;
}
#single .post-body .post-main .post-author .author-box .author-image a {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  float: left;
}
#single .post-body .post-main .post-author .author-box .author-image a img {
  width: 120px;
  height: 120px;
}
#single .post-body .post-main .post-author .author-box .author-content .author-name a {
  font-size: 1.3rem;
  font-weight: 600;
}
#single .post-body .post-main .post-author .author-box .author-content .author-title a {
  margin-bottom: 5px;
}
#single .post-body .post-main .post-author .author-box .author-content .author-text {
  color: #333;
  font-size: 1rem;
}
#single .post-body .post-main .post-author .author-box .author-content .author-text a {
  font-weight: 600;
}
#single .post-body .post-sidebar {
  display: none;
  overflow: hidden;
}
#single .post-comments {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
#single .post-comments > h2 {
  padding: 6px 20px 8px;
  background: linear-gradient(90deg, #013442 0%, #1b6496 100%);
  color: #fff;
}
#single .post-comments .comments-box {
  background: #f4f4f4;
}
#single .post-comments .comments-box .comments-list {
  list-style: none;
  padding-top: 20px;
}
#single .post-comments .comments-box .comments-list li {
  margin-bottom: 20px;
  padding: 10px;
  background: #fff;
}
#single .post-comments .comments-box .comments-list li .comment-body .comment-meta {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
#single .post-comments .comments-box .comments-list li .comment-body .comment-meta .comment-author img {
  display: none;
}
#single .post-comments .comments-box .comments-list li .comment-body .comment-meta .comment-author .says {
  display: none;
}
#single .post-comments .comments-box .comments-list li .comment-body .comment-meta .comment-author b {
  font-weight: 600;
}
#single .post-comments .comments-box .comments-list li .comment-body .comment-meta .comment-metadata .comment-edit-link {
  display: none;
}
#single .post-comments .comments-box .comments-list li .children {
  margin-top: 10px;
  border-top: 1px solid #f4f4f4;
  list-style: none;
  position: relative;
}
#single .post-comments .comments-box .comments-list li .children li {
  padding: 10px 20px 10px 0;
}
#single .post-comments .comments-box .comments-list li .children li:before {
  width: 10px;
  height: 12px;
  display: block;
  content: "";
  position: absolute;
  top: 18px;
  right: 2px;
  background-image: url(images/btn-arrow-left.svg);
  background-size: 5px;
  background-repeat: no-repeat;
}
#single .post-comments .comments-box .comments-list li .children li:last-child {
  margin-bottom: 0;
}
#single .post-comments .comments-box #comment-form {
  padding-top: 20px;
}
#single .post-comments .comments-box #comment-form #respond > h3 {
  font-weight: 600;
}
#single .post-comments .comments-box #comment-form #respond #commentform {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#single .post-comments .comments-box #comment-form #respond #commentform label {
  display: none;
}
#single .post-comments .comments-box #comment-form #respond #commentform input[type=text] {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  padding: 4px 10px;
}
#single .post-comments .comments-box #comment-form #respond #commentform:after {
  clear: both;
  content: "";
  display: block;
}
#single .post-comments .comments-box #comment-form #respond #commentform #comment {
  width: 100%;
  max-width: 100%;
  height: 140px;
  margin-bottom: 20px;
  padding: 10px;
}
#single .post-comments .comments-box #comment-form #respond #commentform #commentSubmit {
  margin-bottom: 20px;
  padding: 5px 20px;
  display: inline-block;
  background: linear-gradient(90deg, #013442 0%, #1b6496 100%);
  color: #fff;
  float: left;
}
#single .post-related .container > h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.7rem;
}
#single .cta {
  margin-top: 30px;
  margin-bottom: 30px;
}
#single .at-share-btn-elements {
  display: flex;
  justify-content: space-between;
}

#sidebar .sidebar-authors {
  margin-top: 30px;
  text-align: center;
}
#sidebar .sidebar-authors > h2 {
  margin-bottom: 20px;
}
#sidebar .facebook-group-container {
  margin-top: 30px;
  text-align: center;
}
#sidebar .facebook-group-container > h2 {
  margin-bottom: 10px;
}
#sidebar .facebook-group-container .facebook-group {
  padding-bottom: 20px;
  border: 1px solid #d8d8d8;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
#sidebar .facebook-group-container .facebook-group a img {
  width: 100%;
}
#sidebar .facebook-group-container .facebook-group a span {
  padding: 3px 20px 5px;
  display: inline-block;
  background: #4267b2;
  color: #fff;
  font-family: Helvetica, Assistant, Arial, sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.posts {
  display: flex;
  flex-wrap: wrap;
}
.posts .post {
  width: 100%;
  height: 60vw;
  margin-bottom: 20px;
  position: relative;
}
.posts .post a > h3 {
  position: absolute;
  bottom: 20px;
  right: 15px;
  z-index: 3;
  padding-left: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.1;
  color: #fff;
}
.posts .post a > h3 .post-author {
  font-size: 18px;
}
.posts .post a .post-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.posts .post a .post-image:before {
  display: block;
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.posts .post a .post-image img {
  width: auto;
  max-width: initial;
  min-height: 100%;
  max-height: 150%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 1;
}

.videos {
  display: flex;
  flex-wrap: wrap;
}
.videos .video {
  width: 100%;
  height: 50vw;
  margin-bottom: 20px;
  position: relative;
}

.tips .post {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}
.tips .post .post-author {
  width: 60px;
}
.tips .post .post-author .author-image {
  width: 60px;
  height: 60px;
  margin-top: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.tips .post .post-content {
  padding: 0 15px 0 0;
}
.tips .post .post-content a {
  color: #333;
}
.tips .post .post-content > h3 {
  margin-top: 0;
  font-size: 1.3rem;
}
.tips .post .post-content > h3 .post-title {
  font-weight: 600;
}

.authors {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.authors .author {
  width: calc(33.33% - 10px);
  margin-bottom: 20px;
}
.authors .author .author-image {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 100%;
  overflow: hidden;
}
.authors .author .author-image img {
  width: 100%;
}
.authors .author .author-title {
  font-size: 1rem;
  color: #1b6496;
}

@media screen and (min-width: 376px) {
  .site-main .post-header .post-image a img.landscape {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 375px) {
  #single .post-body .post-main .post-content .code-block.code-block-1 {
    display: block;
    margin: 0 auto !important;
    padding: 10px 0 20px;
    float: none !important;
    clear: both;
  }
}
@media screen and (max-width: 768px) {
  #single .post-content .wp-caption {
    width: 100% !important;
    margin: 10px 0 0 0;
  }
  #single .post-content .wp-caption.alignleft, #single .post-content .wp-caption.alignright {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  #single .post-content .wp-caption img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .posts {
    justify-content: space-between;
  }
  .posts .post {
    width: calc(50% - 10px);
    height: 30vw;
  }

  .videos {
    justify-content: space-between;
  }
  .videos .video {
    width: calc(50% - 10px);
    height: 30vw;
  }

  #homepage .section_1 {
    height: 120vw;
  }

  #single .post-related .container .posts .post {
    width: calc(33.33% - 10px);
    height: 20vw;
  }

  #page-city .section_1 .background-image img {
    width: 100%;
  }
  #page-city .section_2 .container ul li {
    width: 16.66%;
  }
}
@media screen and (min-width: 1024px) {
  .site-main > .post-header {
    height: 450px;
  }
  .site-main > .post-header .post-image a img {
    width: 100%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    max-height: initial;
  }

  .posts .post {
    height: 300px;
  }

  .videos .video {
    height: 300px;
  }

  #header #nav .search {
    max-width: 60%;
  }

  #homepage .section_1 {
    height: 90vh;
  }
  #homepage .section_1 .search {
    max-width: 60%;
    margin: 130px auto 0;
  }
  #homepage .section_4 .container .authors {
    justify-content: center;
  }
  #homepage .section_4 .container .authors .author {
    width: calc(16.66% - 20px);
    margin: 0 10px 20px;
  }
  #homepage .section_5 .destinations .destination {
    width: calc(33.33% - 10px);
  }
  #homepage .section_5 .destinations .destination a .destination-image {
    height: 120px;
  }

  #authors > .container .authors .author {
    width: calc(16.66% - 10px);
  }

  #page-city .section_1 .background-image {
    height: 450px;
  }
  #page-city .section_1 .background-image img {
    width: 100%;
  }
  #page-city .section_8 .container .authors {
    justify-content: center;
  }
  #page-city .section_8 .container .authors .author {
    width: calc(16.66% - 20px);
    margin: 0 10px 20px;
  }
}
@media screen and (min-width: 1280px) {
  .site-main .post-header > h1 {
    font-size: 2.5rem;
  }

  #footer {
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
  }

  #homepage .section_1 .background-image-mobile {
    display: none;
  }
  #homepage .section_1 .background-image-desktop {
    display: block;
  }

  #single .post-body .post-main {
    width: calc(100% - 300px);
    padding-left: 40px;
  }
  #single .post-body .post-sidebar {
    width: 300px;
    padding-top: 30px;
    display: block;
  }
  #single .post-related .container .posts .post {
    height: 230px;
  }
}
@media screen and (min-width: 1600px) {
  .site-main .post-header {
    height: 550px;
  }
  .site-main .post-header h1 {
    font-size: 3.5rem;
  }

  #single .section_1 .post-header {
    height: 450px;
  }
}

/*# sourceMappingURL=style.css.map */
