/*! Global */

* {
  scroll-padding-top: 80px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

:root {
  --main-color: #f25454;
  --light-main-color: rgba(242, 84, 84, 0.85);
  --white-color: #fff;
  --black-color: #282828;
  --light-black: #444444;
  --light-color: #999999;
  --lighter-color: #666666;
  --first-font: "Poppins", sans-serif;
  --second-font: "Open Sans", sans-serif;
  --main-background: white;
  --second-background: #fafafa;
  --wheat-color: #eee;
  --price-badge: white;
}

body:has(#dark-toggle:checked) {
  --main-color: #ff6b6b;
  --light-main-color: rgba(255, 107, 107, 0.85);
  --white-color: #e8e8e8;
  --black-color: #f0f0f0;
  --light-black: #d0d0d0;
  --light-color: #b0b0b0;
  --lighter-color: #c0c0c0;
  --main-background: #1a1a1a;
  --second-background: #222222;
  --wheat-color: #333333;
  --price-badge: black;
}

body:has(#dark-toggle:checked) {
  background-color: var(--main-background);
  color: var(--white-color);
}

body:has(#dark-toggle:checked) .navbar {
  background-color: #1a1a1aad;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999999999999 !important;
}

body:has(#dark-toggle:checked):not(:has(a[href="#Home"].active)) .navbar {
  background-color: #1a1a1a;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.5);
}

body:has(#dark-toggle:checked) .progress {
  background-color: #333333;
}

body:has(#dark-toggle:checked) #Blog .card {
  background-color: #222222;
}

body:has(#dark-toggle:checked) #Blog .card-body {
  background-color: #222222;
}

body:has(#dark-toggle:checked) .contact-input {
  background-color: #222222;
  border-color: #444444;
  color: #e8e8e8;
}

body:has(#dark-toggle:checked) .contact-input::placeholder {
  color: #888888;
}

body:has(#dark-toggle:checked) .price-card {
  background-color: #222222;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
}

body:has(#dark-toggle:checked) .price-card-header {
  background: #2a2a2a;
}

body:has(#dark-toggle:checked) .price-body p:not(:last-of-type) {
  border-bottom: 1px solid #444444;
}

body:has(#dark-toggle:checked) .navs-tabs-layer {
  background-color: rgba(30, 30, 30, 0.95);
}

body:has(#dark-toggle:checked) .blog-badge {
  background-color: var(--main-color);
}

body:has(#dark-toggle:checked) .tags {
  background-color: #1a1a1a;
}

body:has(#dark-toggle:checked) .numbers {
  background-color: #0f0f0f;
}

body:has(#dark-toggle:checked) .price {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url("../images/pricing.jpg");
}

body:has(#dark-toggle:checked) footer {
  background-color: #0f0f0f;
}

body:has(#dark-toggle:checked) .map-container::after {
  background-color: #1a1a1a;
  opacity: 0.4;
}

body:has(#dark-toggle:checked) .Brands {
  background-color: #a7a7a7;
}

body:has(#dark-toggle:checked) .brand-img {
  filter: brightness(0.8) invert(0.1);
}

body:has(#dark-toggle:checked) .brand-img:hover {
  filter: brightness(1) invert(0);
}

body:has(#dark-toggle:checked) .services-icon i {
  color: var(--main-color);
}

body:has(#dark-toggle:checked) .team-layer {
  background-color: rgba(26, 26, 26, 0.95);
}

body:has(#dark-toggle:checked) .idea {
  background-color: #1a1a1a;
}

.w-80 {
  width: 80%;
}

.w-95 {
  width: 95%;
}

.w-85 {
  width: 85%;
}

.w-70 {
  width: 70%;
}

.header-sections {
  position: relative;
}

.header-sections h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--black-color);
  height: 1px;
  width: 20%;
  transition: 0.3s all;
}
.header-sections:hover h2::after {
  width: 40%;
}

