@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");
#menuBtn {
  display: none;
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 992px) {
  #menuBtn {
    display: block;
  }
}

#menu {
  position: fixed;
  top: 90px;
  left: 0;
  background: #fff;
  padding: 15px 20px;
  width: 100%;
  height: calc(100vh - 90px);
  z-index: 9999999999;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: all 0.5s ease;
  transform: translateY(-200%);
}
@media screen and (max-width: 992px) {
  #menu {
    display: none;
  }
}
#menu .menu-header {
  display: flex;
  justify-content: space-between;
}
#menu .menu-header a {
  color: #000;
}
#menu .menu-header a:hover {
  color: #b2dd4c;
}
#menu .menu-header i {
  font-size: 1.5rem;
  cursor: pointer;
}
#menu .sub-header {
  display: flex;
  justify-content: space-around;
  background: #b2dd4c;
  align-items: center;
  padding: 10px 0px;
  width: 100%;
}
#menu .sub-header h5 {
  color: #fff;
  margin: 0;
  font-weight: 500;
}
#menu .sub-header h5:first-child {
  transform: translateX(-30px);
}
#menu .sub-header h5:nth-child(2) {
  transform: translateX(20px);
}
#menu .sub-header h5:nth-child(3) {
  transform: translateX(-55px);
}
#menu .sub-header h5:nth-child(4) {
  transform: translateX(-48px);
}
#menu .menu-contents {
  display: flex;
  justify-content: space-around;
}
#menu .menu-contents ul {
  margin: 0;
  padding: 0;
}
#menu .menu-contents ul i {
  padding: 8px;
  background: #EDF3FE;
  border-radius: 50%;
  color: #000;
  margin-right: 5px;
  font-size: 1.2rem;
}
#menu .menu-contents ul li {
  padding: 15px 0px;
}
#menu .menu-contents ul li:hover a {
  color: #b2dd4c;
}
#menu .menu-contents ul li,
#menu .menu-contents ul a {
  color: #000;
  font-size: 14px;
}
#menu .menu-footer {
  display: flex;
  justify-content: end;
}
#menu .menu-footer a {
  color: #fff;
  padding: 0px 10px;
}
#menu .menu-footer a:hover {
  color: #000;
}
#menu .menu-footer a i {
  height: 30px;
  width: 30px;
  background: #A7D7C3;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
#menu sup {
  color: #fff;
  background: #A7D7C3;
  padding: 3px 6px;
  border-radius: 3px;
}

#canvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  height: 100vh;
  min-width: 300px;
  z-index: 9999999999;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  transform: translateX(500px);
}
#canvas-menu .canvas-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 8px;
  border-bottom: 1px solid #000;
}
#canvas-menu .canvas-header i {
  font-size: 1.5rem;
  color: #000;
}
#canvas-menu .canvas-body {
  padding: 20px 0px;
  justify-self: center;
}
#canvas-menu .canvas-body li {
  padding: 8px 0px;
}
#canvas-menu .canvas-info {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}
#canvas-menu .canvas-info li {
  padding: 8px 0px;
}
#canvas-menu .canvas-footer {
  margin: auto auto 0px auto;
  width: 100%;
}
#canvas-menu .canvas-footer a {
  margin: 5px auto;
  width: 80%;
  background: #b2dd4c;
  text-align: center;
  color: #fff;
  padding: 10px 0px;
  border-radius: 3px;
  transition: all 0.5s;
  border: 1px solid #fff;
}
#canvas-menu .canvas-footer a:hover {
  background: transparent;
  border-color: #000;
  color: #000;
}
#canvas-menu .canvas-footer a:nth-child(2) {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  transition: all 0.3s;
}
#canvas-menu .canvas-footer a:nth-child(2):hover {
  background: #A7D7C3;
  color: #fff;
  border-color: #fff;
}
#canvas-menu ul {
  margin: 0;
  padding: 0;
}
#canvas-menu ul li p {
  margin: 0;
  color: #403932;
}
#canvas-menu ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #403932;
}
#canvas-menu ul li a i {
  color: #403932;
}

#parent .cdren {
  background: rgba(128, 128, 128, 0.5);
  padding: 5px 10px;
  transform-origin: top;
  transition: all 0.1s;
  position: absolute;
  transform: scaleY(0);
}
#parent .cdren a {
  display: block;
  color: #fff;
}

#parent .canvas-list {
  transform: scaleY(1);
  position: static;
}

