/*--------------------------------------------------
    Root
--------------------------------------------------*/

:root {
  --darker: #212121;
  --dark: #212529;
  --deeper: #272625;
  --deep: #2c2e38;
  --shadow: #5c5f72;
  --stronger: #676462;
  --retro: #707070;
  --soft: #77a2fe;
  --strong: #78839b;
  --blue-dark: #a5adbd;
  --blue-light: #bcc1cd;
  --gray: #b8b8b8;
  --light: #e9ecef;
  --red: #dc3545;
  --orange: #f39c12;
  --yellow: #f3c212;
  --lighter: #f8f9fa;
}

/*--------------------------------------------------
    Body
--------------------------------------------------*/

body {
  overflow-x: hidden;
  font-family: 'Raleway', sans-serif;
}

/*--------------------------------------------------
    Typography
--------------------------------------------------*/

a {
  color: #f39c12;
}

a:hover {
  color: #f3c212;
}

.card-text a {
  font-weight: 700;
}

.text-primary {
  color: #f39c12 !important;
}

.text-secondary {
  color: #a5adbd !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: 'Arvo', serif;
}

.retro-shadow {
  text-shadow: 2px 2px 0px #eee, 3px 3px 0px #707070;
}

/*--------------------------------------------------
    Display
--------------------------------------------------*/

@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
}

/*--------------------------------------------------
    Sections
--------------------------------------------------*/

section {
  padding: 50px 0;
}

section h2.section-heading {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

section h3.section-heading {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: none;
}

section h3.section-subheading {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 75px;
  text-transform: none;
}

section.heading {
  padding-top: 40px;
  padding-bottom: 0;
  hyphens: auto;
}

section.section-divider {
  padding: 25px 0;
}

@media only screen and (min-width: 768px) {
  section {
    padding: 70px 0;
  }
  section.section-divider {
    padding: 35px 0;
  }
}

/*--------------------------------------------------
    Buttons
--------------------------------------------------*/

.btn {
  font-weight: 700;
}

.btn-xs {
  font-size: 10pt;
  padding: 12px 40px;
}

.btn-xl {
  font-size: 18px;
  padding: 20px 40px;
}

.btn-primary {
  background-color: #f39c12;
  border-color: #f39c12;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: #f3c212 !important;
  border-color: #f3c212 !important;
  color: white;
}

.btn-primary:active,
.btn-primary:focus {
  -moz-box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.5) !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.5) !important;
  box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.5) !important;
}

.btn-secondary {
  background-color: #a5adbd;
  border-color: #a5adbd;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
  background-color: #bcc1cd !important;
  border-color: #bcc1cd !important;
  color: white;
}

.btn-secondary:active,
.btn-secondary:focus {
  -moz-box-shadow: 0 0 0 0.2rem rgba(165, 173, 189, 0.5) !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(165, 173, 189, 0.5) !important;
  box-shadow: 0 0 0 0.2rem rgba(165, 173, 189, 0.5) !important;
}

.btn-dynamic {
  display: block;
  overflow: hidden;
  width: 250px;
  height: 50px;
  margin: 0 auto;
  background-color: #f39c12;
  border: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn-dynamic p {
  font-weight: 700;
  color: white;
  font-size: 10pt;
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 600ms cubic-bezier(1, 0, 0, 1);
  transition: all 600ms cubic-bezier(1, 0, 0, 1);
}

.btn-dynamic span {
  position: relative;
  top: -47px;
  left: -100%;
  font-size: 20px;
  color: white;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-dynamic:hover {
  background-color: #f3c212;
  cursor: pointer;
}

.btn-dynamic:hover span {
  left: 0%;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.btn-dynamic:hover p {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@media only screen and (max-width: 768px) {
  .btn-dynamic {
    width: 100%;
  }
}

/*--------------------------------------------------
    Breadcrumbs
--------------------------------------------------*/

.breadcrumb-holder {
  margin-top: 130px;
}

.breadcrumb {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
}

.breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #6c757d;
  content: '/';
}

@media only screen and (max-width: 767px) {
  .breadcrumb-holder {
    margin-top: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .breadcrumb-holder {
    margin-top: 140px;
  }
}

/*--------------------------------------------------
    Image Wrapper
--------------------------------------------------*/

.image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.image-wrapper.image-left {
  background-position: left center;
}

.image-wrapper.image-right {
  background-position: right center;
}

/*--------------------------------------------------
    Selection
--------------------------------------------------*/

::-moz-selection {
  background-color: #f39c12;
  text-shadow: none;
}

::selection {
  background-color: #f39c12;
  text-shadow: none;
}

img::selection {
  background-color: transparent;
}

img::-moz-selection {
  background-color: transparent;
}

/*--------------------------------------------------
    Top Brand
--------------------------------------------------*/

.top-brand {
  padding-top: 15px;
  background-color: rgba(33, 37, 41, 0.7);
  -webkit-transition: padding-bottom 0.3s;
  -moz-transition: padding-bottom 0.3s;
  transition: padding-bottom 0.3s;
}

.top-brand .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.top-brand .container .brand {
  padding-left: 1rem;
}

.top-brand .container .brand img {
  height: 50px;
  width: auto;
}

.top-brand .container .items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

.top-brand .container .item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: white;
}

.top-brand .container .item span {
  padding-left: 5px;
}

@media only screen and (min-width: 768px) {
  .top-brand.top-brand-dark {
    background-color: #212529;
  }
}

/*--------------------------------------------------
    Navigation
--------------------------------------------------*/

#mainNav {
  margin-top: 65px;
  background-color: rgba(33, 37, 41, 0.7);
}

#mainNav .navbar-toggler {
  font-size: 12px;
  right: 0;
  margin: 10px 0;
  padding: 13px;
  text-transform: uppercase;
  color: white;
  border: 0;
  background-color: #f39c12;
}

#mainNav .navbar-brand {
  padding: 0;
}