.header-sections h2::before {
  content: "";
  position: absolute;
  top: -80%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 76px;
  opacity: 0.06;
}

.header-sections h2 {
  font-size: 38px;
  font-family: var(--first-font);
  font-weight: 700;
  color: var(--black-color);
  position: relative;
  width: fit-content;
  margin: auto;
}

.header-sections p {
  margin-top: 30px;
  font-family: var(--second-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--light-color);
  width: 75%;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
}

/*^ Navbar */
.dark-btn {
  cursor: pointer;
}

.dark-btn .fa-moon {
  display: inline-block;
  color: rgb(0, 104, 224);
  font-size: 20px;
}
.dark-btn .fa-sun {
  display: none;
  font-size: 20px;
}

body:has(#dark-toggle:checked) .dark-btn .fa-moon {
  display: none;
}
body:has(#dark-toggle:checked) .dark-btn .fa-sun {
  display: inline-block;
  color: #ffd700;
}

nav {
  font-family: var(--first-font);
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.233);
}

body:not(:has(a[href="#Home"].active)) .navbar {
  position: fixed !important;
  animation: navbar forwards 1s;
  background-color: var(--main-background);
  box-shadow: 5px 5px 15px 0 rgba(31, 31, 31, 0.07);
  border-bottom: none;
}

body:not(:has(a[href="#Home"].active)) .navbar .navbar-brand {
  color: var(--black-color);
}
body:not(:has(a[href="#Home"].active)) .navbar .nav-link {
  color: var(--black-color);
}

body:not(:has(a[href="#Home"].active)) .navbar .nav-social i {
  color: var(--black-color);
}

@keyframes navbar {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.navbar-brand {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  transition: 0.4s all;
}

.navbar-nav .nav-item {
  font-size: 13px;
  font-weight: 600;
}

.nav-link {
  color: var(--white-color);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--main-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--main-color) !important;
}

.nav-social i {
  margin-left: 10px;
  font-size: 14px;
  color: var(--white-color);
  transition: 0.3s all;
}

.nav-social i:hover {
  color: var(--main-color) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/** Header */
header,
.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

header .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

header h1 {
  font-family: var(--first-font);
  color: var(--white-color);
  font-size: 70px;
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  header h1 {
    font-size: 40px;
  }
}

header .circle-animat {
  height: 60px;
  width: 30px;
  background-color: transparent;
  border: 2px solid var(--white-color);
  cursor: pointer;
  transition: 0.2s all;
}

header .circle-animat:hover {
  border-color: var(--main-color);
}

header .circle-animat::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--main-background);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: arrow-move infinite 1.5s;
  animation-play-state: paused;
  transition: 0.2s all;
}

header .circle-animat:hover::before {
  animation-play-state: running;
  background-color: var(--main-color);
}

@keyframes arrow-move {
  0% {
    transform: translate(-50%, -150%);
  }
  50% {
    transform: translate(-50%, -10%);
  }
  100% {
    transform: translate(-50%, -150%);
  }
}

header .custom-carousel-controls .carousel-control-prev,
header .custom-carousel-controls .carousel-control-next {
  position: static;
  width: auto;
  opacity: 1;
}

header .custom-carousel-controls .carousel-control-prev-icon,
header .custom-carousel-controls .carousel-control-next-icon {
  border: 2px solid var(--white-color);
  border-left: none;
  padding: 20px;
  transition: 0.3s all;
}

header .custom-carousel-controls .carousel-control-prev-icon:hover,
header .custom-carousel-controls .carousel-control-next-icon:hover {
  background-color: var(--main-color);
}

/*? About */

#About {
  background-color: var(--main-background);
}

#About .header-sections h2::before {
  content: "A";
}

@media screen and (max-width: 992px) {
  .header-sections p {
    width: 100%;
  }
}

.about-p {
  font-family: var(--second-font);
  font-size: 14px;
  color: var(--lighter-color);
  font-weight: 400;
}

