:root {
  --main-text-color: #000a30;
  --red: #fe372d;
  --black: #333333;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

input[type="tel"],
input[type="url"],
input[type="password"],
input[type="text"],
input[type="email"],
input[type="reset"],
input[type="button"],
input[type="submit"],
button,
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a[href],
label[for],
select,
input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
}

button,
input[type="button"],
input[type="image"],
input[type="reset"],
input[type="submit"] {
  padding: 0;
  overflow: visible;
  cursor: pointer;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="image"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
}

.hide {
  position: absolute;
  left: -9999em;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

th,
td {
  vertical-align: top;
}

th {
  font-weight: normal;
  text-align: left;
}

address,
cite,
dfn {
  font-style: normal;
}

abbr,
acronym {
  border-bottom: 1px dotted #999;
  cursor: help;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  overflow: auto;
}

html {
  height: 100%;
}

/* Normalized Styles
------------------------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  background: rgb(0, 10, 48);
  background: linear-gradient(
    6deg,
    rgba(0, 10, 48, 0.4150035014005602) 0%,
    rgba(255, 255, 255, 1) 40%
  );
  -webkit-text-size-adjust: none;
  position: relative;
  background-size: cover;
  min-height: 100%;
  color: #e9e9e9;
}

input,
textarea,
select,
button {
  outline: none;
  font-family: "Open Sans", sans-serif;
  background: transparent;
}

select,
textarea,
input[type="email"],
input[type="url"],
input[type="text"] {
  width: 49%;
  background: none;
  padding: 0 20px;
  float: left;
  height: 50px;
  border: 1px solid #555;
  border-radius: 25px;
  transition: all 0.15s ease;
  color: #fffefe;
  line-height: 1.2;
  letter-spacing: 0.025em;
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
}

select:focus,
textarea:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="text"]:focus {
  border-color: #ccc;
}

select:focus:invalid,
textarea:focus:invalid,
input[type="email"]:focus:invalid,
input[type="url"]:focus:invalid,
input[type="text"]:focus:invalid {
  border-color: #8e0000;
}

textarea {
  padding-top: 20px;
  height: 160px;
  resize: none;
  width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.btn {
  border: 0;
  display: inline-block;
  min-width: 220px;
  text-align: center;
  line-height: 22px;
  padding: 15px;
  text-align: center;
  color: #999;
  background: none;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  letter-spacing: 0.075em;
  border: 0;
  border-radius: 27px;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(7, 7, 7, 0.5);
  border-radius: 27px;
  bottom: 0;
  z-index: -1;
  border: 1px solid #555;
  left: 0;
  transition: all 0.15s ease;
  right: 0;
}

.btn:hover {
  color: #fff;
}

.btn:hover:before {
  border-color: #ccc;
  margin: 3px;
  opacity: 1;
}

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

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

/* Container
------------------------------------------------------------------------------*/

.container {
  padding: 0 70px;
  width: 1400px;
  margin: auto;
  max-width: 100%;
}

#home .hero-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 70%;
}
#home .container,
#about .container,
#menu .container,
#contact .container {
  width: 100%;
  margin-left: 200px;
  padding: 0;
  z-index: 1;
}

.container.small {
  width: 1080px;
}

.indicate-dots {
  position: fixed;
  counter-reset: section;
  top: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 450px;
  margin: auto;
  left: 70px;
  z-index: 50;
}

.indicate-dots li {
  padding: 9px 0;
  color: #000a30;
  position: relative;
}

.indicate-dots li a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  right: 0;
}

.indicate-dots li:before {
  content: "";
  display: block;
  font-size: 14px;
  counter-increment: section;
  content: "0" counter(section);
  color: var(--main-text-color);
}

.indicate-dots li:after {
  content: "";
  display: block;
  margin: 0 auto 0;
  width: 1px;
  height: 0;
  transition: all 0.3s ease;
  background-color: #000a30;
}

