@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"),
    url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-Italic.woff2") format("woff2"),
    url("../fonts/Montserrat-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-Light.woff2") format("woff2"),
    url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"),
    url("../fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-Black.woff2") format("woff2"),
    url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:focus-visible {
  outline: 3px solid #f5c542;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 15px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  left: 10px;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.standard-content {
}

.standard-content .wrapper h3 {
  text-align: center;
}
.standard-content .header_content_st {
  background-size: cover;
  width: 100%;
  height: 551px;
  background-position: center;
  background-repeat: no-repeat;
}
.standard-content .wrapper {
  margin: 50px 0;
}
.standard-content .wrapper h2 {
  font-size: 70px;
}

.mobile_phone {
  position: fixed;
  bottom: 45%;
  right: 13px;
  z-index: 111;
  display: none;
}
.mobile_phone .phone_wrap {
}
.mobile_phone .phone_wrap a {
  font-size: 29px;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #f2d800;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.mobile_phone .phone_wrap a:after,
.mobile_phone .phone_wrap a:before {
  content: "";
  position: absolute;
  min-height: 53px;
  min-width: 53px;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), transparent 70%, #f2d800);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  border-radius: 50%;
  animation: 3s spin linear infinite;
}
.mobile_phone .phone_wrap a:before {
  filter: blur(1.3rem);
  opacity: 0.5;
}
.mobile_phone {
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

/***********************************************************/

/* Loader stilovi */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a09; /* Pozadinska boja */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-content {
  position: relative;
  width: 100px;
  height: 100px;
}

.loader-circle {
  width: 80px;
  height: 80px;
  border: 8px solid #000; /* Vanjski dio */
  border-top: 8px solid #f2d800; /* Unutarnji dio */
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* Animacija kruga */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Ekran se rastvara iz sredine */
@keyframes reveal {
  0% {
    clip-path: circle(0% at center);
  }
  100% {
    clip-path: circle(150% at center);
  }
}

/* Kad se loader sakrije */
#page-content.reveal {
  animation: reveal 1.5s ease-out forwards;
  display: block !important;
}

/***********************************************************/

.navbar-default .navbar-collapse.navbar250 ul li a {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(29px, 0, 0);
  display: block;
}

.navbar-default .navbar-collapse.navbar250 ul li a {
  animation: fadeInLeft 0.4s ease forwards;
  animation-delay: 0.5s;
}

.navbar-default .navbar-collapse.navbar250 ul li:nth-child(2n) a {
  animation-delay: 0.6s;
}

.navbar-default .navbar-collapse.navbar250 ul li:nth-child(3n) a {
  animation-delay: 0.7s;
}

.navbar-default .navbar-collapse.navbar250 ul li:nth-child(4n) a {
  animation-delay: 0.8s;
}

.navbar-default .navbar-collapse.navbar250 ul li:nth-child(5n) a {
  animation-delay: 1s;
}

body {
  margin-top: 0;
  transition: background-color 500ms linear 0s;
  background-color: #fffffffb;
  color: #0a0a09;
  font-size: 18px;
  font-family: "Montserrat";
}

.images_wraper_menu {
  display: none;
}
.images_wraper_menu .img {
  max-width: 350px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.navbar-collapse .images_wraper_menu .img.img1 {
  right: -314px;
  max-width: 168px;
  transform: rotate(-90deg);
  top: 87px;
}
.navbar-collapse .images_wraper_menu .img.img2 {
  right: -314px;
  max-width: 168px;
  transform: rotate(-62deg);
  top: -34px;
}
.navbar-collapse .images_wraper_menu .img.img3 {
}
.navbar-collapse .images_wraper_menu .img.img4 {
  right: -314px;
  max-width: 290px;
  transform: rotate(-90deg);
  top: 222px;
}

.navbar-collapse .images_wraper_menu .img.img5 {
  right: -314px;
  max-width: 390px;

  top: 422px;
}

.images_wraper_menu .img img {
  width: 100%;
}

.navbar-collapse.navbar250 .images_wraper_menu .img {
  right: 71px;
}

.navbar-collapse.navbar250 .images_wraper_menu .img.img1 {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}
.navbar-collapse.navbar250 .images_wraper_menu .img.img2 {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.navbar-collapse.navbar250 .images_wraper_menu .img.img3 {
}
.navbar-collapse.navbar250 .images_wraper_menu .img.img4 {
  -webkit-transition: all 1.3s ease;
  -moz-transition: all 1.3s ease;
  transition: all 1.3s ease;
  right: 34px;
}

.navbar-collapse.navbar250 .images_wraper_menu .img.img5 {
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  transition: all 1.5s ease;
  right: 48px;
}

.images_wraper_menu .images {
}
.images_wraper_menu .images {
}
.images_wraper_menu {
}

.logo a img {
  width: 230px;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.top-nav-collapse .logo a img {
  width: 160px;
  top: 0;
}

.wow {
  visibility: hidden;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

a:focus {
  outline: 2px solid #005fcc;
  outline-offset: 3px;
}

a {
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

button:focus {
  outline: 0 !important;
}

input:focus {
  outline: none !important;
}

.f-none {
  float: none;
}

.bg-white {
  background-color: #fff;
}

.not-active {
  pointer-events: none;
  cursor: default;
}

.page-wrap {
  padding: 0;
}

.p-null {
  padding: 0;
}

.pl-null {
  padding-left: 15px !important;
}

.mob-only {
  display: none;
}

.desc-only {
  display: block;
}

.relative {
  position: relative;
}

.f-right {
  float: right;
}

.f-left {
  float: left;
}

.anchor {
  display: block;
  position: relative;
  top: 0;
  visibility: hidden;
}

div.table {
  display: table;
  margin-bottom: 79px;
  line-height: 1.5;
  margin-top: 25px;
  max-width: 554px;
}

div.tr {
  display: table-row;
}

div.td {
  display: table-cell;
  padding-right: 20px;
  margin-bottom: 48px;
  padding-bottom: 4px;
  padding-right: 32px;
  vertical-align: top;
}

div.td strong {
  font-weight: 400;
  max-width: 253px;
  display: inline-block;
}

div.td.t-bold {
}

div.tr.space-b div.td {
  padding-bottom: 30px;
}

.to-top img {
  position: fixed;
  right: 26px;
  bottom: 54px;
  cursor: pointer;
  display: none;
  z-index: 99;
  width: 43px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.to-top img:hover {
  opacity: 0.6;
}

.page-wrap {
  /* max-width: 1920px; */
  margin: 0 auto;
  /* -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35); */
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
  /* box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35); */
  z-index: 9;
  position: relative;
  /* overflow-y: hidden; */
  /* overflow-x: hidden; */
}

.navbar .container {
  position: relative;
  max-width: 1730px;
}

.navbar-default .navbar-collapse.navbar250 {
  width: 100%;
  /* padding-left: 18px; */
}

.menu-btn-close {
  display: none;
}

.menu-btn {
  display: none;
}

.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 70px;
  height: 55px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.c-hamburger:focus {
  outline: 0;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 26px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #f2d800;
}

.c-hamburger span::after,
.c-hamburger span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f2d800;
  content: "";
}

.c-hamburger span::after {
  width: 60%;
}

.c-hamburger--htla.is-active span::after,
.c-hamburger--htla.is-active span::before,
.c-hamburger--htra.is-active span::after,
.c-hamburger--htra.is-active span::before {
  width: 50%;
}

.c-hamburger span::before {
  top: -11px;
}

.c-hamburger span::after {
  bottom: -11px;
}

.c-hamburger--rot {
  background-color: #28aadc;
}

.c-hamburger--rot span {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.c-hamburger--rot.is-active {
  background-color: #166888;
}

.c-hamburger--rot.is-active span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-hamburger--htx {
  background-color: transparent;
}

.c-hamburger--htx span {
  -webkit-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::after,
.c-hamburger--htx span::before {
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  -webkit-transition-property:
    top,
    -webkit-transform;
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  -webkit-transition-property:
    bottom,
    -webkit-transform;
  transition-property: bottom, transform;
}

.c-hamburger--htx.is-active {
  background-color: transparent;
}

.c-hamburger--htx.is-active span {
  background: 0 0;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #f2d800;
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #f2d800;
}

.c-hamburger--htx.is-active span::after,
.c-hamburger--htx.is-active span::before {
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
  width: 100%;
}

.c-hamburger--htla {
  background-color: #32dc64;
}

.c-hamburger--htla span {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.c-hamburger--htla span::before {
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition:
    -webkit-transform 0.3s,
    width 0.3s,
    top 0.3s;
  transition:
    transform 0.3s,
    width 0.3s,
    top 0.3s;
}

.c-hamburger--htla span::after {
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition:
    -webkit-transform 0.3s,
    width 0.3s,
    bottom 0.3s;
  transition:
    transform 0.3s,
    width 0.3s,
    bottom 0.3s;
}

.c-hamburger--htla.is-active {
  background-color: #18903c;
}

.c-hamburger--htla.is-active span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-hamburger--htla.is-active span::before {
  top: 0;
  -webkit-transform: translateX(38px) translateY(4px) rotate(45deg);
  -ms-transform: translateX(38px) translateY(4px) rotate(45deg);
  transform: translateX(38px) translateY(4px) rotate(45deg);
}

.c-hamburger--htla.is-active span::after {
  bottom: 0;
  -webkit-transform: translateX(38px) translateY(-4px) rotate(-45deg);
  -ms-transform: translateX(38px) translateY(-4px) rotate(-45deg);
  transform: translateX(38px) translateY(-4px) rotate(-45deg);
}

.c-hamburger--htra {
  background-color: #ff9650;
}

.c-hamburger--htra span {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.c-hamburger--htra span::before {
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition:
    -webkit-transform 0.3s,
    width 0.3s,
    top 0.3s;
  transition:
    transform 0.3s,
    width 0.3s,
    top 0.3s;
}

.c-hamburger--htra span::after {
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition:
    -webkit-transform 0.3s,
    width 0.3s,
    bottom 0.3s;
  transition:
    transform 0.3s,
    width 0.3s,
    bottom 0.3s;
}

.c-hamburger--htra.is-active {
  background-color: #e95d00;
}

.c-hamburger--htra.is-active span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-hamburger--htra.is-active span::before {
  top: 0;
  -webkit-transform: translateX(-8px) translateY(4px) rotate(-45deg);
  -ms-transform: translateX(-8px) translateY(4px) rotate(-45deg);
  transform: translateX(-8px) translateY(4px) rotate(-45deg);
}

.c-hamburger--htra.is-active span::after {
  bottom: 0;
  -webkit-transform: translateX(-8px) translateY(-4px) rotate(45deg);
  -ms-transform: translateX(-8px) translateY(-4px) rotate(45deg);
  transform: translateX(-8px) translateY(-4px) rotate(45deg);
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #12131d;
}

.se-pre-con .load-logo {
}

.se-pre-con .load-logo .part1 img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 40%;
  width: 151px;
}

.content-full-wrap {
  max-width: 1920px;
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.paginate {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  font-weight: 700;
  padding-top: 50px;
  width: 100%;
  margin-bottom: 50px;
}

.paginate span {
  padding: 4px;
  color: #000000;
}

.paginate .current {
  color: #f2d800;
}

.paginate a {
  color: #333333;
  padding: 4px;
}

.paginate a:hover {
  color: #f2d800;
}

.color {
  color: #f2d800;
}

.nav-link {
  color: #b9b2b2;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.navbar {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 6px 10px;
  padding: 30px 13px;
}

.top-nav-collapse .navbar-nav .nav-link {
  padding: 2px 13px 17px 13px;
}

.navbar-nav .menu-item-20 .nav-link {
  border: 1px solid #f2d800;

  padding: 10px 25px;

  border-radius: 20px;
}

.navbar-nav .nav-link {
  background: url(../img/scissors.svg) no-repeat 3px 50px;
  transition: 0.3s;
}

.top-nav-collapse .navbar-nav .nav-link {
  background: url(../img/scissors.svg) no-repeat 3px 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav li .nav-link.active,
.navbar-nav li.current-page-ancestor .nav-link,
.navbar-nav li.active > .dropdown-item,
body.single-blog-details .menu-item-34 a {
  color: #f2d800;

  background: url(../img/scissors.svg) no-repeat 3px 50px;
  background-size: 25px;
}

.top-nav-collapse .navbar-nav .nav-link:hover,
.top-nav-collapse .navbar-nav li .nav-link.active,
.top-nav-collapse .navbar-nav li.current-page-ancestor .nav-link,
.top-nav-collapse .navbar-nav li.active > .dropdown-item,
.top-nav-collapse body.single-blog-details .menu-item-34 a {
  color: #f2d800;
  background: url(../img/scissors.svg) no-repeat 3px 19px;
  background-size: 22px;
}

.navbar-expand-lg .navbar-nav {
  padding-left: 117px;
  justify-content: center;
  align-items: center;
}

.navbar .icon-right {
  position: absolute;
  right: 0;
  top: -9px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar .icon-right .icon {
}

.navbar .icon-right .icon img {
  width: 91px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar.top-nav-collapse .icon-right .icon img {
  width: 48px;
}

.navbar.top-nav-collapse .icon-right {
  top: -22px;
}

.navbar .icon-right .text {
  font-size: 22px;
  font-weight: 700;
  ransform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  position: absolute;
  right: 75px;
  top: 154px;
  height: 454px;
  width: 300px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar.top-nav-collapse .icon-right .text {
  right: -54px;
  top: 146px;
  height: 54px;
  width: 157px;
  font-size: 12px;
  /* background-color: antiquewhite; */
}

.navbar.top-nav-collapse {
  background-color: #0a0a09;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
}

/* Video pozadina */
.video_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Postavite video iza ostalih elemenata */
}

.video_background video {
  object-fit: cover; /* Video Ä‡e pokriti celu sekciju, ne menjajuÄ‡i proporcije */
  width: 100%;
  height: 100%;
}

.home_sec1 .overlay_bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00000079;
}

.home_sec1 {
  background-size: cover;
  transition: background-size 0.5s ease;
  position: relative;
}

.home_sec1.zoomed {
  /* background-size: 100% !important; */
  transition: background-size 5s ease;
}
.home_sec1 .wrapper {
  padding-top: 250px;
}
.home_sec1 .wrapper .logo_image {
  text-align: center;
}
.home_sec1 .wrapper .logo_image img {
  max-width: 150px;
  width: 100%;
  margin-bottom: 26px;
}
.home_sec1 .wrapper .title {
  color: #b9b2b2;
  text-align: center;
}

.home_sec1 .wrapper .title h3 {
  letter-spacing: 4px;
  line-height: 0;
}
.home_sec1 .wrapper .title h1 {
  font-size: 100px;
  font-weight: 200;
  line-height: 1;
}
.home_sec1 .wrapper .title h4 {
  margin: 25px 0;
}
.home_sec1 {
  min-height: 900px;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.button_main {
}
.button_main {
  text-align: center;
  margin-top: 55px;
}
.button_main a {
  color: #b9b2b2;
  border: 1px solid #f2d800;
  padding: 10px 25px;
  position: relative;
  z-index: 111;
  transition: 0.3s ease;
  border-radius: 20px;
}

.button_main a:after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #f2d800;
  top: 0;
  z-index: -11;
  transition: 0.3s ease;
}

.button_main a:hover {
  color: #000;
  border-radius: 0 10px 0 10px;
}

.button_main a:hover:after {
  width: 100%;
  border-radius: 0 10px 0 10px;
}

.sec2 {
}
.sec2 .wrapper {
  padding-top: 50px;
}
.sec2 .wrapper .title {
  margin-bottom: 75px;
  margin-top: 30px;
}
.title h2 {
  font-size: 50px;
  text-align: center;
  position: relative;
}

.title h2::before {
  content: "";
  display: block;
  width: 111px; /* ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â irina slike, prilagodite prema potrebi */
  height: 83px; /* Visina slike, prilagodite prema potrebi */
  background: url("../img/cesalj.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: -60px; /* Pozicija iznad naslova */
  left: 50%; /* Centriranje slike */
  transform: translateX(-50%); /* Izravnavanje na sredinu */
}
.sec2 {
}

/*************************quizz******************************/

/******************novi**********************/

.quiz_main {
  padding: 60px 20px;
}

.quiz_wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.quiz_card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  pointer-events: none;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.quiz_card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quiz_card.exit {
  opacity: 0;
  transform: translateY(-30px);
}

.answer {
  display: block;
  margin: 10px 0;
  padding: 12px;
  width: 100%;
  cursor: pointer;
}

.loading,
.thankyou {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.4s ease;
}

.loading.active,
.thankyou.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/******************accordion***********************************/

.accordian_wrap {
  background: #ffffff8f;
  max-width: 1130px;
  margin: 40px auto;
  border-radius: 15px;
}

.accordian_wrap .first_wrap {
  position: relative;
  padding: 20px 0 20px 50px;
  border-radius: 15px;
  font-size: 20px;
  color: #4b4b4b;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
  padding: 10px 0 10px 20px;
  font-size: 23px;
  display: flex;
  justify-content: space-between;
  background: transparent;
}

.accordian_wrap .first_wrap .textt {
  display: flex;
  align-items: center;
}

.accordian_wrap .first_wrap .textt img {
  max-width: 40px;
  margin-right: 15px;
}

.accordian_wrap .first_wrap .textt img.kid_img {
  max-width: 30px;
}

.accordian_wrap .first_wrap .textt img:last-child {
}

.accordian_wrap .first_wrap .icone {
  position: absolute;

  right: 0;
}

.accordian_wrap .first_wrap .icone img {
  max-width: 34px;
}

.accordian_wrap .second_wrap {
  display: none;
}

.accordian_wrap .second_wrap .inner_wrapper {
  display: flex;
  flex-wrap: wrap;
}

.accordian_wrap .second_wrap .first {
  width: 50%;
}
.accordian_wrap .second_wrap .second {
  width: 50%;
}
.accordian_wrap .second_wrap .second img {
  width: 100%;
  padding: 22px;
}

.accordian_wrap .second_wrap p {
  padding: 15px 50px 39px 30px;

  font-size: 16px;
}

.icone_wrap {
  cursor: pointer;
  width: 30px;
  height: 40px;
  right: 20px;
  top: 1px;
  position: relative;
  margin-left: 30px;
}

.icone_wrap .icone {
  height: 34px;
  width: 34px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.icone_wrap .icone .line {
  width: 49px;
  height: 6px;
  background: #ff6600;
  border-radius: 3px;
}

.icone_wrap .icone.icone1 {
  height: 34px;
  width: 34px;
}

.first_wrap .icone_wrap img {
  width: 100%;
  transition: 0.3s ease;
}

.first_wrap.active .icone_wrap img {
  transform: rotate(90deg);
}

.team_sec {
  margin-top: 50px;
  margin-bottom: 30px;
}
.team_sec .title {
  text-align: center;
  margin-bottom: 60px;
}
.team_sec .title h2 {
}
.team_sec .team_wrap {
  position: relative;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 35px;
  max-width: 333px;
  margin: 0 auto 35px auto;
  max-height: 333px;
}
.team_sec .team_wrap .overlay .logo {
  max-width: 190px;
}

.team_sec .team_wrap .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #6b6b4e8f;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.3s ease;
}

.team_sec .team_wrap .overlay .logo img {
  width: 100%;
}

.team_sec .team_wrap .overlay:hover {
  opacity: 0;
  transition: 0.3s ease;
}

.team_sec .team_wrap .image {
  max-height: 333px;
}
.team_sec .team_wrap .image img {
  display: block;
  width: 100%;
  max-height: 333px;
  transition: 0.3s ease; /* Dodaje efekat na hover slike (opcionalno) */
  object-fit: cover;
}

.team_wrap:hover .image img {
  transform: scale(
    1.05
  ); /* PoveÃƒÆ’Ã¢â‚¬Å¾ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ava sliku na hover (opcionalno) */
  border-radius: 20px;
}
.team_sec .name {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.team_sec .icone {
  max-width: 55px;
  margin: auto;
}
.team_sec .icone img {
  width: 100%;
}

.team_sec .title2 {
  text-align: center;
  margin-bottom: 40px;
}
.team_sec .title2 h4 {
  font-size: 35px;
}
.team_sec .text {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.8;
}
.team_sec .text p {
}

.team_sec .text p a {
  color: #f2d800;
  font-weight: 700;
}

.team_wrap .bot_wrap {
  transition: 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(189, 119, 119, 0.6); /* Dodaje pozadinu za kontrast */
  color: #fff; /* Tekst u bijeloj boji */
  padding: 10px; /* Dodaje padding */
}

.team_wrap:hover .bot_wrap {
  opacity: 1;
  border-radius: 20px;
}

.team_sec {
  position: relative;
  margin-bottom: 80px;
  padding-top: 100px;
  overflow: hidden;
}

.sec2 {
  position: relative;
  margin-bottom: 80px;
  overflow: hidden;
}

.moving_img {
  position: absolute;
  max-width: 400px;
}

.sec2 .moving_img.moving_img1 {
  top: 130px;
  right: 14%;
  top: 200px;
}

.moving_img img {
  width: 100%;
  opacity: 0.3;
}

.sec2 .moving_img.moving_img1 img {
}
.team_sec .moving_img.moving_img2 {
  top: 170px;
  left: 14%;
}

.price_sec {
  position: relative;
}
.price_sec .moving_img.moving_img3 {
  top: 170px;
  right: 14%;
}
.team_sec .moving_img img {
}

.price_sec {
}
.price_sec .title {
  margin-bottom: 70px;
}
.price_sec .wrap {
  margin-bottom: 30px;
}
.price_sec .wrap .price_img_wrap {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price_sec .wrap .price_img_wrap .images {
}
.price_sec .wrap .price_img_wrap .images img {
  width: 60px;
}
.price_sec .wrap .price {
}
.price_sec .wrap .price h5 {
  font-size: 35px;
}
.price_sec {
  padding-top: 90px;
  margin-bottom: 130px;
  overflow: hidden;
}

.gallery_sec {
}
.gallery_sec .images_wrap {
  display: flex;
}
.gallery_sec .images_wrap .image {
  height: 300px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery_sec .images_wrap .image:hover {
  transform: scale(1.3);
}
.gallery_sec {
  margin-top: 70px;
}

.footer .bootom_part {
  color: #b9afaf;
  font-size: 13px;
  border-top: 1px solid #f2d800;
  padding: 13px 0;
  margin-top: 30px;
}

.footer .bootom_part p {
  margin: 0;
}

.footer .container {
  max-width: 1430px;
}
.footer .logo_wrap {
  text-align: center;
}
.footer .logo_wrap img {
  max-width: 100%;
}
.footer .wrap {
}
.footer .wrap .title {
}
.footer .wrap .title h3 {
  margin-bottom: 30px;
  color: #f2d800;
}
.footer .wrap .title p {
  color: #fff;
  font-size: 16px;
}
.footer .wrap .info_wrap.social_wrap {
  display: flex;
}

.footer .wrap .title p i {
  color: #f2d800;
}

.footer .wrap .info_wrap a {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer .wrap .info_wrap a i {
  margin-right: 10px;
  color: #f2d800;
}

.footer .wrap .info_wrap.social_wrap i {
  font-size: 20px;
}
.footer {
  background: #0a0a09;
  padding: 60px 0 0 0;
}

.footer a {
  transition: 0.3s;
}
.footer a:hover {
  opacity: 0.7;
}

.location_sec {
  margin-bottom: 140px;
}
.location_sec .map {
  margin-top: 50px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}
.location_sec .map iframe {
  width: 100%;
  border-radius: 15px;
}

/*************************************************************************/

/* Stilizacija za omot svakog polja */

.form_wrapper {
  margin-top: 60px;
}

.form_wrapper form {
  border-radius: 15px;
  padding: 15px;
}
.wpcf7-form label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

/* Stilizacija za input i textarea polja */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%; /* ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â irina polja */
  padding: 10px;
  margin-bottom: 20px;
  border: none; /* Boja okvira */
  border-radius: 5px; /* Zaobljeni uglovi */
  font-size: 21px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease;
}

/* Fokus na inputima i textarea */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  border-color: #007bff; /* Boja na fokus */
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Stilizacija dugmeta za slanje */
.wpcf7-form input[type="submit"] {
  color: #f2d800;
  border: 1px solid #f2d800;
  padding: 10px 15px;
  z-index: 1; /* ViÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡i od "after" pseudo-elementa */
  transition: color 0.3s ease; /* Animacija boje teksta */
  cursor: pointer;
  border-radius: 0 10px 0 10px;
  border-radius: 15px;
  background: #f2d800;
  color: #fff;
  width: 100%;
  font-weight: 700;
}

/* Pseudo-element za pozadinu */

/* Hover efekat na dugmetu */
.wpcf7-form input[type="submit"]:hover {
  color: #000; /* Promena boje teksta */
  /* border-radius: 0 10px 0 10px; */ /* Promena za zaobljene uglove */
}

.wpcf7-form input[type="submit"]:hover:after {
  width: 100%; /* PoveÃƒÆ’Ã¢â‚¬Å¾ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡anje ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡irine */
}

/* Stilizacija poruka za greÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ke i potvrde */
.wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #007bff;
  background-color: #e9f7fd;
  color: #007bff;
  border-radius: 5px;
}

.fixed_icons {
}
.fixed_icons .icone {
  background: #000;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  transition: 0.3s;
}
.fixed_icons .icone.icon1 {
}
.fixed_icons .icone.icon2 {
}

.fixed_icons .icone a {
  font-size: 35px;
  color: #f2d800;
}
.fixed_icons {
  position: fixed;
  top: 38%;
  z-index: 2;
  left: 17px;
}

.fixed_icons .icone:hover {
  opacity: 0.7;
}

.fixed_icons .icone.icon2 a {
  position: relative;
}

.fixed_icons .icone.icon2 a .number {
  position: absolute;
}

.phone_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone_wrap .icone.icon2 {
}

.phone_wrap .hover_num {
  margin-left: 20px;
  opacity: 0;
  transition: 0.3s;
}

.phone_wrap .hover_num a {
  color: #f2d800;
}

.phone_wrap:hover .hover_num {
  opacity: 1;
}

/***********************************************/

@media (min-width: 992px) {
  .team_wrap .bot_wrap {
    opacity: 0;
  }
}

@media (max-height: 800px) {
}

@media (max-height: 560px) {
}

@media (max-width: 1700px) {
}

@media (max-width: 1600px) {
}

@media (max-width: 1500px) {
}

@media (max-width: 1345px) {
}

@media (max-width: 1299px) {
}

@media (max-width: 1199px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 991px) {
  .standard-content .header_content_st {
    height: 300px;
  }

  .fixed_icons .phone_wrap {
    display: none;
  }
  .mobile_phone {
    display: block;
  }
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form textarea {
    font-size: 16px;
  }

  .footer .wrap {
    margin-bottom: 35px;
  }

  .footer .logo_wrap {
    margin-bottom: 40px;
  }
  .accordian_wrap .second_wrap .first {
    width: 100%;
  }
  .accordian_wrap .second_wrap .second {
    width: 100%;
  }
  .accordian_wrap .second_wrap .inner_wrapper {
    display: block;
  }
  .images_wraper_menu {
    display: block;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 6px 10px;
    padding: 19px 13px;
    white-space: nowrap;
    font-weight: 200;
  }
  .home_sec1 .wrapper .logo_image img {
    max-width: 111px;
  }

  .home_sec1 .wrapper .title h1 {
    font-size: 70px;
  }

  .home_sec1 .wrapper {
    padding-top: 135px;
  }

  .home_sec1 {
    min-height: 700px;
  }
  .team_sec .team_wrap .overlay {
    display: none;
  }
  .navbar .icon-right .icon img {
    width: 45px !important;
  }

  .navbar .icon-right {
    right: 57px;
    top: -37px !important;
  }

  .dark-overly {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9;
    top: 0;
    bottom: 0;
    background-color: #000000c4;
    right: -100%;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }

  .dark-overly.active {
    right: 0;
  }

  .fixed-top {
    overflow: inherit;
    background: #fff;
  }

  .navbar {
    padding: 9px 10px !important;
  }

  .navbar.top-nav-collapse .contakt-info,
  .navbar .contakt-info {
    top: 10px;
    right: 70px;
  }

  .logo a img,
  .top-nav-collapse .logo a img {
    width: 91px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    top: 2px;
    left: 0;
  }

  .navbar {
    padding: 7px 10px;
    opacity: 1;
    background-color: #0a0a09;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    height: auto;
  }

  .page-wrap {
    padding-top: 52px;
  }

  .navbar .contakt-info .search-part,
  .navbar .contakt-info .icons {
    display: none;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu li.active .dropdown-item {
    color: #b1291c;
  }

  .dropdown-item {
    padding: 3px 14px;
    font-size: 17px;
  }

  .dropdown-menu {
    padding: 0px 0 0px 0;
    position: static !important;
    display: block;
    text-align: left;
  }

  .navbar-nav .nav-link {
    font-size: 18px !important;
    line-height: 1.5;
    background: none !important;
  }

  .top-nav-collapse .navbar-nav .nav-link,
  .navbar-nav .nav-link {
    padding: 19px 20px;
  }

  .navbar-collapse {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .navbar-light .navbar-nav li {
    margin-left: 0px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-left: 5px;
    position: relative;
    z-index: 9;
    align-items: baseline;
  }

  .navbar .contakt-info .direct-call a .icon img {
    width: 40px;
    margin: 0 17px;
  }

  .navbar.top-nav-collapse .contakt-info,
  .navbar .contakt-info {
    top: 10px;
    right: 70px;
  }

  .logo a img,
  .top-nav-collapse .logo a img {
    width: 155px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    top: 0;
    margin-bottom: 0;
  }

  .menu-btn-close img {
    width: 100%;
  }

  .top-nav-collapse .menu-btn {
    /* top: -9px; */
  }

  .menu-btn {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: block;
    /* width: 32px; */
    /* height: 35px; */
    position: absolute;
    right: 0px;
    top: 15px;
    z-index: 999;
    top: 5px;
  }

  .menu-btn.active {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: block;
    width: 61px;
    height: 63px;
    background-size: 61px;
    background-color: transparent;
  }

  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: transparent;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    overflow-x: hidden;
    padding-top: 19px;
    transition: 0.5s;
    border-top: 0;
    display: block;
    margin-top: 78px;
    margin-bottom: 0;
    padding-top: 19px;
    padding-left: 0;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    padding-bottom: 50px;
    /* min-height: 650px; */
    background-color: #0a0a09;
  }

  .navbar-light #menu-main-menu-2.navbar-nav .current-menu-parent > .nav-link,
  .navbar-light .navbar-nav .active > .nav-link {
    border-bottom: none;
    color: #009fe3;
  }
}

@media (max-width: 767px) {
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form textarea {
    margin-bottom: 10px;
  }
  .footer .wrap .info_wrap a {
    font-size: 15px;
  }

  .footer .wrap .title p {
    font-size: 15px;
  }
  .footer .wrap .title h3 {
    font-size: 21px;
  }
  .home_sec1 .wrapper .title h3 {
    font-size: 11px;
  }
  .price_sec .wrap .price h5 {
    font-size: 25px;
  }

  .price_sec .wrap .price_img_wrap .images img {
    width: 35px;
  }

  .sec2 {
    margin-bottom: 30px;
  }
  .accordian_wrap .second_wrap p {
    padding: 22px 15px 10px 30px;
  }

  .title h2 {
    font-size: 35px;
    line-height: 1.1;
  }

  .icone_wrap {
    right: 8px;
    width: 20px;
    height: 20px;
  }

  .icone_wrap .icone .line {
    height: 3px;
  }

  .accordian_wrap .first_wrap .textt img {
    max-width: 35px;
  }

  .accordian_wrap .first_wrap {
    font-size: 17px;
  }
  .moving_img img {
    max-width: 240px;
  }

  .team_sec .text p {
    font-size: 16px;
  }

  .team_sec .title {
    margin-bottom: 30px;
  }
  .team_sec .title h2 {
    font-size: 40px;
  }

  .team_sec {
    padding-top: 45px;
    margin-bottom: 40px;
  }
  .home_sec1 .wrapper .logo_image img {
    max-width: 76px;
  }

  .home_sec1 .wrapper .title h1 {
    font-size: 44px;
  }

  .home_sec1 .wrapper {
    padding-top: 81px;
  }

  .home_sec1 {
    min-height: 470px;
  }
  .home_sec1 .wrapper .title h4 {
    font-size: 18px;
  }

  .fixed_icons {
    top: 29%;
    left: 5px;
  }
  .fixed_icons .icone {
    width: 40px;
    height: 40px;
  }
  .fixed_icons .icone a {
    font-size: 22px;
  }

  .navbar-nav .menu-item-20 .nav-link {
    border: 1px solid #f2d800;
    padding: 10px 25px;
    border-radius: 20px;
  }

  .navbar-collapse .images_wraper_menu .img.img1 {
    max-width: 83px;
    /* right: 49px; */
  }
  .navbar-collapse .images_wraper_menu .img.img2 {
    max-width: 83px;
    top: -4px;
    /* right: 48px; */
  }
  .navbar-collapse .images_wraper_menu .img.img3 {
  }
  .navbar-collapse .images_wraper_menu .img.img4 {
    max-width: 159px;
    top: 175px;
  }

  .navbar-collapse .images_wraper_menu .img.img5 {
    max-width: 169px;
    top: 325px;
  }

  .location_sec .map iframe {
    height: 300px;
  }

  .form_wrapper {
    margin-top: 20px;
  }

  .form_wrapper br {
    display: none;
  }
}
@media (max-width: 467px) {
  .accordian_wrap .first_wrap .textt {
    font-size: 16px;
  }

  .gallery_sec .images_wrap .image {
    height: 220px;
  }

  .gallery_sec {
    margin-top: 20px;
  }

  .location_sec {
    margin-bottom: 100px;
  }

  .price_sec .title {
    margin-bottom: 50px;
  }

  .price_sec {
    padding-top: 50px;
    margin-bottom: 90px;
  }

  .moving_img {
    max-width: 150px;
  }

  .sec2 .moving_img.moving_img1 {
  }

  .sec2 .wrapper {
    padding-top: 25px;
  }

  .sec2 .wrapper .title {
    margin-bottom: 50px;
  }
}