.progress {
  height: 4px;
  margin-bottom: 20px;
  background-color: var(--wheat-color);
  border-radius: 2px;
}

.progress .progress-bar {
  background-color: var(--main-color);
  border-radius: 0 2px 2px 0;
}

.progress-header p {
  font-family: var(--second-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--light-black);
  margin: 0;
}

.progress-header span {
  color: var(--lighter-color);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--second-font);
}

/* todo Mission */
.Mission {
  background-image: url("../images/mission.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.mission-icons:hover i {
  color: var(--main-color);
}

.mission-icons:hover h3 {
  color: var(--main-color);
}

.mission-icons i {
  color: var(--white-color);
  font-size: 35px;
  margin-bottom: 20px;
  transition: 0.3s all;
}

.mission-icons h3 {
  font-family: var(--first-font);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s all;
}

.mission-list h2 {
  color: var(--white-color);
  font-family: var(--first-font);
  font-size: 38px;
  font-weight: 700;
}

.mission-list p {
  color: var(--white-color);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 24.5px;
}

.mission-ul p {
  margin: 0;
  font-family: var(--second-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
}

.mission-ul ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.mission-ul i {
  font-size: 16px;
  color: var(--white-color);
  margin-right: 10px;
}

/** Team **/
#Team {
  background-color: var(--main-background);
}

#Team .header-sections h2::before {
  content: "O";
}

@media screen and (max-width: 992px) {
  #Team .header-sections p {
    width: 100%;
  }
}

.team-img {
  overflow: hidden;
  border-radius: 3px;
}

.team-img img {
  transition: 0.3s all;
  width: 100%;
}

.team-cards:hover img {
  transform: scale(1.1);
}

.team-cards p {
  color: var(--black-color);
  font-family: var(--first-font);
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s all;
}

.team-cards:hover p {
  color: var(--main-color);
}

.cards span {
  color: var(--lighter-color);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 400;
}

.team-layer {
  background-color: var(--light-main-color);
  transform: translateY(10px);
  opacity: 0;
  transition: 0.3s all;
}

.team-cards:hover .team-layer {
  transform: translateY(0px);
  opacity: 1;
}

.team-layer a {
  display: inline-flex;
  color: var(--white-color);
  transition: 0.3s all;
}

.team-layer i {
  margin: 0 12px;
  font-size: 16px;
}

.team-layer a:hover {
  color: var(--black-color);
  transform: translateY(-5px);
}

/*? Project */
#Projects {
  background-color: var(--second-background);
}

#Projects .header-sections h2::before {
  content: "R";
}

@media screen and (max-width: 992px) {
  #Projects .header-sections p {
    width: 100%;
  }
}

.nav-tabs-card {
  cursor: pointer;
}

.navs-tabs-layer {
  inset: 1%;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s all;
}

.nav-tabs-card:hover .navs-tabs-layer {
  opacity: 1;
  transform: translateY(0);
}

.navs-tabs-layer p {
  position: relative;
  margin-bottom: 5px;
  transform: translateY(-15px);
  transition: 0.5s all;
  font-size: 16px;
  line-height: 16px;
  color: var(--black-color);
  font-family: var(--first-font);
  font-weight: 600;
}

.nav-tabs-card:hover .navs-tabs-layer p {
  transform: translateY(0px);
}

.navs-tabs-layer span {
  color: var(--lighter-color);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 400;
}

#Projects .nav-item .nav-link {
  color: var(--black-color);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  padding: 3px 20px;
  background-color: transparent;
  border: 1px solid transparent;
  transition: 0.3s all;
}

#Projects .nav-item .nav-link:hover {
  color: var(--main-color);
}

#Projects .nav-pills .nav-link.active {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

/* idea */
.idea {
  background-color: var(--main-background);
}

.idea-row {
  padding-bottom: 40px;
}