.indicate-dots li.current {
  color: #000a30;
}

.indicate-dots li.current:after {
  margin: 6px auto -8px;
  height: 88px;
}

.indicate-dots li:last-child.current:after {
  height: 70px;
}

.indicate-dots li:last-child.current a:after {
  width: 4px;
  position: absolute;
  bottom: -92px;
  left: 0;
  right: 0;
  margin: auto;
  height: 4px;
  background-color: #000a30;
  content: "";
  border-radius: 50%;
}

/* Header
------------------------------------------------------------------------------*/

.header {
  position: fixed;
  top: 0;
  z-index: 99;
  background: #fff;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 1% 0;
}

.header .container {
  width: auto;
}

.header .logo {
  float: left;
}
.header .logo img {
  max-width: 150px;
}

.header .main-menu {
  padding-top: 8px;
  float: right;
}
.header .main-menu ul {
  display: flex;
  align-items: center;
}
.header .main-menu li {
  float: left;
  margin-left: 40px;
  position: relative;
  letter-spacing: 0.025em;
  color: var(--main-text-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  height: fit-content;
}
.header .main-menu li.povprasevanje {
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: bold;
}
.header .main-menu li.povprasevanje a {
  padding-bottom: 0;
  opacity: 1;
}

.header .main-menu li:before {
  content: "";
  width: 4px;
  position: absolute;
  height: 4px;
  background-color: #ff0000;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
  left: 0;
  right: 0;
}

.header .main-menu li a:after,
.header .main-menu li a:before {
  content: "";
  width: 4px;
  position: absolute;
  height: 4px;
  background-color: #0000ff;
  transition: all 0.3s ease;
  bottom: 0;
  border-radius: 50%;
  left: 50%;
  opacity: 0;
  margin-left: 8px;
}
.header .main-menu li.povprasevanje a:after,
.header .main-menu li.povprasevanje a:before {
  background-color: transparent !important;
}

.header .main-menu li a:before {
  margin-left: -12px;
}

.header .main-menu .current:before {
  opacity: 1;
}

.header .main-menu .current a:after,
.header .main-menu .current a:before {
  opacity: 1;
}

.header .main-menu a {
  display: block;
  padding-bottom: 7px;
  opacity: 0.7;
}

.social {
  font-size: 18px;
}

.social li {
  padding-right: 15px;
  display: inline-block;
}

.social li a {
  color: #fff;
  display: inline-block;
}

/* footer
------------------------------------------------------------------------------*/

.footer {
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  max-width: 100%;

  width: 100%;
  background-color: var(--main-text-color);
  padding: 20px;
}

.footer .container {
  width: auto;
}
.footer ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer ul {
  display: flex;
}
.footer ul li a p,
.social-contact li p {
  margin-bottom: 0;
}
.footer ul li:last-child {
  margin-left: auto;
  padding-right: 0;
}
body {
  overflow: hidden;
}

body.load-withoutscroll {
  overflow: auto;
}

.page {
  min-height: 100vh;
  padding: 100px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: no-repeat 100% 100%;
  background-size: cover;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}

.load-withoutscroll .page {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* content */

h1 {
  color: var(--main-text-color);
  letter-spacing: 0.065em;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}
#home h1,
#contact h4 {
  font-size: 48px;
  font-weight: 600;
  color: var(--main-text-color);
}

h2 {
  color: var(--main-text-color);
  letter-spacing: 0.065em;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1;
}

h3 {
  color: var(--main-text-color);
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1;
}
#home h3 {
  color: #fff;
  font-weight: bold;
}
h4 {
  color: var(--main-text-color);
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 700;
  padding-top: 25px;
  margin-bottom: 25px;
  line-height: 1;
}

.grey-text p {
  color: #999;
}

.page .social {
  padding-bottom: 20px;
}

p.small {
  font-size: 12px;
  padding-top: 20px;
  color: #999;
}

