@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oleo+Script&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: middle;
  height: auto;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #333;
  display: inline-block;
}

.section_padding {
  padding: 80px 0;
}

.hidden {
  display: none;
}

.overlay {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
.overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #333;
  opacity: 0.8;
  z-index: -1;
}

.btn {
  outline: none;
  border: none;
  display: inline-block;
  color: #333;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  text-transform: capitalize;
  transition: 0.3s;
}
.btn.btn_fill {
  background-color: #ff3636;
  color: #fff;
}
.btn.btn_fill:hover {
  background-color: #690000;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.align-content-stretch {
  align-content: stretch;
}

.align-content-center {
  align-content: center;
}

.align-content-start {
  align-content: start;
}

.align-content-end {
  align-content: end;
}

.align-content-space-between {
  align-content: space-between;
}

.align-content-space-around {
  align-content: space-around;
}

.align-content-space-evenly {
  align-content: space-evenly;
}

.align-items-stretch {
  align-items: stretch;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: start;
}

.align-items-end {
  align-items: end;
}

.align-self-stretch {
  align-self: stretch;
}

.align-self-center {
  align-self: center;
}

.align-self-start {
  align-self: start;
}

.align-self-end {
  align-self: end;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #333;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 20px;
}

p {
  font-size: 16px;
}

small {
  font-size: 12px;
}

