/* Variables
======================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap");
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 20px;
  background-color: #1b5564;
  color: #fff;
  border: 0;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  -webkit-border-radius: 5px 5px 20px 20px;
  -moz-border-radius: 5px 5px 20px 20px;
  border-radius: 5px 5px 20px 20px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.link:hover {
  color: #fff;
  background-color: #c0a36c;
}
.more.link {
  margin-top: 45px;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 40px !important;
  min-width: 40px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  padding: 0;
  background-color: #c0a36c;
  color: #fff;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  -webkit-border-radius: 5px 5px 50px 50px;
  -moz-border-radius: 5px 5px 50px 50px;
  border-radius: 5px 5px 50px 50px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 50% 100%);
  background-color: #1b5564;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.icon i,
.icon::before {
  z-index: 999;
  position: relative;
}
.icon:hover {
  color: #191919;
}
.icon:hover::after {
  clip-path: circle(100% at 50% 50%);
}
.icon:hover i,
.icon:hover::before {
  color: #fff;
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #1b5564 !important;
  color: #fff !important;
}

body {
  overflow: hidden;
  width: 100%;
  background-color: #f8f8f8;
  text-align: start;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .container {
    max-width: 640px;
  }
}
.mt-25 {
  margin-top: 25px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #f1f1f1;
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background-color: #c0a36c;
}

/* Loading 
==========================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.loading img {
  max-width: 140px;
  animation: tada 1.5s linear infinite;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
/* Mouse Cursor
=========================*/
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 991px) {
  .mouse-cursor {
    display: none !important;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #c0a36c;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -25px;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  background-color: #c0a36c;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #c0a36c;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 80ms ease-out;
  -moz-transition: all 80ms ease-out;
  -ms-transition: all 80ms ease-out;
  -o-transition: all 80ms ease-out;
  transition: all 80ms ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

.list {
  margin: 15px 0;
}
.list li {
  display: block;
  letter-spacing: 0.5px;
  line-height: 25px;
  margin-bottom: 15px;
  padding-inline-start: 25px;
  font-size: 14px;
  color: #191919;
  position: relative;
}
.list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  margin: auto;
  color: #1b5564;
  background-color: #f6f9ff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 8px;
  line-height: 20px;
  text-align: center;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Form
=======================*/
label {
  font-weight: 500;
  font-size: 14px;
  margin: 10px 0;
}

.form-control {
  padding: 0 15px;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
  color: #191919;
  border: 1px solid #cecece;
  letter-spacing: 0px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.form-control:hover,
.form-control:focus {
  border: 1px solid #cecece;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
  height: 110px;
  padding: 10px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* Page Setting
=====================*/
section {
  z-index: 9997;
  position: relative;
  padding: 50px 0;
  background-color: #fff;
}
section.colored {
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  section {
    padding: 35px 0;
  }
}
@media (max-width: 575px) {
  section {
    padding: 25px 0;
  }
}

.section_img {
  background: url(../images/bc.jpg) center no-repeat fixed;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.section_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.9);
}
.section_img .container {
  position: relative;
  z-index: 999;
}
.section_img h3 {
  font-size: 26px;
  max-width: 991px;
  margin: 0px auto 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 500;
}
.section_img p {
  margin: 0 auto 25px;
  font-size: 18px;
  letter-spacing: 2px;
  font-style: italic;
  max-width: 767px;
}
@media (max-width: 575px) {
  .section_img h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .section_img p {
    font-size: 13px;
    letter-spacing: 0px;
  }
}

.mb-50 {
  margin-bottom: 50px !important;
}

/* Section Title
=======================*/
.section_title {
  position: relative;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  color: #191919;
  line-height: 25px;
  padding-bottom: 15px;
  margin: 0 0 30px;
}
.section_title::before {
  content: " ";
  width: 100px;
  height: 4px;
  background-color: #1b5564;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -1px;
  border-radius: 25px;
}
@media (max-width: 575px) {
  .section_title {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .section_title a {
    font-size: 12px;
    padding: 0 10px;
  }
}

/* Page Head
=======================*/
.page_head {
  background: url(../images/bc.jpg) center no-repeat;
  background-size: cover;
  padding: 150px 0 50px;
  text-align: center;
}
.page_head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.9);
}
.page_head h3 {
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  text-align: center;
  margin: 0 auto 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 720px;
}
@media (max-width: 575px) {
  .page_head h3 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
}
.page_head li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.page_head li a {
  font-size: 16px;
  display: block;
  color: #c0a36c;
  padding-inline-end: 15px;
  margin-inline-end: 5px;
  position: relative;
}
.page_head li a::after {
  content: " / ";
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 18px;
  color: #c0a36c;
}
@media (max-width: 767px) {
  .page_head {
    padding: 120px 0 30px;
  }
}

/*  Header
=============================*/
header {
  position: fixed;
  top: 20px;
  right: 0px;
  width: 100%;
  padding: 10px 0;
  z-index: 9998;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
header.move {
  top: 0;
  background-color: #191919;
}
header .container {
  position: relative;
  min-height: 70px;
}
header .navbar-brand {
  margin: 0;
  z-index: 999;
  padding: 0;
  height: 70px;
}
header .navbar-brand img {
  height: 100%;
}
header .btns {
  z-index: 999;
}
header .btns .link {
  margin: 0;
  background-color: #25d366;
}
header .btns .menu-btn {
  display: none;
}

.navbar {
  padding: 0px;
  margin: 0px;
  margin-top: -70px;
  min-height: 70px;
}
.navbar .container {
  min-height: auto;
}
.navbar ul.navbar-nav {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  padding-inline-end: 165px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.navbar ul.navbar-nav li {
  display: inline-block;
}
.navbar ul.navbar-nav li a {
  position: relative;
  display: block;
  padding: 0 12px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  line-height: 40px;
  letter-spacing: 1px;
}
.navbar ul.navbar-nav li a.active,
.navbar ul.navbar-nav li a:hover {
  color: #c0a36c;
}

@media (max-width: 991px) {
  header {
    top: 0;
    background-color: #191919;
    padding-bottom: 0;
  }
  header .btns .menu-btn {
    display: inline-block;
    margin: 0;
  }

  .navbar {
    margin: 10px 0 0;
    background-color: #191919;
    height: 100%;
    max-height: 440px;
    min-height: auto;
    overflow: hidden;
    overflow-y: auto;
    border-top: 1px solid #fff1;
  }
  .navbar ul.navbar-nav {
    display: block;
    text-align: start;
    padding: 10px;
  }
  .navbar ul.navbar-nav li {
    display: block;
  }
  .navbar ul.navbar-nav li a {
    text-align: start;
    display: inline-block;
    margin: 0;
  }
  .navbar ul.navbar-nav li a.active,
  .navbar ul.navbar-nav li a:hover {
    color: #c0a36c;
  }
}
@media (max-width: 575px) {
  header .btns .link {
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  header .btns .link i {
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    display: block;
  }
  header .btns .link span {
    display: none;
  }
}
/* Slider
======================*/
.main_section {
  padding: 0;
  background: url(../images/bc.jpg) center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .main_section {
    margin-top: 70px;
  }
}
.main_section .caption {
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(25, 25, 25, 0.75);
  color: #fff;
  padding: 210px 0;
}
.main_section .caption h1 {
  color: #fff;
  font-size: 128px;
  letter-spacing: 5px;
  font-weight: 700;
  margin: 0 0 30px;
  max-width: 780px;
  line-height: 100px;
  text-transform: uppercase;
}
.main_section .caption p {
  max-width: 991px;
  margin: 0;
  font-size: 48px;
  letter-spacing: 2px;
  color: #c0a36c;
  text-transform: uppercase;
  font-weight: 700;
}
.main_section .caption .link {
  margin-top: 35px;
}
@media (max-width: 991px) {
  .main_section .caption {
    padding: 120px 60px;
  }
  .main_section .caption h1 {
    font-size: 82px;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 80px;
  }
  .main_section .caption p {
    font-size: 32px;
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  .main_section .caption {
    padding: 60px;
  }
  .main_section .caption p {
    font-size: 26px;
  }
  .main_section .caption .link {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .main_section .caption {
    padding: 50px 30px;
  }
  .main_section .caption h1 {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .main_section .caption p {
    letter-spacing: 0;
    font-size: 14px;
  }
  .main_section .caption .link {
    margin-top: 15px;
  }
}
.main_section .carousel,
.main_section .carousel-item,
.main_section .carousel-inner {
  width: 100%;
  height: 100%;
}
.main_section .carousel-control-next,
.main_section .carousel-control-prev {
  position: absolute;
  position: absolute;
  inset: 0px 25px 0px auto;
  margin: auto;
  opacity: 1;
  right: 15px;
  font-size: 16px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.main_section .carousel-control-next i,
.main_section .carousel-control-prev i {
  line-height: 40px;
}
@media (max-width: 575px) {
  .main_section .carousel-control-next,
  .main_section .carousel-control-prev {
    right: 5px;
    font-size: 12px;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    line-height: 30px !important;
  }
  .main_section .carousel-control-next i,
  .main_section .carousel-control-prev i {
    line-height: 30px !important;
  }
}
.main_section .carousel-control-prev {
  left: 15px;
  right: auto;
}
@media (max-width: 575px) {
  .main_section .carousel-control-prev {
    left: 5px;
  }
}

/* Course
========================*/
.course {
  -webkit-border-radius: 5px 5px 25px 25px;
  -moz-border-radius: 5px 5px 25px 25px;
  border-radius: 5px 5px 25px 25px;
  overflow: hidden;
  margin-bottom: 25px;
  display: block;
}
.course img {
  width: 100%;
}
.course .cont {
  text-align: center;
  padding: 15px;
  background-color: #fff;
}
.course .cont h3 {
  margin: 0 0 15px;
  font-size: 18px;
  color: #1b5564;
  text-transform: capitalize;
  font-weight: 500;
}
.course .cont .link {
  margin: 0;
  background-color: #c0a36c;
}

.course_details h3 {
  color: #1b5564;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 15px;
  text-transform: capitalize;
}
.course_details .link {
  margin-bottom: 15px;
}
.course_details .download {
  background-color: #c0a36c;
}
.course_details h4 {
  color: #1b5564;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 15px;
  text-transform: capitalize;
}
.course_details p {
  font-size: 14px;
  margin: 0 0 15px;
}
.course_details img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}
.course_details .video {
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .course_details .video iframe {
    height: 290px !important;
  }
}
@media (max-width: 575px) {
  .course_details h3 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .course_details .link {
    font-size: 12px;
    padding: 0 14px;
  }
  .course_details h4 {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .course_details p {
    margin-bottom: 10px;
    font-size: 13px;
  }
}

/* Events
========================*/
.event_item {
  display: block;
  -webkit-border-radius: 5px 5px 25px 25px;
  -moz-border-radius: 5px 5px 25px 25px;
  border-radius: 5px 5px 25px 25px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}
.event_item img {
  -webkit-transition: 0.3s linear transform;
  -moz-transition: 0.3s linear transform;
  -ms-transition: 0.3s linear transform;
  -o-transition: 0.3s linear transform;
  transition: 0.3s linear transform;
  position: relative;
  width: 100%;
}
.event_item .cont {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 25px;
  background-color: rgba(25, 25, 25, 0.85);
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  height: 75px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.event_item:hover img {
  -webkit-transform: scale(1.08) rotate(3deg);
  -moz-transform: scale(1.08) rotate(3deg);
  -ms-transform: scale(1.08) rotate(3deg);
  -o-transform: scale(1.08) rotate(3deg);
  transform: scale(1.08) rotate(3deg);
}

.event_cover img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.event_info h3 {
  color: #1b5564;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 15px;
  text-transform: capitalize;
}
.event_info h4 {
  color: #1b5564;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 15px;
  text-transform: capitalize;
}
.event_info p {
  font-size: 14px;
  margin: 0 0 15px;
}

.date {
  background-color: rgba(192, 163, 108, 0.4);
  padding: 15px;
  border-radius: 25px;
  display: inline-block;
  margin: 0 0 15px;
}
/* Team
========================*/
.team {
  position: relative;
  overflow: hidden;
}
.team img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
}
.team h3 {
  color: #c0a36c;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px;
}
.team p {
  font-style: italic;
  font-size: 12px;
  margin: 0;
}

/* Features
======================*/
.feat_item {
  margin-bottom: 25px;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
}
.feat_item i {
  background-color: #c0a36c;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  margin: 0 0 15px;
}
.feat_item h3 {
  color: #c0a36c;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.feat_item p {
  font-style: italic;
  font-size: 12px;
  margin: 0;
}

/* Footer
=====================*/
footer {
  z-index: 998;
  padding: 50px 0 0;
  position: relative;
  background-color: #191919;
}
footer img {
  margin: 15px auto;
  width: 100px;
}
footer a {
  display: inline-block;
}
footer h3 {
  margin: 15px auto 25px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #fff;
  letter-spacing: 1px;
}
footer h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  margin: auto;
  background-color: #1b5564;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
footer ul {
  margin-bottom: 25px;
}
footer ul a {
  display: inline-block;
  color: #fff;
  line-height: 25px;
  font-size: 13px;
  letter-spacing: 0.3px;
  -webkit-transition: 0.4s linear color;
  -moz-transition: 0.4s linear color;
  -ms-transition: 0.4s linear color;
  -o-transition: 0.4s linear color;
  transition: 0.4s linear color;
}
footer ul a:hover {
  color: #c0a36c;
}
footer ul.row {
  margin: 0;
}
footer ul.row li {
  display: block;
  position: relative;
  padding-inline-start: 15px;
  margin-bottom: 5px;
}
footer ul.row li a {
  text-transform: uppercase;
}
footer ul.row li::before {
  content: "";
  font-size: 12px;
  color: #fff;
  position: absolute;
  content: "\f105";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
footer ul .social .icon {
  margin: 0 !important;
  margin-inline-end: 10px !important;
}
footer ul .social .icon i {
  margin: auto !important;
}
footer form .form-control {
  margin-bottom: 15px;
  background-color: #fff1 !important;
  border: 0 !important;
}
footer .contact_info li {
  margin-bottom: 15px;
  padding: 0;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
footer .contact_info li::before {
  display: none;
}
footer .contact_info li i {
  margin: 0 !important;
  margin-inline-end: 15px !important;
}
footer .contact_info li span {
  text-transform: uppercase;
}
footer .contact_info li a {
  text-transform: lowercase;
  display: block;
  line-height: 24px;
  font-size: 14px;
}
footer .copyrights {
  text-align: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 15px;
  border-top: 1px solid #fff1;
  margin-top: 40px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  footer ul {
    margin-bottom: 0 !important;
  }
  footer .copyrights {
    margin-top: 20px;
  }
}

.up_btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  margin: auto;
  font-size: 16px;
  z-index: 9998;
}

/*# sourceMappingURL=style.css.map */