p a:hover {
  color: #fff;
}

p .fa {
  padding-right: 10px;
  color: #fff;
  position: relative;
  top: 1px;
}

hr {
  width: 60px;
  height: 1px;
  background: #555;
  border: 0;
  margin: 15px auto;
}

.ico {
  width: 90px;
  height: 90px;
  border: 8px solid white;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px auto 25px;
  font-weight: normal;
  font-size: 30px;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
  width: 540px;
  max-width: 100%;
  font-size: 14px;
  line-height: 24px;
}

.text-center h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

p {
  margin-bottom: 20px;
}

p + .btn {
  margin-top: 20px;
}

.body {
  overflow: hidden;
}

.slick-arrow {
  width: 44px;
  height: 44px;
  border: none !important;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  font-size: 18px;
  position: absolute;
  top: 50%;
  z-index: 6;
  margin: -22px 0 0 60px;
  color: var(--main-text-color);
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all 0.3s ease;

  padding-left: 2px;
  background: none;
  left: 100%;
}

.slick-arrow.slick-prev {
  padding-right: 2px;
  padding-left: 0;
  margin-left: -17px;
  left: 0;
}
.slick-arrow.slick-next {
  margin-left: -27px;
}

.slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0;
}

.slick-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  transition: all 0.1s ease;
  right: 0;
  border: none;
}

.slick-arrow:hover {
  scale: 1.1;
}

.slick-arrow:hover:before {
  border-color: #fff;
  margin: 4px;
  opacity: 1;
}

/* .slick-list * {
  outline: none;
} */

/*menu page*/

.menu-slider {
  margin: 0 -80px;
  padding: 15px 0 0;
}

.menu-slider.slick-initialized {
  margin: 0;
}

.menu-slider.slick-initialized .slick-list {
  margin: 0 -80px;
}

.menu-slider .slick-slide {
  transition: opacity 0.3s ease;
  opacity: 0.15;
}

.menu-slider .slick-active {
  opacity: 1;
}

.menu-slider:after {
  content: "";
  clear: both;
  display: block;
}

.menu-slider li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 15px;
}

.menu-slider li:before {
  content: "";
  height: 3px;
  background: #5c5c5c;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.menu-slider li a {
  display: block;
}

.menu-slider li strong {
  font-size: 52px;
  font-weight: 300;
  line-height: 40px;
  float: right;
  margin-left: 20px;
  padding: 20px 0 25px;
  font-weight: 300;
  position: relative;
}

.menu-slider li strong:before {
  content: "";
  height: 3px;
  background: #878787;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.menu-slider .item {
  padding: 0 80px 50px;
  float: left;
  width: 50%;
}

/*gallery*/

