/* GOOGLE FONTS - POPPINS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;600&display=swap');

:root {
  --bg-index: url('../images/home/index-bg.jpg');
  --bg-about: url('../images/about/about-bg.jpg');
  --bg-automotive: url('../images/automotive/automotive-bg.jpg');
  --bg-contact: url('../images/contact/contact-bg.jpg');
  --bg-medical: url('../images/medical/medical-bg.jpg');
  --bg-medical2: url('../images/medical/medical-bg2.jpg');
  --bg-support: url('../images/support/support-bg.jpg');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  background: #333;

  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;

  min-height: 100%;

  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

section h1 a {
  transition: opacity 0.2s ease;
}
 
section h1 a:hover,
section h1 a:focus {
  opacity: 75%;
}

section i {
  color: #fff;
}

nav .logo {
  height: 64px;
  max-height: 64px;
  width: auto;
  padding-top: 1rem;

  transition: transform 0.35s ease-in-out;
}

nav .logo:hover
{
  transform: scale(1.1);
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main .home {
  flex-direction: column;
}

.number-section a,
footer a,
a strong {
  transition: all 0.2 ease;
}

.number-section a:hover,
footer a:hover,
a strong:hover,
.number-section a:focus,
footer a:focus,
a strong:focus{
  text-decoration: underline;
  opacity: 80%;
}

footer {
  max-width: 98%;
  margin-top: auto;
}

.active,
.active:focus,
.green {
  color: #198754 !important;
}

.d-sm-flex img {
  max-width: 300px;
  height: auto;
  object-fit: cover;
  object-position: center;
  padding: 1em 0;
  margin: 0 1em;
}


.about-title h1 {
  color: #e9e4e4;
  font-size: 24px !important;
  font-weight: 600;
}

.about-title span {
  font-size: 1.4em;
  font-weight: 700;
}

.about-title h4 {
  color: #c2bebe;
  font-size: 23px !important;
}

.about-title p {
  color: #d8d8d8;
  line-height: 1.8 !important;
  margin: 0 0 15px;
}


input,
textarea {
  background-color: #e9e6e6 !important;
  border: none;
  font-size: 1em !important;
}

.d-grid button {
    font-size: 1em !important;
}


.feedbacks {
  font-size: 12px;
  background-color: rgba(150, 148, 148, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.feedbacks h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.feedbacks p {
  font-style: italic;
  color: #ffffff;
}


footer img {
    max-width: 72px;
    max-height: 72px;
    width: 72px;
    height: 72px;
    object-fit: contain;
    opacity: 60%;
    transition: ease-in-out .2s;
  }
  
  footer img:hover {
    opacity: 100%;
  }
  

/* BACKGROUND */
.bg-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(4px);
  z-index: -1;
}

.bg-settings::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.index-bg-image {
  background-image: var(--bg-index);
}

.medical-bg-image {
  background-image: var(--bg-medical);
}

.medical-bg2-image {
  background-image: var(--bg-medical2);
}

.about-bg-image {
  background-image: var(--bg-about);
}

.contact-bg-image {
  background-image: var(--bg-contact);
}

.automotive-bg-image {
  background-image: var(--bg-automotive);
}

.support-bg-image {
  background-image: var(--bg-support);
}
/* BACKGROUND END */


@media only screen and (max-width: 992px) {
  .d-sm-flex {
    flex-direction: column;
  }
}

@media only screen and (max-width: 400px) {
  .d-sm-flex img {
    width: 200px;
  }
}

@media only screen and (min-width: 576px) {
  .index-section {
   font-size: inherit !important;
  }
}


@media only screen and (max-width: 768px) {
  .feedbacks-section .title-hr hr {
    width: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-section .title-hr hr {
    width: 200px;
  }
}

@media only screen and (min-width: 1400px) {
  .feedbacks {
    font-size: 14px;
  }
  .feedbacks h3 {
    font-size: 20px;
  }
}


@media only screen and (max-width: 575px) {
  .feedbacks-section {
    margin: 0 20px;
  }
}