#parent-1 .cdren-1 {
  background: rgba(128, 128, 128, 0.5);
  padding: 5px 10px;
  transform-origin: top;
  transition: all 0.1s;
  position: absolute;
  transform: scaleY(0);
}
#parent-1 .cdren-1 i {
  color: #b2dd4c;
}
#parent-1 .cdren-1 a {
  display: block;
  color: #fff;
}

#parent-1 .canvas-list1 {
  transform: scaleY(1);
  position: static;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background: #b2dd4c;
  color: #fff;
}

::selection {
  background: #b2dd4c;
  color: #fff;
}

body {
  letter-spacing: 0.8px;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  color: #403932;
  font-family: "Montserrat", sans-serif;
}

p {
  font-weight: 400;
  color: #14213d;
}
@media screen and (max-width: 480px) {
  p {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}

img,
video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.main-btn {
  padding: 11px 25px;
  background: #b2dd4c;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-radius: 3px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 999992;
}
.main-btn::before {
  content: "";
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background: #6f6f6f;
  border-radius: 50%;
  transform: scale(0);
  z-index: -1;
  transition: all 0.15s linear;
}
.main-btn:hover, .main-btn:focus {
  color: #fff;
  background: transparent;
}

.main-btn:hover::before,
.main-btn:focus::before {
  transform: scale(5);
}

.sec-btn a {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px;
  font-weight: 400;
}
.sec-btn:hover, .sec-btn:focus {
  color: #fff;
}
.sec-btn:hover .fa-circle-arrow-right, .sec-btn:focus .fa-circle-arrow-right {
  transform: translateX(100px);
}
.sec-btn:hover .arrow, .sec-btn:focus .arrow {
  transform: translate(-50%, -50%);
  color: #fff;
}
.sec-btn span {
  padding: 10px;
  border-width: 1px;
  border-color: #fff #fff #fff transparent;
  border-style: solid;
  position: relative;
  overflow: hidden;
}
.sec-btn span .fa-circle-arrow-right {
  color: #fff;
  transition: all 0.2s 0.1s;
}
.sec-btn span .arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35px, -50%);
  transition: all 0.3s 0.2s;
}