@media screen and (min-width: 1024px) and (min-height: 720px) {
  body.load-onescroll .page {
    overflow: hidden;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    height: 120vh;
    position: fixed;
    width: 100%;
    -webkit-transform: translateY(20vh);
    transform: translateY(20vh);
    transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
  }

  body.load-onescroll .page:first-child {
    -webkit-transform: translateY(-10vh);
    transform: translateY(-10vh);
    opacity: 1;
  }

  body.load-onescroll .page:nth-child(1) {
    z-index: 12;
  }

  body.load-onescroll .page:nth-child(2) {
    z-index: 11;
  }

  body.load-onescroll .page:nth-child(3) {
    z-index: 10;
  }

  body.load-onescroll .page:nth-child(4) {
    z-index: 9;
  }

  body.load-onescroll .page:nth-child(5) {
    z-index: 8;
  }

  body.load-onescroll .page:nth-child(6) {
    z-index: 7;
  }

  body.load-onescroll .page:nth-child(7) {
    z-index: 6;
  }

  body.load-onescroll .page:nth-child(8) {
    z-index: 5;
  }

  body.load-onescroll .page:nth-child(9) {
    z-index: 4;
  }

  body.load-onescroll .page:nth-child(10) {
    z-index: 3;
  }

  body.load-onescroll .page:nth-child(11) {
    z-index: 2;
  }

  body.load-onescroll .page:nth-child(12) {
    z-index: 1;
  }

  body.load-onescroll .page.up-scroll {
    -webkit-transform: translate3d(0, -10vh, 0);
    transform: translate3d(0, -10vh, 0);
    opacity: 0;
  }

  body.load-onescroll .page.up-scroll:first-child {
    opacity: 1;
  }

  body.load-onescroll .page.up-scroll + .page {
    -webkit-transform: translate3d(0, 20vh, 0);
    transform: translate3d(0, 20vh, 0);
  }

  body.load-onescroll .page.down-scroll {
    -webkit-transform: translate3d(0, -120vh, 0);
    transform: translate3d(0, -120vh, 0);
    opacity: 0;
  }

  body.load-onescroll .page.down-scroll:first-child {
    opacity: 0;
  }

  body.load-onescroll .page.down-scroll + .page:not(.down-scroll) {
    -webkit-transform: translate3d(0, -10vh, 0);
    transform: translate3d(0, -10vh, 0);
    opacity: 1;
  }
}

@media screen and (max-width: 1600px) {
  .indicate-dots {
    left: 25px;
    opacity: 1;
  }

  .footer .container {
    padding-left: 30px;
  }

  #home .container,
  #about .container,
  #menu .container,
  #contact .container {
    margin-left: 100px;
  }
  #home h1 {
    max-width: 80%;
  }
}

@media screen and (max-width: 1200px) {
  .gallery {
    padding-top: 0;
  }

  .indicate-dots {
    display: none;
  }

  .header {
    padding: 30px 0;
  }
  #home .container,
  #about .container,
  #menu .container,
  #contact .container {
    margin-left: 50px;
  }

  .text-about {
    max-width: 70%;
  }
  #about .image-right,
  #menu .image-right {
    max-width: 30%;
    align-self: center;
  }
}

