 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  background: #5b1a05;
  color: #d99518;
  line-height: 1.6em;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  vertical-align: middle;
}

p {
  font-size: 16px;
  color: #f5dcaf;
}

h1, h2, h3, h4, h5, h6 {
  color: #c0d9d6;
}

section {
  overflow: hidden;
}

.container {
  max-width: 1140px;
  margin: auto;
}

.widget-section {
  display: block;
  padding: 60px 16px;
  position: relative;
}

button {
  border: 0;
  outline: 0;
  font-family: var(--ff);
  letter-spacing: 1px;
}

:root {
  --c1: #ffa500;
  --c2: #560504;
  --c3: #ea1622;
  --c4: #d99518;
  --c5: #c0d9d6;
  --c6: #f5dcaf;
  --c7: #efeb20;
  --c8: #25d366;
  --c9: #910b42;
  --c10: #db2f0b;
  
  --bs: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  --bs2: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.06), 0 8.2px 8.9px -30px rgba(0, 0, 0, 0.07), 0 25px 40px -30px rgba(0, 0, 0, 0.2);
  --ts: all 0.5s ease-in-out;
  --ff: "Roboto", "Font Awesome 6 Pro", "Font Awesome 5 Free", sans-serif;
  --fs: 40px;
  --rg: radial-gradient(#dc1707, #551303);
}

/* ========== Header Section ========== */

/* ---------- Top Bar ---------- */
.topbar { 
  width: 100%; 
  display: block; 
  position: relative; 
  border-bottom: 1px solid #f2f2f2; 
  background: var(--c4); 
  color: #000; 
}

.topbar_row { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  position: relative; 
  z-index: 1; 
}

.topbar_row a i { 
  display: block; 
  width: 36px; 
  height: 36px; 
  line-height: 36px; 
  text-align: center; 
  transition: var(--ts); 
}

.topbar_info { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}

.topbar_info a { 
  display: flex; 
  align-items: center; 
}

.topbar_info a i { 
  color: #000; 
}

.topbar_social { 
  display: flex; 
  justify-content: space-around; 
  padding: 6px 0; 
}

.topbar_social a:hover i { 
  background: #000; 
  color: #fff; 
}

.topbar_social a+a { 
  border-left: 1px solid rgba(0, 0, 0, 0.5); 
}

@media all and (max-width:480px) {
  .topbar:before { 
    width: 60%; 
  }
  
  .topbar_info a p { 
    display: none; 
  }
  
  .topbar_row { 
    flex-direction: row-reverse; 
  }
}

.topbar_row_ { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  grid-gap: 24px; 
  border-top: 1px solid rgba(51, 51, 51, 0.5); 
  padding: 4px 0; 
}

.topbar_col_ { 
  display: block; 
  width: 100%; 
}

.topbar_col_ img { 
  width: 100%; 
  height: auto; 
  border-radius: 4px; 
}

@media all and (max-width:480px) {
  .topbar_row_ { 
    grid-gap: 8px; 
  }
}

/* ---------- NAV BAR ---------- */
.nav_btn { 
  margin-left: 24px; 
}

.act-nav { 
  color: var(--c2); 
}

.header { 
  display: block; 
  width: 100%; 
  position: sticky; 
  top: 0; 
  background: #fff; 
  box-shadow: var(--bs); 
  z-index: 9999; 
}

.nav-container { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  max-width: 1140px; 
  margin: auto; 
  position: relative; 
}

.logo { 
  width: 300px; 
}

.logo img { 
  width: 100%; 
  height: auto; 
}

.navbar { 
  display: block; 
}

.nav_area { 
  display: flex; 
  align-items: center; 
}

.nav_links { 
  display: flex; 
}

.nav_links li { 
  position: relative; 
}

.nav_links li a,
.nav_links li label { 
  display: block; 
  padding: 8px 12px; 
  transition: var(--ts); 
  font-weight: 600; 
}

.sub_link input { 
  display: none; 
}

.sub_link:hover .sub_menu { 
  display: block; 
}

.sub_menu { 
  width: 440px; 
  display: none; 
  position: absolute; 
  top: 100%; 
  left: -160%;
  background: #fff; 
  box-shadow: var(--bs); 
  transition: var(--ts); 
  border-radius: 6px; 
  z-index: 99; 
  overflow: hidden; 
}

.sub_menu_row { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  grid-gap: 10px;
}