main {
  min-height: 100vh;
  position: relative;
  background: #252325;
}
main::after {
  content: "";
  background: #3D3B3D;
  position: absolute;
  top: 0;
  left: 32%;
  height: 100vh;
  width: 50%;
}
@media screen and (max-width: 992px) {
  main::after {
    height: 130.5vh;
  }
}
@media screen and (max-width: 772px) {
  main::after {
    display: none;
  }
}
main header {
  padding: 30px 0px;
}
@media screen and (max-width: 480px) {
  main header {
    padding-bottom: 10px;
  }
}
main header .col-2 {
  z-index: 99999;
}
main header .col-2 a {
  font-weight: 300;
}
main header .col-2 a span {
  font-weight: 500;
}
main header .col-2 .logo {
  font-size: 2rem;
  color: #F67528;
}
main header .col-2 .logo:hover, main header .col-2 .logo:focus {
  color: #b2dd4c;
}
main header .col-lg-7 {
  z-index: 99;
  justify-content: end;
}
main header .col-lg-7 a {
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  main header .col-lg-7 nav {
    display: none;
  }
}
main header .col-lg-7 .social-icons {
  padding-right: 10px;
  display: none;
}
@media screen and (max-width: 992px) {
  main header .col-lg-7 .social-icons {
    display: block;
  }
}
main header .col-lg-7 .social-icons li {
  padding: 0px 8px;
}
main header .col-lg-7 .social-icons li i {
  font-size: 1.25rem;
}
main header ul {
  margin: 0 0 0 50px;
}
@media screen and (max-width: 992px) {
  main header ul {
    margin: 0;
  }
}
main header ul li {
  z-index: 99;
  padding: 0px 20px;
}
main header ul li a {
  color: #fff;
  letter-spacing: 1.5px;
  font-size: 14px;
  transition: all 0.3s;
  font-weight: 400;
  position: relative;
}
main header ul li a::after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #fff;
  transition: all 0.4s 0.1s linear;
}
main header ul li a:hover, main header ul li a:focus {
  color: #fff;
}
main header ul li a:hover::after {
  width: 100%;
}
main header ul li .active {
  color: #F67528;
}
main .body {
  min-height: 100%;
  position: relative;
}
@media screen and (max-width: 480px) {
  main .body {
    padding-top: 30px;
  }
}
main .body::before {
  content: "0 1";
  font-size: 10rem;
  position: absolute;
  top: calc(50% - 10rem);
  left: 15rem;
  transform: scale(3);
  color: #3D3B3D;
  z-index: 2;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 772px) {
  main .body::before {
    display: none;
  }
}
main .body .col-md-3 {
  z-index: 3;
}
@media screen and (max-width: 772px) {
  main .body .col-md-3 {
    text-align: center;
    flex-basis: 100%;
  }
}
main .body .col-md-3 ul li {
  padding: 0px 10px;
}
main .body .col-md-3 ul li a {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.5;
}
main .body .col-md-3 ul li a:hover {
  color: #F67528;
}
main .body .col-md-3 button {
  border: none;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  background: transparent;
  padding: 5px 10px;
  overflow: hidden;
  margin: 0 !important;
}
main .body .col-md-3 button:hover i, main .body .col-md-3 button:focus {
  transform: translateX(120%);
}
main .body .col-md-3 button::before {
  content: "";
  background: #F67528;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 50%;
  z-index: -1;
  transition: all 0.5s linear;
}
@media screen and (max-width: 992px) {
  main .body .col-md-3 button::before {
    width: 100%;
    height: 100%;
  }
}
main .body .col-md-3 button i {
  transition: all 1s 0.2s cubic-bezier(1, 0, 0, 1);
}
@media screen and (max-width: 772px) {
  main .body .col-md-3 button {
    margin-bottom: 40px;
  }
}
main .body .col-md-3 button:hover::before,
main .body .col-md-3 button:focus::before {
  height: 100%;
  width: 100%;
}
main .body .col-md-3 h1 {
  color: #F67528;
  font-size: 6rem;
  position: absolute;
  top: 0;
  left: 80px;
}
main .body .col-md-3 h1 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: 0.5;
}
@media screen and (max-width: 772px) {
  main .body .col-md-3 h1 span {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  main .body .col-md-3 h1 {
    top: 35px;
    left: 50px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 772px) {
  main .body .col-md-3 h1 {
    position: static;
  }
}
@media screen and (max-width: 480px) {
  main .body .col-md-3 h1 {
    font-size: 4rem;
  }
}
main .body .col-md-3 p {
  color: #fff;
  font-weight: 300;
  padding-bottom: 0;
  padding-top: 180px;
}
@media screen and (max-width: 992px) {
  main .body .col-md-3 p {
    font-size: 14px;
    padding-top: 200px;
  }
}
@media screen and (max-width: 772px) {
  main .body .col-md-3 p {
    padding-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  main .body .col-md-3 p {
    padding-top: 30px;
  }
}
main .body .col-md-8 {
  z-index: 2;
}
@media screen and (max-width: 772px) {
  main .body .col-md-8 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
}
main .body .col-md-8 .main-img img {
  height: 280px;
}
@media screen and (max-width: 772px) {
  main .body .col-md-8 .main-img img {
    width: 60%;
    display: block;
    margin: auto;
  }
}
main .body .col-md-8 .sec-img {
  width: 70%;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 1;
}
@media screen and (max-width: 772px) {
  main .body .col-md-8 .sec-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
  }
}
main .body .col-md-8 .sec-img img {
  box-shadow: 0px 4px 5px #000;
}

.goals {
  padding: 180px 0px;
  background: url(../img/main-2.jpg);
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 772px) {
  .goals {
    padding: 80px 0px;
  }
}
.goals .main-btn {
  margin-top: 40px;
}
.goals h2 {
  font-size: 4rem;
  padding-bottom: 30px;
  -webkit-text-stroke: 1.5px #000;
  color: transparent;
  filter: drop-shadow(0px 0px 2px #000);
}
@media screen and (max-width: 772px) {
  .goals h2 {
    padding: 20px;
  }
}
.goals .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) scale(2);
  background: #fff !important;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 5px grey;
  border-radius: 50%;
  transition: all 0.3s;
}
.goals .owl-nav .owl-next:hover, .goals .owl-nav .owl-next:focus {
  background: #b2dd4c !important;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .goals .owl-nav .owl-next {
    right: 25px;
  }
}
.goals .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%) scale(2);
  background: #fff !important;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 5px grey;
  border-radius: 50%;
  transition: all 0.3s;
}
.goals .owl-nav .owl-prev:hover, .goals .owl-nav .owl-prev:focus {
  background: #b2dd4c !important;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .goals .owl-nav .owl-prev {
    left: 25px;
  }
}
@media screen and (max-width: 772px) {
  .goals .owl-nav .owl-prev {
    left: 35px;
  }
}
@media screen and (max-width: 480px) {
  .goals .owl-nav .owl-prev {
    left: 50px;
  }
}
.goals .slide {
  box-shadow: 0px 0px 8px grey;
  border-radius: 5px;
  background: #fff;
}
.goals .slide h3 {
  padding: 20px 0px 10px 0px;
}
.goals .slide p {
  padding: 0px 5px 10px 5px;
  font-size: 14px;
}
.goals .slide:hover .img-icon, .goals .slide:focus .img-icon {
  opacity: 1;
}
.goals .slide:hover ::before, .goals .slide:focus ::before {
  opacity: 1;
}
.goals .slide:hover img, .goals .slide:focus img {
  transform: scale(1.2);
}
.goals .slide .slide-img {
  position: relative;
  overflow: hidden;
}
.goals .slide .slide-img:hover span, .goals .slide .slide-img:focus span {
  opacity: 1;
}
.goals .slide .slide-img img {
  border-radius: 5px 5px 0px 0px;
  height: 200px;
  transition: all 0.4s;
  width: 100%;
}
.goals .slide .slide-img span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0px 0px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s linear;
}
.goals .slide .img-icon {
  position: absolute;
  font-size: 1.5rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s 0.2s;
  z-index: 22;
}
.goals .slide .img-icon a {
  color: #fff;
  margin: 0px 8px;
  z-index: 3;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 50%;
}
.goals .slide .img-icon a:hover, .goals .slide .img-icon a:focus {
  color: #000;
  background: rgb(255, 255, 255);
}
.goals .goals-content {
  padding-top: 100px;
}
.goals .goals-content .col-7 .content {
  border-radius: 3px;
  padding: 50px 10px 10px 10px;
  background: #6f6f6f;
  min-height: 360px;
  box-shadow: 0px 0px 8px #000;
}
@media screen and (max-width: 992px) {
  .goals .goals-content .col-7 .content {
    margin: 12px 0px;
  }
}
.goals .goals-content .col-7 .content h3 {
  color: #fff;
}
.goals .goals-content .col-7 .content p {
  font-size: 14px;
}
.goals .goals-content img {
  width: 100px;
}
.goals .goals-content .envelope img {
  width: 130px;
}
.goals .goals-content h3 {
  font-size: 18px;
  padding: 20px 0px 10px 0px;
}
.goals .goals-content p {
  color: #fff;
}

