html,
body {
  font-family: 'raleway', Arial, Helvetica, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'raleway', Arial, Helvetica, sans-serif;
}

.h5,
h5 {
  font-size: 1.5rem;
}

p.small {
  font-size: 0.85rem;
}

/* Margins & Paddings */

.pb20 {
  padding-bottom: 20px;
}

.pb40 {
  padding-bottom: 40px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mt70 {
  margin-top: 70px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb72 {
  margin-bottom: 72px;
}

.mb100 {
  margin-bottom: 100px;
}

/* Font styles */
.fw200 {
  font-weight: 200;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.ttu {
  text-transform: uppercase;
}

.no-link-style {
  text-decoration: none;
  color: unset;
}

.no-link-style:hover {
  text-decoration: none;
  color: unset;
}

/* Loader styles */
.loader_bg {
  position: fixed;
  z-index: 999999;
  background: #000;
  width: 100%;
  height: 100%;
}

.loader {
  border: 0 soild transparent;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: calc(50vh - 75px);
  left: calc(50vw - 75px);
}

.loader:before,
.loader:after {
  content: '';
  border: 1em solid #1D18FF;
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  animation: loader 2s linear infinite;
  opacity: 0;
}

.loader:before {
  animation-delay: .5s;
}

@keyframes loader {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}


@media screen and (max-width: 991px) {

  .h5,
  h5 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

/* Containers */
.container-fluid {
  padding: 4.5% 27% 2%;
}

@media screen and (max-width: 1140px) {
  .container-fluid {
    padding: 4.5% 5.5%;
  }
}

@media screen and (max-width: 576px) {
  .container-fluid {
    padding: 10% 5%;
  }
}


/* Sections */

.colorblack-section {
  background-color: #000;
  color: #fff;
}

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

/* Navigation bar */
#nav .container-fluid .fixed-top {
  padding: 0.23% 26%;
  background-color: rgb(243 243 243);
}

#nav .container-fluid {
  padding: 0% 22%;
}

.navbar-brand {
  font-family: 'raleway', Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
}

.navbar {
  padding: 0 0 4.5rem;
}

.navbar-nav {
  width: 95%;
}

.nav-item {
  padding: 0 34px;
}

.nav-link {
  font-size: 1.125rem;
  font-weight: 700;
}

.navbar-dark .navbar-toggler {
  border: none;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgb(49, 49, 49);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(32, 32, 32, 0.7);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

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

/* Hamburger -> close */
.navbar-toggler[aria-expanded="true"] .line:first-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-toggler[aria-expanded="true"] .line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -13px;
}

.navbar-toggler .line {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 18px;
  height: 3px;
  margin-bottom: 3px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 3px;
}

.navbar-toggler .line:last-child {
  margin-bottom: 0;
}

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

.tel-link {
  font-size: 1.125rem;
  font-weight: 700;
  color: #444444;
  text-decoration: none;
  position: absolute;
  right: 240px;
  top: 25px;
}

.tel-link:hover {
  text-decoration: none;
  color: #2e2e2e;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.icon-tel {
  margin-right: 5px;
  width: 24px;
  vertical-align: bottom;
}

@media screen and (max-width: 1590px) {
  .nav-item {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1440px) {
  .tel-link {
    right: 185px;
    top: 24px;
  }

  .nav-item {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1366px) {
  .tel-link {
    right: 172px;
  }

  .nav-item {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1280px) {
  #nav .container-fluid .fixed-top {
    padding: 0.43% 9.5%;
  }

  .tel-link {
    right: 115px;
  }

  .nav-item {
    padding: 0 7px;
  }
}

@media screen and (max-width: 1140px) {
  .tel-link {
    right: 65px;
    top: 22px;
  }

  .nav-item {
    padding: 0 2px;
  }

  #nav .container-fluid .fixed-top {
    padding: 0.43% 5.5%;
  }
}

@media screen and (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    padding-top: 40px;
    width: 100%;
  }

  .tel-link {
    font-size: 1.625rem;
    font-weight: 400;
    top: 48px;
    right: 175px;
  }

  .icon-tel {
    margin-right: 10px;
    width: 33px;
    vertical-align: text-bottom;
  }

  #nav .container-fluid .fixed-top {
    padding: 4% 5.5%;
  }

  .nav-link {
    font-size: 2.6rem;
    font-weight: 400;
  }

  .nav-item {
    padding: 15px 0;
  }

  .logo {
    width: 57px;
  }

  .navbar-toggler {
    font-size: 2.25rem;
  }

  #navbar-content {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  #nav .tel-link {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .navbar-toggler {
    font-size: 1.2rem;
  }

  .logo {
    width: 40px;
    margin-top: -10px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .nav-link {
    font-size: 1.725rem;
  }
}


/* Form styles */
.form-input {
  /*display: block;*/
  width: 100%;
  height: 60px;
  padding: .375rem .75rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #3c3f42;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #a1a3a5;
  border-radius: none;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  margin-bottom: 15px;
}

/* Buttons */
.main-button {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  padding: 14px 25px;
  width: 100%;
  height: 80px;
  text-transform: uppercase;
  border: 1px solid #1D18FF;
  border-radius: 0px;
  background: #1D18FF;
  color: #fff;
  background: linear-gradient(to left, #1D18FF 50%, #ff5e01 50%) right;
  background-size: 200%;
  transition: .3s ease-out;
}

.main-button:hover {
  /* background-color: #1D18FF; */
  background-position: left;
  color: #fff;
  border: 1px solid #fff;
}


@media screen and (max-width: 1140px) {
  .main-button {
    margin-top: 35px;
    width: 445px;
    height: 100px;
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 576px) {
  .main-button {
    margin-top: 0px;
    width: 100%;
    height: 80px;
    font-size: 1.2rem;
  }
}

/* Footer section */

#footer .container-fluid {
  padding: 5% 15% 2%;
}

.help-zsu {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
}

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

.scroll-to-top {
  text-align: right;
}

.social-icon {
  margin: 20px 10px;
}

.social-link:hover {
  color: #423EFF;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

#footer ul {
  padding: 0px;
  list-style: none;
}

#footer p {
  font-size: 1rem;
  margin-bottom: 10px;
}

#footer h5 {
  font-size: 1.625rem;
}

