/* 
================= :: INDEX OF CSS :: *********
:: 1.0 WEB FONTS
:: 2.0 GLOBAL Variable Define CSS
:: 3.0 COMMON CSS
:: 4.0 NAVBAR CSS
:: 5.0 BANNER CSS
:: 6.0 ABOUT CSS
:: 7.0 SERVICES CSS
:: 8.0 PORTFOLIO CSS
:: 9.0 CONTACT CSS
:: 10.0 FOOTER CSS
:: 11.0 SOCIAL MEDIA CIRCLE CSS
=============================== */

/* ===================================
       :: 1.0 WEB FONTS
==================================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ===================================
       :: 2.0 GLOBAL Variable Define CSS
==================================*/

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
:root {
  /* Background Colors */
  --primary-color: #fd4766;
  --secondary-color: #0e1525;
  --bg-dark-blue: #091020;
  --bg-white: #fff;
  --gray-color: #c6c9d8bf;
  /* --bg-gradient: linear-gradient(to top, hsla(331, 100%, 50%, 1) 0%, hsla(240, 91%, 73%, 1) 100%); */
  --gradient-color: linear-gradient(-224deg, var(--primary-color) 0, #337dff 100%);
  --gradient-text: linear-gradient(120deg, #1c99fe 20.69%, #7644ff 50.19%, var(--primary-color) 79.69%);
  filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr='var(--primary-color)',endColorstr = 'var(--secondary-color)', GradientType=1);

  /* Text Color */
  --primary-font: "poppins", sans-serif;
  --primary-text: #fd4766;
  --text-gray: #c6c9d8bf;
  --text-white: #fff;
}

/* ===================================
       :: 3.0 COMMON CSS
==================================*/
body {
  font-family: var(--primary-font);
  background-color: var(--secondary-color);
}

a {
  text-decoration: none;
}

/* Custom Scrollbar Css */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0%;
}

section {
  padding: 50px 0;
}
.main-btn {
  display: inline-block;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  padding: 10px 27px;
  background-color: transparent;
  border: 2px solid var(--gray-color);
  color: var(--gray-color);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}
.main-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
}

h1 {
  font-size: 54px;
  line-height: 68px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
}
h1 span {
  color: var(--primary-color);
}