@media screen and (max-width: 991px) {
  #contact .row {
    width: 100%;
    margin: 0 auto;
  }
  #contact .col-md-6,
  #contact .col-md-5 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  #contact form input,
  #contact form textarea {
    width: 100% !important;
  }
  #home .container,
  #about .container,
  #menu .container,
  #contact .container {
    margin-left: 0px;
    padding: 0 25px;
  }
  .hero-banners-wrapper {
    padding-right: 0 !important;
    margin-left: 0 !important;
  }
  #home h1 {
    padding: 0;
  }

  .menu-slider.slick-initialized .slick-list {
    margin-left: -30px;
    margin-right: -30px;
  }

  .menu-slider .item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .image-right {
    padding-top: 20px;
  }

  .image-right img {
    width: 100%;
    display: block;
    margin: auto;
  }

  h1 {
    font-size: 60px;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header .main-menu li {
    margin-left: 25px;
  }

  .page {
    background-size: auto 70%;
  }

  .gallery .slick-initialized,
  .menu-slider.slick-initialized {
    padding: 0 35px;
  }

  .slick-arrow.slick-prev {
    margin-left: 0;
    left: -20px;
  }

  .slick-arrow.slick-next {
    margin-left: -20px;
    left: 100%;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  #contact .row {
    flex-direction: column;
    gap: 50px;
  }
  #contact h4 {
    margin-bottom: 20px !important;
  }
  #contact .col-md-6,
  #contact .col-md-5 {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  #about .image-right,
  #menu .image-right {
    display: none;
  }

  .text-about {
    max-width: 100%;
  }
  .menu-trigger {
    position: absolute;
    top: 0;
    z-index: 9;
    display: block;
    cursor: pointer;
    width: 30px;
    margin: 25px 30px;
    padding: 0;
    padding-top: 5px;
    height: 30px;
    right: 0;
  }

  .menu-trigger span {
    height: 2px;
    background: var(--main-text-color);
    transition: all 0.3s ease;
    display: block;
    margin: 0 0 6px;
  }

  .active-menu .menu-trigger span:nth-child(2) {
    opacity: 0;
  }

  .active-menu .menu-trigger span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 8px 0 -10px;
  }

  .active-menu .menu-trigger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .header {
    padding: 20px 0;
  }

  .menu-slider li strong {
    font-size: 30px;
    padding: 10px 0;
  }

  .menu-slider h3 {
    margin-bottom: 0;
    padding-top: 15px;
  }

  .menu-slider li {
    padding-top: 0;
    font-size: 12px;
  }

  select,
  textarea,
  input[type="email"],
  input[type="url"],
  input[type="text"] {
    width: 100%;
  }

  .footer {
    position: static;
    padding: 0 0 40px;
  }

  .page {
    background-size: 170% auto;
    padding: 50px 0;
  }

  .page:last-child {
    padding-bottom: 40px;
  }

  body {
    font-size: 14px;
    line-height: 24px;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 10px;
  }

  h2 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 10px;
  }

  h3 {
    font-size: 20px;
  }

  .text-center h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .text-center p {
    font-size: 13px;
    line-height: 20px;
  }

  p {
    margin-bottom: 10px;
  }

  p + .btn {
    margin-top: 10px;
  }

  .header {
    transition: height 0.3s ease;
    height: 79px;
  }

  .active-menu .header {
    overflow: visible;
    height: 100vh;
    background: rgba(8, 8, 8, 0.9);
  }

  .header .main-menu {
    position: absolute;
    left: -100%;
    overflow: auto;
    transition: opacity 0.3s ease;
    opacity: 0;
    width: 100%;
    float: none;
    top: 60px;
    width: 100%;
    z-index: 99;
    height: calc(100vh - 60px);
  }

  .active-menu .header .main-menu {
    left: 0;
    opacity: 1;
  }

  .active-menu .header .main-menu li {
    display: block;
    float: none;
    margin: 10px 0;
    text-align: center;
  }

  .active-menu .header .main-menu li a {
    font-size: 16px;
    padding-bottom: 5px;
  }
}

@media all and (-ms-high-contrast: none) {
  .page *::-ms-backdrop,
  .page {
    height: 100vh;
  }
}

.hero-banners-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-left: 15px;
  margin-top: 40px;
  gap: 50px;
  padding-right: 80px;
}
.hero-banner {
  background: #000a30;
  max-width: 350px;
  padding: 2px;
  border-radius: 10px;
}
.hero-text-wrapper {
  text-align: center;
  padding: 16px 25px;
}
.hero-text-wrapper h3 {
  margin: 0;
}
.widget-banner {
  position: fixed;
  width: 50%;
  bottom: 100px;
  right: 0;
  background-color: var(--main-text-color);
  z-index: 20;
  gap: 10px;
  display: flex;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 35px;
  justify-content: space-between;
  align-items: center;
  padding-right: 80px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.widget-banner p {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
  flex-shrink: 1;
  max-width: 300px;
  line-height: 32px;
}

.line {
  height: 100%;
  width: 5px;
  background: #fff;
}
#about h2,
#menu h2 {
  color: var(--red);
  text-transform: none;
  font-weight: 600;
}
.paragraph {
  font-size: 24px;
  font-weight: 400 !important;
  color: var(--black);
}
#about .image-right,
#menu .image-right {
  margin-left: auto;
  text-align: center;
}
#about .about-wrapper,
#menu .about-wrapper {
  align-items: start !important;
}

#about h2,
#menu h2 {
  font-size: 32px;
  line-height: 35px;
}

.center a img {
  width: 100% !important;
  border-radius: 10px;
}