/* =======================================
common
========================================== */
.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*=col-] {
  width: 100%;
  padding: 15px;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

/* =================================================
media for specific width and devices
==================================================== */
/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    width: 100%;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .justify-sm-center {
    justify-content: center;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 740px;
    width: 100%;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .justify-md-end {
    justify-content: flex-end;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    width: 100%;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    width: 100%;
  }
  .col-xl-1 {
    width: 8.3333333333%;
  }
  .col-xl-2 {
    width: 16.6666666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.3333333333%;
  }
  .col-xl-5 {
    width: 41.6666666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.3333333333%;
  }
  .col-xl-8 {
    width: 66.6666666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.3333333333%;
  }
  .col-xl-11 {
    width: 91.6666666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}
/* Extra extra large devices (extra large laptops and desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    width: 100%;
  }
  .col-xxl-1 {
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-4 {
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-7 {
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-10 {
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    width: 100%;
  }
}
/* Responsive Mixin */
/* 
@mixin respond-to($size) {
  @if $size == phone {
    @media only screen and (max-width: 576px) {
      @content;
    }
  }
  @if $size == tab {
    @media only screen and (max-width: 768px) {
      @content;
    }
  }
  @if $size == laptop {
    @media only screen and (max-width: 992px) {
      @content;
    }
  }
  @if $size == desktop {
    @media only screen and (max-width: 1200px) {
      @content;
    }
  }
  @if $size == big-desktop {
    @media only screen and (max-width: 1400px) {
      @content;
    }
  }
}
*/
.section_title {
  text-align: center;
  margin-bottom: 50px;
}
.section_title span {
  display: block;
  font-family: Oleo Script;
  font-size: 25px;
  text-transform: lowercase;
}
.section_title h2 {
  font-size: 44px;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
}
@media (max-width: 576px) {
  .section_title h2 {
    font-size: 36px;
  }
}
.section_title h2::before, .section_title h2::after {
  height: 2px;
  background: #ff3636;
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}
.section_title h2::before {
  width: 100px;
  bottom: 0px;
}
.section_title h2::after {
  width: 60px;
  bottom: -10px;
}

.sub_title h3 {
  text-transform: capitalize;
  font-size: 25px;
  position: relative;
  padding-bottom: 5px;
}
.sub_title h3::before, .sub_title h3::after {
  content: "";
  height: 2px;
  background-color: #ff3636;
  position: absolute;
  left: 0;
}
.sub_title h3::before {
  width: 60px;
  bottom: 0;
}
.sub_title h3::after {
  width: 40px;
  bottom: -5px;
}

.breadcrumb_area {
  color: #fff;
}
.breadcrumb_area .breadcrumb_content {
  padding: 140px 0 40px;
}
.breadcrumb_area .breadcrumb_content h2 {
  text-transform: capitalize;
  font-size: 40px;
}
.breadcrumb_area .breadcrumb_content ul {
  display: flex;
  gap: 15px;
}
.breadcrumb_area .breadcrumb_content li {
  text-transform: capitalize;
}
.breadcrumb_area .breadcrumb_content a {
  color: #fff;
}
.breadcrumb_area .breadcrumb_content a:hover {
  color: #ff3636;
}

.header_area {
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
@media (max-width: 768px) {
  .header_area {
    position: static;
    padding: 0;
    height: 0;
  }
}
@media (max-width: 768px) {
  .header_area .logo_box {
    position: absolute;
    top: 13px;
    width: 140px;
  }
}
@media (max-width: 576px) {
  .header_area .menu {
    display: none;
  }
}
.header_area .menu li {
  margin-left: 15px;
}
.header_area .menu a {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.header_area .menu a:hover {
  color: #ff3636;
}

.slicknav_menu {
  display: none;
}
@media (max-width: 768px) {
  .slicknav_menu {
    display: block;
  }
}
.slicknav_menu a {
  text-transform: capitalize;
}

.banner_area .single_banner {
  height: 100vh;
}
@media (max-width: 576px) {
  .banner_area .single_banner {
    height: 60vh;
  }
}
.banner_area .single_banner .banner_content {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
@media (max-width: 576px) {
  .banner_area .single_banner .banner_content {
    height: 60vh;
  }
}
.banner_area .single_banner .banner_content span {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .banner_area .single_banner .banner_content span {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .banner_area .single_banner .banner_content span {
    font-size: 18px;
  }
}
.banner_area .single_banner .banner_content h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .banner_area .single_banner .banner_content h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .banner_area .single_banner .banner_content h1 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .banner_area .single_banner .banner_content h1 {
    font-size: 22px;
  }
}
.banner_area .single_banner .banner_content .btn_box {
  margin-top: 50px;
}
.banner_area .single_banner .banner_content .btn_box a {
  margin: 0 10px;
}
@media (max-width: 576px) {
  .banner_area .single_banner .banner_content .btn_box a {
    padding: 4px 8px;
  }
}
.banner_area .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  outline: none;
  border: none;
  z-index: 2;
}
.banner_area .slick-arrow i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: orangered;
  font-size: 20px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.banner_area .slick-arrow i:hover {
  background-color: #360000;
}
.banner_area .slick-arrow.slick-prev {
  left: 50px;
}
.banner_area .slick-arrow.slick-next {
  right: 50px;
}

.about_area .about_content p {
  margin: 0 0 25px;
}
.about_area .about_gallery {
  position: relative;
}
.about_area .about_gallery img {
  border: 1px solid lightgray;
}
.about_area .about_gallery img:nth-child(1) {
  width: 80%;
}
.about_area .about_gallery img:nth-child(2) {
  position: absolute;
  width: 83%;
  top: 0;
  left: 0;
  transform: translate(20%, 40%);
}
.about_area .about_page_image img {
  border: 1px solid #eee;
  padding: 5px;
}
.about_area .about_page_content p {
  margin: 20px 0;
}

.menu_area {
  background-color: rgba(223, 217, 217, 0.5);
}
.menu_area .single_menu {
  background: white;
  padding: 15px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .menu_area .single_menu {
    flex-direction: column;
  }
}
.menu_area .single_menu:hover img {
  border-radius: 50%;
}
.menu_area .single_menu img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .menu_area .single_menu img {
    width: 100%;
    height: 200px;
  }
}
.menu_area .single_menu .menu_content h4 {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed lightgray;
  padding-bottom: 10px;
}
.menu_area .single_menu .menu_content h4 span {
  font-style: italic;
  color: orangered;
}
.menu_area .single_menu .menu_content p {
  margin-top: 10px;
}

.poster_area {
  color: #fff;
}
.poster_area .section_title {
  margin-bottom: 0;
}
.poster_area .section_title h2 {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .poster_area .section_title h2 {
    font-size: 30px;
  }
}
.poster_area .section_title h2 span {
  display: inline-block;
  font-size: 50px;
  color: #ff3636;
}
@media (max-width: 992px) {
  .poster_area .section_title h2 span {
    font-size: 30px;
  }
}

.service_area .single_service {
  border: 1px solid rgba(223, 217, 217, 0.5);
  text-align: center;
  padding: 20px 10px;
  position: relative;
}
.service_area .single_service::before, .service_area .single_service::after {
  content: "";
  width: 0;
  height: 4px;
  background: #ff3636;
  position: absolute;
  transition: 0.3s;
}
.service_area .single_service::after {
  bottom: -1px;
  right: 0;
}
.service_area .single_service::before {
  top: -1px;
  left: 0;
}
.service_area .single_service:hover::before, .service_area .single_service:hover::after {
  width: 100%;
}
.service_area .single_service img {
  height: 50px;
  width: auto;
}
.service_area .single_service h4 {
  font-size: 20px;
  margin: 10px 0;
}

.contact_area {
  padding-top: 50px;
}
.contact_area .contact_form form {
  margin-top: 30px;
}
.contact_area .contact_form input,
.contact_area .contact_form textarea {
  width: 100%;
  padding: 10px;
  display: inline-block;
  margin-bottom: 16px;
  outline: none;
  border: 1px solid rgba(223, 217, 217, 0.5);
  font-size: 16px;
  transition: 0.3s;
}
.contact_area .contact_form input:focus,
.contact_area .contact_form textarea:focus {
  border-color: #ff3636;
}
.contact_area .contact_form textarea {
  font-family: inherit;
  height: 78px;
}
.contact_area .contact_form input[type=submit] {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  background-color: #ff3636;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
.contact_area .contact_form input[type=submit]:hover {
  background-color: #9c0000;
}
.contact_area .contact_address ul {
  margin-top: 24px;
}
.contact_area .contact_address li {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 16px;
}
.contact_area .contact_address li i {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid tomato;
  color: tomato;
}
.contact_area .contact_address li h4 {
  text-transform: capitalize;
  font-size: 20px;
}
.contact_area .contact_address li h4 span {
  display: block;
  font-size: 16px;
  text-transform: lowercase;
  font-weight: normal;
}
.contact_area .contact_map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  vertical-align: middle;
  border-top: 2px solid rgba(223, 217, 217, 0.5);
}

.team_area {
  background-color: rgba(223, 217, 217, 0.5);
}
.team_area .single_team {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.team_area .single_team:hover .team_info {
  bottom: 0;
}
.team_area .single_team img {
  padding: 3px;
  border: 1px solid rgba(223, 217, 217, 0.5);
}
.team_area .single_team .team_info {
  background: #333;
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: -89px;
  left: 0;
  transition: 0.3s;
  padding: 10px 0;
}
.team_area .single_team .team_info h4 {
  text-transform: capitalize;
}
.team_area .single_team .team_info h4 span {
  display: block;
  font-size: 16px;
  text-transform: lowercase;
}

.testimonials_area {
  color: #fff;
}
.testimonials_area .single_testimonial {
  text-align: center;
  padding: 15px;
}
.testimonials_area .single_testimonial img {
  max-width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px dashed lightgray;
  padding: 3px;
  margin: 0 auto;
}
.testimonials_area .single_testimonial h4 {
  text-transform: capitalize;
  font-size: 28px;
}
.testimonials_area .single_testimonial h4 span {
  font-size: 16px;
  display: block;
  text-transform: lowercase;
}
.testimonials_area .single_testimonial p {
  margin: 20px 0;
}
.testimonials_area .slick-dots {
  text-align: center;
}
.testimonials_area .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.testimonials_area .slick-dots li.slick-active button {
  background-color: #ff3636;
}
.testimonials_area .slick-dots li button {
  font-size: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}

.special_menu_area {
  background-color: rgba(223, 217, 217, 0.5);
}
.special_menu_area .single_special_menu {
  border: 1px solid rgba(223, 217, 217, 0.5);
  position: relative;
}
.special_menu_area .single_special_menu > span {
  background-color: #ff3636;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  padding: 10px;
  width: 50%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.special_menu_area .single_special_menu .menu_content {
  background-color: #fff;
  padding: 20px;
}
.special_menu_area .single_special_menu .menu_content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.special_menu_area .single_special_menu .menu_content ul li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.special_menu_area .single_special_menu .menu_content ul li span {
  color: #ff3636;
}
.special_menu_area .single_special_menu .menu_content ul li:last-child {
  border-top: 1px dashed rgba(223, 217, 217, 0.5);
  padding-top: 15px;
}

.cta_area {
  background-color: #ff3636;
  color: #fff;
  padding: 40px 0;
}
.cta_area h2 {
  text-align: right;
  text-transform: uppercase;
  font-size: 50px;
}
@media (max-width: 768px) {
  .cta_area h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .cta_area h2 {
    font-size: 30px;
    text-align: center;
  }
}
.cta_area a {
  color: white;
  display: block;
  font-size: 18px;
  margin: 14px 0;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 576px) {
  .cta_area a {
    text-align: center;
  }
}

.blogs_area {
  background-color: rgba(223, 217, 217, 0.5);
}
.blogs_area .single_blog {
  background-color: #fff;
}
.blogs_area .single_blog img {
  width: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogs_area .single_blog .blog_meta {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(223, 217, 217, 0.5);
  font-style: italic;
}
.blogs_area .single_blog .blog_meta a {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
}
.blogs_area .single_blog .blog_meta a:hover {
  color: #ff3636;
}
.blogs_area .single_blog .blog_content {
  padding: 20px;
}
.blogs_area .single_blog .blog_content h4 {
  text-transform: capitalize;
  font-size: 26px;
}
.blogs_area .single_blog .blog_content p {
  margin: 10px 0;
}
.blogs_area .single_blog .blog_content a {
  text-transform: capitalize;
  font-style: italic;
  font-weight: 600;
}
.blogs_area .single_blog .blog_content a:hover {
  color: #ff3636;
}

.gallery_area .single_gallery {
  position: relative;
}
.gallery_area .single_gallery:hover::after, .gallery_area .single_gallery:hover::before {
  width: 50%;
}
.gallery_area .single_gallery::after, .gallery_area .single_gallery::before {
  content: "";
  height: 100%;
  width: 0;
  top: 0;
  position: absolute;
  background-color: #333;
  opacity: 0.8;
  transition: 0.3s;
}
.gallery_area .single_gallery::before {
  left: 0;
}
.gallery_area .single_gallery::after {
  right: 0;
}
.gallery_area .single_gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer_area {
  color: #fff;
}
.footer_area .single_footer img {
  margin-top: 90px;
  width: 150px;
  height: auto;
}
@media (max-width: 576px) {
  .footer_area .single_footer img {
    margin-top: 0;
  }
}
.footer_area .single_footer h4 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .footer_area .single_footer h4 {
    font-size: 20px;
  }
}
.footer_area .single_footer li {
  font-size: 16px;
  font-weight: 600;
  padding: 4px 0;
}
@media (max-width: 576px) {
  .footer_area .single_footer li {
    font-size: 14px;
  }
}
.footer_area .single_footer a {
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
}
.footer_area .single_footer a:hover {
  color: #ff3636;
}
.footer_area .single_footer i {
  margin-right: 10px;
}
.footer_area .footer_social {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(223, 217, 217, 0.5);
}
@media (max-width: 576px) {
  .footer_area .footer_social {
    text-align: center;
  }
}
.footer_area .footer_social a {
  color: #fff;
  padding: 0 10px;
}
.footer_area .footer_social a:hover {
  color: #ff3636;
}
.footer_area .footer_copy {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(223, 217, 217, 0.5);
  text-align: right;
}
@media (max-width: 576px) {
  .footer_area .footer_copy {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */