*,
*::after,
*::before {
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  border: 0;
}
:root {
  --bar-width: 20px;
  --bar-height: 3px;
  --hamburger-gap: 5px;
  --main-color: #b31217;
  --hamburger-margin: 6px;
  --animation-timing: 200ms ease-in-out;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  --grey-background: linear-gradient(120deg, #fdfbfb 0%, #f6f7f8a9 20%);
  --background-gradient: linear-gradient(to right, #e52d27, #b31217);
}
.web-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.top-view {
  width: 100%;
}
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2em 0 2em;
}
.top-nav img {
  width: 25%;
}
.main .header .banner-h1 {
  color: white;
  letter-spacing: 1px;
}
.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  align-items: center;
  font-weight: 500;
}
.menu a {
  text-decoration: none;
  color: black;
}
.menu>li {
  margin: 0 1rem;
  overflow: hidden;
  color: black;
  font-weight: 500;
}
.menu>li:last-child {
  align-items: center;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 90px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-toggle {
  display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--main-color);
  position: absolute;
  height: 2px;
  width: 20px;
  transition: transform 800ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 40px;
}
.menu-button::before {
  content: '';
  margin-top: -10px;
}
.menu-button::after {
  content: '';
  margin-top: 10px;
}
#menu-toggle:checked+.menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}
#menu-toggle:checked+.menu-button-container .menu-button {
  background: rgb(250, 250, 250);
}
#menu-toggle:checked+.menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 90px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle~.menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: 900ms;
  }
  #menu-toggle:checked~.menu li {
    border: 1px solid #fdfdfd;
    height: 6em;
    padding: 1em;
    border-bottom: 1px solid lightgrey;
    border-radius: 0;
  }
  .menu>li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: rgb(0, 0, 0);
    background-color: white;
  }
  .menu>li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  .menu a {
    text-decoration: none;
  }
  .main .header .banner-h1 {
    font-size: xx-large;
  }
  .header p {
    font-size: medium;
  }
}
.menu>li:hover {
  cursor: pointer;
  border-bottom: 1px solid var(--main-color);
  line-height: 2;
}
.main {
  width: 100%;
  min-height: 87vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5em;
  background-image: url('./img/main_background.jpg');
  background-position: center;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  color: white;
}
.header > .banner-h1 {
  font-size: xxx-large;
  font-weight: 500;
  padding-top: 0;
  margin: 0.2em 0;
  display: flex;
}
.header p {
  font-family: var(--p-font);
}
.icon-bar {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 999;
}
.icon-bar a {
  display: block;
  text-align: center;
  padding: 0.7em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: white;
}
.icon-bar a:hover {
  background-color: var(--main-color);
}
.facebook {
  background: #3c5a99;
  color: white;
}
.linkedin {
  background: #55ACEE;
  color: white;
}
.google {
  background: #dd4b39;
  color: white;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-10px);
    -moz-transform: translatex(-10px);
    -o-transform: translatex(-10px);
    transform: translatex(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@-moz-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-10px);
    -moz-transform: translatex(-10px);
    -o-transform: translatex(-10px);
    transform: translatex(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-100px);
    -moz-transform: translatex(-100px);
    -o-transform: translatex(-100px);
    transform: translatex(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
.in-left {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-duration: 1s;
  animation-delay: 1s;
}
.more-btn {
  padding: 2px 50px;
  align-items: center;
  color: white;
  background: var(--main-color);
  border: none;
  border-right: 0.5rem solid #fff;
}
.more-btn a {
  text-decoration: none;
  color: white;
}
.more-btn:hover {
  cursor: pointer;
}
.main-color-text {
  color: var(--main-color);
  margin-right: 0.2em;
}
.bold {
  font-weight: 500;
}
.font-weight-light {
  font-weight: 200;
}
.font-size-medium {
  font-size: medium;
}
.font-size-large {
  font-size: x-large;
}
/*---- 25-06-2024 - CSS - START ----*/
.cust-container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1320px;
}
.cust-row {
  margin-left: -15px;
  margin-right: -15px;
}
.cust-col {
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}
.cust-col-4 {
  width: 33.3333%;
}
.cust-col-6 {
  width: 50%;
}
.cust-col-12 {
  width: 100%;
}
.cust-d-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-view {}
.top-view .header-top {
  background-color: #000;
}
.top-view .top-logo {
  display: inline-block;
}
.top-view .top-logo img {
  display: block;
  width: 90px;
}
.top-view .header-right {
  display: flex;
  align-items: center;
}
.top-view .top-nav {
  padding: 15px 0;
  height: auto;
}
.top-view .top-nav ul.menu {}
.top-view .top-nav ul.menu li {
  border-bottom: 1px solid #000;
  line-height: 2em;
  transition: all 0.3s;
}
.top-view .top-nav ul.menu li:hover {
  border-bottom: 1px solid var(--main-color);
  line-height: 2em;
}
.top-view .top-nav ul.menu li a {
  color: #fff;
  font-size: 19px;
  text-transform: uppercase;
}
.top-view .header-phone {
  background-color: var(--main-color);
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 19px;
  line-height: 1.5em;
  font-weight: bold;
  margin-left: 30px;
  transition: all 0.5s;
}
.top-view .header-phone:hover {
  background-color: #fff;
  color: var(--main-color);
}
.top-view .header-phone svg {
  fill: #fff;
  margin-right: 4px;
  transition: all 0.5s;
}
.top-view .header-phone:hover svg {
  fill: var(--main-color);
}
.main-banner {}
.main-banner .main {
  display: block;
  padding: 12em 5em;
  min-height: unset;
}
.main-banner .main .main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-banner .main .main-header .header.in-left {
  /* flex: 1 0 0; */
}
.main-banner .main .main-header .header.in-left .banner-title {
  color: #fff;
  font-size: 46px;
  line-height: 1.2em;
  margin: 0 0 40px 0;
  max-width: 75%;
}
.main-banner .main .main-header .header.in-left .banner-title .text-red {
  color: var(--main-color);
}
.main-banner .main .main-header .header.in-left .banner-title .clearfix {
  margin-top: 20px;
}
/* .main-banner .main .main-header .header.in-left .banner-h1 {
  font-size: 32px;
}
.main-banner .main .main-header .header.in-left .banner-h1 .main-color-text {
  margin-right: 15px;
} */
.main-banner .main .main-header .header.in-left  .more-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 50px;
  font-size: 18px;
  color: white;
  background: var(--main-color);
  border: none;
  border-right: 0.5rem solid #fff;
  transition: all 0.5s;
}
.main-banner .main .main-header .header.in-left  .more-btn:hover {
  background-color: #fff;
  color: var(--main-color);
}
/* .main-banner .main .main-header .header.in-right {
  flex: 1 0 0;
}
.main-banner .main .main-header .header.in-right .banner-title-right {
  text-align: right;
  color: #fff;
  font-size: 38px;
  line-height: 1.2em;
  margin: 20px 0;
} */
.about-business {
  min-height: unset;
  padding: 60px 0;
}
.about-business .about-business-container {  
  width: 100%;
}
.about-business .about-business-container .image-container .image .src {
  border: 10px solid var(--main-color);
}
.our-services .card-details-cont {
  margin-top: 20px;
  width: 100%;
}
.our-services .card-details-cont .details-box {
  display: none;
  background: var(--grey-background);
  padding: 30px;
  border-bottom: 5px solid var(--main-color);
}
.our-services .card-details-cont .details-box .box-title {
  margin: 0 0 10px 0;
  display: inline-block;
  border-bottom: 2px solid #ccc;
  padding: 0 10px 5px 10px;
}
.our-services .card-details-cont .details-box .box-content {}
.our-services .card-details-cont .details-box .box-content p {
  margin: 15px 0 0 0;
  line-height: 1.5em;
}