#mainNav .navbar-brand img {
  height: 40px;
  width: auto;
}

#mainNav .nav-link {
  font-size: 13px;
  font-weight: 400;
  padding: 0.75em 0;
  letter-spacing: 1px;
  color: white;
}

#mainNav .nav-link.active,
#mainNav .nav-link:hover {
  color: #f39c12;
}

#mainNav .dropdown-menu {
  padding: 0.25rem 0;
  margin: 0;
  font-size: 13px;
}

#mainNav .dropdown-item {
  padding: 0.25rem 1rem;
}

#mainNav .dropdown-item.active {
  color: #f39c12;
  background-color: #f8f9fa;
}

#mainNav .dropdown-item:hover {
  color: #f39c12;
  font-weight: 700;
}

#mainNav .nav-link-parent {
  font-weight: 700;
}

#mainNav .nav-link-parent::before {
  font-family: 'FontAwesome';
  content: '\f192';
  padding-right: 0.5rem;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  #mainNav .container {
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) {
  #mainNav {
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: padding-top 0.3s, padding-bottom 0.3s, margin-top 0.3s;
    -moz-transition: padding-top 0.3s, padding-bottom 0.3s, margin-top 0.3s;
    transition: padding-top 0.3s, padding-bottom 0.3s, margin-top 0.3s;
    border: none;
    background-color: rgba(33, 37, 41, 0.7);
  }
  #mainNav .navbar-brand {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  #mainNav .nav-link {
    padding: 1em !important;
  }
  #mainNav.navbar-shrink {
    margin-top: 65px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #212529;
  }
  #mainNav.navbar-shrink .navbar-brand {
    padding: 12px 0;
  }
}

@media only screen and (max-width: 767px) {
  #mainNav {
    margin-top: 0;
    background-color: #212529;
  }
  #mainNav .navbar-brand {
    margin: 10px 0;
  }
}

/*--------------------------------------------------
    Header Section - Home Page
--------------------------------------------------*/

header.masthead {
  text-align: center;
  color: white;
}

header.masthead .carousel-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: center;
  justify-content: center;
}

header.masthead .carousel-overlay .intro-text {
  max-width: 380px;
  padding-bottom: 175px;
}

header.masthead .carousel-item {
  height: 100vh;
  min-height: 300px;
  background: no-repeat center top scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

header.masthead .carousel-indicators {
  display: none;
}

header.masthead .carousel-control-prev,
header.masthead .carousel-control-next {
  display: none;
}

header.masthead .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(33, 37, 41, 0.7);
}

@media only screen and (min-width: 768px) {
  header.masthead .carousel-overlay .intro-text {
    min-width: 100%;
  }
  header.masthead .carousel-caption {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  header.masthead {
    height: 100vh;
  }
  header.masthead .carousel-overlay {
    background-image: url("../images/header.jpg");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  header.masthead .carousel-overlay .intro-text {
    padding-bottom: 0;
  }
  header.masthead .carousel-overlay .intro-text .btn {
    margin-bottom: 10px;
  }
  header.masthead #carouselHeader {
    display: none;
  }
}

/*--------------------------------------------------
    Service Section - Home Page
--------------------------------------------------*/

.service-box {
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
  text-align: center;
  background-color: #bcc1cd;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-box .image-holder {
  position: relative;
  top: 40px;
  display: inline-block;
  margin-bottom: 40px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border: 7px solid white;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-box .image-holder img {
  width: auto;
  height: 100%;
  max-height: 200px;
}

.service-box h4 {
  position: relative;
  top: 10px;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-box p {
  font-size: 14px;
  line-height: 1.25;
  width: 80%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.service-box a.btn {
  position: absolute;
  right: 0;
  bottom: 40px;
  margin-bottom: 0.5rem;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.service-box:hover {
  background-color: #78839b;
}

.service-box:hover .image-holder {
  top: -40px;
  margin-bottom: 0;
}

.service-box:hover h4 {
  top: -10px;
}

.service-box:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  color: white;
}

.service-box:hover a.btn {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*--------------------------------------------------
    About Section - Home Page
--------------------------------------------------*/

.about-box {
  position: relative;
  padding: 100px;
  border-radius: 4px;
  background-color: white;
}

.about-box p {
  text-align: left !important;
}

.about-img img {
  position: absolute;
  left: -120px;
  top: 40px;
  padding: 12px;
  border: 8px solid white;
}

@media only screen and (max-width: 767px) {
  .about-box {
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
  }
  .about-box p {
    text-align: center !important;
  }
  .col-md-3.about-img {
    text-align: center;
  }
  .col-md-3.about-img img {
    position: relative;
    top: 0;
    left: 0;
  }
}

/*--------------------------------------------------
    Testimonials Section - Home Page
--------------------------------------------------*/

#testimonials.parallax {
  height: 100%;
  padding: 100px 0;
  background-image: url("../images/parallax/testimonials.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#carouselTestimonials.vertical .carousel-item-next.carousel-item-left,
#carouselTestimonials.vertical .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#carouselTestimonials.vertical .carousel-item-next,
#carouselTestimonials.vertical .active.carousel-item-right {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100% 0);
}

#carouselTestimonials.vertical .carousel-item-prev,
#carouselTestimonials.vertical .active.carousel-item-left {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

#carouselTestimonials .carousel-indicators {
  top: -20px;
}

#carouselTestimonials .carousel-indicators li {
  background-color: white;
}

#carouselTestimonials .carousel-indicators li.active {
  background-color: #f39c12;
}

#carouselTestimonials .carousel-item blockquote {
  position: relative;
  display: block;
  background-color: white;
  height: 130px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 75px;
  border-left: 15px solid #f39c12;
  border-right: 15px solid #f39c12;
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

#carouselTestimonials .carousel-item blockquote::before {
  position: absolute;
  left: 15px;
  top: 0;
  /*Unicode for Left Double Quote*/
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
  color: #999;
}

#carouselTestimonials .carousel-item blockquote::after {
  content: '';
}

