/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #000; }

p, .paragraph {
  font-weight: 400;
  color: #000;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2; }

h1, .h1 {
  font-size: 40px; }
  @media (max-width: 575px) {
    h1, .h1 {
      font-size: 30px; } }
h2, .h2 {
  font-size: 25px; }
  @media (max-width: 575px) {
    h2, .h2 {
      font-size: 20px; } }
h3, .h3 {
  font-size: 20px; }
  @media (max-width: 575px) {
    h3, .h3 {
      font-size: 18px; } }
h4, .h4 {
  font-size: 18px; }
  @media (max-width: 575px) {
    h4, .h4 {
      font-size: 16px; } }
h5, .h5 {
  font-size: 16px; }
  @media (max-width: 575px) {
    h5, .h5 {
      font-size: 14px; } }
h6, .h6 {
  font-size: 14px; }
  @media (max-width: 575px) {
    h6, .h6 {
      font-size: 12px; } }
.font-medium {
  font-weight: 500 !important; }
  .font-medium p {
    font-weight: 500 !important; }

.font-bold {
  font-weight: 700 !important; }

.font-600 {
  font-weight: 600 !important; }

.f-20 {
  font-size: 20px !important; }

.f-30 {
  font-size: 30px !important; }

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: none;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
  white-space: nowrap; }
  .btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: transform .2s ease-in-out;
    transform-origin: top;
    transform: scaleY(0); }
  .btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
    outline: 0;
    box-shadow: none !important; }
    .btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
      transform: scaleY(1);
      transform-origin: bottom; }

.btn-space {
  white-space: normal !important; }

.btn-sm {
  font-size: 14px;
  padding: 10px 35px; }

.btn-xs {
  font-size: 12px;
  padding: 5px 15px; }