#footer a {
  text-decoration: none;
  color: #fff;
}

#footer a:hover {
  color: #fff;
  color: #423EFF;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

#footer .tel-link {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  position: inherit;
}

#footer .tel-link:hover {
  text-decoration: none;
  color: #423EFF;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

#footer .icon-tel {
  margin-right: 5px;
  width: 24px;
  vertical-align: sub;
}

.scroll-top {
  cursor: pointer;
}

.scroll-top:hover {
  opacity: 0.55;
  transition: 0.3s ease-in-out;
}

.fab,
.far {
  font-size: 1.25rem;
}

.text-link {
  cursor: pointer;
  color: blue;
  text-decoration: underline;
}

.text-link:hover {
  text-decoration: none;
  color: #423EFF;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  #footer .container-fluid {
    padding: 5% 7% 1%;
  }

  #footer p {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .fab,
  .far {
    font-size: 2.25rem;
  }

  .social-icon {
    margin: 20px 25px;
  }

  #footer h5 {
    font-size: 2.75rem;
  }

  #footer .icon-tel {
    vertical-align: inherit;
  }
}

@media screen and (max-width: 576px) {
  #footer .container-fluid {
    padding: 10% 5%;
  }

  #footer h5 {
    font-size: 1.75rem;
  }

  #footer p {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

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

  #footer .icon-tel {
    vertical-align: bottom;
  }

  .scroll-to-top {
    text-align: center;
  }

  .scroll-top {
    width: 60px;
  }
}

/* Modal windows styles */
.modal.show .modal-dialog {
  -webkit-transform: none;
  max-width: 1200px;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1200px;
    margin: 1.75rem auto;
  }
}

.modal-content {
  border-radius: 0px;
  border: none;
  box-shadow: 25px 45px 100px rgba(0, 0, 0, 0.5);
}

.modal-body {
  padding: 32px 40px;
}

.modal-body p {
  font-size: 1.5rem;
}

.modal-header {
  border-radius: 0px;
  border: none;
  background-color: #002bff;
  color: #fff;
}

.modal-title {
  font-weight: 400;
  font-size: 1.875rem;
  padding-left: 25px;
}

.modal-title-line {
  border-right: 2px solid #fff;
  margin: 0 16px;
}

.modal-header .close {
  /* padding: 1.44rem 1.64rem; */
  margin: -1rem -1rem -1rem auto;
  width: 77px;
  height: 77px;
}

.btn-modal-close {
  transition: transform .3s ease-in-out;
}

.btn-modal-close:hover {
  transform: rotate(180deg);
}

.modal-footer {
  padding: 0;
  border-top: 1px solid #E3E3E3;
}

.btn-close-modal {
  color: #353535;
  background-color: #ffffff;
  border: none;
  border-radius: 0px;
  margin-right: 64px !important;
  text-decoration: underline;
  font-size: 1.75rem;
}

.modal-body img {
  width: 100%;
}

.modal-backdrop.show {
  opacity: .8;
  background-color: #fff;
}

button.close {
  padding: 0;
  background-color: #4565ff;
  opacity: .1;
  border: 0;
}

.close {
  font-size: 1.9rem;
  color: #fff;
  text-shadow: none;
  opacity: 1 !important;
}

.modal-footer>* {
  margin: 0;
}

/* scroll in modal */
.modal-dialog {
  overflow-y: initial !important
}

.modal-body {
  height: 74vh;
  overflow-y: auto;
}

/* / scroll in modal */
#oferta p {
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .modal-body p {
    font-size: 2.2rem;
  }

  #oferta p {
    font-size: 2.2rem;
  }

  .modal-title {
    font-size: 2.5rem;
  }

  .modal-header .close {
    width: 90px;
    height: 90px;
  }
}

@media screen and (max-width: 576px) {
  .modal-body {
    padding: 32px 25px;
  }

  .modal-body p {
    font-size: 1.125rem;
  }

  #oferta p {
    font-size: 1.2rem;
  }

  .modal-title {
    font-size: 1.25rem;
    padding-left: 8px;
    line-height: 1.5rem;
    padding-top: 12px;
  }

  .modal-header .close {
    width: 130px;
    height: 90px;
  }

  .btn-close-modal {
    font-size: 1.25rem !important;
    margin-right: 15px !important;
  }

  .modal-header .close {
    width: 80px;
    height: 80px;
  }
}