.sub_menu ul { 
  width: 100%; 
  display: block; 
}

.sub_menu ul li { 
  display: block; 
}

.sub_menu li a { 
  display: block; 
  padding: 10px 16px; 
  font-size: 15px; 
  font-weight: 500; 
  position: relative; 
}

.sub_menu li a:before { 
  content: "\f324"; 
  font-family: "Font Awesome 6 Pro"; 
  font-weight: 900; 
  font-size: 12px; 
  margin-right: 8px;
}

.sub_menu li a:hover { 
  background: #dfdfdf; 
}

.btn_OC { 
  display: none; 
}

.btn_OC button { 
  display: block; 
  width: 40px; 
  height: 40px; 
  line-height: 40px; 
  text-align: center; 
  font-size: 26px; 
  border: 0; 
  outline: 0; 
  background: var(--c1); 
  color: #000; 
}

/* Request */
.btn_nav { 
  display: block; 
  width: 160px; 
  height: 50px; 
  background: var(--c1); 
  color: #000; 
  position: relative; 
  border-radius: 4px; 
}

.btn_nav:before { 
  content: "Request Quote"; 
  position: absolute; 
  display: block; 
  width: 100%; 
  height: 50px; 
  line-height: 50px; 
  text-align: center; 
  transition: var(--ts); 
}

.btn_nav:hover:before { 
  letter-spacing: 0.3px; 
}

@media all and (max-width:480px) {
  .btn_OC { 
    display: flex; 
    padding: 16px; 
    justify-content: flex-end; 
  }

  .logo { 
    padding-left: 16px; 
  }

  .navbar { 
    position: fixed; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.5); 
    transition: var(--ts); 
  }
  
  .nav_area { 
    display: block; 
    width: 80%; 
    height: 100%; 
    background: #fff; 
    overflow-x: auto; 
  }
  
  .nav_links { 
    display: block; 
  }
  
  .nav_links li a, 
  .nav_links li label { 
    padding: 12px 32px; 
  }
  
  .nav_links li+li { 
    border-top: 1px solid rgba(51, 51, 51, 0.1); 
  }

  .sub_menu { 
    left: 0; 
  }

  .sub_menu_row { 
    grid-template-columns: repeat(1, 1fr); 
  }

  .sub_link:hover .sub_menu { 
    display: none; 
  }
  
  #dropdown:checked ~ .sub_menu { 
    width: 100%; 
    display: block; 
    position: relative; 
    padding: 0; 
    background: transparent; 
    box-shadow: unset; 
  }
}

@media (min-width: 500px) and (max-width: 1200px) {
  .sub_menu { 
    left: -300%; 
  }
}

/* ----- Section Title ----- */
.section-title {
  display: block;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 800px;
  padding: 0 16px;
}

.section-title h2 {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--c1);
  position: relative;
  text-transform: capitalize;
  line-height: 1.2em;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: var(--c4);
  margin-top: 12px;
  line-height: 1.6em;
}

.section-title .style {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.section-title .style span {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.section-title .style span:last-child {
  background: var(--c1);
}

/* ---------- Services Section ---------- */
.service_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service_col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background: var(--c4);
  border-radius: 6px;
  box-shadow: var(--bs);
  overflow: hidden;
  transition: var(--ts);
}

.service_img {
  overflow: hidden;
}

.service_img img {
  width: 100%;
  height: auto;
  transition: var(--ts);
}

.service_txt {
  padding: 16px 16px 0;
}

.service_txt h3 {
  font-size: 28px;
  color: var(--c7);
  text-align: center;
  transition: var(--ts);
}

.service_txt p {
  margin-top: 12px;
  color: #fff;
  text-align: justify;
}

.service_btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  gap: 16px;
}

.service_btns a {
  padding: 10px;
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--ts);
}

.service_btns a:first-child {
  background: var(--c2);
}

.service_btns a:last-child {
  background: var(--c8);
}

.service_btns a i {
  margin-right: 6px;
  font-size: 18px;
}

.service_col:hover .service_img img {
  transform: scale(1.1);
}

.service_col:hover .service_txt h3 {
  color: #000;
}

.service_col:hover .service_btns a {
  filter: brightness(0.9);
}