.btn-primary {
  font-weight: bold;
  color: #000;
  background-color: #fdc010; }
  .btn-primary::before {
    background-color: #fff; }
  .btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
    color: #000 !important;
    background-color: #fdc010 !important;
    border-color: #fdc010 !important; }

.btn-secondary {
  font-weight: bold;
  color: #fff;
  background-color: #000; }
  .btn-secondary::before {
    background-color: #fff; }
  .btn-secondary:active, .btn-secondary:hover, .btn-secondary.focus, .btn-secondary:focus, .btn-secondary.active {
    color: #000 !important;
    background-color: #d8a102 !important;
    border-color: #d8a102 !important; }

.btn-secondary-static {
  font-weight: bold;
  color: #fff;
  background-color: #000;
  cursor: auto !important; }
  .btn-secondary-static:active, .btn-secondary-static:hover, .btn-secondary-static.focus, .btn-secondary-static:focus, .btn-secondary-static.active {
    color: #fff !important; }

.btn-outline-primary {
  color: #fdc010;
  background-color: transparent;
  border: 1px solid #fdc010; }
  .btn-outline-primary::before {
    background-color: #fff; }
  .btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
    color: #000 !important;
    background-color: #fdc010 !important;
    border-color: #fdc010 !important; }

.btn-light {
  color: #fdc010;
  background-color: #fff;
  border: 1px solid #fff; }
  .btn-light::before {
    background-color: #fdc010; }
  .btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
    color: #fff !important;
    background-color: #fff !important;
    border: 1px solid #fff !important; }

.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 15px; }

.btn-circle-small {
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 15px; }

body {
  background-color: #fff;
  overflow-x: hidden; }

::selection {
  background: #fdcd43;
  color: #fff; }

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f3f3f3;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center; }
  .preloader .spinner-grow {
    width: 80px;
    height: 80px;
    color: #fdc010; }

ol,
ul {
  list-style-type: none;
  margin: 0px; }

img {
  vertical-align: middle;
  border: 0; }

a,
a:hover,
a:focus {
  text-decoration: none; }

a {
  color: inherit; }

a,
button,
select {
  cursor: pointer;
  transition: .2s ease; }
  a:focus,
  button:focus,
  select:focus {
    outline: 0; }

a:hover {
  color: #fdc010; }

a.text-primary:hover {
  color: #fdc010 !important; }

a.text-light:hover {
  color: #fdc010 !important; }

a.hover-white:hover {
  color: #fff !important; }

.underline-link-white a {
  text-decoration: underline;
  white-space: nowrap; }
  .underline-link-white a:hover {
    color: #fff !important; }

.underline-link-white-wrap a {
  text-decoration: underline; }
  .underline-link-white-wrap a:hover {
    color: #fff !important; }

.underline-link a {
  text-decoration: underline;
  white-space: nowrap; }

.slick-slide {
  outline: 0; }

.section {
  padding-top: 40px;
  padding-bottom: 40px; }
  .section-b {
    padding-bottom: 40px; }
  .section-sm {
    padding-top: 20px;
    padding-bottom: 20px; }
  .section-lg-b {
    padding-top: 40px;
    padding-bottom: 60px; }
    @media (max-width: 991px) {
      .section-lg-b {
        padding-top: 20px;
        padding-bottom: 40px; } }
  .section-title {
    margin-bottom: 30px; }
    @media (max-height: 415px) {
      .section-title {
        margin-bottom: 17px; } }
  .section-contact {
    padding-bottom: 40px; }
    @media (max-width: 991px) {
      .section-contact {
        padding-bottom: 0; } }
    @media (max-width: 575px) {
      .section-contact {
        padding-bottom: 40px; } }
  .section-cameras {
    padding-bottom: 90px; }
    @media (max-width: 1200px) {
      .section-cameras {
        padding-bottom: 40px; } }
    @media (max-width: 991px) {
      .section-cameras {
        padding-bottom: 10px; } }
  .section-descr-card {
    padding-bottom: 0; }
    @media (max-width: 767px) {
      .section-descr-card {
        padding-bottom: 20px; } }
.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

/* overlay */
.overlay {
  position: relative; }
  .overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #1a1a37;
    opacity: .40; }

.outline-0 {
  outline: 0 !important; }

.d-unset {
  display: unset !important; }

.bg-primary {
  background: #fdc010 !important; }

.bg-secondary {
  background: #1a1a37 !important; }

.bg-gray {
  background: #f3f3f3; }

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

.text-color {
  color: #000; }

.text-muted {
  color: #ffffff !important;
  font-weight: 500 !important; }

.text-nowrap {
  white-space: nowrap; }

.text-resp {
  text-align: justify !important;
  text-justify: inter-word !important; }
  @media (max-width: 450px) {
    .text-resp {
      text-align: center !important;
      text-justify: unset !important; } }
.text-resp-2 {
  text-align: justify !important;
  text-justify: inter-word !important; }
  @media (max-width: 767px) {
    .text-resp-2 {
      text-align: center !important;
      text-justify: unset !important; } }
.text-title {
  text-align: left; }
  @media (max-width: 450px) {
    .text-title {
      text-align: center !important; } }
.mb-10 {
  margin-bottom: 10px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-60 {
  margin-bottom: 60px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-80 {
  margin-bottom: 80px !important; }

.mb-90 {
  margin-bottom: 90px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.mt-40 {
  margin-top: 40px; }

.mt-60 {
  margin-top: 60px; }

.zindex-1 {
  z-index: 1; }

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden; } }

/* page title */
.page-title-section {
  padding: 150px 0 0; }
  @media (max-height: 415px) {
    .page-title-section {
      padding: 90px 0 0; } }
/* /page title */
.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px; }
  .form-control:focus {
    border-color: #fdc010;
    box-shadow: none; }

textarea.form-control {
  height: 200px;
  padding: 20px; }

.content * {
  margin-bottom: 20px; }

.content a {
  text-decoration: underline; }

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-bottom: 10px; }

.content ol {
  padding-left: 20px; }

.content ul {
  padding-left: 0; }
  .content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    list-style-type: none; }
    .content ul li::before {
      position: absolute;
      content: "\e65d";
      font-family: "themify";
      font-size: 14px;
      left: 0;
      top: 1px;
      color: #fdc010;
      transition: .3s ease; }

.content table {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6; }
  .content table th,
  .content table td {
    padding: .75rem;
    vertical-align: top;
    border: 1px solid #dee2e6; }
  .content table thead {
    background: #eff1fd; }
  .content table tbody {
    background: #f8f9fe; }
    .content table tbody td {
      text-align: left !important; }

.content blockquote p {
  margin-bottom: 0;
  color: #000;
  font-style: italic !important; }

.content pre {
  padding: 10px 20px;
  background: #f8f9fe; }

@media (max-width: 991px) {
  .navigation {
    background: #1a1a37; }
    .navigation .navbar-brand {
      padding: 5px 0; } }

@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 74vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff; } }

.navbar-nav {
  padding-left: 50px;
  background: #fff; }
  @media (max-width: 991px) {
    .navbar-nav {
      padding-left: 0;
      background: #f3f3f3; } }
.nav-bg {
  background-color: #fff; }

.nav-item {
  margin: 0 15px;
  position: relative; }
  .nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 600; }
  .nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fdc010;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease; }
  .nav-item:hover::before, .nav-item.active::before {
    transform: scaleY(1);
    transform-origin: bottom; }

.navbar-dark .navbar-nav .nav-link {
  color: #000; }

.navbar-dark .navbar-toggler {
  color: #000;
  border: 2px solid #000; }

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fdc010; }

.navbar-dark .navbar-nav .nav-link:focus {
  color: #000; }

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fdc010; }

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 15px 0px; }
  @media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 20px; } }
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d; }

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0); }

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #fdc010;
  padding: 15px;
  top: 46px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff; }
  @media (max-width: 991px) {
    .navbar .dropdown-menu {
      display: none;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transform-origin: unset; } }
  @media (max-width: 575px) {
    .navbar .dropdown-menu {
      padding: 10px 0; } }
  .navbar .dropdown-menu.show {
    visibility: hidden; }
    @media (max-width: 991px) {
      .navbar .dropdown-menu.show {
        visibility: visible;
        display: block; } }
.navbar .dropdown-item {
  position: relative;
  color: #000;
  font-size: 15px !important;
  transition: .2s ease;
  text-transform: none;
  font-family: "Poppins", sans-serif;
  text-overflow: ellipsis;
  overflow: hidden; }
  .navbar .dropdown-item.active {
    color: #fdc010;
    background-color: #fff; }
  @media (max-width: 991px) {
    .navbar .dropdown-item {
      text-align: center; } }
  @media (max-width: 575px) {
    .navbar .dropdown-item {
      padding: 4px 2px; } }
  .navbar .dropdown-item:not(:last-child) {
    margin-bottom: 10px; }
  .navbar .dropdown-item:hover {
    color: #fdc010;
    background: transparent; }

.hero-section {
  margin-top: 140px;
  padding: 250px 0 150px; }
  @media (max-height: 415px) {
    .hero-section {
      margin-top: 76px; } }
  @media (max-width: 575px) {
    .hero-section {
      padding: 43px 0 90px; } }
  @media (max-width: 370px) {
    .hero-section {
      padding: 43px 0 90px; } }
  .hero-section .baner-title {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0px; }
    @media (max-width: 575px) {
      .hero-section .baner-title {
        font-size: 45px; } }
    @media (max-width: 370px) {
      .hero-section .baner-title {
        font-size: 31px;
        margin-bottom: 17px; } }
  .hero-section .hero-slider .prevArrow,
  .hero-section .hero-slider .nextArrow {
    position: absolute;
    bottom: -123px;
    z-index: 9;
    padding: 15px;
    color: rgba(255, 255, 255, 0.5);
    border: 0;
    font-size: 30px;
    transition: all linear .2s;
    background: transparent; }
    @media (max-width: 575px) {
      .hero-section .hero-slider .prevArrow,
      .hero-section .hero-slider .nextArrow {
        bottom: -80px; } }
    @media (max-width: 370px) {
      .hero-section .hero-slider .prevArrow,
      .hero-section .hero-slider .nextArrow {
        bottom: -80px; } }
    .hero-section .hero-slider .prevArrow:focus,
    .hero-section .hero-slider .nextArrow:focus {
      outline: 0; }
    .hero-section .hero-slider .prevArrow:hover,
    .hero-section .hero-slider .nextArrow:hover {
      color: #fdc010; }
  .hero-section .hero-slider .prevArrow {
    right: 60px; }
  .hero-section .hero-slider .nextArrow {
    right: 0; }
  .hero-section .hero-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: -100px;
    padding-left: 0; }
    @media (max-width: 575px) {
      .hero-section .hero-slider .slick-dots {
        bottom: -57px; } }
    @media (max-width: 370px) {
      .hero-section .hero-slider .slick-dots {
        bottom: -57px; } }
    .hero-section .hero-slider .slick-dots li {
      display: inline-block;
      margin: 0 6px; }
      .hero-section .hero-slider .slick-dots li.slick-active button {
        background: #fdc010; }
      .hero-section .hero-slider .slick-dots li button {
        color: transparent;
        padding: 0;
        overflow: hidden;
        height: 10px;
        width: 10px;
        background: rgba(255, 255, 255, 0.5);
        border: 0;
        outline: 0; }

/* card  */
.hover-shadow {
  transition: .3s ease; }
  .hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15); }

/* /card */
/* footer */
.bg-footer {
  background-color: #f3f3f3; }
  .bg-footer p {
    font-size: 13px !important; }

.border-bottom-1 {
  border-bottom: 1px solid #c3c3c3; }

@media (min-width: 576px) and (max-width: 768px) {
  .policy-right {
    text-align: right !important; } }

/* /footer */
.cookie-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 9999;
  padding: 1rem 2rem;
  background: #474747;
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  color: #fdfdfd;
  font-size: 13px; }

.cookie-box-hide {
  display: none; }

.card-img-overlay-tile {
  padding: 0rem !important;
  border: solid 5px #fdc010; }
  .card-img-overlay-tile .opacity-tile {
    background: #1a1a37;
    opacity: .5; }
  .card-img-overlay-tile .title-tile {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
    font-size: 21px;
    font-weight: bold;
    color: white;
    text-transform: uppercase; }
    @media (max-width: 575px) {
      .card-img-overlay-tile .title-tile {
        font-size: 14px; } }
a .title-tile:hover div.titles {
  color: #fdc010 !important; }

.img-logo {
  height: 100px;
  margin: 15px; }
  @media (max-height: 415px) {
    .img-logo {
      height: 50px;
      margin: 8px; } }
.main_description {
  margin-bottom: 20px;
  max-width: 400px; }

ul.ul-check {
  padding-inline-start: 0; }

li.li-check, ul.ul-check li {
  list-style: none;
  position: relative;
  padding: 6px 0 20px 35px; }
  li.li-check:before, ul.ul-check li:before {
    background: transparent url("../../images/check.png") scroll 0 0 no-repeat;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: -2px; }

ul.ul-squares {
  padding-inline-start: 0; }

li.li-squares, ul.ul-squares li {
  list-style: none;
  position: relative;
  padding: 6px 0 20px 40px; }
  li.li-squares:before, ul.ul-squares li:before {
    background: transparent url("../../images/square-yellow-enum.png") scroll 0 0 no-repeat;
    background-size: 20px 20px;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 5px; }
  li.li-squares.big-pb, ul.ul-squares li.big-pb {
    padding: 6px 0 40px 40px; }
  li.li-squares.no-pb, ul.ul-squares li.no-pb {
    padding: 6px 0 6px 40px; }
  li.li-squares ul.dashed, ul.ul-squares li ul.dashed {
    display: table;
    margin: 0;
    list-style-type: none; }
    @media (max-width: 450px) {
      li.li-squares ul.dashed, ul.ul-squares li ul.dashed {
        padding: 0; } }
  li.li-squares ul.dashed > li, ul.ul-squares li ul.dashed > li {
    display: table-row; }
  li.li-squares ul.dashed > li:before, ul.ul-squares li ul.dashed > li:before {
    display: table-cell;
    width: 13px;
    content: "- ";
    background: none;
    position: unset; }

ul.ul-squares-white {
  padding-inline-start: 0; }

li.li-squares-white, ul.ul-squares-white li {
  list-style: none;
  position: relative;
  padding: 6px 0 20px 40px; }
  li.li-squares-white:before, ul.ul-squares-white li:before {
    background: transparent url("../../images/square-white-enum.png") scroll 0 0 no-repeat;
    background-size: 20px 20px;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 5px; }
  li.li-squares-white.big-pb, ul.ul-squares-white li.big-pb {
    padding: 6px 0 40px 40px; }
  li.li-squares-white.no-pb, ul.ul-squares-white li.no-pb {
    padding: 6px 0 6px 40px; }
  li.li-squares-white ul.dashed, ul.ul-squares-white li ul.dashed {
    display: table;
    margin: 0;
    list-style-type: none; }
    @media (max-width: 450px) {
      li.li-squares-white ul.dashed, ul.ul-squares-white li ul.dashed {
        padding: 0; } }
  li.li-squares-white ul.dashed > li, ul.ul-squares-white li ul.dashed > li {
    display: table-row; }
  li.li-squares-white ul.dashed > li:before, ul.ul-squares-white li ul.dashed > li:before {
    display: table-cell;
    width: 13px;
    content: "- ";
    background: none;
    position: unset; }

.card-title-div {
  min-height: 60px; }
  .card-title-div .card-title {
    line-height: 1.4; }

.card-body-1 {
  padding: 40px 20px 10px 30px; }

.card-body-2 {
  min-height: 95px; }
  @media (max-width: 575px) {
    .card-body-2 {
      min-height: unset; } }
  .card-body-2 .content {
    width: 70%; }
    @media (max-width: 1200px) {
      .card-body-2 .content {
        width: 80%; } }
    @media (max-width: 991px) {
      .card-body-2 .content {
        width: 70%; } }
    @media (max-width: 767px) {
      .card-body-2 .content {
        width: 100%; } }
    @media (max-width: 575px) {
      .card-body-2 .content {
        width: 77%; } }
    @media (max-width: 370px) {
      .card-body-2 .content {
        width: 100%; } }
.rounded-card-img {
  border-radius: 15%/20%;
  width: 70%; }

.rounded-card-img-2 {
  border-radius: 15%/20%;
  width: 70%;
  margin-top: 15px;
  margin-bottom: 0px; }
  @media (max-width: 1200px) {
    .rounded-card-img-2 {
      width: 80%;
      margin-bottom: 0px; } }
  @media (max-width: 991px) {
    .rounded-card-img-2 {
      width: 70%;
      margin-bottom: 0px; } }
  @media (max-width: 767px) {
    .rounded-card-img-2 {
      width: 100%;
      margin-bottom: 0px; } }
  @media (max-width: 575px) {
    .rounded-card-img-2 {
      width: 80%;
      margin-bottom: 20px; } }
  @media (max-width: 370px) {
    .rounded-card-img-2 {
      width: 100%;
      margin-bottom: 20px; } }
.vertical-center {
  display: flex;
  align-items: center; }

.card-descr .mt-title_list_card {
  margin-top: 60px; }
  @media (max-width: 767px) {
    .card-descr .mt-title_list_card {
      margin-top: 0; } }
.card-descr .img-descr {
  height: 49%;
  width: 49%; }

.card-descr .card-bg {
  background-color: #fdc010;
  margin-top: 15px;
  padding: 30px;
  text-align: center;
  text-justify: unset; }
  @media (max-width: 991px) {
    .card-descr .card-bg {
      padding: 20px; } }
.contact-form-card {
  background-color: #fdc010;
  padding: 40px; }
  .contact-form-card.contact-message-result {
    height: 350px; }
    .contact-form-card.contact-message-result .icon-message {
      width: 30px;
      font-size: 30px;
      font-weight: bold; }
  .contact-form-card .error-form {
    color: #dc0e0e; }
  .contact-form-card .ml-26 {
    margin-left: 26px; }
  .contact-form-card .font-small {
    font-size: 13px; }
  .contact-form-card .big-checkbox {
    width: 30px;
    height: 30px; }
  .contact-form-card .col-checkbox {
    padding-right: 0;
    max-width: 45px; }
  @media (max-width: 575px) {
    .contact-form-card .g-recaptcha {
      transform: scale(0.77);
      -webkit-transform: scale(0.77);
      transform-origin: center;
      -webkit-transform-origin: center; } }
.contact-info-card {
  padding: 0; }
  @media (max-width: 991px) {
    .contact-info-card {
      padding: 20px 0; } }
  .contact-info-card .ml-info-list {
    margin-top: 20px;
    margin-left: 30px; }
    @media (max-width: 991px) {
      .contact-info-card .ml-info-list {
        margin-left: 168px; } }
    @media (max-width: 767px) {
      .contact-info-card .ml-info-list {
        margin-left: 96px; } }
    @media (max-width: 450px) {
      .contact-info-card .ml-info-list {
        margin-left: 30px; } }
  @media (max-width: 991px) {
    .contact-info-card .contact-wrap-div {
      -ms-flex-pack: justify !important;
      justify-content: space-between !important; } }
  @media (max-width: 575px) {
    .contact-info-card .contact-wrap-div {
      -ms-flex-pack: center !important;
      justify-content: center !important; } }
  .contact-info-card .contact-wrap-div .list-div {
    min-width: 280px; }
    @media (max-width: 991px) {
      .contact-info-card .contact-wrap-div .list-div {
        min-width: 100%; } }
  .contact-info-card .contact-wrap-div .address-div {
    min-width: 300px; }
    @media (max-width: 991px) {
      .contact-info-card .contact-wrap-div .address-div {
        min-width: unset; } }
    @media (max-width: 575px) {
      .contact-info-card .contact-wrap-div .address-div {
        min-width: 100%; } }
  .contact-info-card .contact-wrap-div .contact-div {
    margin-top: 0; }
    @media (max-width: 991px) {
      .contact-info-card .contact-wrap-div .contact-div {
        margin-top: 80px; } }
    @media (max-height: 415px) {
      .contact-info-card .contact-wrap-div .contact-div {
        margin-top: 56px !important; } }
    @media (max-width: 575px) {
      .contact-info-card .contact-wrap-div .contact-div {
        margin-top: 0; } }
  .contact-info-card .contact-wrap-div .map-div {
    width: 100%;
    height: 450px;
    margin-top: 60px; }
    @media (max-width: 991px) {
      .contact-info-card .contact-wrap-div .map-div {
        margin-top: 20px; } }
    @media (max-width: 575px) {
      .contact-info-card .contact-wrap-div .map-div {
        height: 300px;
        margin-top: 20px; } }
    @media (max-width: 370px) {
      .contact-info-card .contact-wrap-div .map-div {
        height: 200px;
        margin-top: 20px; } }
  .contact-info-card ul.ul-address {
    padding-inline-start: 0; }
    .contact-info-card ul.ul-address .list-inline {
      font-size: 17px !important;
      font-weight: 500;
      margin-bottom: 10px; }

.card-images-title {
  margin: 40px 0 15px !important; }

.card-bg-none {
  background-color: transparent; }

.card-yellow-circle {
  margin-bottom: 10px; }
  @media (max-width: 991px) {
    .card-yellow-circle {
      margin-bottom: 30px; } }
  @media (max-width: 450px) {
    .card-yellow-circle {
      margin-bottom: 20px; } }
.circle-container {
  height: 180px;
  width: 180px;
  padding: 0 20px; }
  .circle-container .circle-inner {
    height: 140px;
    width: 140px;
    background: #fdc010;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
    .circle-container .circle-inner .card-img-circle {
      border-radius: 0;
      position: relative;
      top: 20px;
      left: -30px; }

.image-description .equipment-title {
  width: 330px;
  padding: 18px;
  border: 2px solid #000; }
  .image-description .equipment-title h3 {
    margin-bottom: 0; }

.grad-gray-top {
  background-image: linear-gradient(#f3f3f3 30%, transparent 30% 100%); }
  @media (max-width: 991px) {
    .grad-gray-top {
      background-image: linear-gradient(#f3f3f3 35%, transparent 35% 100%); } }
  @media (max-width: 767px) {
    .grad-gray-top {
      background-image: linear-gradient(#f3f3f3 20%, transparent 20% 100%); } }
.grad-gray-bottom .section-lg-b {
  padding-bottom: 0; }
  @media (max-width: 991px) {
    .grad-gray-bottom .section-lg-b {
      padding-bottom: 40px; } }
  @media (max-width: 767px) {
    .grad-gray-bottom .section-lg-b {
      padding-bottom: 50px; } }
.grad-gray-bottom .gray-bottom {
  background: #f3f3f3;
  position: relative;
  top: -95px;
  z-index: -2;
  padding: 40px 0; }
  @media (max-width: 1200px) {
    .grad-gray-bottom .gray-bottom {
      top: -57px; } }
  @media (max-width: 991px) {
    .grad-gray-bottom .gray-bottom {
      top: -10px;
      padding: 20px 0; } }
.grad-yellow-bottom {
  margin-bottom: 10px;
  background: url("../../images/sprzet/squares-1.png") no-repeat 85% 85%, linear-gradient(transparent 23%, #fdc010 23% 88%, transparent 88% 100%); }
  @media (max-width: 1200px) {
    .grad-yellow-bottom {
      margin-bottom: 40px;
      background: url("../../images/sprzet/squares-1.png") no-repeat 88% 100%, linear-gradient(transparent 34%, #fdc010 34% 100%); } }
  @media (max-width: 991px) {
    .grad-yellow-bottom {
      background: url("../../images/sprzet/squares-1.png") no-repeat 88% 100%, linear-gradient(#fdc010 0% 100%); } }
  @media (max-width: 767px) {
    .grad-yellow-bottom {
      background: url("../../images/sprzet/squares-1.png") no-repeat 10px 100%, linear-gradient(#fdc010 0% 100%); } }
  .grad-yellow-bottom .mb-inspire {
    margin-bottom: 16px; }
    @media (max-width: 767px) {
      .grad-yellow-bottom .mb-inspire {
        margin-bottom: 40px; } }
.img-left img {
  position: relative;
  top: -70px;
  left: -80px; }
  @media (max-width: 1200px) {
    .img-left img {
      position: relative;
      top: -50px;
      left: -80px; } }
  @media (max-width: 991px) {
    .img-left img {
      position: relative;
      top: -70px;
      left: 0; } }
  @media (max-width: 767px) {
    .img-left img {
      position: relative;
      top: 0;
      left: 0; } }
.squares-bg .container {
  background: url("../../images/sprzet/squares-2.png") no-repeat 85% 24%;
  background-size: unset; }
  @media (max-width: 991px) {
    .squares-bg .container {
      background: url("../../images/sprzet/squares-2.png") no-repeat 100% 30%;
      background-size: 270px 230px; } }
  @media (max-width: 767px) {
    .squares-bg .container {
      background: url("../../images/sprzet/squares-2.png") no-repeat 50% 100%;
      background-size: 255px 218px; } }
.prefooter {
  font-size: 13px; }
  .prefooter .img-mini-logo {
    height: 80px;
    margin: 5px; }
  .prefooter .mini-logo-div {
    text-align: center; }
  .prefooter .address-div {
    text-align: center; }
  .prefooter .contact-div {
    text-align: left; }
  .prefooter .partners-div {
    text-align: left; }
  @media (max-width: 539px) {
    .prefooter .prefooter-wrap-div {
      -ms-flex-pack: center !important;
      justify-content: center !important;
      -ms-flex-align: unset !important;
      align-items: unset !important; }
    .prefooter .contact-div {
      padding-bottom: 20px;
      text-align: center; }
    .prefooter .partners-div {
      padding-bottom: 20px;
      text-align: center; } }
  @media (max-width: 539px) and (min-width: 357px) {
    .prefooter .address-div {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (max-width: 356px) {
    .prefooter .address-div {
      padding-left: 0;
      padding-right: 0; } }
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  .youtube .yt-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.youtube-div {
  max-width: 640px;
  margin: auto; }

.li-offer {
  max-width: 1090px;
  margin: auto; }

.offer-div {
  margin-left: 80px; }
  @media (max-width: 450px) {
    .offer-div {
      margin-left: 0; } }
  .offer-div .offer-title {
    padding: 10px 10px 1px;
    position: relative;
    right: 80px;
    margin-bottom: 40px; }
    @media (max-width: 450px) {
      .offer-div .offer-title {
        right: 0; } }
    .offer-div .offer-title h2 {
      margin-left: 72px; }
      @media (max-width: 450px) {
        .offer-div .offer-title h2 {
          margin-left: 0; } }
.offer-return {
  margin: 3px 0 24px 80px; }

.no-offer-info {
  position: relative;
  bottom: 6px;
  padding: 0 20px; }
  @media (max-width: 991px) {
    .no-offer-info {
      padding: 10px 10px 5px; } }
.agreement_download_file {
  margin: 50px 0 60px; }

#work_form {
  max-width: 1090px;
  margin: auto; }

#work_form_result_success, #work_form_result_fail {
  max-width: 750px;
  margin: auto; }

.file-div {
  margin: 10px 10px 10px 10px; }

.attach-files-div {
  margin: 0 0 10px 102px;
  text-align: left; }
  @media (max-width: 767px) {
    .attach-files-div {
      margin: 0 0 10px 0;
      text-align: center; } }
.video-vertical-scaled {
  transform: scale(0.75);
  transform-origin: top center;
  margin-bottom: -50%;
  border-radius: 10px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .video-vertical-scaled {
      transform: scale(1);
      margin-bottom: 0; } }
.video-vertical {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 177.78%; }
  .video-vertical iframe {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%; }

.certificate-link {
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease; }
  .certificate-link:hover .certificate-img {
    opacity: 0.7; }

.certificate-img {
  transition: opacity 0.3s ease;
  cursor: pointer; }

.partners-logos-carousel {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px; }
  .partners-logos-carousel .partner-link {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none; }
    .partners-logos-carousel .partner-link.active {
      opacity: 1;
      pointer-events: auto; }
      .partners-logos-carousel .partner-link.active:hover {
        opacity: 0.7; }
  .partners-logos-carousel .partner-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain; }

@media (max-width: 539px) {
  .partners-logos-carousel {
    min-height: 50px; }
    .partners-logos-carousel .partner-logo {
      height: 35px;
      max-width: 100px; } }