#carouselTestimonials .carousel-item blockquote p {
  font-size: 18px;
  line-height: 1.4;
  color: #666;
  text-align: left;
}

#carouselTestimonials .carousel-item blockquote footer {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 15px;
  font-size: 15px;
}

@media only screen and (min-width: 768px) {
  #testimonials.parallax {
    padding: 150px 0;
  }
}

@media only screen and (max-width: 439px) {
  #carouselTestimonials .carousel-item blockquote {
    height: 180px;
  }
}

@media only screen and (max-width: 767px) {
  #testimonials.parallax {
    background-position: right;
  }
}

/*--------------------------------------------------
    Portfolio Section - Home Page
--------------------------------------------------*/

.portfolio-item {
  position: relative;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 100%;
  max-width: 100%;
  max-height: 360px;
  width: 100%;
  height: auto;
  background-color: #77a2fe;
  text-align: center;
}

.portfolio-item img {
  width: auto;
  height: 100%;
  max-height: 360px;
  opacity: 0.95;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}

.portfolio-item .description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.portfolio-item .description::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  content: '';
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

.portfolio-item .description h3 {
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: white;
  text-shadow: 2px 2px 0 #2c2e38, 4px 4px 0 #5c5f72;
}

.portfolio-item .description p {
  position: absolute;
  right: 0;
  bottom: 1rem;
  margin: 0 3rem;
  padding: 0.5rem 1rem;
  max-width: 90%;
  border-right: 4px solid white;
  text-align: right;
  text-transform: uppercase;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s ease;
}

.portfolio-item .description a {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  color: white;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.portfolio-item .description a span {
  padding: 0.5rem 2rem;
  border: 2px solid #f39c12;
  border-radius: 4px;
  background-color: #f39c12;
}

.portfolio-item:hover img {
  opacity: 0.6;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.portfolio-item:hover .description::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.portfolio-item:hover .description p {
  bottom: 3.5rem;
  border-right-color: #f39c12;
}

.portfolio-item:hover .description a {
  opacity: 1;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

/*--------------------------------------------------
    Forms
--------------------------------------------------*/

.form-wrapper {
  margin: 20px 0;
  padding: 5px 5px;
  background-color: #bcc1cd;
}

form fieldset {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 0!important;
  margin-bottom: 0 !important;
}

form label {
  margin-bottom: 0.25rem !important;
  font-size: 15px;
  font-weight: 300 !important;
  text-transform: uppercase;
}

form .requiredField label:after {
  font-family: 'FontAwesome';
  content: '\f069';
  position: absolute;
  margin-left: 3px;
  font-size: 6px;
  color: #dc3545;
}

form .form-control {
  border-radius: 0;
}

form .right-title {
	color: #dc3545;
  font-size: 13px;
  font-style: italic;
}

form .form-check {
  padding-left: 0;
}

form .checkbox-styled {
  position: absolute;
  opacity: 0;
}

form .checkbox-styled+label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

form .checkbox-styled+label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 15px;
  height: 15px;
  background-color: white;
}

form .checkbox-styled:hover+label:before {
  background-color: #f3c212;
}

form .checkbox-styled:focus+label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

form .checkbox-styled:checked+label:before {
  background-color: #f39c12;
}

form .checkbox-styled:disabled+label {
  color: #b8b8b8;
  cursor: auto;
}

form .checkbox-styled:disabled+label:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ddd;
}

form .checkbox-styled:checked+label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  background-color: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

form .Actions input[type="submit"] {
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}

form .Actions p {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

form .Actions p a {
  font-weight: 500;
}

/*--------------------------------------------------
    Prices
--------------------------------------------------*/

#prices {
  padding-top: 20px;
}

#prices .price-plan {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 50px 0;
  border-radius: 8px;
  background-color: white;
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: .3s;
  transition: .3s;
}

#prices .price-plan:hover {
  -webkit-transform: translateY(-2%);
  transform: translateY(-2%);
  -moz-box-shadow: 1px 8px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 8px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 8px 5px rgba(0, 0, 0, 0.2);
}

#prices .price-plan .heading {
  background-color: #78839b;
  padding: 20px;
  text-align: left;
  color: #272625;
  margin-bottom: 20px;
}

#prices .price-plan .heading h2 {
  margin-bottom: 0;
  color: white;
  text-transform: uppercase;
}

#prices .price-plan .heading p {
  margin-bottom: 0;
  font-size: 14px;

}
#prices .price-plan .heading .sub {
  color: #f3c212;

}
#prices .price-plan .heading .main-price {
  margin: 0;
  font-size: 16px;
}

#prices .price-plan .heading .main-price i {
  font-size: 14px;
  color: #f3c212;
}