@media all and (max-width: 480px) {
  .service_row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 500px) and (max-width: 992px) {
  .service_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ---------- INFO Slider ---------- */
.reviews {
  background: #f2f2f2;
}

.Info_Slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.info_slide {
  width: 25%;
  display: inline-block;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

/* Flickity dots styling */
.Info_Slider .flickity-page-dots .dot {
  background: var(--c1);
}

/* Info Box */
.info_box {
  width: 100%;
  padding: 24px 16px;
  position: relative;
  box-shadow: var(--bs);
  background: #fff;
  border-radius: 8px;
  transition: var(--ts);
}

/* Circular Image Block */
.info_box_img {
  width: 80%;
  margin: auto;
  padding: 42px;
  background: var(--c1);
  border-radius: 50%;
  transition: var(--ts);
}

.info_box_img img {
  width: 100%;
  height: auto;
  transition: var(--ts);
}

/* Text Block */
.info_box_txt {
  text-align: center;
}

.info_box_txt h3 {
  font-size: 24px;
  margin-top: 16px;
  color: #000;
}

/* Hover Effects */
.info_box:hover .info_box_img {
  background: var(--c2);
}

.info_box:hover .info_box_img img {
  filter: invert(60%) sepia(61%) saturate(1170%) hue-rotate(359deg) brightness(102%) contrast(105%);
}

/* Responsive */
@media all and (max-width: 768px) {
  .info_slide {
    width: 50%;
    padding: 8px;
  }

  .info_box {
    padding: 16px 8px;
  }

  .info_box_img {
    width: 100%;
    padding: 32px;
  }

  .info_box_txt h3 {
    font-size: 18px;
  }
}

@media all and (max-width: 480px) {
  .info_slide {
    width: 100%;
  }

  .info_box_txt h3 {
    font-size: 16px;
  }
}

/* ---------- About Section ---------- */
.about_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
}

.about_col {
  display: block;
  width: 100%;
}

.about_col:nth-child(3) {
  grid-column: 1 / span 2;
}

.about_col h2 {
  font-size: 36px;
  line-height: 1.4em;
}

.about_col h2 span {
  display: block;
  color: var(--c2);
  font-size: 28px;
}

.about_col p {
  margin-top: 16px;
  text-align: justify;
}

.about_col ul {
  margin: 16px 0 0 16px;
  list-style-type: disc;
}

.about_col ul li + li {
  margin-top: 12px;
}

.about_col img {
  width: 100%;
  height: auto;
}

.about_col a {
  padding: 10px 24px;
  display: inline-block;
  background: var(--c1);
  color: #000;
  border-radius: 6px;
  margin-top: 16px;
}

/* Image Blocks */
.about_img,
.about_img_ {
  display: block;
  width: 100%;
  box-shadow: var(--bs);
}

.about_img img,
.about_img_ img {
  width: 100%;
  height: auto;
}

/* Video Block */
.about_col_video {
  display: block;
  width: 70%;
  margin: auto;
}

.about_col_video video {
  width: 100%;
  height: auto;
}

/* Additional Section - About Blocks in Grid */
.about_col_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-top: 32px;
}

.about_col_col {
  display: block;
  width: 100%;
  transition: var(--ts);
  box-shadow: var(--bs);
}

.about_col_col img {
  width: 100%;
  height: auto;
}

.about_col_col h3 {
  text-align: center;
  padding: 12px 16px;
  font-size: 24px;
  background: var(--c9);
}

.about_col_col:hover {
  transform: scale(0.95);
}

/* Media Queries */
@media all and (max-width: 480px) {
  .about_row {
    grid-template-columns: repeat(1, 1fr);
  }

  .about_col:nth-child(3) {
    grid-column: unset;
  }

  .about_col h2 {
    font-size: 32px;
  }

  .about_col_row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about_img_ {
    width: 100%;
  }
}

/* ---------- Design Banner ---------- */
.design_section {
  background: var(--c1);
}

.design_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.design_col {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  position: relative;
}

.design_col img {
  width: 100%;
  height: auto;
}

.design__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 52px;
}

.design_txt {
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: rotate(-6deg);
  color: #fff;
}

.design_txt span {
  display: block;
  font-size: 40px;
}

.design_txt span strong {
  color: var(--c2);
}

.design_txt h3 {
  font-weight: 500;
  font-size: 46px;
  color: #fff;
}

.design_txt h4 {
  font-size: 62px;
  font-weight: 900;
  color: var(--c2);
}

.design_txt p {
  font-size: 22px;
}

.design_btn {
  display: block;
}