.our-services .card-details-cont .details-box-mobile {
  display: none;
  background: var(--grey-background);
  padding: 30px;
  border-bottom: 5px solid var(--main-color);
}
.our-services .card-details-cont .details-box-mobile .box-title {
  margin: 0 0 10px 0;
  display: inline-block;
  border-bottom: 2px solid #ccc;
  padding: 0 10px 5px 10px;
}
.our-services .card-details-cont .details-box-mobile .box-content {}
.our-services .card-details-cont .details-box-mobile .box-content p {
  margin: 15px 0 0 0;
  line-height: 1.5em;
}


.contact-form-container {
  display: block!important;
}
.contact-form-container .contact-us {
  width: 100%;
}
.contact-form-container .form-container {
  background: var(--grey-background);
  padding: 60px;
  width: 100%;
}
.contact-form-container .form-container .form-input {
  margin-bottom: 15px;
}
.contact-form-container .form-container .form-input label {
  margin-bottom: 10px;
}
.contact-form-container .form-container .form-input .cust-form-control {
  margin: 0;
  background: #fff;
  border-radius: 0;
  border-bottom: 2px solid var(--main-color);
  font-size: 15px;
}
.contact-form-container .form-container .form-input textarea.cust-form-control {
  resize: none;
}
.contact-form-container .form-container .form-input .cust-form-control:focus-visible {
  box-shadow: none;
  outline: none;
  border-color: var(--main-color);
}
.contact-form-container .form-container .btn-submit {
  background-color: var(--main-color);
  font-size: 21px;
  text-transform: uppercase;
  border: 1px solid var(--main-color);
  border-left: 10px solid #000;
  border-right: 10px solid #000;
  border-radius: 10px;
  transition: all 0.3s;
  width: 50%;
  max-width: 100%;
}
.contact-form-container .form-container .btn-submit:hover {
  background-color: #000;
  border: 1px solid #000;
}
footer {
  padding: 40px 0;
  min-height: unset!important;
}
footer .footer-sections {
  margin: 0;
  justify-content: space-between;
  width: 100%;
}
footer .footer-sections .information-section,
footer .footer-sections .footer-links,
footer .footer-sections .footer-contact {
  width: 100%;
}
footer .footer-sections .footer-logo {
  display: inline-block;
  width: 90px;
}
footer .footer-sections .footer-logo img {
  display: block;
  width: 100%;
}
.card-details-for-mobile {
  display: none;
}
.for-mobile {
  display: none!important;
}
@media (min-width:901px) and (max-width:1199px) {
  .our-services .cards-container {
    /* flex-direction: column; */
  }
  .our-services .cards-container .flip-card {
    height: 410px;
    min-height: 410px;
  }
  .text-container .top-title-img {
    width: 30px;
    height: 30px;
    margin-right: 10px !important;
  }
  .our-services .cards-container .flip-card .flip-card-front .text-container .top-title-cont .top-title {
    font-size: 15px;
  }
  .our-services .cards-container .flip-card .flip-card-front .text-container .sub-title {
    font-size: 15px;
  }
}
@media screen and (max-width:900px) {
  .for-desktop {
    display: none!important;
  }
  .for-mobile {
    display: block!important;
  }
  .cust-col-4 {
    width: 100%;
  }
  .top-view .header-top .header-right .menu-button-container {
    height: 26px;
    width: 24px;
    margin-left: 30px;
  }
  /* .top-view .top-nav #menu-toggle:checked ul.menu li {
    height: auto !important;
    border: none !important;
    padding: 0 !important;
  } */
  .top-view .top-nav #menu-toggle:checked ~ .menu li {
    padding: 0;
    height: 46px;
    border-bottom: 1px solid #f1f1f1;
  }
  .top-view .top-nav ul.menu li a {
    color: #000;
    padding: 5px 10px !important;
    width: 100% !important;
    text-align: center !important;
  }
  .top-view .header-phone {
    padding: 8px 14px;
    font-size: 14px;
    margin-left: 20px;
  }
  .top-view .header-phone svg {
    height: 10px;
  }
  .main-banner .main {
    padding: 5em 15px;
  }
  .main-banner .main .main-header .header.in-left .banner-title {
    font-size: 30px;
  }
  .main-banner .main .main-header .header .banner-h1 {
    font-size: 24px;
  }
  .main-banner .main .main-header .header.in-left .more-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  .text-container .top-title-img {
    width: 30px;
    height: 30px;
    margin-right: 10px !important;
  }
  .our-services {
    padding: 30px 15px;
    width: 100%;
  }
  .our-services .cards-container {
    flex-direction: column;
  }
  .our-services .cards-container .flip-card {
    height: 290px;
    min-height: 290px;
    padding: 0;
    margin-bottom: 20px;
  }
  .our-services .cards-container .flip-card .flip-card-front .text-container .top-title-cont .top-title {
    font-size: 15px;
  }
  .our-services .cards-container .flip-card .flip-card-front .text-container .sub-title {
    font-size: 15px;
  }
  .our-services .card-details-cont {
    margin-bottom: 20px;
  }
  .our-services .card-details-cont .cust-container {
    padding: 0;
  }
  .our-services .card-details-cont .details-box {
    padding: 30px 15px;
  }
  .contact-form-container {
    padding: 3em 0!important;
  }
  .contact-form-container .form-container {
    padding: 30px;
  }
  .contact-form-container .form-container .form-input {
    width: 100%;
  }
  .about-business {
    padding: 20px 0;
  }
  .about-business .descrition-container {
    width: 100%;
    margin: 0;
  }
  .about-business .descrition-container .name-about,
  .about-business .descrition-container .about-p {
    margin-top: 0;  
  }
  footer .footer-sections {
    text-align: center;
  }
  footer .footer-sections .information-section {
    text-align: center;
  }
  footer .footer-sections .footer-logo {
    width: 120px;
    margin: 0 auto;
  }
  footer .footer-sections .social-icons {
    justify-content: center;
  }
  footer .footer-sections .footer-links .links {
    display: block;
    padding: 0;
  }
  footer .footer-sections .footer-description .footer-text {
    max-width: 50%;
    margin: 30px auto;
  }
  .card-details-for-desktop {
    display: none;
  }
  .card-details-for-mobile {
    display: block;
    margin: 15px 0;
  }
  .card-details-for-mobile .card-details-cont {
    margin-top: 0;
  }
}
@media screen and (max-width:599px) {
  .main-banner .main .main-header .header.in-left .banner-title {
    max-width: 100%;
    font-size: 23px;
    padding-right: 20px;
    margin-bottom: 20px;
  }
  .main-banner .main .main-header .header.in-left .more-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  footer .footer-sections .footer-description .footer-text {
    max-width: 100%;
    margin: 30px auto;
  }
}
/*---- 25-06-2024 - CSS - END ----*/