* {
  margin: 0;
  padding: 0;
  outline: 0;
}
:root {
  --color1: #fc5b0d;
  --white: #ffffff;
  --dark: #000000;
  --textdark: #444444;
  --textwhite: #dddddd;
}
html {
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar {
  width: 10px;
  background-color: #111d2c;
  cursor: pointer;
}
html ::-webkit-scrollbar-thumb {
  background: var(--color1);
  width: 10px;
  border-radius: 5px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #379dc3;
  cursor: pointer;
}
body {
  background: #fffffff8;
  font-family: "Khand", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
img,
span,
input,
form,
label,
.btn,
.navbar,
.navbar-brand {
  margin: 0;
  padding: 0;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
p::selection,
a::selection,
ol::selection,
ul::selection,
li::selection,
img::selection,
span::selection,
input::selection,
form::selection,
label::selection,
.btn::selection,
.navbar::selection,
.navbar-brand::selection {
  color: #fff;
  background: #187fcc;
}
ol,
ul,
li {
  list-style-type: none;
}
a,
a:hover {
  text-decoration: none;
  color: #333;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
h1 {
  font-size: 50px;
  color: #111;
  font-weight: 600;
}
h2 {
  font-size: 40px;
  color: #111;
  font-weight: 600;
}
h3 {
  font-size: 35px;
  color: #111;
  font-weight: 600;
}
h4 {
  font-size: 30px;
  color: #111;
  font-weight: 600;
}
h5 {
  font-size: 25px;
  color: #111;
  font-weight: 600;
}
h6 {
  font-size: 18px;
  color: #111;
}
p {
  font-size: 14px;
  color: #111;
  font-family: 'Roboto', sans-serif;
}
.ptb {
  padding: 70px 0px;
}
.mtb-15 {
  margin: 15px 0;
}
.container-fluid {
  padding: 0px 60px;
}
.btn {
  background: var(--color1);
  padding: 14px 22px;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  border: none;
  transition: 0.3s;
  font-family: roboto;
}
.btn i {
  margin-left: 5px;
}
.btn:hover {
  background: #c01e1e;
  color: #fff;
}
.btn:focus {
  background: #c01e1e;
  color: #fff;
}
.btn2 {
  background: var(--white);
  padding: 13px 22px;
  border-radius: 3px;
  color: var(--color1);
  font-size: 16px;
  border: 1px solid var(--color1);
  transition: 0.3s;
  font-family: roboto;
}
.btn2 i {
  margin-left: 5px;
}
/* --- Preloader ----- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 2px solid rgba(0, 0, 0, 0);
  border-top-color: var(--color1);
  border-bottom-color: #a14d22;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ========= Common Heading = (START) ============================= */
.heading {
  padding-bottom: 20px;
}
.heading h6 {
  font-size: 26px;
  color: var(--color1);
  font-weight: 600;
}
.heading h4 {
  font-size: 40px;
  color: #222;
  font-size: 45px;
  font-weight: 700;
  padding: 8px 0 0;
  text-transform: uppercase;
}
.divider {
  position: relative;
  display: inline-block;
  margin: 0px 0;
  width: 100px;
  text-align: center;
}
.divider:before {
  position: absolute;
  left: 0;
  top: -8px;
  height: 3px;
  width: 50px;
  background: linear-gradient(90deg, rgba(68, 171, 186, 0), #fc5b0d);
  content: "";
}
.divider:after {
  position: absolute;
  left: 0;
  top: -8px;
  height: 3px;
  width: 50px;
  background: linear-gradient(-90deg, rgba(68, 171, 186, 0), #fc5b0d);
  content: "";
}
.heading .divider:after {
  left: auto;
  right: 0;
}
/* ========= Common Heading = (END) ======================= */
/* ========= Scoll Top = (START) ============================ */
.totop {
  position: fixed;
  bottom: 0px;
  right: 10px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: none;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 5px 5px 0 0;
  line-height: 47px;
  font-size: 20px;
  text-align: center;
}
.totop:hover {
  line-height: 40px;
  color: #fff;
  background: var(--color1);
  text-shadow: 0 0 5px #000;
}
/* ========= Scoll Top = (END) ========================= */
/* ========= Top Section = (START) ========================= */
.top_part {
  background: #f0f0f0;
  padding: 8px 0;
  font-family: 'roboto';
}
.top_part p {
  color: var(--textdark);
  font-size: 13px;
  text-align: center;
  text-decoration: underline;
  padding-top: 4px;
  font-weight: 500;
}
.top_part p i {
  padding-right: 5px;
  font-size: 14px;
}
.top_part a i {
  padding-right: 2px;
  font-size: 13px;
  margin-top: 3px;
}
.top_part a {
  color: var(--textdark);
  font-weight: 400;
  padding-right: 10px;
  letter-spacing: 0.5px;
  font-size: 13px;
}
.top_part a:hover {
  color: var(--color1);
}
.top_bar_link ul li {
  float: left;
}
.top_bar_link ul li a {
  padding: 0 10px;
  font-size: 13px;
}
/* ========= Top Section = (START) ================================ */
/* ========= Header = (START) ================================ */
.header_main {
  background-color: #fff;
  z-index: 999;
  width: 100%;
  padding: 10px 0;
}
.header_main img {
  height: 80px;
  transition: 0.4s;
  margin-right: 10px;
}
.header_main .header_search {
  border-radius: 20px;
  padding: 0px 5px;
  position: relative;
  background: #f8f8f8;
  border: 1px solid #ddd;
}
.header_main .header_search input {
  border: none;
  padding: 10px;
  height: 40px;
  width: 500px;
  border-radius: 20px;
  font-size: 15px;
  font-family: 'roboto';
  background: #f8f8f8;
}
.header_main .header_search input::placeholder {
  font-size: 13px;
}
.header_main .header_search button {
  height: 35px;
  width: 35px;
  line-height: 36px;
  color: #000;
  border: none;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 15px;
  background: #eee;
}
.header_main .header_search button:hover {
  color: #fff;
  background: var(--color1);
}
.header_main .header_search button:focus {
  color: #fff;
}
.header_main .dropdown {
  font-size: 13px;
  font-weight: 500;
  margin-left: 10px;
  font-family: 'roboto';
}
.header_main .dropdown i {
  font-size: 15px;
}
.header_main .dropdown-toggle {
  border: none;
  color: #333 !important;
  padding: 4px 8px;
  border-radius: 20px;
}
.header_main .dropdown-toggle:hover {
  background: var(--color1);
  color: #fff !important;
}
.header_main .dropdown-toggle:focus {
  background: var(--color1);
  color: #fff !important;
}
.header_main .dropdown img {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.header_main .dropdown-menu {
  min-width: 100%;
}
.header_main .dropdown-menu[data-bs-popper] {
  top: 150%;
  left: 0px;
}
.header_main .dropdown-item {
  font-weight: 400;
  padding: 3px 12px;
  font-size: 13px;
}
.header_main .dropdown-item i {
  margin-right: 5px;
  font-size: 15px;
}
.header_main .dropdown-item:hover {
  font-weight: 400;
  padding: 3px 12px;
  font-size: 13px;
  color: var(--color1);
  background: #f0f0f0;
}
.header_main .dropdown-item:focus {
  color: var(--color1);
  background: #f0f0f0;
  font-weight: 400;
  padding: 3px 12px;
  font-size: 13px;
}
.header_btn .btn {
  padding: 10px 24px;
}
/*-- Navigation Menu ---*/
.navbar ul {
  display: flex;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 30px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  font-weight: 500;
  color: #eee;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Khand", sans-serif;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
  left: 0;
  opacity: 1;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color1);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: 60px;
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 2px 30px rgba(127, 137, 161, 0.3);
  transition: 0.3s;
  border-bottom: 2px solid var(--color1);
  border-radius: 3px;
}
.navbar .dropdown ul li {
  min-width: 180px;
}
.navbar .dropdown ul a {
  padding: 10px 15px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}
.navbar .dropdown a i {
  margin-left: 5px;
  font-size: 12px;
  color: #aaa;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--color1);
  background: #f5f5f5;
  border-radius: 3px;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 45px;
  visibility: visible;
}
/* ====  Header Call  - Start  ==== */
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    right: -80%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    right: -100%;
  }
}
/* ---- Mobile Navigation ----- */
.toggle_icon {
  font-size: 18px;
  cursor: pointer;
  transition: 0.5s;
  color: var(--color1);
  display: none;
  margin-left: 10px;
  margin-top: 6px;
}
@media (max-width: 775px) {
  .toggle_icon {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #eee;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 50px;
  left: 15px;
  background-color: #111;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
}
.navbar-mobile a {
  padding: 10px 20px;
  color: #eee;
  font-weight: 400;
}
.navbar-mobile a:hover {
  font-weight: 400;
  padding: 10px 20px;
}
.navbar-mobile a:focus {
  font-weight: 400;
  padding: 10px 20px;
}
.navbar-mobile > ul > li {
  padding: 0;
  background: #111;
}
.navbar-mobile > ul > li a {
  color: #eee;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  display: none;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #eee;
  background: var(--color1);
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #222;
  box-shadow: none;
}
.navbar-mobile .dropdown ul li {
  min-width: 180px;
}
.navbar-mobile .dropdown ul a {
  padding: 8px 15px;
  color: #eee;
  font-family: roboto;
  font-size: 13px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 15px;
  color: var(--color1);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
  padding: 10px 0px;
}
.header_bottom {
  background: #000;
}
.header_bottom .product_dropdown {
  background: var(--color1);
}
.header_bottom .product_dropdown .dropdown-toggle {
  padding: 5px 10px 3px;
  font-size: 18px;
  font-family: 'khand';
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--color1);
  border: none;
  color: #fff;
}
.header_bottom .product_dropdown .dropdown-menu {
  min-width: 180px;
  border-radius: 0;
  inset: 6px auto auto -9px !important;
}
.header_bottom .product_dropdown .dropdown-menu .dropdown-item {
  font-weight: 400;
  padding: 8px 15px;
  font-size: 13px;
  text-transform: capitalize;
  color: #000;
  font-family: 'roboto';
}
.header_bottom .product_dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--color1);
}
.header_bottom .header_button a {
  padding: 5px 10px;
  color: #fff;
  background: #111;
  border-radius: 3px;
  font-size: 16px;
}
.header_bottom .header_button a i {
  margin-right: 5px;
}
.header_bottom .header_button a:hover {
  background: var(--color1);
}
/* ========= Header = (End) ================================ */
/* ====  Banner = (Start) ================================ */
.banner_section {
  background: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0 200px;
}
.banner_content h4 {
  color: var(--color1);
  font-size: 35px;
  font-weight: 500;
  padding-bottom: 8px;
}
.banner_content h1 {
  color: var(--white);
  font-size: 65px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.banner_content p {
  font-size: 15px;
  color: var(--white);
  width: 80%;
  padding: 8px 0 20px;
}
/* ==== Banner  = (End) ================================ */
/* ====  categories = (Start) ================================ */
.categories_section .col-6 {
  padding: 0;
  height: 100%;
}
.categories_section .row {
  border: 1px solid #eee;
}
.categories_items {
  padding: 30px 20px;
  border: 1px solid #eee;
  transition: 0.3;
  height: 190px;
}
.categories_items:hover {
  background: #fff5f0;
}
.categories_items img {
  padding-bottom: 20px;
}
.categories_items p {
  font-size: 15px;
}
/* ==== categories  = (End) ================================ */
/* ==== about  = (Start) ================================ */
.about_section {
  background: #f8f8f8;
  padding: 40px 0;
}
.about_text {
  padding-top: 100px;
}
.about_text h5 {
  font-size: 30px;
  font-weight: 600;
}
.about_text h5 span {
  color: var(--color1);
}
.about_text h2 {
  font-size: 65px;
  color: var(--color1);
  font-weight: 700;
  line-height: 1;
  padding: 5px 0 10px;
}
.about_text h6 {
  color: #444;
  padding-bottom: 15px;
  line-height: 1.4;
}
.about_text p {
  color: #666;
  padding-bottom: 20px;
}
/* ====  about = (End) ================================ */
/* ==== solutions  = (Start) ================================ */
.solutions_section {
  background: url(../images/solution-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0 220px;
}
.solutions_text h5 {
  font-size: 40px;
  color: var(--color1);
}
.solutions_text h3 {
  font-size: 55px;
  color: #fff;
  font-weight: 700;
}
.solutions_text p {
  font-size: 16px;
  color: #eee;
}
.solutions_items {
  background: #eee;
  padding: 10px;
  margin: 10px 15px;
  transition: 0.3s;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.solutions_items:hover {
  box-shadow: 1px 3px 8px #ddd;
  border-color: #ebad8f;
}
.solutions_slide {
  margin-top: -200px;
}
.solutions_slide .right_arrow {
  color: #fff;
  position: absolute;
  right: 15px;
  top: -50px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.solutions_slide .right_arrow:hover {
  color: var(--white);
  background: var(--color1);
  border-color: var(--color1);
}
.solutions_slide .left_arrow {
  color: #fff;
  position: absolute;
  right: 70px;
  top: -50px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.solutions_slide .left_arrow:hover {
  color: var(--white);
  background: var(--color1);
  border-color: var(--color1);
}
.solutions_item_text {
  padding: 15px 15px 10px;
}
.solutions_item_text h4 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 10px;
}
.solutions_item_text h4:hover {
  color: var(--color1);
}
.solutions_item_text p {
  color: #555;
  font-size: 13px;
  padding-bottom: 10px;
}
.solutions_item_text .btn {
  font-size: 14px;
  padding: 10px 15px;
}
.solutions_page .solutions_items {
  margin: 12px 2px;
}
/* ==== solutions  = (End) ================================ */
/* ==== explore  = (Start) ================================ */
.explore_section {
  background: url(../images/explore-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 100px;
  padding: 130px 0;
}
.explore_text {
  text-align: center;
}
.explore_text h4 {
  font-size: 26px;
  color: var(--white);
}
.explore_text h3 {
  font-size: 70px;
  color: var(--white);
  font-weight: 700;
  padding: 10px 0;
}
.explore_text p {
  color: var(--white);
  font-size: 15px;
  padding-bottom: 20px;
}
.explore_text .btn {
  margin: 10px;
}
/* ====  explore = (End) ================================ */
/* ====  RESOURCES = (Start) ================================ */
.resources_section .btn2 {
  float: right;
  margin-top: 30px;
  color: #333;
  font-weight: 600;
}
.resources_section .btn2:hover {
  background: var(--color1);
  color: var(--white);
}
.resources_items {
  width: 20%;
  float: left;
}
.resources_content {
  margin: 15px 0;
  padding: 25px;
  background: #f8f8f8;
  transition: 0.3s;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.resources_content:hover {
  box-shadow: 1px 2px 8px #ddd;
  border-color: #ebad8f;
}
.resources_content h4 {
  font-size: 18px;
  padding: 20px 0 10px;
  font-family: roboto;
}
.resources_content p {
  font-size: 13px;
  padding-bottom: 20px;
}
.resources_content a {
  font-size: 13px;
  font-weight: 600;
  font-family: roboto;
  display: flex;
}
.resources_content a i {
  font-size: 25px;
  margin-right: 5px;
  color: var(--color1);
  line-height: 17px;
}
.resources_content a:hover {
  color: var(--color1);
}
/* ====  RESOURCES = (End) ================================ */
/* ====  Review = (Start) ================================ */
.review_section {
  background: #f4f6f7;
}
.review_item {
  padding: 40px 40px;
  border-radius: 10px;
  margin: 20px 20px 30px;
  background: var(--white);
  box-shadow: 1px 2px 25px #ddd;
  position: relative;
}
.review_item h4 {
  font-size: 20px;
  font-family: roboto;
  padding-bottom: 8px;
  margin-right: 50px;
}
.review_item i {
  color: var(--color1);
}
.review_item p {
  padding: 10px 0;
  color: #555;
}
.review_item .review_quote {
  position: absolute;
  right: 20px;
  top: 30px;
}
.review_user_info {
  margin-top: 20px;
}
.review_user_info img {
  height: 50px;
  width: 50px;
  float: left;
  margin-right: 10px;
  border-radius: 50%;
}
.review_user_info h6 {
  font-family: roboto;
  padding-top: 5px;
  font-size: 14px;
  margin-bottom: -5px;
}
.review_user_info p {
  font-size: 12px;
}
.review_slide {
  position: relative;
}
.review_slide .slick-dots {
  text-align: center;
}
.review_slide .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.review_slide .slick-dots li button {
  font-size: 0px;
  width: 5px;
  height: 5px;
  background-color: #c9c9c9;
  border: none;
  border-radius: 50%;
  transition: 0.3s;
}
.review_slide .slick-dots .slick-active button {
  background-color: var(--color1);
  width: 12px;
  height: 12px;
}
/* ====  Review = (End) ================================ */
/* ====  Join Us  = (Start) ================================ */
.joinus_section {
  background: url(../images/joinus-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 30px;
}
.joinus_section h4 {
  color: var(--white);
  font-size: 30px;
}
.joinus_section h3 {
  color: var(--white);
  font-size: 65px;
  font-weight: 700;
  padding-bottom: 10px;
}
/* ====  Join Us  = (End) ================================ */
/* ==== News  = (Start) ================================ */
.news_section .btn2 {
  float: right;
  margin-top: 30px;
  color: #333;
  font-weight: 600;
}
.news_section .btn2:hover {
  background: var(--color1);
  color: var(--white);
}
.news_items {
  margin-bottom: 20px;
  background: #f8f8f8;
  transition: 0.3s;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.news_items img {
  width: 100%;
}
.news_items:hover {
  box-shadow: 1px 2px 8px #ddd;
  border-color: #ebad8f;
}
.news_item_text {
  padding: 20px;
  font-family: roboto;
}
.news_item_text span {
  font-size: 13px;
  color: #666;
}
.news_item_text h4 {
  font-size: 18px;
  padding: 5px 0;
}
.news_item_text h4:hover {
  color: var(--color1);
}
.news_item_text p {
  font-size: 13px;
  color: #555;
  padding-bottom: 10px;
}
.news_item_text a {
  font-weight: 600;
  font-size: 13px;
  color: var(--color1);
}
.news_item_text a:hover {
  color: #d31515;
}
.news_item_text a i {
  margin-left: 5px;
}
/* ==== News  = (End) ================================ */
/* ====  Footer = (Start) ================================ */
.footer_section {
  background: #f0f0f0;
  padding: 50px 0 35px;
  font-family: roboto;
  border-top: 2px solid #f28b53;
  margin-top: 50px;
}
.footer_item {
  padding: 10px;
}
.footer_item .footer_logo {
  width: 270px;
}
.footer_item img {
  padding-bottom: 15px;
}
.footer_item h4 {
  font-size: 16px;
  color: var(--dark);
  padding: 15px 0;
  text-transform: uppercase;
}
.footer_item p {
  font-size: 14px;
  padding-bottom: 15px;
}
.footer_item p a {
  padding-bottom: 10px;
}
.footer_item p a:hover {
  color: var(--color1);
}
.footer_social a i {
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  color: #404750;
  background: #ddd;
  border-radius: 50%;
  transition: 0.3s;
}
.footer_social a i:hover {
  background: var(--color1);
  color: var(--white);
}
.footer_item ul li {
  padding-bottom: 3px;
}
.footer_item ul li a {
  font-size: 14px;
  color: #444;
  text-transform: capitalize;
}
.footer_item ul li a:hover {
  color: var(--color1);
}
.footer_item input {
  height: 50px;
  background: #fff;
  font-weight: 400;
  color: #000;
  border-radius: 5px;
  padding: 15px;
  font-size: 16px;
}
.footer_item input::placeholder {
  font-size: 14px;
  color: #666;
}
.footer_item button {
  margin-top: 10px;
  height: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  margin-bottom: 12px;
  background: var(--color2);
  color: #222;
}
.footer_item button:hover {
  background: #32aed4;
  color: #fff;
}
.footer_contact {
  padding: 50px 0;
  margin-top: 50px;
  border-top: 1px solid #224458;
  position: relative;
}
.footer_contact h4 {
  position: absolute;
  font-size: 24px;
  color: var(--white);
  left: 0;
  width: 260px;
  text-transform: uppercase;
  top: -20px;
  padding: 5px 25px;
  display: block;
  background-color: #01152e;
}
.footer_subscribe {
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-bottom: 30px;
}
.footer_subscribe img {
  padding-right: 10px;
}
.footer_subscribe h6 {
  font-size: 16px;
  padding-bottom: 10px;
  padding-top: 15px;
}
.footer_subscribe .form {
  display: flex;
}
.footer_subscribe .form input {
  margin-right: 20px;
  border-radius: 3px;
  border: 1px solid #ddd;
}
.footer_subscribe .form input::placeholder {
  color: #666;
}
.footer_subscribe .form input:focus {
  border-color: var(--color1);
  box-shadow: none;
}
.footer_subscribe .form button {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 3px;
}
.bottom_section {
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
.bottom_section p {
  color: #444;
  padding-top: 6px;
}
.bottom_section b {
  color: var(--color1);
}
.bottom_section ul {
  float: right;
  margin-top: 5px;
}
.bottom_section ul li {
  float: left;
  text-align: right;
  padding-left: 10px;
  margin-left: 10px;
  font-size: 14px;
  border-left: 1px solid #ddd;
}
.bottom_section ul li:first-child {
  border: none;
}
.bottom_section ul li a:hover {
  color: var(--color1);
}
/* ====  Footer = (End) ================================ */
/* ====  page title = (Start) ================================ */
.title_section {
  background: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 40px 0px 40px;
  position: relative;
  text-align: center;
}
.title_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #01152e79;
}
.title_section h1 {
  color: #fff;
  padding-bottom: 15px;
  letter-spacing: 1px;
  word-spacing: 4px;
  font-size: 45px;
}
.title_section span {
  color: #ddd;
  font-size: 14px;
}
.title_section span .bi-chevron-double-right {
  font-size: 10px;
}
.title_section span a {
  color: #eee;
}
.title_section span a:hover {
  color: var(--color1);
}
.title_section span i {
  color: #fff;
  padding: 0px 5px;
}
.title_section span i:hover {
  color: var(--color1);
}
/* ====  page title = (End) ================================ */
/*  ============================================================================= */
/* ==== Contact  = (Start) ================================ */
.contact_form {
  background: #ebe8e5;
  border-radius: 10px 0 0 10px;
  padding: 30px 40px;
}
.contact_form h4 {
  font-size: 35px;
  font-weight: 700;
  color: var(--color1);
}
.contact_form p {
  font-size: 15px;
  padding-bottom: 20px;
}
.contact_form .form-control {
  border-radius: 3px;
  height: 45px;
  box-shadow: none;
  border: none;
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
  padding: 12px 15px;
  font-family: roboto;
}
.contact_form .form-control::placeholder {
  color: #666;
}
.contact_form textarea {
  height: 120px !important;
}
.contact_form .btn {
  margin-top: 10px;
}
.contact_box {
  background: #fff;
  margin: 0px 100px;
  box-shadow: 1px 2px 10px #ddd;
  border-radius: 10px;
}
.contact_info {
  padding: 30px;
}
.contact_info h4 {
  font-size: 25px;
  padding-bottom: 20px;
}
.contact_info .contact_items {
  display: block;
}
.contact_info .contact_items i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 18px;
  text-align: center;
  border-radius: 3px;
  background: #ebe8e5;
  float: left;
  margin-right: 12px;
  color: var(--color1);
}
.contact_info .contact_items i:hover {
  background: var(--color1);
  color: #fff;
}
.contact_info .contact_items span {
  font-size: 15px;
  color: var(--color1);
  font-weight: 600;
}
.contact_info .contact_items p {
  font-size: 16px;
  font-weight: 500;
}
.contact_info .contact_items p:hover {
  color: var(--color2);
}
.social_icons {
  margin-top: 40px;
}
.social_icons h6 {
  font-size: 22px;
  margin-bottom: 12px;
}
.social_icons a i {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: #eee;
  margin-right: 4px;
  border-radius: 3px;
  color: #555;
}
.social_icons a i:hover {
  background: var(--color1);
  color: #fff;
}
/* ==== Contact  = (End) ================================ */
/* ====  Content Area = (Start) ================================ */
.content_sections {
  background: #f6f6f6;
}
.news_meta {
  margin-bottom: 20px;
}
.news_meta li {
  display: inline-block;
  margin-right: 15px;
}
.news_meta li a {
  font-size: 14px;
}
.news_meta li a i {
  font-size: 14px;
  padding-right: 3px;
}
.news_post_list {
  display: flex;
  padding: 8px 12px;
  border-bottom: 0.5px solid #ddd;
}
.news_post_list:hover {
  background: #f6f8fa;
}
.news_post_list:hover p {
  color: var(--color1);
}
.news_post_list img {
  height: 45px;
  width: 60px;
  border-radius: 3px;
  margin-right: 8px;
}
.news_post_list p {
  font-weight: 500;
  font-size: 14px;
}
.content h4 {
  padding-bottom: 10px;
  font-size: 30px;
  color: var(--color1);
  font-family: 'roboto';
}
.content .content_img {
  border-radius: 4px;
  width: 60%;
  margin-bottom: 15px;
}
.content h6 {
  font-family: 'roboto';
  padding-bottom: 15px;
}
.content p {
  font-size: 15px;
  line-height: 1.6;
}
.content .btn {
  margin-top: 20px;
}
.content iframe {
  border-radius: 5px;
}
.content_sidebar {
  background: #fff;
  box-shadow: 1px 2px 6px #d8d8d8;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-left: 40px;
}
.content_sidebar a {
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.content_sidebar .recent_post {
  padding: 10px;
}
.content_sidebar img {
  height: 50px;
  width: 50px;
  float: left;
  border-radius: 3px;
  margin-right: 10px;
}
.content_sidebar p {
  font-size: 14px;
}
.content_sidebar p:hover {
  color: var(--color1);
}
.content_sidebar h5 {
  color: var(--white);
  background: var(--color1);
  font-size: 24px;
  font-weight: 400;
  padding: 8px 15px;
  border-radius: 5px 5px 0 0;
  text-transform: uppercase;
}
.content_sidebar ul {
  padding: 10px 15px;
}
.content_sidebar ul li .active {
  color: var(--color1);
}
.content_sidebar ul li {
  margin: 8px 0;
}
.content_sidebar ul li a {
  font-size: 15px;
  padding: 0;
  margin: 0;
  border: none;
  font-family: roboto;
}
.content_sidebar ul li a:hover {
  color: var(--color1);
}
.content_sidebar ul li a i {
  padding-right: 5px;
  font-size: 14px;
}
.sidebar_contact_info li {
  padding-left: 23px;
  position: relative;
  padding-bottom: 5px;
}
.sidebar_contact_info li a {
  font-size: 15px !important;
}
.sidebar_contact_info li a i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--color1);
}
        /* Table Container */
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }

        /* Table Styling */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto;
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
        }

        /* Table Header */
        th {
            background-color: #333;
            color: #fff;
            padding: 10px;
            text-align: center;
            font-weight: bold;
        }

        /* Table Data Cells */
        td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
        }

        /* Zebra Striping */
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        /* Hover Effect */
        tr:hover {
            background-color: #e0e0e0;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            td {
                padding: 8px;
            }
        }
/* ==== Content Area  = (End) ================================ */
/* ==== Product  = (Start) ================================ */
.product_items {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  border: 1px solid #ddd;
}
.product_items:hover {
  border-color: #ebad8f;
}
.product_img {
  position: relative;
  height: 160px;
}
.product_items img {
  border-radius: 3px;
  width: 140px;
  text-align: center;
  padding-top: 15px;
}
.product_items h5 {
  padding: 10px 5px 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s;
  color: #333;
  font-family: 'roboto';
}
.product_items h5:hover {
  color: var(--color1);
}
.product_items p {
  font-size: 13px;
  padding: 0px 5px;
  margin-bottom: 10px;
}
.product_items .btn3 {
  font-size: 13px;
  padding: 0px 5px;
  font-family: 'roboto';
  color: var(--color1);
  font-weight: 500;
  margin-top: 15px;
}
.product_items .btn3:hover {
  color: #e42d2d;
}
.product_slide {
  margin-bottom: 20px;
}
.product_slide .right_arrow {
  color: var(--color1);
  position: absolute;
  right: -15px;
  top: 100px;
  height: 40px;
  width: 30px;
  line-height: 40px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}
.product_slide .right_arrow:hover {
  color: var(--white);
  background: var(--color1);
  border-color: var(--color1);
}
.product_slide .left_arrow {
  color: var(--color1);
  position: absolute;
  left: -15px;
  top: 100px;
  height: 40px;
  width: 30px;
  line-height: 40px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  z-index: 9;
}
.product_slide .left_arrow:hover {
  color: var(--white);
  background: var(--color1);
  border-color: var(--color1);
}
.product_slide_img {
  padding: 10px;
  background: #fff;
  margin: 10px;
  border: 1px solid #ddd;
}
/* ==== Product  = (End) ================================ */
/* ====   = (Start) ================================ */
/* ====   = (End) ================================ */