.design_btn a {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--c2);
  color: #fff;
  box-shadow: var(--bs);
  transition: var(--ts);
}

.design_btn a:hover {
  background: #fff;
  color: var(--c2);
}

/* Media Queries */
@media all and (max-width: 480px) {
  .design_row {
    flex-direction: column;
  }

  .design__info {
    padding: 32px 16px;
  }

  .design_txt {
    gap: 10px;
  }

  .design_txt span {
    font-size: 20px;
  }

  .design_txt h3 {
    font-weight: 500;
    font-size: 26px;
    color: #fff;
    line-height: 1.1em;
  }

  .design_txt h4 {
    font-size: 42px;
    font-weight: 900;
    color: var(--c2);
  }

  .design_txt p {
    font-size: 18px;
  }
}

@media (min-width: 500px) and (max-width: 992px) {
  .design__info {
    gap: 30px;
  }

  .design_txt {
    gap: 10px;
  }

  .design_txt span {
    font-size: 20px;
  }

  .design_txt h3 {
    font-weight: 500;
    font-size: 26px;
    color: #fff;
  }

  .design_txt h4 {
    font-size: 36px;
    font-weight: 900;
    color: var(--c2);
  }

  .design_txt p {
    font-size: 18px;
  }
}

/* ---------- Video Gallery ---------- */ 
.video_gallery {
  width: 100%;
  display: block;
  padding: 60px 16px;
  position: relative;
  background: var(--c1);
}

.gallery_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.gallery_col {
  display: block;
  box-shadow: var(--bs);
  border-radius: 12px;
  overflow: hidden;
}

.gallery_col iframe {
  width: 100%;
  height: 315px;
  vertical-align: middle;
}

@media all and (max-width: 480px) {
  .gallery_row {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery_col iframe {
    height: 215px;
  }
}

/* ---------- Speciality ---------- */ 
.speciality_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}

.speciality_col {
  display: block;
  background: #fff;
  box-shadow: var(--bs);
  transition: var(--ts);
  border-bottom: 10px solid var(--c1);
}

.spec_img {
  width: 100%;
  display: block;
  margin: auto;
}

.spec_img img {
  width: 100%;
  height: auto;
}

.spec_txt {
  display: block;
  text-align: center;
  padding: 16px;
}

.spec_txt h3 {
  font-size: 24px;
  color: var(--c10);
  transition: var(--ts);
}

.speciality_col:hover {
  border-bottom: 10px solid var(--c2);
  transform: scale(0.9);
}

.speciality_col:hover .spec_txt h3 {
  color: var(--c2);
}

@media all and (max-width: 480px) {
  .speciality_row {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }

  .spec_txt {
    padding: 8px 16px;
  }

  .spec_txt h3 {
    font-size: 20px;
  }
}

@media (min-width: 500px) and (max-width: 992px) {
  .spec_img {
    width: 120px;
  }
}

/* ---------- About Form ---------- */
.Index_Form_ {
  width: 100%;
  display: block;
  padding: 24px 16px;
  background: var(--c1);
}

.index_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.index_input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.index_input input,
.index_input select,
.index_input textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  background: #f3f5fd;
  border: 1px solid #f3f5fd;
  outline: none;
}

.index_input button {
  padding: 14px 32px;
  border: 0;
  outline: none;
  border-radius: 4px;
  background: var(--c2);
  color: #fff;
}

.box-shadow {
  box-shadow: var(--bs);
}

.counter_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  margin-top: 16px;
}

.counter_row > * {
  transition: var(--ts);
}

.counter_col {
  width: 100%;
  display: block;
  background: #000;
  text-align: center;
  padding: 24px 16px;
}

.counter_col i {
  font-size: 40px;
  color: #fff;
}

.counter_col span {
  display: block;
  padding: 16px 0;
  font-size: 32px;
  font-weight: bold;
  color: var(--c1);
}

.counter_col h3 {
  color: #fff;
  font-size: 16px;
}

.counter_col:hover {
  background: var(--c1);
}

.counter_col:hover i {
  color: #000;
}

.counter_col:hover span {
  color: var(--c2);
}

.counter_col:hover h3 {
  color: #000;
}

@media all and (max-width: 480px) {
  .index_input {
    flex-direction: column;
    align-items: unset;
  }

  .counter_row {
    grid-gap: 10px;
  }

  .counter_col {
    padding: 24px 8px;
  }

  .counter_col i {
    font-size: 30px;
  }
}

