/* ============================= */
/* 🌐 Base Styles                */
/* ============================= */

html, body {
  margin: 0;
  font-size: 100%;
  font-family: 'Raleway', sans-serif;
  background: #fff;
}

body a {
  text-decoration: none;
  transition: 0.5s all;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

p {
  letter-spacing: 1px;
  font-size: 1em;
  line-height: 1.9em;
  color: #777;
}

/* ============================= */
/* 📌 About Us Section Styling   */
/* ============================= */

.banner_bottom {
  padding: 5em 0;
  background-color: #fff;
}

.banner_bottom .container {
  max-width: 1200px;
  margin: 0 auto;
}

.banner_bottom h3.tittle-adif {
  color: #1b1b1b;
  font-size: 2.8em;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.banner_bottom_grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.banner_bottom_left {
  padding-left: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner_bottom_left h4 {
  font-size: 1.6em;
  font-weight: 600;
  color: #333;
  margin-bottom: 1em;
}

.banner_bottom_left p {
  font-size: 1em;
  line-height: 1.9em;
  color: #777;
  margin-bottom: 2em;
}

.ab_button a {
  padding: 0.8em 2em;
  color: #222;
  font-size: 0.8em;
  letter-spacing: 1px;
  background: #ffffff;
  border: 2px solid #4485f2;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s all;
}

.ab_button a:hover {
  background: #4485f2;
  border-color: #4485f2;
  color: #fff;
}

@media (max-width: 768px) {
  .banner_bottom_left {
    padding-left: 0;
    margin-top: 2em;
    text-align: center;
  }

  .banner_bottom_left h4 {
    font-size: 1.4em;
  }

  .banner_bottom_left p {
    font-size: 0.95em;
  }

  .ab_button a {
    font-size: 0.75em;
  }
}

/* ============================= */
/* 📦 Footer Section             */
/* ============================= */

.footer-top {
  background-size: cover;
  background-attachment: fixed;
  padding: 5em 0;
}

/* ============================= */
/* 🧭 Header Section             */
/* ============================= */

.header_right {
  float: right;
  position: relative;
  width: 18%;
  margin-top: 1.5em;
}

a.logo {
  padding-right: .2em;
  position: relative;
  top: 8px;
  font-size: .8em;
  left: 80px;
}

.header-bottom {
  width: 95%;
  margin: 0 auto;
  padding-top: .001em;
}

@media (max-width: 500px) {
  .header_right {
    width: 100%;
  }
}

/* ============================= */
/* 🔍 Search Form Styling        */
/* ============================= */

.search-form .form-group {
  float: right !important;
  transition: all 0.35s, border-radius 0s;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 25px;
  border: 1px solid #1272c6;
}

.search-form .form-group input.form-control {
  padding-right: 20px;
  border: 0 none;
  background: transparent;
  box-shadow: none;
  display: block;
}

.search-form .form-group input.form-control::placeholder {
  display: none;
}

.search-form .form-group:hover,
.search-form .form-group.hover {
  width: 230px;
  border-radius: 4px 25px 25px 4px;
}

.search-form .form-group span.form-control-feedback {
  position: absolute;
  top: -1px;
  right: -2px;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #1272c6;
  font-size: 14px;
}

/* ============================= */
/* 🖼️ Description Box Styling    */
/* ============================= */

div.wrapper {
  position: relative;
}

div.description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

p.description_content {
  padding: 10px;
  margin: 0px;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

/* ============================= */
/* 🎨 Colored Box Borders        */
/* ============================= */

.d-box-1 { border: 2px solid #4485f2; }
.d-box-2 { border: 2px solid #fec616; }
.d-box-3 { border: 2px solid #fd8e0f; }
.d-box-4 { border: 2px solid #7da23f; }
.d-box-5 { border: 2px solid #1272c6; }
.d-box-6 { border: 2px solid #de2059; }
.d-box-7 { border: 2px solid #6a6b6b; }