.idea p {
  font-family: var(--first-font);
  color: var(--black-color);
  font-size: 32px;
  font-weight: 400;
}

.idea a {
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--price-badge);
  background-color: var(--main-color);
  border-radius: 3px;
  padding: 18px 30px;
  transition: all 0.1s ease-in;
}

.idea a:hover {
  background-color: var(--black-color);
}

/*? Services */
#Services {
  background-color: var(--second-background);
}

#Services .header-sections h2::before {
  content: "S";
}

@media screen and (max-width: 992px) {
  #Services .header-sections p {
    width: 100%;
  }
}

.services-card-header h4 {
  color: var(--black-color);
  font-family: var(--first-font);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: 0.3s all;
}

.services-card:hover h4 {
  color: var(--main-color);
}

.services-card-header p {
  color: var(--lighter-color);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 400;
}

.services-icon i {
  color: var(--main-color);
  font-size: 28px;
  margin-right: 20px;
}

/* Video */
.video-section {
  background: url("../images/video.jpg");
  background-attachment: fixed;
  background-size: cover;
  padding: 100px;
}

.video-section p {
  font-family: var(--second-font);
  color: var(--white-color);
  font-size: 24px;
  font-weight: 700;
}

.video-section .play-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid var(--white-color);
  background: transparent;
  font-size: 18px;
  color: var(--white-color);
  cursor: pointer;
  transition: 0.3s all;
}

.video-section .play-btn:hover {
  background: var(--white-color);
  transform: scale(1.1);
}

.video-section .play-btn i {
  transition: 0.3s all;
}

.video-section .play-btn:hover i {
  color: var(--main-color);
}

/* todo Clients */
.clients {
  background-color: var(--second-background);
  padding-block: 120px;
}

.clients .header-sections h2::before {
  content: "C";
}

@media screen and (max-width: 992px) {
  .clients .header-sections p {
    width: 100%;
  }
}

.clients .carousel-item-next,
.clients .carousel-item-prev,
.clients .carousel-item.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients .carousel-control-prev-icon,
.clients .carousel-control-next-icon {
  background-color: var(--black-color);
  padding: 10px;
}

.clients .carousel-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.client-info h5 {
  font-family: var(--first-font);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
}

.client-info span {
  font-family: var(--second-font);
  color: var(--lighter-color);
  font-size: 14px;
  font-weight: 400;
}

.client-review p {
  font-family: var(--second-font);
  color: var(--lighter-color);
  font-size: 25px;
  font-weight: 400;
  max-width: 70%;
  margin: auto;
  text-align: center;
}

.clients .carousel,
.clients .carousel-inner,
.clients .carousel-item {
  height: auto;
}

/*^ Numbers */
.numbers {
  background-color: #1f1f1f;
  padding: 50px;
  text-align: center;
}

.numbers-content i {
  font-size: 48px;
  color: var(--main-color);
  margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
  .numbers-content {
    border-right: 1px solid rgba(255, 255, 255, 0.171);
  }

  .number-last {
    border-right: none;
  }
}

.numbers-content h5 {
  color: var(--white-color);
  font-family: var(--first-font);
  font-size: 45px;
  font-weight: 700;
}

.numbers-content p {
  color: var(--white-color);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 400;
}

/*! Blog */
#Blog .header-sections h2::before {
  content: "B";
}

@media screen and (max-width: 992px) {
  #Blog .header-sections p {
    width: 100%;
  }
}

#Blog .card {
  background-color: var(--second-background);
}

#Blog .card-title {
  color: var(--light-color);
  font-family: var(--second-font);
  font-size: 12px;
  font-weight: 600;
}

#Blog .card-title a {
  color: var(--black-color);
  font-size: 12px;
  transition: 0.3s all;
}

#Blog .card-title a:hover {
  color: var(--main-color);
}

