﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
  background: #fdfdfd;
  -webkit-transition: background .6s ease, color 1s ease;
  -moz-transition: background .6s ease, color 1s ease;
  -o-transition: background .6s ease, color 1s ease;
  transition: background .6s ease, color 1s ease;
  font-family: 'Noto Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  margin: 0;
  color: #000;
  overflow-x: hidden;
}

body.invert-tog {
  background: #14141f;
  background: rgba(20,20,31);
  color: #e0e0e0;
  -webkit-transition: background .6s ease, color 1s ease;
  -moz-transition: background .6s ease, color 1s ease;
  -o-transition: background .6s ease, color 1s ease;
  transition: background .6s ease, color 1s ease;
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* New */



.menu, .drop-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  display: inline-block;
  position: relative;
}

.menu-item a {
  text-decoration: none;
  padding: 10px;
  color: #fff;
  display: block;
}

.invert-tog .menu-item a {
  color: #e0e0e0;
}

.drop-menu {
  display: none;
  position: absolute;
  background: #999;
  min-width: 100px;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
  margin-left: 20px;
}

@media only screen and (max-width: 360px) {
  .drop-menu {
    margin-left: 0;
  }
}

.invert-tog .drop-menu {
  display: none;
  position: absolute;
  background: #2f333b;
  min-width: 100px;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
  margin-left: 20px;
}

.drop-menu-item {
  width: 100%;
}

.drop-menu-item:hover {
  background: #999;
}

.invert-tog .drop-menu-item:hover {
  background: #2f333b;
}

.drop-menu-item a {
  color: #555;
}

.menu-item:hover .drop-menu {
  display: block;
}

@media only screen and (min-width: 751px) {
  .drop-menu-close {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  .drop-menu-close {
    width: 100%;
    padding: 20px 0 20px 10px;
    border-top: 1px solid #fff;
  }

  .invert-tog .drop-menu-close {
    width: 100%;
    padding: 20px 0 20px 10px;
    border-top: 1px solid #e0e0e0;
  }

  .drop-menu-close:hover {
    background: #999;
  }

  .invert-tog .drop-menu-close:hover {
    background: #2f333b;
  }

  .drop-menu-close a {
    color: #555;
  }

  .menu-item:hover .drop-menu {
    display: block;
  }
}

.fa-xmark {
  margin-top: 3px;
}

/*  */

.dropdown-button-phone {
  background: #666;
  color: #fff;
  padding: 12px 10px 10px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  height: 49px;
  margin-left: 20px;
}

@media screen and (max-width: 360px) {
  .dropdown-button-phone {
    margin-left: 0;
  }
}

.invert-tog .dropdown-button-phone {
  background: #2f333b;
  color: #e0e0e0;
}

.dropdown-button-phone:hover, .dropdown-button-phone:focus {
  background: #666;
}

.invert-tog .dropdown-button-phone:hover, .dropdown-button-phone:focus {
  background: #2f333b;
}

.dropdown-phone-number {
  position: relative;
  display: inline-block;
  z-index: 20000;
}

.dropdown-phone-number-content {
  display: none;
  position: absolute;
  background: #999;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
  z-index: 1;
  margin-left: 20px;
}

.invert-tog .dropdown-phone-number-content {
  background: #2f333b;
}

.dropdown-phone-number-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-phone-number a:hover {
  background: #999;
}

.invert-tog .dropdown-phone-number a:hover {
  background: #2f333b;
}

.show {
  display: block;
}

.clock {
  transform: rotate(240deg);
}

/* New */
.espa-wrapper {
  padding: 50px 0 0;
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

#mvImage, #mvImage2 {
  cursor: pointer;
  padding: 10px 10px 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .5);
}

.modal h2 {
  font-size: 26px;
  color: #80c34d;
  padding: 20px 0 0;
}

.modal p {
  line-height: 170%;
}

.modal-content {
  background-color: #fff;
  margin: 15% auto 0;
  padding: 0 20px 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .modal-content {
    max-width: 320px;
  }
}