.br {
  background: url(../img/main.jpg);
  background-position: center;
  background-size: cover;
}
.br .row {
  padding: 80px 0px;
}
.br p {
  color: #fff;
}

.design {
  padding: 180px 0px;
  background: url(../img/design-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 772px) {
  .design {
    padding: 80px 0px;
  }
}
.design h2 {
  padding: 20px 0px;
  font-size: 4rem;
}
@media screen and (max-width: 772px) {
  .design h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .design h2 {
    padding-bottom: 30px;
  }
}
.design .col-md-3 {
  padding-top: 50px;
}
.design .col-md-3 h3 {
  font-size: 28px;
  font-weight: 600;
}
.design i {
  margin: auto;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6f6f6f;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
.design i::after {
  content: "✔";
  height: 40%;
  width: 40%;
  position: absolute;
  bottom: 0;
  right: -10px;
  background: #b2dd4c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
}
.design i:hover::after {
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  font-size: 2rem;
}

.accordion {
  background: #6f6f6f;
  padding: 80px 0px;
}
@media screen and (max-width: 772px) {
  .accordion {
    padding-bottom: 40px;
  }
}
.accordion h3 {
  font-size: 16px;
  font-weight: 500;
}
.accordion p {
  font-size: 14px;
}
.accordion .accordion-item {
  border-radius: 5px;
  margin: 15px 0px;
}
.accordion .accordion-button {
  box-shadow: 0px 0px 3px grey;
}
.accordion .accordion-button:focus {
  box-shadow: none;
  background: #b2dd4c;
}
.accordion .accordion-button:focus h3 {
  color: #fff;
}
.accordion .accordion-button::after {
  content: "+";
  background: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
}
.accordion .accordion-button:focus::after {
  color: #fff;
}

.buy {
  padding: 150px 0px;
  background: url(../img/buy-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 772px) {
  .buy {
    padding: 80px 0px;
  }
}
.buy h2 {
  font-size: 4rem;
  width: 65%;
  margin: auto;
  line-height: 6rem;
}
@media screen and (max-width: 772px) {
  .buy h2 {
    width: 100%;
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .buy h2 {
    padding-bottom: 30px;
  }
}
.buy p {
  padding: 20px 0px 100px 0px;
}
@media screen and (max-width: 772px) {
  .buy p {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .buy p {
    padding: 0px 15px;
  }
}
.buy .buy-btn {
  padding: 10px 25px;
  border-radius: 3px;
  border: 1px solid #6f6f6f;
  color: #403932;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 4444;
}
.buy .buy-btn::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 40px;
  height: 40px;
  background: tomato;
  border-radius: 50%;
  z-index: -1;
  mix-blend-mode: color;
  transition: all 0.15s linear;
}
.buy .buy-btn:hover, .buy .buy-btn:focus {
  color: #fff;
}
.buy .buy-btn:hover::after,
.buy .buy-btn:focus::after {
  transform: scale(6);
}

.customer {
  background: url(../img/main.jpg);
  padding: 120px 0px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media screen and (max-width: 772px) {
  .customer {
    padding: 80px 0px;
  }
}
.customer i {
  font-size: 4rem;
  padding-bottom: 10px;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
}
.customer p {
  color: #b2dd4c;
  font-size: 18px;
  font-weight: 500;
}
.customer h3 {
  color: #fff;
  font-size: 2rem;
}

footer {
  background: #212121;
  padding: 50px 0px;
}
footer .col-lg-3 {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 500px;
}
@media screen and (max-width: 992px) {
  footer .col-lg-3 {
    border: none;
    min-height: 200px;
  }
}
footer .col-lg-3:last-child {
  border: none;
}
footer .col-lg-3:nth-child(2) li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  position: relative;
}
footer .col-lg-3:nth-child(2) li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: calc(50% - 25px);
  height: 0px;
  width: 5px;
  background: #b2dd4c;
  transition: all 0.3s linear;
}
footer .col-lg-3:nth-child(2) li:hover::before,
footer .col-lg-3:nth-child(2) li:focus::before {
  height: 50px;
}
footer .col-lg-3 li {
  padding: 10px 0px;
}
footer .col-lg-3 li a:hover, footer .col-lg-3 li a:focus {
  color: #fff;
}
footer .col-lg-3 li:first-child {
  border: none;
}
footer .col-lg-3 li:first-child::before {
  content: "";
  background: transparent;
}
@media screen and (max-width: 992px) {
  footer ul {
    padding: 0px 10px;
  }
}
footer .f-logo {
  width: 50px;
}
footer li,
footer a,
footer p {
  color: #918674;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  footer li,
footer a,
footer p {
    font-size: 13px;
  }
}
footer li h5,
footer a h5,
footer p h5 {
  color: #fff;
}
footer .f-social-links {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
  border: 1px solid #fff;
}
footer .f-social-links a {
  padding: 8px 15px;
  border-right: 1px solid #fff;
}
footer .f-social-links a:last-child {
  border: none;
}
footer .f-social-links a:hover, footer .f-social-links a:focus {
  background: #b2dd4c;
}
footer .f-social-links a i {
  font-size: 1.3rem;
  color: #fff;
}
footer .f-info .fa-twitter {
  color: #b2dd4c;
  font-size: 1.3rem;
  margin-right: 10px;
}
footer .d-grid {
  grid-template-columns: repeat(4, auto);
  gap: 5px;
}
footer form .form-control {
  font-family: FontAwesome;
  padding: 10px 5px;
}
footer form .form-control::-moz-placeholder {
  font-size: 12px;
  text-transform: lowercase;
  color: #918674;
}
footer form .form-control:-ms-input-placeholder {
  font-size: 12px;
  text-transform: lowercase;
  color: #918674;
}
footer form .form-control::placeholder {
  font-size: 12px;
  text-transform: lowercase;
  color: #918674;
}
footer form .form-control:focus {
  box-shadow: none;
}
footer form button {
  overflow: hidden;
  width: 40px;
}
footer form button .arrow-1 {
  transition: all 0.2s 0.1s;
}
footer form button .arrow-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50px, -50%);
  transition: all 0.3s 0.2s linear;
}
footer form button:hover .arrow-1, footer form button:focus .arrow-1 {
  transform: translateX(50px);
}
footer form button:hover .arrow-2, footer form button:focus .arrow-2 {
  transform: translate(-50%, -50%);
}

.copyright {
  background: #212121;
}
.copyright p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}
.copyright p span {
  color: #b2dd4c;
}/*# sourceMappingURL=style.css.map */