#Blog .card-text a {
  color: var(--light-black);
  font-family: var(--first-font);
  font-size: 24px;
  font-weight: 600;
  transition: 0.3s all;
}

#Blog .card-text a:hover {
  color: var(--main-color);
}

#Blog .card-text p {
  color: var(--lighter-color);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 400;
}

#Blog .blog-btn {
  background-color: transparent;
  color: var(--main-color);
  border: none;
  font-size: 12px;
  font-family: var(--second-font);
  font-weight: 600;
  padding: 0;
  transition: 0.3s all;
}

#Blog .blog-btn:hover {
  color: var(--black-color);
}

.blog-badge {
  position: absolute;
  background-color: var(--main-color);
  right: 0;
  top: 5%;
  color: var(--white-color);
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px 0 0 3px;
  text-transform: uppercase;
  font-family: var(--second-font);
}

#Blog .card img {
  transition: 0.3s all;
}

#Blog .card-img {
  overflow: hidden;
}

.card-img img:hover {
  opacity: 0.6;
  transform: scale(1.12);
}

#Blog .card-img,
#Blog .card-img img,
#Blog .card-img-top {
  border-radius: 0 !important;
}

/*^ Price */
.price {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.479),
      rgba(0, 0, 0, 0.479)
    ),
    url("../images/pricing.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.price .header-sections h2 {
  color: var(--white-color);
}

.price .header-sections p {
  color: var(--white-color);
}

.price .header-sections h2::after {
  background-color: var(--white-color);
}

.price .header-sections h2::before {
  content: "P";
}

@media screen and (max-width: 992px) {
  .price .header-sections p {
    width: 100%;
  }
}

.price-card {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  background-color: var(--white-color);
  color: var(--light-black);
  border-radius: 3px;
  text-align: center;
}

.price-card p {
  margin: 0;
}

.price-card .type-price {
  color: var(--black-color);
  font-weight: 700;
  font-size: 24px;
  font-family: var(--first-font);
  transition: 0.3s all;
}

.price-card:hover .type-price {
  color: var(--main-color);
}

.price-dollar {
  margin-right: 25px;
}

.price-dollar P {
  font-family: var(--second-font);
  font-size: 70px;
  font-weight: 700;
}

.price-dollar i {
  font-size: 24px;
  position: relative;
  transform: translateY(-12px);
}

.price-card-header {
  padding: 30px 20px;
  border-radius: 3px 3px 0 0;
  background: #f0f0f0;
  transition: all 0.3s;
  position: relative;
}

.price-card:hover .price-card-header {
  color: var(--main-color);
}

.price-card-header span {
  font-family: var(--second-font);
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  bottom: 30px;
  left: 42%;
}

.price-body {
  padding: 50px 30px;
}

.price-body p:not(:last-of-type) {
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--wheat-color);
}

.price-footer a {
  display: block;
  padding: 12px 0;
  color: var(--price-badge);
  background: var(--black-color);
  border-radius: 0 0 3px 3px;
  font-size: 14px;
  font-family: var(--second-font);
  font-weight: 700;
  letter-spacing: 2px;
  transition: 0.3s all;
}

.price-footer a:hover {
  background-color: var(--main-color);
}

.price-card .price-ribbon {
  position: absolute;
  overflow: hidden;
  top: -10px;
  left: -10px;
  width: 114px;
  height: 114px;
  z-index: 99;
}

.price-card .price-ribbon span {
  position: absolute;
  display: block;
  width: 165px;
  padding: 9px 0;
  background-color: var(--black-color);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  color: var(--price-badge);
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  left: -37px;
  top: 21px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
}

.price-popular {
  transform: translateY(-3%);
}

.price-popular:hover .price-card-header {
  color: var(--black-color);
}

.price-popular:hover .type-price {
  color: var(--black-color);
}

.price-popular .price-card-header {
  background-color: var(--main-color);
  color: var(--white-color);
}

.price-popular .type-price {
  color: var(--white-color);
}