@media screen and (max-width: 400px) {
  .modal-content {
    width: 95%;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.close:focus {
  color: #aaa;
  outline: none;
}

hr.modal-separator {
  height: 1px;
  color: #ccc;
  background: #ccc;
  margin: -5px 0 20px;
  padding: 0;
  font-size: 0;
  border: 0;
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

@media screen and (max-width: 599px) {
  .dt {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .ct {
    display: none;
  }
}

/* End new */
::selection {
  background: #333;
  color: #fff;
}

.invert-tog ::selection {
  background: #e0e0e0;
  color: #000;
}

::-moz-selection {
  background: #333;
  color: #fff;
}

.invert-tog  ::-moz-selection {
  background: #e0e0e0;
  color: #000;
}

h1, h2 {
  font-size: 30px;
  font-family: 'Noto Sans', sans-serif;
  padding: 50px 0 0 ;
  line-height: 130%;
  margin: 10px 0 20px;
}

@media screen and (max-width: 1145px) {
  h1, h2 {
    padding: 30px 15px 0;
  }

  .legal h2 {
    padding: 30px 15px 0 0;
  }
}

h1.sub {
  font-size: 34px;
  font-family: 'Noto Sans', sans-serif;
  padding: 0;
  line-height: 130%;
  margin: 0 auto 20px;
}

h2.sub {
  font-size: 32px;
  font-family: 'Noto Sans', sans-serif;
  padding: 0 15px;
  line-height: 130%;
  margin: 20px auto;
}

.stripe {
  content: '';
  position: relative;
  top: -10px;
  width: 100%;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fed200, #fed200, #c2c2c2, #c2c2c2);
}

h3, h4 {
  font-size: 21px;
  font-family: 'Noto Sans', sans-serif;
  padding: 5px 0 0;
  line-height: 130%;
  margin: 10px 0 20px;
}

p {
  font-size: 19px;
  line-height: 150%;
  margin: 0 0 20px;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.link a {
  color: #0076cf;
  background-image: linear-gradient(#000, #000);
  background-size: 0 2px;
  background-position-y: 100%;
  background-position-x: 0;
  background-repeat: no-repeat;
  transition: background-size .2s ease-in-out;
  text-decoration: none;
}

.link a:hover, .link a:focus, .link a:active {
  color: #000;
  background-size: 100% 2px;
}

.invert-tog .link a {
  color: #f00;
  background-image: linear-gradient(#fff, #fff);
}

img {
  width: 100%;
  height: auto;
}

.scrolltop {
  bottom: 0;
  display: none;
  margin: 0 auto;
  position: fixed;
  z-index: 1;
  right: 0;
  width: 100%;
}

.scroll {
  background: transparent;
  bottom: 7px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

@media screen and (max-width: 720px) {
  .scroll {
    bottom: 14px;
    right: 10px;
  }
}

.scroll:hover {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.scroll:hover .fas {
  padding-top: -10px;
}

.scroll .fas {
  margin: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.up-button-style {
  background: #fff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 2px solid #fff;
  border-radius: 50% 50%;
  color: #20202a;
  font-size: 30px;
  outline: none;
}

.top-bar {
  position: fixed;
  z-index: 11;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  display: block;
  background: #fed200;
  border-bottom: 1px solid #373740;
  color: #fff;
}

.invert-tog .top-bar {
  background: #14141f;
  background: rgba(20,20,31);
}

.dmit {
  display: none;
  -webkit-transition: background .6s ease, color 6s ease;
  -moz-transition: background .6s ease, color 6s ease;
  -o-transition: background .6s ease, color 6s ease;
  transition: background .6s ease, color 6s ease;
}

.lmit {
  display: initial;
  -webkit-transition: background .6s ease, color 6s ease;
  -moz-transition: background .6s ease, color 6s ease;
  -o-transition: background .6s ease, color 6s ease;
  transition: background .6s ease, color 6s ease;
}

.invert-tog .dmit {
  display: initial;
  -webkit-transition: background .6s ease, color 6s ease;
  -moz-transition: background .6s ease, color 6s ease;
  -o-transition: background .6s ease, color 6s ease;
  transition: background .6s ease, color 6s ease;
}

.invert-tog .lmit {
  display: none;
  -webkit-transition: background .6s ease, color 6s ease;
  -moz-transition: background .6s ease, color 6s ease;
  -o-transition: background .6s ease, color 6s ease;
  transition: background .6s ease, color 6s ease;
}

.btn:focus, .btn:active {
  box-shadow: none !important;
  outline: none !important;
}

button.dm {
  border: 0;
  position: relative;
  top: -20px;
  right: -5px;
  outline: 0;
  background: transparent;
}

.invert-tog button.dm {
  color: #fff;
}

button.dm:after {
  background: #666;
  background: rgba(102, 102, 102, 1);
  color: #fff;
  font-family: 'Font Awesome 6 Free';
  content: '\f186';
  font-size: 16px;
  font-weight: 600;
  padding: 6px 7px;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #666;
  -webkit-border-radius: 50% 50%;
  -moz-border-radius: 50% 50%;
  border-radius: 50% 50%;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background .6s ease, color 6s ease;
  -moz-transition: background .6s ease, color 6s ease;
  -o-transition: background .6s ease, color 6s ease;
  transition: background .6s ease, color 6s ease;
  width: 16px;
  z-index: 9999;
}

.invert-tog button.dm:after {
  background: #2f333b;
  background: rgba(47, 51, 59, 1);
  font-family: 'Font Awesome 6 Free';
  content: '\f185';
  font-size: 16px;
  font-weight: 600;
  padding: 6px 7px;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #444;
  -webkit-border-radius: 50% 50%;
  -moz-border-radius: 50% 50%;
  border-radius: 50% 50%;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background .6s ease, color 6s ease;
  -moz-transition: background .6s ease, color 6s ease;
  -o-transition: background .6s ease, color 6s ease;
  transition: background .6s ease, color 6s ease;
  width: 16px;
}

/*.dropbtn {
  border-radius: 8px;
  background: #666;
  color: #fff;
  padding: 8px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  margin: 7px 0 0 20px;
}

.invert-tog .dropbtn {
  background: #2f333b;
}

.dropdown-phone {
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  z-index: 10;
}

.dropdown-phone-content {
  border-radius: 0 8px 8px 8px;

  opacity: 0;
  position: absolute;
  background: #999;
  min-width: 190px;
  margin: 0 0 0 20px;
  z-index: 10;
}

.invert-tog .dropdown-phone-content {
  background: #2f333b;
}

.dropdown-phone-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-phone-content a:hover {
  cursor: auto;
}

.dropdown-phone:hover .dropdown-phone-content {
  display: block;
  opacity: 1;
}

.dropdown-phone:hover .dropbtn {
  cursor: pointer;
  background: #999;
  border-radius: 8px 8px 0 0;
}

.invert-tog .dropdown-phone:hover .dropbtn {
  background: #2f333b;
}*/

.btn-phone {
  background: #666;
  border: 1px solid #666;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin: 0 auto;
  padding: 5px;
  min-width: 165px;
  text-align: left;
  cursor: pointer;
}

.invert-tog .btn-phone {
  background: #20202f;
  border: 2px solid #555;
}

.btn-phone:hover {
  background: #999;
  border: 1px solid #666;
  color: #fff;
}

.invert-tog .btn-phone:hover {
  background: #20202a;
  color: rgba(255,255,255,1);
  border: 2px solid #777;
}

.btn-phone:focus {
  color: #fff;
  outline: none;
}

.regular-number {
  padding-top: 20px;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 17px;
}

.emergency-number {
  padding-top: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 17px;
}

.btn-language {
  background: #666;
  border: 1px solid #666;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 0 25px;
  padding: 5px;
  text-align: left;
  cursor: pointer;
}

.btn-language:hover {
  background: #999;
  border: 1px solid #666;
  color: #fff;
}

.invert-tog .btn-language {
  background: #2f333b;
  background: rgba(47, 51, 59, 1);
}

.invert-tog .btn-language:hover {
  background: #525270;
  border: 1px solid #525270;
}

.btn-language:focus {
  color: #fff;
  outline: none;
}

.language {
  float: right;
  padding: 10px 15px 0 0;
}

/* Block No. 52C/1062 */
/* Top Navbar with Fullscreen Image */
/* Start navbar with dropdowns - with logo */
.navigation-bar-container {
  position: relative;
  height: 85px;
  background: #444;
  z-index: 9;
  width: 100%;
  top: 50px;
  left: 0;
  right: 0;
}

.invert-tog .navigation-bar-container {
  background: #20202a;
}

.logo-container {
  position: absolute;
  top: 10px;
  bottom: 0;
  padding-left: 20px;
  float: left;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: bold;
}

.logo-top {
  width: 180px;
  margin-top: 20px;
}

.logo-footer {
  width: 150px;
  margin-top: -5px;
  margin-left: 0;
}

.logo-container a, .logo-container a:visited {
  color: #262626;
  text-decoration: none;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}

.navbar {
  float: right;
  padding-right: 30px;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  float: left;
  position: relative;
}

.navbar ul li a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  background: #444;
  color: #fff;
  text-decoration: none;
  border-bottom: none;
  margin-top: 0;
}

.invert-tog .navbar ul li a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  background: #20202a;
  color: #e0e0e0;
  text-decoration: none;
  border-bottom: none;
  margin-top: 0;
}

.navbar ul li a:hover {
  background: #d5d5d5;
  color: #000;
}

.invert-tog .navbar ul li a:hover {
  background: #2f333b;
  color: #e0e0e0;
}

/*.navbar ul li ul li {
  min-width: 267px;
}*/



.navbar ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
  display: none;
  animation: mymove .4s ease-out forwards;
  border-radius: 0 !important;
}

.nav-mobile {
  position: absolute;
  float: right;
  top: 0;
  right: 0;
  background: #444;
  height: 70px;
  width: 70px;
  display: none;
}

.invert-tog .nav-mobile {
  background: #20202a;
}

#nav-toggle {
  position: absolute;
  left: 10px;
  top: 25px;
  cursor: pointer;
  padding: 16px 35px 16px 0;
  border-bottom: none;
}

#nav-toggle span, #nav-toggle span:after, #nav-toggle span:before {
  cursor: pointer;
  border-radius: 5px;
  height: 3px;
  width: 35px;
  background: #fff;  /* Hamburger */
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}

.invert-tog #nav-toggle span, .invert-tog #nav-toggle span:after, .invert-tog #nav-toggle span:before {
  background: #e0e0e0;  /* Hamburger */
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle span::before {
  top: -10px;
}

#nav-toggle.active span {
  background: transparent;
}

#nav-toggle.active span:after, #nav-toggle.active span:before {
  top: 0;
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

@media only screen and (max-width: 750px) {
  .nav-mobile {
    display: block;
  }

  .navbar {
    width: 100%;
    padding: 65px 0 40px;
  }

  .navbar ul {
    display: none;
  }

  .navbar ul li {
    float: none;
  }

  .navbar ul li a {
    padding: 15px;
    line-height: 20px;
  }

  .navbar ul li a:hover {
    border-radius: 0 !important;
  }

  .navbar ul li ul li a {
    padding-left: 30px;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
  }
}

@media screen and (min-width: 751px) {
  .nav-list {
    display: block !important;
  }

  .dd-left {
    position: absolute !important;
    right: 0;
  }

  .nav-dropdown {
    display: none !important;
  }

  .menu-products:hover .nav-dropdown {
    display: block !important;
    transition: all linear 1s;
    opacity: 1;
    margin-top: -10px;
  }

  .nav-dropdown {
    z-index: 0;
    display: block;
    animation: dds .4s ease-out forwards;
  }

  .dd-el {
    min-width: 360px;
  }

  .dd-en {
    min-width: 220px;
  }
}

@keyframes dds {
  from {
    top: 40px;
  }

  to {
    top: 60px;
  }
}

/* End navbar with logo */

.mySlides {
  display: none;
}

/* Slideshow container */

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  bottom: 0;
  overflow: hidden;
}

/* Next & prev-slideious buttons */

.prev-slide, .next-slide {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 16px 5px;
  /*  margin-top: -22px;*/
  color: #ccc;
  font-weight: bold;
  font-size: 40px;
  transition: .6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */

.next-slide {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev-slide:hover, .next-slide:hover {
  color: #fff;
}

.prev-slide:focus, .next-slide:focus {
  color: #ccc;
  box-shadow: none !important;
  outline: none !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* Caption text */

.description {
  color: #fff;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

/* Fading animation */

/*.slide-in {
    animation-name: slide-in;
    animation-duration: .5s;
    transition-property: color;
    transition-duration: .7s;
    transition-timing-function: ease-in;
    transition-delay: .3s;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-40%);
    }

 90% {
                transform: translateX(10px);
        }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}*/


.fade-in {
  animation: fade-in .5s linear;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */

@media only screen and (max-width: 550px) {
  .prev-slide, .next-slide, .description {
    font-size: 30px;
  }
}

#slider {
  margin: 0;
}

.top-image-syros {
  background-image: url('https://symviosis.vet/images/23a.jpg');
  height: 600px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1600px) {
  .top-image-syros {
    height: 450px;
    background-position: 10%;
  }
}

@media (max-width: 1400px) {
  .top-image-syros {
    height: 450px;
  }
}

@media (max-width: 950px) {
  .top-image-syros {
    height: 350px;
    background-position: 10%;
  }
}

@media (max-width: 450px) {
  .top-image-syros {
    background-image: url('https://symviosis.vet/images/23b.jpg');
    height: 350px;
    background-position: center center;
  }
}

@media (max-width: 400px) {
  .top-image-syros {
    height: 350px;
    background-position: center center;
  }
}

.top-image-tinos {
  background-image: url('https://symviosis.vet/images/08c.jpg');
  height: 600px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1600px) {
  .top-image-tinos {
    height: 450px;
  }
}

@media (max-width: 1400px) {
  .top-image-tinos {
    height: 450px;
  }
}

@media (max-width: 950px) {
  .top-image-tinos {
    height: 350px;
  }
}

/* Delete if you don't want the optional text overlay */
.top-image-text-container {
  position: relative;
  width: 100%;
}

.top-image-text {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  background: rgba(0,0,0, .2);
  color: rgba(255,255,255,1);
  padding: 20px 30px;
  text-align: center;
}

.top-image-line-2 {
  margin: 10px auto;
  font-size: 30px;
}

@media (max-width: 1600px) {
  .top-image-text {
    position: absolute;
    top: 225px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    background: rgba(0,0,0, .1);
    color: rgba(255,255,255,1);
    padding: 20px 30px;
  }

  .top-image-line-2 {
    margin: 10px auto;
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 1400px) {
  .top-image-text {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    background: rgba(0,0,0, .1);
    color: rgba(255,255,255,1);
    padding: 20px 30px;
  }

  .top-image-line-2 {
    margin: 10px auto;
    font-size: 25px;
    text-align: center;
  }
}

@media (max-width: 950px) {
  .top-image-text {
    width: 350px;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    background: rgba(0,0,0, .1);
    color: rgba(255,255,255,1);
    padding: 20px 30px;
  }

  .top-image-line-2 {
    margin: 10px auto;
    font-size: 23px;
    text-align: center;
  }
}

/* End navbar with logo */

/* Start fullscreen image */
.container-fullscreen-image {
  max-width: 100%;
  position: relative;
  z-index: 999;
  margin: 0 0 40px;
  display: block;
}

.bg1-fs-bg {
  height: calc(100vh - 85px);
  background-image: url('https://symviosis.vet/images/full-page.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@media (max-width: 500px) {
  .bg1-fs-bg {
    background-position: 96%;
  }
}

.photo-text {
  position: absolute;
  top: 20%;
  left: 6%;
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 0);
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-shadow: 2px 2px 5px #000;
}

.photo-text h1 {
  text-align: left;
  font-size: 60px;
  font-weight: 600;
}

.photo-text p {
  font-size: 50px;
  text-align: left;
}

@media (max-width: 1175px) {
  .photo-text {
    position: absolute;
    top: auto;
    bottom: 100px;
    left: 6%;
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0);
    padding: 1rem 1rem;
    border-radius: 2rem;
  }

  @media (max-width: 875px) {
    .photo-text h1 {
      text-align: left;
      font-size: 40px;
      font-weight: 600;
    }

    .photo-text p {
      font-size: 30px;
      text-align: left;
    }
  }

  @media (max-width: 600px) {
    .photo-text h1 {
      text-align: left;
      font-size: 35px;
      font-weight: 600;
    }

    .photo-text p {
      font-size: 30px;
      text-align: left;
    }
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

/* End fullscreen image */


/* Main */
.content-l {
  padding: 20px 15px 0 0;
}

.content-r {
  padding: 20px 20px 15px;
}

@media screen and (max-width: 1145px) {
  .content-l {
    margin: 0;
    padding: 20px 15px 0 0;
  }

  .content-r {
    margin: -10px 0 15px;
    padding: 10px 0 15px;
  }
}

@media screen and (min-width: 1350px) {
  h1.lg, h2.lg {
    font-size: 32px;
  }

  .content-r p.first {
    font-size: 22px;
    line-height: 160%;
    margin: 0;
    padding: 0;
  }

  .content-r p.next {
    font-size: 22px;
    line-height: 160%;
    margin: 0;
    padding: 15px 0 0;
  }
}

@media screen and (max-width: 1349px) {
  h1.lg, h2.lg {
    font-size: 30px;
  }

  .content-r p.first {
    font-size: 19px;
    line-height: 150%;
    margin: 0;
    padding: 0;
  }

  .content-r p.next {
    font-size: 19px;
    line-height: 150%;
    margin: 0;
    padding: 15px 0 0;
  }
}

section {
  margin: 40px 0  0;
  background: #c2c2c2;
  padding: 50px 0 ;
}

.container-8 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
}

.container-main {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #c2c2c2;
  padding: 30px;
}

.container-main-inner {
  margin: 0 auto;
  background: #f2f2f2;
  border-radius: 20px;
}

.invert-tog > section {
  background: #14141f;
}

.invert-tog .container-main {
  background: #14141f;
}

.invert-tog .container-main-inner {
  background: #20202a;
}

.container-main-inner img {
  border-radius: 15px 0 0 0;
  border-bottom: 10px solid #fed200;
}

.caption {
  position: relative;
  top: -8px;
  background: #c2c2c2;
  color: #222;
  height: auto;
  font-size: 17px;
  padding: 10px 20px 12px;
  border-radius: 0 0 0 15px;
}

.invert-tog .caption {
  background: #000;
  color: #e0e0e0;
}

.row {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.row::after {
  content: '';
  clear: both;
  display: table;
  box-sizing: border-box;
}

.row-sxs {
  padding: 50px 15px;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.row-sxs::after {
  content: '';
  clear: both;
  display: table;
  box-sizing: border-box;
}

[class*='col-'] {
  padding: 0;
  box-sizing: border-box;
}

.col-1-container-main {
  max-width: 800px;
  margin: 0 auto -15px;
  padding: 30px 20px 0;
  overflow-x: hidden;
}

.col-left {
  width: 50%;
  padding: 0;
  font-size: 17px;
  margin: -10px  20px -20px;
  padding: 0 0 0 0;
}

.col-right {
  width: 50%;
  padding: 0 20px 0 0;
  font-size: 17px;
}

.content-left {
  margin: -30px 0;
  padding: 20px 15px 0 0;
}

.content-right {
  padding: 20px 0 0 0;
}

/* Text centre of photo */
.align-items-sce {
  flex: 1;
  display: flex;
  align-items: start; /* Text aligned with the centre of the photo */
}

.align-items-sce {
  flex: 1;
  display: flex;
  align-items: center; /* Text aligned with the top of the photo */
}

.module {
  background: #fff;
  border: transparent;
  margin: 0;
  border-radius: 5px;
}

.stripe-100 {
  color: #fff;
  height: 20px;
  width: 98%;
  margin: 20px auto;
  border: 0;
  background: repeating-linear-gradient(
  -45deg,
  #d9d9d9,
  #d9d9d9 5px,
  transparent 4px,
  transparent 10px
);
}

.invert-tog .stripe-100 {
  color: #fff;
  height: 20px;
  width: 98%;
  margin: 20px auto;
  border: 0;
  background: repeating-linear-gradient(
  -45deg,
  #444,
  #444 5px,
  transparent 4px,
  transparent 10px
);
}

@media screen and (max-width: 1145px) {
  .container-main-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .row-sxs {
    padding: 0 15px;
  }

  .align-items-sce {
    flex-direction: column;
    align-items: start; /* Text aligned with the centre of the photo */
  }

  .align-items-sce {
    flex-direction: column;
    align-items: start; /* Text aligned with the top of the photo */
  }

  .swap {
    display: flex;
    flex-direction: column-reverse;
  }

  .stripe-100 {
    max-width: 770px;
  }

  .invert-tog .stripe-100 {
    max-width: 770px;
  }

  .col-left {
    width: 100%;
    padding: 0;
    font-size: 17px;
    margin: 10px  0 20px;
    padding: 0 0 0 0;
  }

  .col-right {
    width: 100%;
    padding: 0;
    font-size: 17px;
  }

  .content-left {
    margin: 30px 0;
    padding: 0 15px;
  }

  .content-right {
    padding: 0 15px;
  }

  .container-main-inner img {
    border-radius: 15px 15px 0 0;
  }

  .caption {
    border-radius: 0 0 15px 15px;
  }

  .invert-tog .caption {
    border-radius: 0 0 15px 15px;
  }
}

.col-right h2 {
  margin: -30px 0 20px;
  padding: 0;
}

.col-right p {
  margin: -20px 0 0;
  padding: 0;
}

.col-1-container-main p {
  position: relative;
  top: -10px;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 600px) {
  section {
    margin: 40px 0  0;
    background: #c2c2c2;
    padding: 50px 0;
  }

  .container-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #c2c2c2;
    padding: 30px 0;
  }

  .container-main-inner {
    border-radius: 0;
  }
}

@media screen and (max-width: 1145px) {
  .col-right h2, .col-right p {
    margin: -30px -15px 20px;
    padding: 0;
  }

  .col-1-container-main {
    max-width: 800px;
    margin: 0 auto -10px;
    padding: 30px 15px 10px;
    overflow-x: hidden;
  }
}

.col-right h2, .col-right p, .col-1-container-main h2, .col-1-container-main p {
  color: rgba(0, 0, 0, .7);
}

.invert-tog .col-right h2, .invert-tog .col-right p, .invert-tog .col-1-container-main h2, .invert-tog  .col-1-container-main p {
  color: #e0e0e0;
}

/* Legal */
.container-sc {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 15px;
}

.container-sc h1 {
  font-size: 30px;
  font-family: 'Noto Sans', sans-serif;
  padding: 5px 0 0;
  line-height: 130%;
  margin: 10px 0 20px;
}

.container-sc ul {
  padding-left: 25px;
}

.container-sc li {
  list-style-type: disc;
  font-size: 19px;
  margin: 10px 0 15px;
  line-height: 150%;
}

/* Footer */


.dashboard-footer {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(to right, #444, #444);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  padding: 52px 32px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #373740;
}

.invert-tog .dashboard-footer {
  background: linear-gradient(to right, #14141f, #14141f);
}

.footer-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  opacity: .05;
  z-index: 0;
  background-image: radial-gradient(#fed200 2px, transparent 2px);
  background-size: 18px 18px;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 761px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 8px;
  letter-spacing: -.2px;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fed200;
  border-radius: 8px;
  color: white;
  font-weight: 700;
}

.company-name {
  position: relative;
  margin-bottom: -25px;
  left: 0;
}

.footer-text {
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-link {
  font-size: 14px;
  color: #e0e0e0;
  text-decoration: none;
  transition: all .2s ease;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #fed200;
  transition: width .25s ease-out;
}

.footer-link:hover {
  color: #fed200;
}

.footer-link:hover::after {
  width: 100%;
}

.form-main {
  position: relative;
  z-index: 10;
  background: #ddd;
  padding: 30px 20px 0;
  overflow: hiddden;
}

@media screen and (max-width: 600px) {
  .form-main {
    padding: 30px 0 0;
  }
}

.input-group {
  position: relative;
  margin-bottom: 16px;
}

.footer-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: #373740;
  background: #20202a;
  border: 1px solid #373740;
  border-radius: 8px;
  transition: all .3s ease;
}

.footer-input:focus {
  outline: none;
  border-color: #fed200;
  box-shadow: 0 0 0 2px rgba(60, 84, 180, .1);
}

.footer-input::placeholder {
  color: #a0aec0;
}

.submit-btn {
  width: 100%;
  padding: 12px 20px;
  background: #20202a;
  color: #e0e0e0;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: #fed200;
  color: #333;
}

.submit-btn .btn-text {
  position: relative;
  z-index: 1;
}

.submit-btn .btn-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform .8s ease, opacity .8s ease;
}

.submit-btn:hover .btn-animation {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.copyright {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #e0e0e0;
}

.social-icons {
  display: flex;
  gap: 40px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 6px;
  color: #4a5568;
  transition: all .3s ease;
}

.social-icon:hover {
  background: #fed200;
  color: white;
  transform: translateY(-3px);
}

.social-icon em {
  font-size: 16px;
}

.success-message {
  display: none;
  background: #ebf8ff;
  color: #2c5282;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
  border-left: 4px solid #3182ce;
}

.success-message em {
  color: #3182ce;
}

@media (max-width: 760px) {
  .dashboard-footer, .invert-tog .dashboard-footer {
    padding: 52px 24px 24px;
  }

  .copyright {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .social-icons {
    margin-top: 8px;
  }
}

/* Animation for input focus */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(60, 84, 180, .4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(60, 84, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(60, 84, 180, 0);
  }
}

.footer-input:focus {
  animation: pulse 1.5s infinite;
}

.footer-bar {
  position: relative;
  width: 100%;
  top: 0;
  margin: -160px auto 0;
  height: 190px;
  background: radial-gradient(#444 15%, transparent 16%), linear-gradient(45deg, transparent 49%, #444 49% 51%, transparent 51%), linear-gradient(-45deg, transparent 49%, #444 49% 51%, transparent 51%);
  background-size: 3em 3em;
  background-color: #20202a;
  opacity: 1;
}

.invert-tog .footer-bar {
  position: relative;
  width: 100%;
  top: 0;
  margin: -160px auto 0;
  height: 190px;
  background: radial-gradient(#20202a 15%, transparent 16%), linear-gradient(45deg, transparent 49%, #20202a 49% 51%, transparent 51%), linear-gradient(-45deg, transparent 49%, #20202a 49% 51%, transparent 51%);
  background-size: 3em 3em;
  background-color: #444;
  opacity: 1;
}

@media screen and (max-width: 1550px) {
  .footer-bar, .invert-tog .footer-bar {
    margin: -90px auto 0;
    height: 140px;
  }
}

@media screen and (max-width: 760px) {
  .footer-bar, .invert-tog .footer-bar {
    margin: -180px auto 0;
    height: 190px;
  }
}

@media screen and (max-width: 545px) {
  .footer-bar, .invert-tog .footer-bar {
    margin: -90px auto 0;
    height: 140px;
  }
}

.footer-bar a {
  color: #fff;
}

.footer-bar a:hover {
  color: #fff;
}

.footer-bar a {
  color: #f2f2f2;
}

.footer-bar a:focus {
  color: #fff;
  outline: none;
}

hr {
  height: 1px;
  color: #373740;
  background: #373740;
  margin: 20px auto;
  font-size: 0;
  border: 0;
}

.pr-buttons {
  background: #444; /* Syros / Tinos button br */
  padding: 10px 0;
}

.invert-tog .pr-buttons {
  background: #20202a;
}

.button-mv-pr {
  position: relative;
  overflow: hidden;
  border: 1px solid #666;
  color: #000;
  display: inline-block;
  font-size: 15px;
  line-height: 05px;
  width: 250px;  /* 400px */
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #fed200;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: 0 20px 0;
  font-size: 17px;
}

/*@media screen and (max-width: 540px) {
    .button-mv-pr {
        width: 140px;
    }
}

@media screen and (max-width: 390px) {
    .button-mv-pr {
        width: 120px;
    }
}

@media screen and (max-width: 350px) {
    .button-mv-pr {
        width: 100px;
    }
}*/

.button-mv-pr span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(.48, 0, .12, 1);
  z-index: 10;
}

.button-mv-pr span:last-child {
  color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(.48, 0, .12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 6px;
  line-height: 13px;
}

.button-mv-pr:after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #2f333b;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(.48, 0, .12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-mv-pr:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-mv-pr:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(.48, 0, .12, 1);
}

@media (pointer: coarse) {
  .button-mv-pr:after, .button-mv-pr:hover:after, .button-mv-pr:hover span:last-child {
    display: none;
  }
}

.button-jwb-s57 {
  position: relative;
  overflow: hidden;
  border: 1px solid #d61f2c;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 05px;
  width: 200px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #d61f2c;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: 0 0 20px;
  font-size: 17px;
}

.button-jwb-s57 span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(.48, 0, .12, 1);
  z-index: 10;
}

.button-jwb-s57 span:last-child {
  color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(.48, 0, .12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 6px;
  line-height: 13px;
}

.button-jwb-s57:after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(.48, 0, .12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-jwb-s57:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-jwb-s57:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(.48, 0, .12, 1);
}

.newsletter-form {
  margin-top: -8px;
  margin-left: -10px;
}

@media screen and (max-width:1520px) {
  .newsletter-form {
    margin-top: -20px;
    margin-left: -15px;
  }
}

@media screen and (max-width:760px) {
  .newsletter-form {
    margin-top: -10px;
    margin-left: -10px;
  }
}

@media screen and (max-width:525px) {
  .newsletter-form {
    margin-top: -20px;
    margin-left: -17px;
  }
}

iframe.form-ctrl {
  height: 270px;
}

@media only screen and (max-width: 1500px) {
  iframe.form-ctrl {
    height: 360px;
  }
}

@media only screen and (max-width: 760px) {
  iframe.form-ctrl {
    height: 270px;
  }
}

@media only screen and (max-width: 525px) {
  iframe.form-ctrl {
    height: 360px;
  }
}

.center {
  text-align: center;
}

.center > div {
  margin: 0 auto;
}

#map_canvas {
  height: 700px;
  width: 100%;
  text-align: left;
}

@media (max-width: 1200px) {
  #map_canvas {
    height: 500px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  #map_canvas {
    height: 400px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #map_canvas {
    height: 500px;
    width: 100%;
  }
}

#directionsPanel {
  margin: 0 20px 40px;
}

.map-button {
  cursor: pointer;
}

p.map {
  margin: 30px 0 20px;
}

.map-container {
    width: 100%;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.container-main-contact-form {
  margin: 10px auto;
  padding: 0 10px;
}

.container-main-contact-form {
  max-width: 850px;
}

@media (max-width: 1100px) {
  .container-main-contact-form {
    max-width: 800px;
    margin: 20px auto;
  }
}

.row-main-contact-form {
  padding: 15px;
  margin: 0;
}

.row-main-contact-form::after {
  content: '';
  clear: both;
  display: table;
}

@media (max-width: 600px) {
  .row-main-contact-form {
    padding: 0 15px;
  }
}

[class*='col-'] {
  padding: 0;
  box-sizing: border-box;
}

.col-main-contact-form {
  width: 100%;
  padding: 0 ;
}

.group-main-contact-form {
  display: grid;
  grid-template-columns: [col-main-contact-form] repeat(2, 1fr);
  gap: 1em;
  padding: 1.5em 0;
  margin: -50px 0;
}

.invert-tog .group-main-contact-form {
  color: #222;
}

h3.cf {
  margin: 10px 0 0 15px;
}

@media (max-width: 730px) {
  .group-main-contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 0;
    margin: -30px 0;
  }

  h3.cf {
    margin: 0 0 10px 15px;
  }
}

.mf-m-s-el {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .mf-m-s-el {
    margin-bottom: 60px;
  }
}

@media (max-width: 787px) {
  .mf-m-s-el {
    margin-bottom: 130px;
  }
}

@media (max-width: 730px) {
  .mf-m-s-el {
    margin: -15px -15px 20px;
  }
}

.mf-m-t-el {
  margin-bottom: 50px;
}

@media (max-width: 1100px) {
  .mf-m-t-el {
    margin-bottom: 120px;
  }
}

@media (max-width: 787px) {
  .mf-m-t-el {
    margin-bottom: 190px;
  }
}

@media (max-width: 730px) {
  .mf-m-t-el {
    margin: -15px -15px 20px;
  }
}

.mf-m-s-en {
  margin-bottom: 15px;
}

@media (max-width: 730px) {
  .mf-m-s-en {
    margin: -15px -15px 20px;
  }
}

.mf-m-t-en {
  margin-bottom: 90px;
}

@media (max-width: 730px) {
  .mf-m-t-en {
    margin: -15px -15px 30px;
  }
}

.spacer-emergency-el {
  height: 30px;
}

@media (max-width: 787px) {
  .spacer-emergency-el {
    height: 0;
    margin-bottom: -30px;
  }
}

@media (max-width: 730px) {
  .spacer-emergency-el {
    display: none;
  }
}

.spacer-emergency-en {
  height: 30px;
}

@media (max-width: 787px) {
  .spacer-emergency-en {
    height: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 730px) {
  .spacer-emergency-en {
    display: none;
  }
}

.spacer-10 {
  height: 10px;
}

.pic-right {
  max-width: 333px;
  float: right;
  margin-top: 5px;
  margin-left: 20px;
  padding: 0;
}

.pic-right-caption {
  max-width: 333px;
  margin: 0;
  padding: 12px 10px 10px;
  border-radius: 0 0 15px 15px;
  background: #c2c2c2;
  color: #222;
  text-align: left;
}

@media only screen and (min-width:1px)and (max-width: 767px) {
  .pic-right {
    float: none;
    padding: 20px 0 30px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}

img.pic-ctrl {
  max-width: 333px;
  border-radius: 15px 15px 0 0;
  border-bottom: 8px solid #fed200;
}

.pic-right-caption {
  max-width: 333px;
  margin: -8px auto 0;
  padding: 10px;
  background: #c2c2c2;
  color: #222;
}

.invert-tog .pic-right-caption {
  background: #000;
  color: #e0e0e0;
}

.single-col-content {
  padding: 0 20px;
}

.single-col-content h2.first {
  padding-left: 0;
}

.single-col-content h2.next {
  padding-top: 0;
  padding-left: 0;
}

.single-col-content p {
  padding: 10px 0;
}

.spacer-50 {
  height: 50px;
}