/* ---------- Fixed Btns ---------- */
.fixed_btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 16px 60px;
  position: fixed;
  bottom: 40px;
  z-index: 99;
}

.fixed_btn {
  display: block;
  width: 62px;
  position: relative;
}

.fixed_btn img {
  width: 100%;
  height: auto;
}

.zoom-in-out {
  animation: zoom-in-out 1s ease infinite;
}

@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media all and (max-width: 480px) {
  .fixed_btns {
    padding: 8px 24px;
    bottom: 24px;
  }

  .fixed_btn {
    width: 52px;
  }
}

/* ========== ========== ===== Page CSS Section ===== ========== ========== */

/* ---------- Page Banner ---------- */
.pagebanner { 
  background: var(--c2); 
}

.pagebanner_row { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 16px; 
}

.pagebanner_col { 
  display: block; 
  width: 100%; 
}

.pagebanner_col h2 { 
  color: var(--c1); 
  font-size: 42px; 
}

.pagebanner_col ul { 
  display: inline-flex; 
  gap: 8px; 
  font-weight: 600; 
  font-size: 18px; 
  color: #fff; 
  margin-top: 16px; 
}

.pagebanner_img { 
  display: block; 
  width: 60%; 
  margin-left: auto; 
}

.pagebanner_img img { 
  width: 100%; 
  height: auto; 
  object-fit: cover;
  animation: spin 10s linear infinite; 
}