h2 {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 15px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 19px;
}
h6 {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 20px;
  display: block;
}
p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  font-weight: 400;
}
.subtitle {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 18px;
  font-size: 16px;
  margin-bottom: 12px;
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
input:hover,
input:focus,
textarea:focus,
textarea:hover,
button {
  outline: none !important;
  box-shadow: none !important;
}

/* ===================================
       :: 4.0 NAVBAR CSS
==================================*/
.header_wrapper .navbar {
  padding: 15px 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.header_wrapper .navbar-brand img {
  max-width: 120px;
  height: auto;
}
.header_wrapper .navbar-toggler {
  border: none;
  color: var(--text-gray);
  line-height: 2;
}
.header_wrapper .navbar-toggler:focus {
  box-shadow: none;
}
.header_wrapper .nav-item {
  margin: 0 10px;
}
.header_wrapper .nav-item .nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  display: inline-block;
}
.header_wrapper .nav-item .nav-link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0%;
  background: var(--primary-color);
  transition: 0.5s;
}
.header_wrapper .nav-item .nav-link.active::after,
.header_wrapper .nav-item .nav-link:hover::after {
  width: 100%;
}
.header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover {
  color: var(--text-white);
}
.header-scrolled {
  position: fixed;
  left: 0%;
  top: 0%;
  width: 100%;
  background-color: var(--bg-dark-blue);
  box-shadow: 0 4px 6px rgba(12, 0, 46, 0.05);
}
.header-scrolled .nav-item .nav-link:active,
.header-scrolled .nav-item .nav-link:hover {
  color: var(--primary-text);
}
/* ===================================
       ::5.0 BANNER SECTION CSS
==================================*/
.banner_wrapper {
  width: 100%;
  height: auto;
  min-height: 650px;
  background-image: url("../images/bg-image.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  padding: 200px 0 100px 0;
}
/* ===================================
       ::6.0 ABOUT SECTION CSS
==================================*/
.about_wrapper ul.nav-pills {
  border: 1px solid var(--gray-color);
  border-radius: 50px;
}
.about_wrapper ul li .nav-link {
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.45s cubic-bezier(0, 0, 0.2, 1);
  display: inline-block;
  color: var(--text-gray);
  border: 0;
}
.about_wrapper ul li .nav-link.active {
  background-color: var(--primary-color);
}
.about_wrapper .single-progress {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
}
.about_wrapper .single-progress .progress {
  height: 4px;
  border-radius: 4px;
  box-shadow: none;
  background-color: var(--bg-white);
  overflow: visible;
}
.about_wrapper .single-progress .progress-bar {
  background-image: var(--gradient-color);
}
.about_wrapper .single-progress h6 {
  text-align: left;
}
.about_wrapper .single-progress .label {
  position: absolute;
  right: 0%;
  top: 0%;
  color: var(--text-gray);
  font-size: 15px;
}
.about_wrapper .tab-pane li {
  color: var(--gray-color);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 300;
  list-style: none;
}
.about_wrapper .tab-pane li a {
  font-weight: 500;
  display: block;
  color: var(--text-gray);
}
.about_wrapper img {
  border-radius: 25px;
  box-shadow: 6px 10px 10px black;
}
/* ===================================
       ::7.0 SERVICES SECTION CSS
==================================*/
.services_wrapper .card {
  background-color: var(--bg-dark-blue);
  cursor: pointer;
  transition: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  box-shadow: 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
}
.services_wrapper .card:hover {
  box-shadow: 0px 2px 70px rgb(253 71 102 / 5%);
  transform: translateY(-5px);
}

/* ===================================
       ::8.0 PORTFOLIO SECTION CSS
==================================*/
.portfolio_wrapper .card {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--bg-white);
  cursor: pointer;
  box-shadow: 0 0 16px var(--bg-dark-blue);
}
.portfolio_wrapper .card span {
  transition: background-position 4s ease-in-out 0s;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
}
.portfolio_wrapper .card:hover span {
  background-position: bottom center;
}
/* ===================================
       ::8.0 CONTACT SECTION CSS
==================================*/
.contact_wrapper .form-control,
.contact_wrapper textarea {
  background-color: transparent;
  color: var(--text-gray);
  border-color: var(--gray-color);
  font-size: 15px;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
}
.contact_wrapper .form-control:hover,
.contact_wrapper textarea:hover,
.contact_wrapper .form-control:focus,
.contact_wrapper textarea:focus {
  border-color: var(--primary-color);
  color: var(--text-white);
}
.contact_wrapper .call_details {
  color: var(--text-gray);
}
.contact_wrapper .call_details a {
  font-weight: 700;
  color: var(--text-gray);
}
::-webkit-input-placeholder {
  color: var(--text-gray) !important;
}
.contact_wrapper img {
  border-radius: 25px;
  box-shadow: 0 10px 10px black;
}
/* ===================================
       ::9.0 FOOTER SECTION CSS
==================================*/
.footer_wrapper {
  background-color: var(--bg-dark-blue);
  padding: 20px 0;
}
.footer_wrapper .footer-logo img {
  width: 100px;
}
.footer_wrapper .social-icon li {
  margin: 6px;
}
.footer_wrapper .social-icon li a {
  width: 35px;
  height: 35px;
  line-height: 30px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--text-gray);
  color: var(--text-gray);
  text-align: center;
  border-radius: 100%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.035, 1);
}
.footer_wrapper .social-icon li a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 10px 15px 0 rgb(0 0 0 / 10%);
  transform: translateY(-3px);
}
.footer_wrapper .copyright-text p {
  font-size: 12px;
  line-height: 20px;
}
.footer_wrapper .copyright-text a {
  color: var(--primary-color);
}
/* ===================================
       :: 11.0 SOCIAL MEDIA CIRCLE CSS
==================================*/

.socialmedia-toggle {
  visibility: visible;
  opacity: 1;
  bottom: 17px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  right: 23px;
  position: fixed;
  /* background: linear-gradient(270deg, #0090fd, #006afe) !important; */
  /* background: linear-gradient(270deg, #000000, #232323) !important; */
  background: linear-gradient(90deg, hsla(281, 37%, 45%, 1) 0%, hsla(1, 62%, 48%, 1) 100%);
  /* box-shadow: rgb(0 77 255 / 50%) 0px 2px 16px; */
  box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.75);
  text-align: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  z-index: 999;
}

.fa-plus {
  margin-top: 15px;
  font-size: 30px;
  display: block;
  color: white !important;
  cursor: pointer;
  -webkit-transition: 0.7s;
}

.menu_group {
  position: fixed;
  bottom: 2px;
  right: 7px;
  height: 100px;
  cursor: pointer;
  width: 100px;
  /* background: linear-gradient(270deg, #0090fd, #006afe); */
  /* background: linear-gradient(270deg, #000000, #232323) !important; */
  background: linear-gradient(90deg, hsla(281, 37%, 45%, 1) 0%, hsla(1, 62%, 48%, 1) 100%);
  border-radius: 250px 250px 250px 250px;
  z-index: 998;
  transform: scale(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.menu_group a {
  position: absolute;
  display: inline-block;
  font-size: 12px;
  color: #364f6b;
}
.toggle_items:nth-child(1) {
  top: 8px;
  right: 33px;
}

.toggle_items:nth-child(2) {
  top: 20px;
  right: 63px;
}

.toggle_items:nth-child(3) {
  top: 50px;
  right: 69px;
}

.toggle_items:nth-child(4) {
  top: 31px;
  right: 77px;
}

.toggle_items:nth-child(5) {
  top: 49px;
  right: 77px;
}

.toggle_items:nth-child:hover {
  transform: scale(1.1);
}
#toggle-images1 {
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle-images1:hover {
  transform: scale(1.1);
}

#toggle-images2 {
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle-images2:hover {
  transform: scale(1.1);
}

#toggle-images3 {
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle-images3:hover {
  transform: scale(1.1);
}
