:root {
  /* 
  --color-main-100: #f7b518;
  --color-main-200: #e1ac31;
  --color-main-300: #e4b342; 
  
  --color-main-100-transparent: #f7b518e3;
  --color-main-200-transparent: #f7b518cc;
  --color-main-300-transparent: #f7b518bf; 
  */

  --color-main-100: #e60209;
  --color-main-200: #c9171a;
  --color-main-300: #c2272a;

  --color-main-100-transparent: #e60209e3;
  --color-main-200-transparent: #e60209cf;
  --color-main-300-transparent: #e60209bf;

  --color-dark-100: #1c1c1d;
  --color-dark-200: #252728;
  --color-dark-300: #2a2a2b;

  --color-dark-transparent-100: #1c1c1d;
  --color-dark-transparent-200: #0b0b0bdb;
  --color-dark-transparent-300: #00000080;

  --color-white-100: #fff;
  --color-white-200: #f1f1f1;
  --color-white-300: #fafafb;
  --color-white-400: #f5f5f5;

  --color-black-100: #000;

  --color-gray-100: #1b1b1b;
  --color-gray-200: #2d3b44;
  --color-gray-300: #696974;
  --color-gray-400: #92929d;
  --color-gray-500: #afadad;
  --color-gray-600: #b0b0b0;
  --color-gray-700: #e2e2e2;
  --color-gray-800: #c8ccd4;

  --color-red-100: #fee2e2;
  --color-red-200: #fecaca;
  --color-red-300: #fca5a5;
  --color-red-400: #f87171;
  --color-red-500: #ef4444;
  --color-red-600: #dc2626;
  --color-red-700: #b91c1c;
  --color-red-800: #991b1b;
  --color-red-900: #7f1d1d;

  --color-green-100: #d1fae5;
  --color-green-200: #a7f3d0;
  --color-green-300: #6ee7b7;
  --color-green-400: #34d399;
  --color-green-500: #10b981;
  --color-green-600: #059669;
  --color-green-700: #047857;
  --color-green-800: #065f46;
  --color-green-900: #064e3b;

  --color-yellow-100: #fefcbf;
  --color-yellow-200: #fde68a;
  --color-yellow-300: #fcd34d;
  --color-yellow-400: #fbbf24;
  --color-yellow-500: #f59e0b;
  --color-yellow-600: #d97706;
  --color-yellow-700: #b45309;
  --color-yellow-800: #92400e;
  --color-yellow-900: #78350f;

  --color-orange-100: #ffedd5;
  --color-orange-200: #fdba74;
  --color-orange-300: #fb923c;
  --color-orange-400: #f97316;
  --color-orange-500: #ea580c;
  --color-orange-600: #c2410c;
  --color-orange-700: #9a3412;
  --color-orange-800: #7c2d12;
  --color-orange-900: #651e1e;

  --border-radius-100: 2px;
  --border-radius-200: 5px;
  --border-radius-300: 10px;
  --border-radius-400: 15px;
  --border-radius-500: 20px;
  --border-radius-600: 25px;

  --box-shadow-100: 0px 0px 10px var(--color-gray-100);
  --box-shadow-200: 0px 0px 10px var(--color-gray-200);
  --box-shadow-300: 0px 0px 10px var(--color-gray-300);
  --box-shadow-400: 0px 0px 10px var(--color-gray-400);
  --box-shadow-500: 0px 0px 10px #dcdcdc;
}