@media all and (max-width:480px) {
  .pagebanner_row { 
    flex-direction: column; 
    justify-content: center; 
    gap: 24px; 
    padding: 32px 16px; 
  }
  
  .pagebanner_col { 
    text-align: center; 
  }
  
  .pagebanner_col h2 { 
    font-size: 32px; 
  }
  
  .pagebanner_img { 
    margin: auto; 
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .pagebanner_col h2 {
    font-size: 36px;
  }
}

@keyframes spin { 
  from {  
    transform: rotate(0deg); 
  }
  to { 
    transform: rotate(360deg); 
  }
}

/* ========== ===== Service Section ===== ===== */
.service_row_ { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  grid-gap: 24px; 
}

.service_col_ { 
  display: block; 
  width: 100%; 
}

.service_col_:last-child { 
  grid-column: 1 / span 2; 
}

.service_col_ h2 { 
  font-size: 24px; 
  line-height: 1.4em; 
}

.service_col_ h2 span { 
  display: block; 
  color: #d9d510; 
  font-size: 28px; 
}

.service_col_ p { 
  margin-top: 16px; 
  text-align: justify;
  color: #efefef;
}

.service_col_ ul { 
  margin: 16px 0 0 16px; 
  list-style-type: disc; 
}

.service_col_ ul li+li { 
  margin-top: 12px; 
}

.service_col_ img { 
  width: 100%; 
  height: auto; 
}

@media all and (max-width:480px) {
  .service_row_ { 
    grid-template-columns: repeat(1, 1fr); 
  }

  .service_col_:last-child { 
    grid-column: unset; 
  }

  .service_col_ h2 { 
    font-size: 20px;
  }

  .service_col_ p { 
    margin-top: 12px;
  }

  .service_col_ ul {
    margin-left: 8px;
  }
}

/* ---------- ---------- ----- Footer ----- ---------- ---------- */
.footer { 
  width: 100%; 
  display: block; 
  position: relative; 
  background: #000; 
}

.upper_section { 
  display: block; 
  padding: 80px 16px; 
  position: relative; 
  color: #fff; 
}

.upper_section:before { 
  content: ""; 
  position: absolute; 
  top: 0; 
  left: 0; 
  opacity: 1;
  display: block; 
  width: 100%; 
  height: 100%; 
  background-image: url("assets/images/footer_bg.png");
  background-size: cover;
}

.footer_row { 
  max-width: 1140px; 
  margin: auto; 
  display: grid; 
  grid-template-columns: 28% 40% 30%; 
  grid-gap: 1%; 
  z-index: 1; 
  position: relative; 
}

.footer_col { 
  width: 100%; 
  display: block; 
  padding: 0 16px; 
}

.footer_col img { 
  width: 260px; 
  height: auto; 
}

.footer_col p { 
  margin-top: 16px; 
}

.footer_social { 
  display: inline-flex; 
  gap: 8px; 
  margin-top: 16px; 
}

.footer_social a { 
  display: block; 
  width: 38px; 
  height: 38px; 
  line-height: 38px; 
  text-align: center;
  background: #333; 
  color: #fff; 
  border-radius: 50%; 
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 8px; 
}

.footer_social a:hover { 
  margin-top: 0; 
  margin-bottom: 8px; 
  background: var(--c2);
}

.footer_title { 
  display: block; 
  position: relative; 
  padding-bottom: 16px;
  margin-bottom: 24px; 
  font-size: 22px; 
  font-weight: 800; 
  z-index: 3; 
  color: var(--c1); 
}

.footer_title:before,
.footer_title:after { 
  content: ""; 
  display: inline-block; 
  border-radius: 50px; 
  position: absolute; 
}

.footer_title:after { 
  width: 40px; 
  height: 3px; 
  background: var(--c1); 
  z-index: 1; 
  bottom: 0; 
  left: 0; 
}

.footer_title:before { 
  width: 5px; 
  height: 5px; 
  background: #fff; 
  z-index: 2; 
  bottom: -1px; 
  left: 30px; 
}

.footer_link { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  grid-gap: 12px; 
}

.footer_link li { 
  transition: var(--ts); 
}

.footer_link li a { 
  display: block; 
  position: relative; 
}

.footer_link li a:before { 
  content: "\f061"; 
  font-family: "Font Awesome 6 Pro"; 
  font-weight: 900; 
  color: var(--c1); 
  font-size: 13px; 
  margin-right: 8px;
}

.footer_link li:hover { 
  margin-left: 16px; 
  color: var(--c1); 
}

.footer_anch+.footer_anch { 
  margin-top: 16px; 
}

.footer_anch { 
  display: block; 
}

.footer_anch ul { 
  display: flex; 
}

.footer_anch ul li { 
  display: block; 
  margin-top: 0; 
}

.footer_anch ul li:first-child { 
  width: 40px; 
}

.footer_anch ul li:last-child { 
  width: 80%; 
}

.footer_anch ul li i { 
  font-size: 25px; 
  padding-top: 5px; 
  color: var(--c1); 
}

.footer_anch ul li h4 { 
  font-size: 14px; 
  color: var(--c1); 
  font-family: var(--ff); 
  letter-spacing: 1px; 
}

.footer_anch ul li p { 
  margin-top: 8px; 
  font-size: 16px; 
}

.footer_anch ul li a { 
  display: block; 
  margin-top: 8px; 
}

.footer_get+.footer_get { 
  margin-top: 16px; 
}

.footer_get { 
  display: block; 
}

.footer_get h4 { 
  letter-spacing: 1px; 
  margin-bottom: 4px; 
  color: #fff; 
}

.footer_get a { 
  display: block; 
  padding-left: 16px; 
}

.bottom_section { 
  width: 100%; 
  display: block; 
  position: relative; 
  background: var(--c1); 
}

.bottom_row { 
  max-width: 1140px; 
  margin: auto; 
  display: block; 
  text-align: center; 
}

.bottom_row p { 
  padding: 24px 16px; 
  color: #000; 
}

.bottom_row p a { 
  color: var(--c3); 
  font-weight: 900; 
  font-size: 16px; 
}

@media all and (max-width:480px) {
  .upper_section { }
  
  .footer_row { 
    grid-template-columns: repeat(1, 1fr); 
    grid-gap: 32px; 
  }
  
  .footer_col { 
    padding: 0; 
  }
  
  .footer_col:nth-child(2) { 
    padding-left: 0; 
  }
  
  .footer_col:nth-child(3) { 
    padding-left: 0; 
  }
  
  .fc3 { 
    grid-column: unset; 
  }

  .footer_link { 
    grid-template-columns: repeat(1, 1fr); 
  }
}

@media (min-width: 500px) and (max-width: 992px) {
  .footer_row { 
    grid-template-columns: repeat(2, 1fr); 
    grid-gap: 24px; 
  }
  
  .footer_col { 
    padding: 0; 
  }
  
  .footer_col:nth-child(2) { 
    padding-left: 0; 
  }
  
  .footer_col:nth-child(3) { 
    padding-left: 0; 
  }
  
  .fc3 { 
    grid-column: 1 / span 2; 
  }

  .footer_link { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

.pcolor p {
  color: #000;
}