/*^ Brands */
.brand-img {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s all;
}

.brand-img:hover {
  opacity: 1;
}

/** Contact  */
#Contacts {
  background-color: var(--second-background);
}

#Contacts .header-sections h2::before {
  content: "G";
}

@media screen and (max-width: 992px) {
  #Contacts .header-sections p {
    width: 100%;
  }
}

.left-contact h4 {
  font-family: var(--first-font);
  color: var(--black-color);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

.contact-info-last {
  border-bottom: none;
}

.contact-p {
  margin-left: 15px;
}

.contact-info h5,
.contact-info p {
  margin: 0;
}

.contact-info i {
  font-size: 40px;
  color: var(--main-color);
}

.contact-info h5 {
  font-family: var(--first-font);
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s all;
}

.contact-info:hover h5 {
  color: var(--main-color);
}

.contact-info p {
  font-family: var(--second-font);
  font-size: 14px;
  color: var(--lighter-color);
  font-weight: 400;
}

.contact-input {
  box-shadow: none !important;
  background-color: var(--main-background);
  border-radius: 3px;
  border: 2px solid var(--wheat-color);
  color: #a6a6a6;
  font-family: var(--second-font);
  font-size: 14px;
  padding: 14px 18px;
  transition: border-color 0.15s ease-in;
}

.right-contact textarea.form-control {
  resize: none;
  height: auto;
}

.form-control:focus {
  border-color: var(--main-color);
}

.btn-main-color {
  background-color: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--main-color);
  padding: 10px 30px;
  font-family: var(--first-font);
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s all;
}

.btn-main-color:hover {
  background-color: var(--black-color);
  color: var(--main-color);
  border: 1px solid var(--black-color);
}

.contact-input::placeholder {
  color: #949494;
}

/* Map */
.Map {
  background-color: var(--second-background);
  padding-top: 40px;
}

.map-container {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.2;
  z-index: 1;
}

/*^ Tags */
.tags {
  background-color: #222222;
  background-image: url("../images/dotted-map.png");
  background-size: contain;
}

.tags-img img {
  width: 80px;
  height: 80px;
  opacity: 0.8;
  transition: 0.3s all;
}

.tags-img img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.tags-card h4 {
  font-family: var(--first-font);
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
}

.tags-card p {
  font-family: var(--first-font);
  font-size: 14px;
  color: #b0b0b0;
  font-weight: 400;
}

.tags-card a {
  font-family: var(--first-font);
  font-size: 14px;
  color: #b0b0b0;
  font-weight: 400;
  transition: 0.3s all;
}

.tags-card a:hover {
  color: var(--main-color);
}

.tags-card li {
  margin-bottom: 5px;
}

.front-end {
  margin-top: 15px;
  margin-bottom: 15px;
}

.front-end a {
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 3px;
  border: 1px solid var(--wheat-color);
  transition: all 0.3s;
  margin-right: 5px;
}

.front-end a:hover {
  border: 1px solid var(--main-color);
}

.arrow-footer {
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  opacity: 0.5;
  border-radius: 50%;
  transition: 0.3s all;
  z-index: 2;
}

.arrow-footer:hover {
  opacity: 1;
}

.arrow-footer i {
  font-size: 18px;
  color: var(--white-color);
}

/*! Footer */
footer {
  background-color: #1a1a1a;
  padding-block: 30px;
}

footer p {
  font-family: var(--first-font);
  font-size: 14px;
  font-weight: 400;
  color: #b0b0b0;
}

footer i {
  font-size: 16px;
}

footer a {
  color: var(--white-color);
  transition: 0.3s all;
  margin-right: 15px;
}

footer a:hover {
  color: var(--main-color);
}

@media screen and (max-width: 992px) {
  footer {
    text-align: center;
  }
  footer .copyright {
    text-align: center !important;
    margin-top: 20px;
  }
}