/* start public styles */

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
p {
  color: var(--color-gray-300);
}
form .form-label {
  margin-bottom: 0;
  font-weight: 700;
  text-transform: capitalize;
}
form input {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid var(--color-gray-700) !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
}
form input.form-control:focus {
  /* border-bottom-color: var(--color-main-100) !important; */
  border-bottom-color: var(--color-dark-300) !important;
}
form textarea.form-control {
  margin-top: 10px;
  background-color: transparent !important;
  border: 2px solid var(--color-gray-700) !important;
}
form textarea.form-control:focus {
  /* border: 2px solid var(--color-main-100) !important; */
  border: 2px solid var(--color-dark-300) !important;
}
form .form-control:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset;
}
form .bg-danger,
form .form_response_message {
  color: var(--color-white-100);
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
}
.alert_fixed {
  position: fixed;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  /* display: none; */
}
.alert_fixed .alert_message {
  min-width: 270px;
  max-width: 370px;
  padding: 10px 15px;
  text-align: center;
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
  box-shadow: var(--box-shadow-300);
}
.section_padding {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .section_padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.text_shadow_main {
  color: var(--color-main-100);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.text_shadow_white {
  color: var(--color-white-100);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.text_shadow_black {
  color: var(--color-black-100);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.btn_main {
  padding: 10px;
  font-weight: 600;
  text-transform: capitalize;
  background-color: var(--color-main-100);
  color: var(--color-white-100);
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
  border: 0;
}
.btn_main:hover,
.btn_main:focus {
  background-color: var(--color-main-200);
}
.bg_main {
  text-transform: capitalize;
  background-color: var(--color-main-100);
  color: var(--color-white-100);
}
.bg_main:hover,
.bg_main:focus {
  background-color: var(--color-main-200);
  color: var(--color-white-100);
}
.section_heading_part {
  margin-bottom: 20px;
  -webkit-border-radius: var(--border-radius-200);
  border-radius: var(--border-radius-200);
}
.section_heading_part .section_title {
  position: relative;
  padding: 0;
  margin: auto;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: var(--color-black-100);
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 768px) {
  .section_heading_part .section_title {
    font-size: 40px;
  }
}
.section_heading_part .section_title:before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -14px;
  background-color: var(--color-main-100);
  margin-top: 20px;
}
.section_heading_part .section_title:after {
  content: "";
  width: 100%;
  max-width: 150px;
  height: 1px;
  display: block;
  position: relative;
  margin-top: 7px;
  margin-top: 10px;
  background-color: var(--color-main-100);
}
[dir="ltr"] .section_heading_part .section_title:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* start section head */
.section_page_header {
  height: 80vh;
  background: -o-linear-gradient(bottom, rgb(35 35 35), rgba(255, 255, 255, 0) 50%),
    url(https://images.pexels.com/photos/3958958/pexels-photo-3958958.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgb(35 35 35)),
      color-stop(50%, rgba(255, 255, 255, 0))
    ),
    url(https://images.pexels.com/photos/3958958/pexels-photo-3958958.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
  background: linear-gradient(to top, rgb(35 35 35), rgba(255, 255, 255, 0) 50%),
    url(https://images.pexels.com/photos/3958958/pexels-photo-3958958.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);

  background-position: center 90px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section_page_header .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section_page_header .container .title {
  /* font-size: 50px;
  text-transform: capitalize;
  color: var(--color-main-100); */
  font-size: 35px;
  text-transform: capitalize;
  color: var(--color-main-100);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .section_page_header .container .title {
    font-size: 70px;
  }
}
.section_page_header .container p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white-100);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 992px) {
  .section_page_header .container p {
    font-size: 30px;
  }
}
/* // end section head */

/* // end public styles */

/* start section top navbar */
.section_top_navbar {
  background-color: var(--color-main-100);
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .section_top_navbar .container_top_navbar {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .section_top_navbar .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.section_top_navbar .navbar-nav .company_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .section_top_navbar .navbar-nav .company_info {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .section_top_navbar .navbar-nav .more_links {
    gap: 20px;
  }
}
.section_top_navbar .navbar-nav .nav-link {
  text-transform: capitalize;
  color: var(--color-white-100);
  font-weight: 600;
}
/* // end section top navbar */

/* start navbar */
nav.navbar {
  position: sticky;
  z-index: 20;
  top: 0;
  background-color: var(--color-black-100);
  border-bottom: 2px solid var(--color-main-100);
}
@media screen and (max-width: 992px) {
  nav.navbar .container_navbar {
    max-width: 100%;
  }
}
html[dir="ltr"] nav.navbar .container_navbar {
  padding-left: 0;
}
html[dir="rtl"] nav.navbar .container_navbar {
  padding-right: 0;
}
nav.navbar .navbar-brand {
  margin: 0;
  padding-left: 5px;
}
@media screen and (min-width: 992px) {
  nav.navbar .navbar-brand {
    padding-left: 0;
  }
}
nav.navbar .navbar-brand img {
  width: 70px;
  height: 70px;
}
@media screen and (min-width: 768px) {
  nav.navbar .navbar-brand img {
    /* width: 100px;
    height: 100px; */
    width: 110px;
    height: 90px;
  }
}
nav.navbar .navbar-toggler {
  border: 0;
  padding: 0;
}
nav.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
nav.navbar .navbar-toggler .icon_open_navbar {
  color: var(--color-white-100);
}
nav.navbar .icon_close_navbar {
  display: none;
}
nav.navbar .navbar-collapse ul.navbar-nav {
  margin-left: auto;
}
nav.navbar .navbar-collapse ul.navbar-nav .nav-link {
  font-size: 18px;
  color: var(--color-white-100);
  text-transform: capitalize;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  nav.navbar .navbar-collapse ul.navbar-nav .nav-link {
    font-size: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
nav.navbar .navbar-collapse ul.navbar-nav .nav-link:hover,
nav.navbar .navbar-collapse ul.navbar-nav .nav-link:focus {
  color: var(--color-main-100);
}
nav.navbar .navbar-collapse ul.navbar-nav .nav-link.active {
  color: var(--color-main-100);
}

@media screen and (max-width: 767px) {
  nav.navbar .collapse:not(.show) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  html[dir="ltr"] nav.navbar .navbar-collapse {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  html[dir="rtl"] nav.navbar .navbar-collapse {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  nav.navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--color-dark-transparent-200);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
  nav.navbar .navbar-collapse.show {
    -webkit-transform: translateX(0%) !important;
    -ms-transform: translateX(0%) !important;
    transform: translateX(0%) !important;
  }
  nav.navbar .navbar-collapse ul.navbar-nav {
    margin: 0 !important;
  }
  nav.navbar .navbar-collapse ul.navbar-nav .nav-link {
    font-weight: bold;
    opacity: 0;
  }
  nav.navbar .icon_close_navbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 79px;
    font-size: 20px;
    color: var(--color-white-100);
    cursor: pointer;
  }

  html[dir="ltr"] nav.navbar .icon_close_navbar {
    right: 30px;
  }
  html[dir="rtl"] nav.navbar .icon_close_navbar {
    left: 30px;
  }
}

@media screen and (min-width: 576px) {
  html[dir="ltr"] nav.navbar .icon_close_navbar {
    right: 40px;
  }
  html[dir="rtl"] nav.navbar .icon_close_navbar {
    left: 40px;
  }
}

@-webkit-keyframes navLinkFadeLTR {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes navLinkFadeLTR {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes navLinkFadeRTL {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes navLinkFadeRTL {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* // end navbar */

/* start list social media */
.list_social_media .contact {
  position: fixed;
  bottom: 20px;
  z-index: 2;
}

[dir="ltr"] .list_social_media .contact {
  right: 12px;
}
@media screen and (min-width: 992px) {
  [dir="ltr"] .list_social_media .contact {
    right: 20px;
  }
}

[dir="rtl"] .list_social_media .contact {
  right: 12px;
}
@media screen and (min-width: 992px) {
  [dir="rtl"] .list_social_media .contact {
    right: 20px;
  }
}

.list_social_media .social_media_list {
  margin: 0;
  padding: 0;
}

.list_social_media .social_media_item {
  position: relative;
  list-style: none;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  display: none;
}
.list_social_media .social_media_item a {
  text-decoration: none;
}

.list_social_media .phone-number-link {
  background-color: #1b763d;
}
.list_social_media .whatsapp-link {
  background-color: #25d366;
}

.list_social_media .telegram-link {
  background-color: #24a1de;
}
.list_social_media .social_media_item_phone_number .sub_info_phone_number {
  position: absolute;
  /* left: -110px; */
  top: 10px;
  background: var(--color-white-100);
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: var(--box-shadow-300);
}
.list_social_media .social_media_item_phone_number .sub_info_phone_number a {
  color: var(--color-black-100);
}
.list_social_media .social_media_item_form form {
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  right: 10px;
  bottom: -15px;
  width: 90vw;
  background: var(--color-white-100);
  box-shadow: var(--box-shadow-300);
}
@media screen and (min-width: 400px) {
  .list_social_media .social_media_item_form form {
    width: 350px;
  }
}
@media screen and (min-width: 576px) {
  .list_social_media .social_media_item_form form {
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    right: 60px;
    bottom: -60px;
    background: var(--color-white-100);
    box-shadow: var(--box-shadow-300);
  }
}
.list_social_media .social_media_item_form form .btn_send {
  width: 100%;
  color: var(--color-white-100);
  background-color: var(--color-main-100);
}
.list_social_media .social_media_item_phone_number .sub_info_phone_number::after,
.list_social_media .social_media_item_form form::after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-left-color: var(--color-white-100);
  display: none;
}
@media screen and (min-width: 576px) {
  .list_social_media .social_media_item_phone_number .sub_info_phone_number::after,
  .list_social_media .social_media_item_form form::after {
    display: block;
  }
}
.list_social_media .social_media_item_phone_number .sub_info_phone_number::after {
  top: 8px;
  right: -19px;
}
.list_social_media .social_media_item_form form::after {
  bottom: 78px;
  right: -19px;
}
.list_social_media .social_media_item .sub_info {
  display: none;
  right: 10px;
}
@media screen and (max-width: 575px) {
  .list_social_media .social_media_item .sub_info.sub_info_phone_number {
    right: 55px;
  }
}
@media screen and (min-width: 576px) {
  .list_social_media .social_media_item .sub_info {
    right: 68px !important;
  }
}
@media screen and (min-width: 768px) {
  .list_social_media .social_media_item .sub_info {
    right: 68px !important;
  }
}
@media screen and (min-width: 992px) {
  .list_social_media .social_media_item .sub_info {
    right: 74px !important;
  }
}
.list_social_media .social_media_item .sub_info.show {
  display: block;
}
.list_social_media .btn_toggle_social_media_list {
  position: relative;
  overflow: hidden;
  bottom: -8px;
  background-color: var(--color-red-600);
  border: 0;
  cursor: pointer;
  --offset: 3px;
}

.list_social_media .btn_toggle_social_media_list::before {
  content: "";
  background: conic-gradient(transparent 170deg, var(--color-red-300), var(--color-red-300));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 100%;
  animation: rotate 2s linear infinite;
}
.list_social_media .btn_toggle_social_media_list::after {
  content: "";
  background: inherit;
  border-radius: inherit;
  position: absolute;
  inset: var(--offset);
  height: calc(100% - 2 * var(--offset));
  width: calc(100% - 2 * var(--offset));
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
  }
  to {
    transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
  }
}

.list_social_media .btn_toggle_social_media_list i,
.list_social_media .btn_toggle_social_media_list img {
  position: relative;
  z-index: 2;
}
.list_social_media .btn_toggle_social_media_list img {
  width: 38px;
  height: 38px;
}

.list_social_media .circle {
  text-decoration: none;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: 10px;
  -webkit-box-shadow: var(--box-shadow-300);
  box-shadow: var(--box-shadow-300);
}

@media screen and (min-width: 768px) {
  .list_social_media .circle {
    width: 55px;
    height: 55px;
  }
}

@media screen and (min-width: 992px) {
  .list_social_media .circle {
    width: 60px;
    height: 60px;
  }
}

.list_social_media .circle i {
  font-size: 14px !important;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .list_social_media .circle i {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 992px) {
  .list_social_media .circle i {
    font-size: 20px !important;
  }
}
.list_social_media .social_media_item.show {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* // end list social media */

/* start footer */
footer.footer {
  padding-bottom: 0;
  background-color: var(--color-dark-100);
  border-top: 2px solid var(--color-main-100);
}
footer.footer hr {
  margin-top: 20px;
  margin-bottom: 0;
  height: 3px;
  background-color: var(--color-main-100);
  opacity: 1;
}
footer.footer li {
  margin-bottom: 15px;
}
footer.footer li,
footer.footer li a {
  color: var(--color-gray-800);
}

/* footer top part */
footer.footer .container_footer_top_part {
  margin-bottom: 30px;
}
footer.footer .container_footer_top_part .col_logo,
footer.footer .container_footer_top_part .col_call_us,
footer.footer .container_footer_top_part .col_social_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  footer.footer .container_footer_top_part .col_logo {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  footer.footer .container_footer_top_part .col_social_links {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
footer.footer .container_footer_top_part .col_logo img {
  width: 150px;
  height: 150px;
}
@media screen and (min-width: 768px) {
  footer.footer .container_footer_top_part .col_logo img {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}
@media screen and (min-width: 992px) {
  footer.footer .container_footer_top_part .col_logo img {
    width: 130px;
    height: 110px;
    -webkit-transform: translateX(-12px);
    -ms-transform: translateX(-12px);
    transform: translateX(-12px);
  }
}
footer.footer .container_footer_top_part .col_call_us {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  footer.footer .container_footer_top_part .col_call_us {
    margin-bottom: 0;
  }
}
footer.footer .container_footer_top_part .col_call_us,
footer.footer .container_footer_top_part .col_call_us .call_us {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
footer.footer .container_footer_top_part .col_call_us .call_us {
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
footer.footer .container_footer_top_part .col_call_us .call_us i {
  background-color: var(--color-red-600);
  padding: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer.footer .container_footer_top_part .col_call_us .call_us h5,
footer.footer .container_footer_top_part .col_call_us .call_us a {
  color: var(--color-white-100);
}
footer.footer .container_footer_top_part .col_social_links {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
footer.footer .container_footer_top_part .col_social_links .social_media_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 400px) {
  footer.footer .container_footer_top_part .col_social_links .social_media_links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  footer.footer .container_footer_top_part .col_social_links .social_media_links {
    gap: 20px;
  }
}
footer.footer .container_footer_top_part .col_social_links .social_media_links a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color-dark-300);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
footer.footer .container_footer_top_part .col_social_links .social_media_links a:hover i {
  /* color: var(--color-main-100); */
  opacity: 0.7;
}
footer.footer .container_footer_top_part i {
  color: var(--color-white-100);
  font-size: 22px;
}
footer.footer .container_footer_top_part .col_social_links i {
  color: var(--color-white-100);
}
/* footer bottom part */
footer.footer .container_footer_bottom_part {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../assets/images/footer_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
footer.footer .container_footer_bottom_part .col_contact_us,
footer.footer .container_footer_bottom_part .col_links,
footer.footer .container_footer_bottom_part .col_our_services {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  footer.footer .container_footer_bottom_part .col_contact_us {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  footer.footer .container_footer_bottom_part .col_our_services {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

footer.footer .container_footer_bottom_part .col_contact_us ul,
footer.footer .container_footer_bottom_part .col_links ul,
footer.footer .container_footer_bottom_part .col_our_services ul {
  width: 180px;
}
@media screen and (min-width: 992px) {
  footer.footer .container_footer_bottom_part .col_links ul {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
}
footer.footer .container_footer_bottom_part .title {
  color: var(--color-white-100);
  text-transform: capitalize;
}
footer.footer .container_footer_bottom_part .col_contact_us li,
footer.footer .container_footer_bottom_part .col_links li,
footer.footer .container_footer_bottom_part .col_our_services li {
  text-transform: capitalize;
}

footer.footer .container_footer_bottom_part i {
  color: var(--color-main-100);
}
@media screen and (min-width: 576px) {
  footer.footer .container_footer_bottom_part .col_our_services li {
    white-space: nowrap;
  }
}
@media screen and (min-width: 992px) {
  footer.footer .container_footer_bottom_part .col_our_services li {
    white-space: wrap;
  }
}
footer.footer .container_footer_bottom_part .link_email {
  text-transform: none;
}
/* // end footer */