.center .slick-list a {
  margin-right: 2px;
  padding: 15px;
}
.center .slick-list {
  padding: 0 !important;
  overflow: hidden !important;
  margin: 0 20px;
}
.center a.slick-center {
  scale: 1.1;
}

strong {
  font-weight: 900;
}

.social-contact li a {
  color: var(--main-text-color);
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
}
.social-contact {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 0px !important;
  margin-bottom: 20px;
}
#contact h4 {
  font-weight: 900;
  padding-top: 0;
  margin-bottom: 0;
  margin-bottom: 60px;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact form input,
#contact form textarea {
  border: 0;
  border-bottom: 1px solid var(--main-text-color);
  border-radius: 10px;
  padding-left: 20px;
  padding-bottom: 14px;
}
#contact form input,
#contact form textarea {
  width: 70%;
}
#contact form input::placeholder,
#contact form input,
#contact form textarea,
#contact form textarea::placeholder {
  color: var(--black);
  font-size: 20px;
}

#contact iframe {
  width: 100%;
}
#contact button {
  max-width: 250px;
  padding: 30px 15px;
  background-color: var(--red);
  font-weight: 700;
  font-size: 24px;
  line-height: 0;
  border-radius: 10px;
  color: #fff;
  border: none;
}
#contact button:hover {
  scale: 1.05;
  transition: all 0.2s ease-out;
}

@media screen and (max-width: 1540px) {
  .widget-banner p {
    max-width: 250px;
  }
  .widget-banner {
    padding: 14px 20px;
    gap: 20px;
  }
}

@media screen and (max-width: 1364px) {
  .widget-banner .widget-img-1 {
    max-width: 40px;
  }
  .widget-banner .widget-img-2 {
    max-width: 70px;
  }
  .widget-banner .widget-img-3 {
    width: 25%;
  }
}

@media screen and (max-width: 1006px) {
  .hero-text-wrapper h3 {
    font-size: 14px;
  }
  .hero-banners-wrapper {
    gap: 15px;
  }
}

@media screen and (max-width: 1023px) {
  #about,
  #menu {
    min-height: 50vh;
  }
  .widget-banner {
    right: -69%;
    transition: all 0.5s ease;
  }
  body {
    background: #fff;
  }
  .widget-arrow {
    display: flex !important;
  }
  .show-widget {
    right: 0 !important;
    transition: all 0.5s ease;
  }
  .show-widget .widget-arrow img {
    transform: rotate(180deg);
  }
  #contact button {
    max-width: 220px;
  }
  .hero-bg {
    display: none;
  }
  #home {
    background: url(../images/vector.png);
    background-repeat: no-repeat;
    background-size: 500px;
    background-position: bottom right;
  }
}

@media screen and (max-width: 1130px) {
  .widget-banner {
    width: 70%;
  }
}

@media screen and (max-height: 900px) {
  #contact h4 {
    margin-bottom: 15px;
  }
  #contact form {
    gap: 10px;
  }
  #contact form textarea {
    max-height: 100px;
  }
  .headeR {
    padding: 0.5%;
  }
}
@media screen and (max-width: 863px) {
  #home h1 {
    max-width: 100%;
  }
  #contact h4 {
    font-size: 36px;
  }
}
@media screen and (max-width: 807px) {
  .widget-banner p {
    font-size: 16px;
  }
  #home h1 {
    font-size: 35px;
  }
  #about h2,
  #menu h2 {
    font-size: 26px;
    line-height: 30px;
  }
  .paragraph {
    font-size: 18px;
  }
}

.widget-banner .widget-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  left: -52px;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 439px) {
  #about h2,
  #menu h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .paragraph {
    font-size: 16px;
  }
  #home h1 {
    font-size: 25px;
  }
}

@media screen and (max-width: 1031px) {
  .social-contact {
    gap: 5px;
  }

  .social-contact li p {
    font-size: 16px;
  }
}

@media screen and (max-width: 791px) {
  footer ul li a p {
    font-size: 16px;
  }
}