#prices .price-plan .heading .main-price span {
  padding: 0 5px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  color: #212529;
  letter-spacing: 1px;
  border-bottom: 2px solid #f3c212;
}

#prices .price-plan .block {
  display: block;
  margin: 0 20px;
  padding: 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.price-sub{
  color: #f3c212;
}
#prices .price-plan .block p {
  margin: 0;
  text-align: left;
  color: #272625;
  font-weight: 700;
  font-size: 15px;
}

#prices .price-plan .block .price {
  float: right;
  position: relative;
  right: 5px;
}

#prices .price-plan .block .description {
  display: block;
  margin: 0;
}

#prices .price-plan .block .description>* {
  margin-left: 1.25rem;
  font-size: 13px;
  color: #676462;
  font-weight: 400;
  text-transform: lowercase;
}

@media only screen and (min-width: 992px) {
  #payments .border-md-right {
    border-right: 1px solid #ccc;
  }
}

@media only screen and (max-width: 768px) {
  #prices .price-plan .btn-dynamic {
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 991px) {
  #payments img.img-fluid {
    max-width: 50%;
    height: auto;
  }
  #payments hr.w-75 {
    display: block !important;
  }
}

/*--------------------------------------------------
    Contact
--------------------------------------------------*/

#contact.parallax {
  height: 100%;
  padding: 100px 0;
  background-color: #212529;
  background-image: url("../images/parallax/world-map.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.map-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Ratio 16:9 */
  padding-bottom: 56.25%;
}

.map-holder iframe {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

#contact .card {
  border: 0;
}

#contact .card-header {
  padding-bottom: 50px;
  background-color: #bcc1cd;
  border-bottom: 10px solid #78839b;
}

#contact .card .card-logo {
  position: relative;
  top: -55px;
  margin-bottom: -100px;
  text-align: center;
}

#contact .card .card-logo img {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  padding: 8px;
  border: 5px solid white;
  background-color: #bcc1cd;
}

#contact .card-header h4 {
  margin-bottom: 10px;
  color: white;
  font-size: 22px;
  text-transform: uppercase;
}

#contact .card-header p {
  margin: 0;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #272625;
}

#contact .card-body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#contact .card-body .item {
  margin-bottom: 12px;
  padding-left: 10px;
}

#contact .card-body .item:last-of-type {
  margin-bottom: 0;
}

#contact .card-body .item a {
  display: block;
  text-decoration: none;
}

#contact .card-body .item .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  outline: none;
  background-color: #212529;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#contact .card-body .item .text {
  display: inline-block;
  vertical-align: baseline;
  padding-left: 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #b8b8b8;
}

#contact .card-body .item .text span {
  display: block;
  font-size: 16px;
  text-transform: none;
  color: #272625;
}

#contact .card-body .item a:hover .icon {
  background-color: #f39c12;
}

#contact .card-body .item a:hover .text span {
  color: #f39c12;
}

@media only screen and (max-width: 767px) {
  .map-holder {
    margin-bottom: 2rem;
  }
  #contact .card-body {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .reference-item {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------
    Testimonials
--------------------------------------------------*/

.testimonial-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  background-color: white;
}

.testimonial-box blockquote {
  margin: 0;
  padding: 50px 40px 0;
  font-weight: 400;
  line-height: 1.6em;
  font-style: italic;
}

.testimonial-box .author {
  margin: 20px 0 40px;
  width: 100%;
}

.testimonial-box .author img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 5px;
}

.testimonial-box .author h5,
.testimonial-box .author span {
  opacity: 0.8;
  margin: 0;
}

.testimonial-box .author h5 {
  text-transform: uppercase;
  font-weight: 700;
}

.testimonial-box .author span {
  font-size: 12px;
}

.testimonial-box:before,
.testimonial-box:after {
  font-family: 'FontAwesome';
  content: '\201C';
  position: absolute;
  font-size: 150px;
  line-height: 1em;
  color: #212121;
  font-style: normal;
}

.testimonial-box:before {
  top: -30px;
  left: 20px;
}

.testimonial-box:after {
  content: '\201D';
  right: 20px;
  bottom: -88px;
}

/*--------------------------------------------------
    FAQ Accordion
--------------------------------------------------*/

