* {
  margin: 0;
  padding: 0;
  outline: 0;
}
:root {
  --color1: #debc76;
  --color2: #ffac2d;
  --white: #ffffff;
  --dark: #000000;
  --textdark: #444444;
  --textwhite: #dddddd;
}
html {
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar {
  width: 10px;
  background-color: #000;
  cursor: pointer;
}
html ::-webkit-scrollbar-thumb {
  background: #31302e;
  width: 10px;
  border-radius: 5px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #5e584b;
  cursor: pointer;
}
body {
  background: #070707;
  font-family: "Merriweather", serif;
  font-family: "Teko", serif;
  font-family: 'Roboto', 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: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  font-family: "Teko", serif;
}
h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  font-family: "Teko", serif;
}
h3 {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
  font-family: "Teko", serif;
}
h4 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  font-family: "Teko", serif;
}
h5 {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  font-family: "Teko", serif;
}
h6 {
  font-size: 18px;
  color: #fff;
  font-family: "Teko", serif;
}
p {
  font-size: 14px;
  color: #fff;
}
.ptb {
  padding: 80px 0px;
}
.mtb-15 {
  margin: 15px 0;
}
.btn {
  background: linear-gradient(90deg, #ffedb0 0%, #ffb033 50%, #ffedb0 100%);
  padding: 12px 25px;
  border-radius: 5px;
  color: #000;
  font-size: 13px;
  border: none;
  transition: 0.3;
  font-weight: 600;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
.btn:hover {
  background: linear-gradient(90deg, #f1d473 0%, #da911d 50%, #f1d473 100%);
  border-color: #ffb033;
  color: #000;
}
.btn:focus {
  background: linear-gradient(90deg, #f1d473 0%, #da911d 50%, #f1d473 100%);
  border-color: #ffb033;
  color: #000;
}
.btn-2 {
  background: #17140b;
  border: 1px solid #777;
  color: #ddd;
}
.btn-2:hover {
  background: var(--color1);
  color: #000;
}
.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(6, 17, 33, 0.6);
}
/* --- Preloader ----- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(160deg, #100f0b, #232016);
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 2px solid var(--color1);
  border-top-color: #100f0b;
  border-bottom-color: #100f0b;
  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: 40px;
}
.heading h4 {
  font-size: 35px;
  font-family: "Teko", serif;
  font-weight: 500;
  padding-bottom: 10px;
}
.heading h6 {
  font-size: 21px;
  font-family: "Merriweather", serif;
  font-weight: 500;
}
.heading h3 {
  font-size: 55px;
  font-family: "Teko", serif;
  font-weight: 500;
  padding-top: 8px;
}
.heading p {
  font-size: 16px;
  font-weight: 500;
}
.heading h4 span {
  font-size: 40px;
  background: linear-gradient(-45deg, #44abba, #152c5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.divider {
  position: relative;
  display: inline-block;
  margin: 0px 0;
  width: 250px;
  text-align: center;
}
.divider:before {
  position: absolute;
  left: 0;
  top: -5px;
  height: 4px;
  width: 125px;
  background: linear-gradient(90deg, rgba(68, 171, 186, 0), #152c5a);
  content: "";
}
.divider:after {
  position: absolute;
  left: 0;
  top: -5px;
  height: 4px;
  width: 125px;
  background: linear-gradient(-90deg, rgba(68, 171, 186, 0), #152c5a);
  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(--color2);
  text-shadow: 0 0 5px #000;
}
/* ========= Scoll Top = (END) ========================= */
/* ========= Top Section = (START) ========================= */
.top_section {
  background: #000;
  height: 120px;
  overflow: hidden;
  padding: 10px 0;
}
.top_section .col-md-5 {
  padding: 0;
}
.top_section a i {
  padding-right: 5px;
}
/* ========= Top Section = (START) ================================ */
/* ========= Header = (START) ================================ */
.header_section {
  transition: 0.3s;
  z-index: 99;
  width: 100%;
  padding: 8px 5px;
  position: fixed;
  background: #000;
  z-index: 9999;
}
.header_section.scrolling {
  padding: 8px 5px;
  background-color: #000;
  top: 0;
  left: 0;
  transition: 0.3s;
  position: fixed;
}
.header_section img {
  height: 80px;
  transition: 0.4s;
  margin-right: 10px;
  padding-bottom: 10px;
}
.topbar_call {
  font-size: 14px;
  font-family: "Merriweather", serif;
  margin-right: 20px;
}
.topbar_call:hover {
  color: #dfbe78;
}
.topbar_call span {
  padding-right: 8px;
}
.topbar_call img {
  height: 15px;
  padding: 0;
}
.header_btn .btn {
  padding: 10px 24px;
  margin-left: 20px;
}
.header_bottom {
  background-color: #000 !important;
  z-index: 999;
}
.header_bottom .header_button a {
  padding: 5px 10px;
  color: #fff;
  background: #612c2c;
  border-radius: 3px;
  font-size: 16px;
}
.header_bottom .header_button a i {
  margin-right: 5px;
}
.header_bottom .header_button a:hover {
  background: var(--color1);
}
/*-- Navigation Menu ---*/
.navbar ul {
  display: flex;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 6px 30px 6px 0;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  font-family: "Noto Serif", serif;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-link.active {
  color: var(--color1);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100%);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.3s;
  border-bottom: 2px solid var(--color2);
  border-radius: 3px;
  padding: 2px 0;
  box-shadow: 1px 1px 3px #00000041;
}
.navbar .dropdown ul li {
  min-width: 180px;
}
.navbar .dropdown ul a {
  padding: 8px 15px;
  font-weight: 400;
  font-size: 13px;
  color: #444;
}
.navbar .dropdown a i {
  margin-left: 5px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
  background: var(--color2);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.header_btn {
  margin-left: 40px;
}
.header_btn a {
  padding: 9px 20px;
  font-size: 13px;
  border: 1px solid var(--color1);
  color: var(--white);
  font-family: "Noto Serif", serif;
  font-weight: 500;
  border-radius: 5px;
}
.header_btn a:hover {
  background: var(--color2);
  color: var(--dark);
  border: 1px solid var(--color2);
}
.header_btn a:focus {
  padding: 9px 20px;
  background: var(--color2);
  color: var(--dark);
  border: 1px solid var(--color2);
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    right: -80%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    right: -100%;
  }
}
/* ---- Mobile Navigation ----- */
.toggle_icon {
  font-size: 22px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  color: var(--color1);
  display: none;
  margin-right: 10px;
}
@media (max-width: 775px) {
  .toggle_icon {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 18px;
  font-weight: 500;
  color: #eee;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Teko", serif;
}
.navbar a:hover {
  color: var(--color1);
}
.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: #222;
  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;
}
.navbar-mobile > ul > li {
  padding: 0;
  background: #222;
}
.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(--color2);
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #333;
}
.navbar-mobile .dropdown ul li {
  min-width: 180px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 15px;
  color: #eee;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
  padding: 10px 0px;
}
.navbar-mobile .search_btn {
  display: none;
}
.navbar-mobile .my_account {
  display: none;
}
.navbar-mobile .header_btn {
  display: none;
}
.navbar-mobile .cart_sidebar_toggle {
  display: none;
}
/* ========= Header = (End) ================================ */
/* ==== banner  = (Start) ================================ */
.banner_section {
  background: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 260px 0 0;
  margin-top: -130px;
}
.banner_text {
  padding: 80px 10px 50px;
}
.banner_text h6 {
  font-size: 25px;
  font-family: "Merriweather", serif;
}
.banner_text h1 {
  font-size: 85px;
  font-family: "Teko", serif;
  line-height: 1;
  padding-top: 15px;
}
.banner_text p {
  font-size: 18px;
  width: 80%;
  padding-bottom: 20px;
}
.banner_text .btn {
  padding: 12px 32px;
  font-size: 16px;
}
.banner_img img {
  margin-bottom: -28px;
}
/* ====  banner = (End) ================================ */
/* ====  Hoe It Work = (Start) ================================ */
.how_it_work_section {
  padding: 80px 0;
  background: linear-gradient(90deg, #533e18 0%, #272014 50%, #533e18 100%);
}
.how_it_work_item {
  padding: 10px 40px;
}
.how_it_work_item img {
  float: left;
  height: 85px;
  margin-right: 15px;
}
.how_it_work_item p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 8px;
}
/* ====  Hoe It Work = (End) ================================ */
/* ====  services = (Start) ================================ */
.service_item {
  padding: 70px 30px 30px;
  border: 1px solid #64583d;
  background: linear-gradient(135deg, #17140d 0%, #5a4c2e 50%, #17140d 100%);
  border-radius: 12px;
  position: relative;
  margin-top: 50px;
}
.service_item img {
  height: 100px;
  position: absolute;
  top: -50px;
  left: 15px;
}
.service_item h4 {
  font-family: "Teko", serif;
  font-size: 40px;
}
.service_item p {
  font-size: 16px;
  padding-bottom: 20px;
}
.service_item .btn {
  box-shadow: 1px 2px 4px #000;
}
/* ====  services = (End) ================================ */
/* ==== About  = (Start) ================================ */
.about_section {
  margin-top: 70px;
  padding: 100px 0;
  background: linear-gradient(135deg, #1a170f 0%, #1a1204 50%, #1a170f 100%);
}
.about_section h6 {
  font-size: 21px;
  font-family: "Merriweather", serif;
  font-weight: 500;
}
.about_section h3 {
  font-size: 60px;
  font-family: "Teko", serif;
  font-weight: 600;
  padding-top: 8px;
  line-height: 1;
}
.about_section p {
  font-size: 15px;
  font-weight: 500;
  color: #c2c2c2;
}
.aboutus_content {
  padding: 0px 10px 50px 80px;
}
.aboutus_content .btn {
  margin-top: 20px;
  padding: 14px 35px;
}
.aboutus_video {
  position: relative;
}
.aboutus_video .youtube_play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mission_vission_row {
  padding: 0px 80px;
}
.mission_vission {
  padding: 30px 20px;
  border: 1px solid #64583d;
  border-radius: 12px;
  position: relative;
  margin-top: 50px;
  background: #1e170c;
  background: linear-gradient(133deg, #1e170c 0%, #4b3c20 77%);
  margin: 10px;
}
.mission_vission img {
  height: 100px;
}
.mission_vission h4 {
  font-family: "Teko", serif;
  font-size: 40px;
}
.mission_vission p {
  font-size: 15px;
  padding-bottom: 20px;
  font-weight: 400;
}
.mission_vission_text {
  padding: 0px 30px;
}
/* ==== About  = (End) ================================ */
/* ====  package = (Start) ================================ */
.package_section {
  background: url(../images/bg-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
}
.package_content {
  padding: 30px 80px 30px;
}
.package_content h6 {
  font-size: 21px;
  font-family: "Merriweather", serif;
  font-weight: 500;
}
.package_content h3 {
  font-size: 60px;
  font-family: "Teko", serif;
  font-weight: 600;
  padding-top: 8px;
  line-height: 1;
  text-shadow: hoff voff blur #000;
}
.package_content p {
  font-size: 15px;
  font-weight: 500;
  color: #e4e4e4;
  margin-bottom: 20px;
}
.package_content ul li {
  font-size: 16px;
  font-weight: 600;
  color: #e4e4e4;
}
.package_content ul {
  margin-bottom: 20px;
}
.package_content .btn {
  padding: 15px 30px;
  font-size: 15px;
  box-shadow: 1px 2px 4px #000000ae;
}
/* ==== package  = (End) ================================ */
/* ==== call_section  = (Start) ================================ */
.call_section {
  padding: 50px 0;
  background: url(../images/bg-2.png);
}
.call_section h6 {
  font-size: 35px;
  text-shadow: 1px 2px 3px #111;
  font-family: "Merriweather", serif;
  font-weight: 500;
}
.call_section a {
  font-size: 55px;
  color: #fff;
  text-shadow: 1px 2px 3px #111;
  font-family: "Teko", serif;
  font-weight: bold;
}
/* ==== call_section  = (End) ================================ */
/* ==== machine  = (Start) ================================ */
.machine_section_bg {
  background: url(../images/machine-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px 40px 20px;
  border: 4px solid #3f3623;
}
.machine_content {
  padding-top: 20px;
  padding-bottom: 20px;
}
.machine_content h6 {
  font-size: 22px;
  font-family: "Merriweather", serif;
  padding-bottom: 15px;
}
.machine_content h3 {
  font-size: 90px;
  font-family: "Teko", serif;
  line-height: 0.9;
}
.machine_content h4 {
  font-size: 45px;
  font-family: "Teko", serif;
}
.machine_content p {
  font-size: 15px;
  padding-bottom: 20px;
}
.machine_content .btn {
  padding: 13px 35px;
  font-size: 15px;
  margin-right: 12px;
}
/* ====  machine = (End) ================================ */
/* ==== CHARITIES  = (Start) ================================ */
.charities_section {
  background: url(../images/bg-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 40px;
}
.charities_content {
  padding: 50px 10px;
  margin-top: 80px;
}
.charities_content h6 {
  font-size: 22px;
  font-family: "Merriweather", serif;
  padding-bottom: 10px;
}
.charities_content h3 {
  font-size: 75px;
  font-family: "Teko", serif;
  line-height: 0.9;
}
.charities_content h4 {
  font-size: 35px;
  font-family: "Teko", serif;
}
.charities_content h5 {
  font-size: 30px;
  font-family: "Teko", serif;
  text-shadow: 1px 2px 3px #000;
}
.charities_content p {
  font-size: 15px;
  padding-bottom: 20px;
}
.charities_content .btn {
  padding: 13px 35px;
  font-size: 15px;
  margin-bottom: 20px;
}
/* ==== CHARITIES  = (End) ================================ */
/* ====  Resources = (Start) ================================ */
.resources_items {
  padding: 30px;
  border: 2px solid #3f3623;
  background: #0e0c08;
  background: linear-gradient(140deg, #0e0c08 0%, #322a1a 100%);
  border-radius: 5px;
  margin: 10px 15px;
  position: relative;
}
.resources_items img {
  height: 60px;
  font-size: 25px;
  margin-bottom: 20px;
}
.resources_items h4 {
  font-size: 30px;
}
.resources_items .btn {
  padding: 12px 35px;
  margin-top: 20px;
}
.resources_slide {
  position: relative;
}
.resources_slide .left_arrow {
  color: #ddd;
  position: absolute;
  right: 70px;
  top: -50px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #f8f8ef;
  transition: 0.5s;
  cursor: pointer;
  text-align: center;
}
.resources_slide .left_arrow:hover {
  background: #ffb238;
  border-color: #ffb238;
  color: #111;
}
.resources_slide .right_arrow {
  color: #ddd;
  position: absolute;
  right: 10px;
  top: -50px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #f8f8ef;
  transition: 0.5s;
  cursor: pointer;
  text-align: center;
}
.resources_slide .right_arrow:hover {
  background: #ffb238;
  border-color: #ffb238;
  color: #111;
}
/* ==== Resources  = (End) ================================ */
/* ====  FAQ = (Start) ================================ */
.faq_section {
  background: #1a170f;
  background: linear-gradient(90deg, #191710 0%, #1a160e 100%);
}
.accordion {
  border: none;
  margin-bottom: 12px;
}
.accordion-item {
  background-color: transparent;
  border: none;
  border: 1px solid #777;
  margin-bottom: 20px;
  background: #221c11;
  background: linear-gradient(140deg, #221c11 0%, #4b3c21 100%);
  border-radius: 5px;
}
.accordion-button {
  background-color: transparent;
  font-size: 22px;
  color: #fff;
  border: none;
  border: 1px solid #777;
  border-radius: 5px;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  font-size: 22px;
  color: #fff;
  border: none;
  box-shadow: none;
  border-top: 1px solid #777;
  border-radius: 5px;
}
.accordion-button:not(.collapsed)::after {
  color: #ddd;
  background-image: url(../images/minuse.svg);
}
.accordion-button::after {
  background-image: url(../images/plus.svg);
}
.accordion-body {
  padding: 0 20px 15px;
}
.accordion-body p {
  color: #ddd;
}
.qr_section {
  padding: 130px 40px 40px;
}
.qr_section p {
  margin-top: 15px;
}
.qr_section img {
  margin: 15px 0 5px;
}
/* ==== FAQ  = (End) ================================ */
/* ==== Blog  = (Start) ================================ */
.blog_items {
  margin: 15px 0;
}
.blog_items .row {
  border: 1px solid #777;
  background: #1c180e;
  margin: 10px 15px;
  border-radius: 10px;
}
.blog_items img {
  height: 100%;
  margin-left: -12px;
}
.blog_items .blog_text {
  padding: 20px 10px 20px 0px;
}
.blog_items .blog_text span {
  font-size: 13px;
  color: #ddd;
}
.blog_items .blog_text h5 {
  font-size: 19px;
  font-family: 'roboto';
  margin: 8px 0 10px;
}
.blog_items .blog_text p {
  font-size: 13px;
  padding-bottom: 10px;
}
.blog_items .blog_text a {
  color: var(--color1);
  font-size: 13px;
}
.blog_slide {
  position: relative;
}
.blog_slide .left_arrow {
  color: #ddd;
  position: absolute;
  right: 70px;
  top: -50px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #f8f8ef;
  transition: 0.5s;
  cursor: pointer;
  text-align: center;
}
.blog_slide .left_arrow:hover {
  background: #ffb238;
  border-color: #ffb238;
  color: #111;
}
.blog_slide .right_arrow {
  color: #ddd;
  position: absolute;
  right: 10px;
  top: -50px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #f8f8ef;
  transition: 0.5s;
  cursor: pointer;
  text-align: center;
}
.blog_slide .right_arrow:hover {
  background: #ffb238;
  border-color: #ffb238;
  color: #111;
}
/* ==== Blog  = (End) ================================ */
/* ==== Subscribe  = (Start) ================================ */
.subscribe_section {
  background: url(../images/subscribe.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 140px 0;
}
.subscribe_section .heading h4 {
  font-size: 55px;
  text-transform: uppercase;
  text-shadow: 1px 2px 3px #122;
}
.subscribe_box {
  width: 800px;
  margin: 0 auto;
  background: #26180ae1;
  padding: 15px;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 2px 15px #222;
}
.subscribe_box .form-control {
  height: 65px;
  border-radius: 3px;
  box-shadow: none;
  padding-left: 25px;
  color: #777;
  border-radius: 5px;
}
.subscribe_box .btn {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 65px;
  font-family: "Teko", serif;
  font-size: 20px;
  padding: 12px 40px;
}
/* ==== Subscribe = (End) ================================ */
/* ====  Footer = (Start) ================================ */
.footer_section {
  background: #000;
  padding: 50px 0 35px;
  margin-top: 50px;
}
.footer_item {
  padding: 10px;
}
.footer_item .footer_logo {
  height: 180px;
}
.footer_item img {
  padding-bottom: 15px;
   
}
.footer_item h4 {
  font-size: 28px;
  color: var(--white);
  padding: 15px 0;
  text-transform: uppercase;
}
.footer_item p {
  font-size: 14px;
  color: #cacaca;
  padding-bottom: 15px;
}
.footer_item ul li {
  padding-bottom: 5px;
}
.footer_item ul li a {
  font-size: 14px;
  color: #adadad;
}
.footer_item ul li a i {
  padding-right: 4px;
  font-size: 16px;
  color: var(--color1);
}
.footer_item ul li a:hover {
  color: var(--color2);
}
.footer_social a i {
  font-size: 14px;
  color: var(--white);
  margin-right: 2px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: #2a2928;
  border-radius: 50%;
}
.footer_social a i:hover {
  background: var(--color2);
  color: #000;
}
.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_contact_info {
  display: inline-block;
  padding-left: 55px;
  position: relative;
}
.footer_contact_info i {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 20px;
  color: var(--white);
  margin-right: 12px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  background: #a67d37;
  border-radius: 50%;
}
.footer_contact_info i:hover {
  color: #fff;
  background: #966f2c;
}
.footer_contact_info h6 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 4px 0;
  text-transform: uppercase;
}
.footer_contact_info h6:hover {
  color: var(--color1);
}
.footer_contact_info p {
  color: #a3a3a3;
  font-size: 14px;
}
.bottom_section {
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid #333;
}
.bottom_section p {
  color: #ddd;
  padding-top: 6px;
}
.bottom_section p span {
  color: var(--color1);
}
.bottom_section ul {
  float: right;
}
.bottom_section ul li {
  float: left;
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #333;
}
.bottom_section ul li:first-child {
  border: none;
}
.bottom_section ul a {
  color: #ddd;
  font-size: 14px;
}
.bottom_section ul a:hover {
  color: var(--color1);
}
/* ====  Footer = (End) ================================ */
/* ================================================================================================================================================================== */
/* ====  page title = (Start) ================================ */
.title_section {
  background: url(../images/page-title.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  padding: 240px 0 40px;
  margin-top: -130px;
}
.title_section h1 {
  color: #fff;
  padding-bottom: 15px;
  letter-spacing: 1px;
  word-spacing: 4px;
  font-size: 45px;
  text-shadow: 1px 2px 3px #111;
  text-transform: capitalize;
}
.title_section span {
  color: #ddd;
  font-size: 14px;
  text-transform: capitalize;
}
.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_section {
  overflow: hidden;
}
.contact_section .container-fluid {
  padding: 0;
}
.contact_info {
  background: url(../images/page-title.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 100px 100px 60px;
  height: 100%;
}
.contact_info h3 {
  color: var(--white);
  padding-bottom: 20px;
  font-size: 35px;
}
.contact_info_item {
  display: block;
  margin-bottom: 25px;
}
.contact_info_item i {
  float: left;
  height: 50px;
  width: 50px;
  line-height: 52px;
  text-align: center;
  font-size: 22px;
  background: var(--color1);
  color: #000;
  border-radius: 50%;
  margin-right: 12px;
}
.contact_info_item i:hover {
  background: var(--color2);
}
.contact_info_item h6 {
  color: var(--white);
  font-size: 15px;
  font-family: 'roboto';
  font-weight: 700;
  padding: 4px 0;
}
.contact_info_item h6:hover {
  color: #68cfee;
}
.contact_info_item p {
  color: #ddd;
  font-size: 14px;
}
.contact_form {
  padding: 80px 100px 60px 130px;
  background: #1b180b;
  height: 100%;
}
.contact_form h3 {
  font-size: 45px;
  color: var(--white);
  font-weight: 700;
  margin-left: 5px;
}
.contact_form p {
  color: var(--white);
  font-size: 20px;
  padding-bottom: 20px;
  margin-left: 5px;
}
.contact_form form {
  margin: 0px 12px;
}
.contact_form .form-control {
  height: 45px;
  border-radius: 5px;
  border: none;
  box-shadow: none;
  padding: 15px;
  font-size: 15px;
  color: #000;
}
.contact_form .form-control::placeholder {
  color: #666;
}
.contact_form textarea {
  height: 120px !important;
}
.contact_form .col-lg-6,
.contact_form .col-lg-12 {
  padding: 6px;
}
.contact_form .btn {
  padding: 15px 26px;
  border-radius: 30px;
  margin-top: 10px;
}
.contact_form .btn:hover {
  background: #35b2d8;
  color: var(--white);
}
/* ====  Contact = (End) ================================ */
/* ==== Content  = (Start) ================================ */
.content_section h2 {
  color: var(--color1);
  padding-bottom: 15px;
}
.content_section .btn {
  margin-top: 25px;
}
/* ==== Content  = (End) ================================ */
/* ====   = (Start) ================================ */
/* ====   = (End) ================================ */