.accordion-button {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

.accordion-button.active,
.accordion-button:hover {
  background-color: #f3c212;
}

.accordion-button:after {
  content: '\002B';
  color: #777;
  font-weight: 700;
  font-size: 24px;
  float: right;
  margin-left: 5px;
}

.accordion-button.active:after {
  content: '\2212';
}

.accordion-panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -moz-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.accordion-panel p {
  font-size: 14px;
}

.accordion-panel p:first-of-type {
  padding-top: 18px;
}

/*--------------------------------------------------
    Gallery
--------------------------------------------------*/

.gallery-item {
  margin-bottom: 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.gallery-item:hover {
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.gallery-item .card {
  height: 420px;
}

.gallery-item .card-header {
  height: 220px;
  overflow: hidden;
}

.gallery-item .card-title {
  font-size: 18px;
  text-transform: uppercase;
}

.gallery-item:hover .card-title {
  color: #f39c12;
}

.gallery-item .card-text {
  display: block;
  display: -webkit-box;
  height: 60px;
  margin: 0;
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-item .card-footer {
  text-align: center;
}

.gallery-item .card-footer a {
  display: block;
  padding: 10px 0;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}

.gallery-item:hover .card-footer a,
.gallery-item .card-footer a:hover {
  font-weight: 700;
}

.gallery-modal {
  padding-right: 0px !important;
}

.gallery-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.gallery-modal .modal-content {
  padding: 75px 0;
}

.gallery-modal .modal-content img {
  margin-bottom: 30px;
}

.gallery-modal .modal-title {
  margin-bottom: 30px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-modal .modal-text {
  margin-bottom: 50px;
}

.gallery-modal .modal-text p {
  margin-bottom: 15px;
}

.gallery-modal .modal-text p br {
  display: block;
  content: ' ';
  margin-bottom: 15px;
}

.gallery-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
}

.gallery-modal .close-modal:hover {
  opacity: 0.3;
}

.gallery-modal .close-modal .lr {
  /* Safari and Chrome */
  z-index: 1051;
  width: 1px;
  height: 50px;
  margin-left: 25px;
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #212529;
}

.gallery-modal .close-modal .lr .rl {
  /* Safari and Chrome */
  z-index: 1052;
  width: 1px;
  height: 50px;
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #212529;
}

/*--------------------------------------------------
    Timeline
--------------------------------------------------*/

#timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}

#timeline::before {
  /* Vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 75px;
  height: 100%;
  width: 4px;
  background: #a5adbd;
}

@media only screen and (min-width: 1170px) {
  #timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.timeline-container {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  display: table;
  clear: both;
}

.timeline-block {
  position: relative;
  min-height: 150px;
  margin: 2em 0;
}

.timeline-block:after {
  content: '';
  display: table;
  clear: both;
}

.timeline-block:first-child {
  margin-top: 0;
}

.timeline-block:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1170px) {
  .timeline-block {
    min-height: 200px;
    margin: 4em 0;
  }
  .timeline-block:first-child {
    margin-top: 0;
  }
  .timeline-block:last-child {
    margin-bottom: 0;
  }
}

.timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 7px solid #e9ecef;
  border-radius: 50%;
  -moz-box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
}

.timeline-img img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  margin-left: 0;
  margin-top: 0;
}

@media only screen and (min-width: 1170px) {
  .timeline-img {
    width: 200px;
    height: 200px;
    left: 50%;
    margin-left: -100px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  /* Modernizr related */
  .cssanimations .timeline-img.is-hidden {
    visibility: hidden;
  }
  /* Modernizr related */
  .cssanimations .timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.timeline-content {
  position: relative;
  margin-left: 170px;
  background: #f8f9fa;
  border-radius: 0.25em;
  padding: 1em;
  -moz-box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  -webkit-filter: drop-shadow(0 3px 4px #ccc);
  filter: drop-shadow(0 3px 4px #ccc);
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#ccc')";
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=2, Color='#ccc')";
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #f8f9fa;
}

.timeline-content:after {
  content: '';
  display: table;
  clear: both;
}

.timeline-content h4 {
  font-size: 16px;
  color: #78839b;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

@media only screen and (min-width: 768px) {
  .timeline-content h4 {
    font-size: 18px;
  }
  .timeline-content p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1170px) {
  .timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 38%;
  }
  .timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #f8f9fa;
  }
  .timeline-block:nth-child(even) .timeline-content {
    float: right;
  }
  .timeline-block:nth-child(even) .timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #f8f9fa;
  }
  /* Modernizr related */
  .cssanimations .timeline-content.is-hidden {
    visibility: hidden;
  }
  /* Modernizr related */
  .cssanimations .timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* Modernizr related inverse bounce effect on even content blocks */
  .cssanimations .timeline-block:nth-child(even) .timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}

@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}

@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}

@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

/*--------------------------------------------------
    Footer
--------------------------------------------------*/

footer {
  padding: 25px 0;
  text-align: center;
}

footer .logo {
  margin-bottom: 15px;
}

footer .logo img {
  height: 100px;
  width: auto;
}

footer .description {
  padding: 15px 30px;
  font-size: 15px;
  text-align: left;
}

footer .description a {
  font-weight: 700;
}

footer .privacy {
  margin-bottom: 40px;
}

footer span.copyright {
  font-size: 13px;
  line-height: 40px;
  text-transform: none;
}

footer ul.quicklinks {
  font-size: 13px;
  line-height: 40px;
  margin-bottom: 0;
  text-transform: none;
}

footer ul.social-buttons {
  margin-bottom: 0;
}

footer ul.social-buttons li a {
  font-size: 20px;
  line-height: 40px;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: white;
  border-radius: 100%;
  outline: none;
  background-color: #212529;
}

footer ul.social-buttons li a:active,
footer ul.social-buttons li a:focus,
footer ul.social-buttons li a:hover {
  background-color: #f39c12;
}

/*--------------------------------------------------
   Go Top
--------------------------------------------------*/

.go-top {
  background-color: white;
  -moz-box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 1px 1.732px 12px 0 rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s ease;
  bottom: 2em;
  right: 2em;
  color: #222;
  font-size: 26px;
  display: none;
  position: fixed;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
}

.go-top:hover {
  background-color: #f39c12;
  color: white;
}

/* ****************************** VLADINO ****************************** */

/* ***** Widget za davanje preporuka ***** */

.widget {
  display: none;
  position: fixed;
  top: 45%;
  left: -252px;
  width: 360px;
  height: 130px;
  transition: all cubic-bezier(.45,.05,.55,.95) .5s;
  z-index: 299;
}
.widget:hover {
  transform: translateX(252px);
  -webkit-transition: -webkit-transform .5s;
  transition: transform .5s;
}
@media screen and (min-width: 768px) {
  .widget {
    display: inline-table;
  }
}
.widget-name {
  width: 31px;
  background-color: #212529;
  border-right: solid #fff 2px;
  vertical-align: middle;
}
.happy {
  width: 110px;
  background-color: #92A1CF;
  border-right: solid #fff 2px;
}
.happy img {
  display: block;
  margin: 0 auto;
}
.happy a {
  display: block;
  margin: 0 auto;
  width: 64px;
}
.sad {
  width: 110px;
  background-color: #d7dbdd;
  border-right: solid #fff 2px;
}
.sad img {
  display: block;
  margin: 0 auto;
}
.sad a {
  display: block;
  margin: 0 auto;
  width: 64px;
}
.people {
  background-color: #F39C12;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
}
.people img {
  width: 64px;
  display: block;
  margin: 0 auto;
}
.people :nth-child(2) {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0;
}
.people :nth-child(3) {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 7px;
}
/* ***** Dovde - Widget za davanje preporuka ***** */

/* ***** Sekcija za davanje preporuka na mobilnom ***** */

.thumbs {
  width: 300px;
  margin: 30px auto 50px auto;
}
.p-one {
  margin-bottom: 10px;
  line-height: 22px;
  font-size: 20px;
  font-weight: bold;
}
.p-two {
  margin-bottom: 30px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .thumbs {
    display: none;
  }
}

.thumbs-up {
  display: inline-block;
  padding: 15px 15px 15px 30px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #92A1CF;
}
.thumbs-down {
  display: inline-block;
  padding: 15px 30px 15px 15px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #d7dbdd;
}
/* ***** Dovde - sekcija za davanje preporuka na mobilnom ***** */

/* ***** Happy stranica ***** */

.hp-body {
  background-color: #92A1CF;
}
.hp-header {
  background-color: #F8FCFE;
  padding: 10px;
}
.hp-header img {
  display: block;
  margin: auto;
  height: 51px;
  width: 64px;
}
.hp-wrapper {
  margin: 50px 20px 20px;
}
.hp-wrapper h1, h2, h3 {
  font-family: 'Arvo', serif;
  text-align: center;
  font-weight: bold;
}
.hp-wrapper h1 {
  text-shadow: 2px 2px 0px #eee, 3px 3px 0px #707070;
}
.hp-wrapper h3 {
  font-size: 24px;
}
.hp-container {
  background-color: #F8FCFE;
  border-radius: 4px;
}
.hp-container h1, h3 {
  margin-top: 20px;
}
.hp-intro {
  display: none;
}
.hp-intro h1 {
  text-transform: uppercase;
  font-size: 30px;
}
.hp-intro h2 {
  font-size: 30px;
}
.hp-intro img {
  display: block;
  margin: 50px auto 0;
}
@media screen and (min-width: 768px) {
  .hp-intro {
    display: block;
  }
}
.hp-form {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .hp-form {
    border-left: solid #92A1CF 6px;
    border-right: solid #92A1CF 6px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 0 10px;
  }
}
.hp-form h3, p {
  text-align: center;
}
.hp-form p {
  color: #92A1CF;
}
.hp-hr {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .hp-hr {
    display: none;
  }
}
.hp-checkbox {
  width: 265px;
  margin: 25px 0 25px 0px;
}
@media screen and (min-width: 500px) {
  .hp-checkbox {
    width: 310px;
  }
}
.hp-checkbox label {
  min-height: 25px;
  font-size: 16px;
  margin-bottom: 2px;
}
@media (min-width: 500px) and (max-width: 767px) {
  .hp-checkbox br {
    display: none;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .hp-checkbox span {
    display: none;
  }
}
.hp-form-group label {
  color: #92A1CF;
}
.hp-btn {
  margin-bottom: 20px;
  background-color: #92A1CF !important;
  border: none;
  color: #fff;
}
.hp-social h3 {
  text-align: center;
}
.hp-social img {
  display: block;
  margin: 30px auto;
}
.hp-social :nth-child(2) {
  display: block;
  margin: 30px auto 50px;
}
.hp-social :nth-child(3) {
  display: block;
  margin: 30px auto;
  height: 64px;
  width: 64px;
}
.hp-social :nth-child(4) {
  display: block;
  margin: 30px auto;
  height: 64px;
  width: 64px;
}

/* ***** Dovde - Happy stranica ***** */

/* ***** Unhappy stranica ***** */

.uhp-body {
  background-color: #d7dbdd;
}
.uhp-header {
  background-color: #F8FCFE;
  padding: 10px;
}
.uhp-header img {
  display: block;
  margin: auto;
  height: 51px;
  width: 64px;
}
.uhp-wrapper h1, h2, h3 {
  font-family: 'Arvo', serif;
  text-align: center;
  font-weight: bold;
}
h1 {
  text-shadow: 2px 2px 0px #eee, 3px 3px 0px #707070;
}
.uhp-wrapper {
  margin: 50px 20px 20px;
}
.uhp-wrapper h3 {
  font-size: 24px;
}
.uhp-container {
  background-color: #F8FCFE;
  border-radius: 4px;
}
.uhp-intro {
  display: none;
}
.uhp-intro h1 {
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 20px;
}
.uhp-intro img {
  display: block;
  margin: 50px auto 0;
}
@media screen and (min-width: 768px) {
  .uhp-intro {
    display: block;
  }
}
.uhp-form {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .uhp-form {
    border-left: solid #d7dbdd 6px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
}
.uhp-form h3, p {
  text-align: center;
}
.uhp-checkbox {
  width: 265px;
  margin: 25px 0 25px 0px;
}
@media screen and (min-width: 500px) {
  .uhp-checkbox {
    width: 310px;
    margin: 25px 0 25px 0px;
  }
}
.uhp-checkbox label {
  min-height: 25px;
  display: block;
  font-size: 16px;
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 500px) and (max-width: 767px) {
  .uhp-checkbox br {
    display: none;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .uhp-checkbox span {
    display: none;
  }
}
.uhp-btn {
  margin-bottom: 20px;
  background-color: #d7dbdd;
  border: none;
  color: #000;
  font-size: 16px;
  transition: color .3s ease-in-out,
  background-color .3s ease-in-out,
  border-color .3s ease-in-out,
  box-shadow .3s ease-in-out;
}

/* ***** Dovde - Unhappy stranica ***** */

/* ***** Modal ***** */

.review-modal {
  border-radius: 0.7rem;
  max-width: 600px;
  z-index: 399;
}

/* ***** Positive Modal ***** */

.pos-modal-content {
  width: 90%;
  margin: 15px auto;
  background-color: #92A1CF;
}
.pos-modal-body {
  background-color: #92A1CF;
  padding: 0;
  border-bottom-left-radius: .3rem;
  border-bottom-right-radius: .3rem;
}
.pos-modal-header {
  height: 70px;
  border-bottom: none;
  background-color: #f8fcfe;
}
.pos-modal-header img {
  width: 64px;
  margin: -6px auto 0;
}
.pos-modal-header > .close {
  margin-left: 0;
}
.hp-checkbox label {
  display: block;
  font-size: 16px;
  margin-bottom: 0;
  text-align: left;
}

/* ***** Negative Modal ***** */

.neg-modal-content {
  width: 90%;
  margin: 15px auto;
  background-color: #d7dbdd;
}
.neg-modal-body {
  background-color: #d7dbdd;
  padding: 0;
  border-bottom-left-radius: .3rem;
  border-bottom-right-radius: .3rem;
}
.neg-modal-header {
  height: 70px;
  border-bottom: none;
  background-color: #f8fcfe;
}
.neg-modal-header img {
  width: 64px;
  margin: -6px auto 0;
}
.close-review-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
}
.close-review-modal .lr {
  z-index: 1051;
  width: 1px;
  height: 50px;
  margin-left: 25px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #212529;
}
.close-review-modal .rl {
  z-index: 1052;
  width: 1px;
  height: 50px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #212529;
}
.hp-checkbox label {
  display: block;
  font-size: 16px;
  margin-bottom: 0;
  text-align: left;
}
.form-control.neg-textarea {
  width: 80%;
  margin: 0 auto;
}

/* ***** Positive Widget Modal ***** */

.review-widg-modal {
  max-width: 900px;
}
.pos-widg-modal-content {
  width: 90%;
  margin: 15px auto;
  border-radius: .3rem;
  background-color: #92A1CF;
}
.pos-widg-modal-header {
  height: 70px;
  border-bottom: none;
  background-color: #f8fcfe;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}
.pos-widg-modal-header img {
  width: 64px;
  margin: -6px auto 0;
}
.close-widg-review-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
}
.close-widg-review-modal .lr {
  z-index: 1051;
  width: 1px;
  height: 50px;
  margin-left: 25px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #212529;
}
.close-widg-review-modal .rl {
  z-index: 1052;
  width: 1px;
  height: 50px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #212529;
}
.pos-widg-modal-body {
  border-bottom-left-radius: .3rem;
  border-bottom-right-radius: .3rem;
  background-color: #92A1CF;
  padding: 0;
}
.hide-positive {
  display: flex;
  flex-direction: column;
  background-color: #92A1CF;
  height: 300px;
}
@media screen and (max-width: 576px) {
  .hide-positive {
    flex-direction: row;
  }
}
@media screen and (max-width: 490px) {
  .hide-positive {
    height: 300px;
  }
}
.hide-positive p {
  float: left;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  .hide-positive p {
    margin-left: 30px;
  }
}
@media screen and (min-width: 420px) {
  .hide-positive p {
    width: 300px;
  }
}
@media screen and (min-width: 560px) {
  .hide-positive p {
    width: 350px;
    margin: 20px;
  }
}
.modal-social {
  margin: 30px auto;
  width: 170px;
}
@media screen and (max-width: 490px) {
  .modal-social {
    margin: 20px auto;
  }
}
.modal-social a:first-child  {
  margin-right: 20px;
}
.social-wrapp {
  margin: 0 auto;
  width: 90%;
}
.hide-pos-para {
  margin: 0 auto;
}
@media screen and (max-width: 490px) {
  .hide-pos-para {
    height: 180px;
  }
}
.hide-pos-para p {
  text-align: left;
}
.hide-pos-para > img {
  display: inline-block;
  float: right;
  height: 64px;
  width: 64px;
  margin-left: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .hide-pos-para > img {
    display: none;
  }
}

/* ***** Negative Widget Modal ***** */

.neg-widg-modal-content {
  width: 90%;
  margin: 15px auto;
  border-radius: .3rem;
  background-color: #92A1CF;
}
.neg-widg-modal-header {
  height: 70px;
  border-bottom: none;
  background-color: #f8fcfe;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}
.neg-widg-modal-header img {
  width: 64px;
  margin: -6px auto 0;
}
.close-widg-review-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
}
.close-widg-review-modal .lr {
  z-index: 1051;
  width: 1px;
  height: 50px;
  margin-left: 25px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #212529;
}
.close-widg-review-modal .rl {
  z-index: 1052;
  width: 1px;
  height: 50px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #212529;
}
.neg-widg-modal-body {
  border-bottom-left-radius: .3rem;
  border-bottom-right-radius: .3rem;
  background-color: #d7dbdd;
  padding: 0;
}
.hide-negative {
  background-color: #d7dbdd;
  height: 250px;
  text-align: left;
}
.hide-negative p {
  margin: 30px 70px;
  font-size: 24px;
  font-weight: 600;
}
.hide-neg-para p {
  text-align: left;
  margin: 30px 0 0 30px;
}
@media screen and (min-width: 576px) {
  .hide-neg-para p {
    margin: 30px 0 0 30px;
  }
}

/* *****   Undervisningsmateriale   ***** */

.documents-section {
  background: #f8f9fa;
}

.documents {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 50px 0;
  border-radius: 8px;
  background-color: white;
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: .3s;
  transition: .3s;
}
.documents:hover {
  -webkit-transform: translateY(-2%);
  transform: translateY(-2%);
  -moz-box-shadow: 1px 8px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 8px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 8px 5px rgba(0, 0, 0, 0.2);
}
.documents-heading {
  background: #78839b;
  padding: 20px;
  text-align: left;
  color: #272625;
  margin-bottom: 20px;

}

.documents-heading h2 {
  text-transform: uppercase;
  color: white;
  font-size: 20px;
}
@media (min-width: 480px) {
  .documents-heading h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.documents-content {
  margin: 50px 20px 0;
}
.document-details {
  margin: 0 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}
@media (min-width: 480px) {
  .document-details {
    display: flex;
    justify-content: space-between;
    /*flex-wrap: wrap;*/
    /*flex-wrap: nowrap;*/
  }
}
.document-details p {
  text-align: left;

}
/*.document__details :nth-child(1) {*/
  /*display: inline;*/
  /*font-weight: bold;*/
  /*color: #272625;*/
/*}*/
.document-details__name {
  display: inline;
  font-weight: bold;
  color: #272625;

}
.document-details__name > p {
  margin-bottom: 10px;
  hyphens: auto;
}
.document-details__description {
  font-weight: normal;
  color: #676462;
  margin-left: 20px;
}

.document-details__button {
  background: #f39c12;
  min-width: 120px;
  height: 30px;
  /*float: right;*/
  padding: 2px;
  color: #fff;
}
.document-details__button:hover {
  background: #f3c212;
  color: #fff;
}



/*--------------------------------------------------
    Cookie Consent
--------------------------------------------------*/

.cc-link {
  color: #f39c12 !important;
  text-decoration: none;
}

.cc-link:hover {
  text-decoration: underline;
}

.cc-btn {
  text-transform: uppercase;
}

.cc-btn:hover {
  text-decoration: none !important;
}
span.note {


}

@media (min-width: 480px) {

  span.note {
    font-size: 107%;
    color: black;
    padding: 5px;
    align: justify;
    width: 100%;
    height: 300px;
    position: absolute;
}

}
/*--------------------------------------------------
    PRISER
--------------------------------------------------*/

.col.priser {
    margin: 10px;
    padding: 20px 20px 20px 20px;
    background-color: #FFFFFF;
    border-radius: 7px 7px 7px 7px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
    color: #a5adbd;
    text-align: center;
    margin-top: -90px;
}
.col-6.prva {
        flex: 0 0 30%;
}
h3.prva {
    text-align: left;
    color:#f39c12;
}
h2.prva {
    text-align: center;
}
p.prva {
    text-align: left;
}
table.prva {
    width: 80%;
    margin-left: auto; 
    margin-right: auto;
}
.table {
    width: 75%;
    margin-bottom: 0!important;
}
td.centar {
    text-align: center;
    color:#f39c12;
    font-size: 24px;
}
.table td, .table th {
    padding: .25rem;
}
.col-lg-6.cena {
    background-color: #78839b;
    color: white;
    font-size: 24px;
    font-weight: bold;
}
.image_nova {
        
        height: 400px;
        background-position: center;
        width: 1100px;
        margin: auto;
        background-size: cover;
}
a.prvasekcija:hover {
    text-decoration: none;
}

.image-wrappers {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

th {
    padding-left: 4px;
}

@media only screen and (max-width: 1200px) {
  .image-wrappers {
  width: 80%;
  height: 10%;
  margin: auto;
  margin-top: 30px;      
  }
}

@media only screen and (max-width: 1100px) {
.image_nova {
        
        height: 400px;
        background-position: center;
        width: 800px;
        margin: auto;
        background-size: cover;
}
}

@media only screen and (max-width: 650px) {
.image_nova {
        
        height: 300px;
        background-position: top;
        width: 300px;
        margin: auto;
        background-size: cover;
}
}

@media only screen and (max-width: 500px) {
th {
        
       font-size: 8px;
}
    td.centar {
       font-size: 8px!important;
    }
    
    .row.prvi {
        width: 80%;
        margin: auto;
    }
    
    .container.kartice {
        padding-left: 55px;
        padding-right: 55px;
    }
    .btn-dynamic.priser {
        width: 80%;
    }
    
    .col-lg-6.cena {
        width: 90%;
        margin: auto;
    }
}


.text-center.naslov {
    margin-bottom: 70px;
}

/* Priser */

.row-eq-height{
  padding-left: 0;
  padding-right: 0;
}

.silver{
  background-color: #78839b;
 color: white;
}
.sub-white{
  color: white;
}