@charset "UTF-8";
@font-face {
  font-family: 'Days One';
  src: url('../fonts/DaysOne-Regular.ttf') format('truetype');
}
:root {
  /**
  @font family declaration
  */
  --gp-ff-body: 'Archivo', sans-serif;
  --gp-ff-heading: 'Days One', sans-serif;
  --gp-ff-p: 'Archivo', sans-serif;
  --gp-ff-fontawesome: "Font Awesome";
  /**
  @color declaration
  */
  --gp-common-white: #ffffff;
  --gp-common-black: #000;
  --gp-heading-primary: #171151;
  --gp-grey-1: #F2F5FA;
  --gp-text-body: #171151;
  --gp-text-1: #A9B7D1;
  --gp-text-2: #8A879F;
  --gp-text-3: #B7B6C4;
  --gp-theme-primary: #171151;
  --gp-theme-secondary: #10D0A1;
  --gp-site-primary: #0c53a5;
  --gp-theme-pink: #F72A75;
  --gp-theme-sky: #42BFFF;
  --gp-border-primary: #ECEEF3;
  --gp-border-secondary: #D1D6E0;
  --gp-icon-blue: #0E63FF;
  --gp-icon-blue-light: #E7efFF;
  --gp-icon-green: #10D0A1;
  --gp-icon-green-light: #E7FAF6;
  --gp-icon-pink: #F72A75;
  --gp-icon-pink-light: #FEEAf1;
  --gp-icon-sky: #42BFFF;
  --gp-icon-sky-light: #ECF9FF;
  --gp-icon-red: #FF0000;
  --gp-icon-tweet: #1DA1F2;
  --gp-icon-fb: #4267B2;
  --gp-icon-skype: #00A6E4;
  --gp-text-color-primary: #0076ff;
}

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

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--gp-ff-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--gp-text-body);
  line-height: 26px;
  overflow-X: hidden !important;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gp-ff-heading);
  color: var(--gp-header-1);
  margin-top: 0px;
  font-weight: var(--gp-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
li {
  list-style: none;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--gp-ff-p);
  font-size: 15px;
  font-weight: 400;
  color: var(--gp-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--gp-common-black);
  color: var(--gp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--gp-common-black);
  color: var(--gp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--gp-common-black);
  color: var(--gp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--gp-common-black);
  font-size: var(--gp-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--gp-common-black);
  font-size: var(--gp-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.basic-pagination ul li {
  display: inline-block;
}
.basic-pagination ul li:not(:last-child) {
  margin-right: 6px;
}
.basic-pagination li.disabled span {
  color: #bfbfbf;
}
.basic-pagination li.disabled span:hover,
.basic-pagination li.disabled span:focus-visible {
  background: transparent !important;
  color: #bfbfbf !important;
  border: none !important;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gp-text-2);
}
@media (max-width: 767px) {
  .basic-pagination ul li a, .basic-pagination ul li span {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.basic-pagination ul li a:hover, .basic-pagination ul li a.current, .basic-pagination ul li span:hover, .basic-pagination ul li span.current {
  background: var(--gp-theme-primary);
  border-color: var(--gp-theme-primary);
  color: var(--gp-common-white);
}

/* scrollUp */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 6px;
  z-index: 99;
  color: var(--gp-common-white);
  text-align: center;
  cursor: pointer;
  background: var(--gp-site-primary);
  transition: 1s ease;
  border: none;
}
@media (max-width: 767px) {
  .scroll-top {
    right: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
  background: var(--gp-theme-pink);
}

/*--
    - Spacing
-----------------------------------------*/
.gsp-bt-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 42px;
  border-radius: 5px;
  background: var(--gp-common-white);
}
.gsp-bt-btn:hover {
  color: var(--gp-icon-green);
}
.gsp-bt-btn span {
  color: var(--gp-text-2);
  margin-left: 10px;
  text-transform: uppercase;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .gsp-bt-btn {
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-bt-btn {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-bt-btn {
    box-shadow: rgba(100, 100, 111, 0.1) 1px 5px 20px 1px;
    line-height: 1;
    padding: 16px 25px 12px 25px;
  }
}

.gsp-cta-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 19px 46px;
  border-radius: 5px;
  background: var(--gp-icon-green);
  color: var(--gp-common-white);
}
.gsp-cta-btn span {
  text-transform: uppercase;
  color: var(--gp-common-white);
  margin-left: 10px;
  margin-right: 4px;
}
.gsp-cta-btn:hover {
  color: var(--gp-text-body);
}

.gsp-btn,
.gsp-btn-second {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  padding: 17px 30px;
  background-color: var(--gp-site-primary);
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  color: var(--gp-common-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-btn,
  .gsp-btn-second {
    padding: 20px 40px;
  }
}

.gsp-btn:hover,
.gsp-btn-second:hover {
  color: #fff;
}
.gsp-btn:hover::after,
.gsp-btn-second:hover::after {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

@media (max-width: 767px) {
  .gsp-btn {
    margin-right: 5px;
  }
}

.gsp-btn-second {
  background: var(--gp-icon-green);
}
@media (max-width: 767px) {
  .gsp-btn-second {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.gsp-btn-second::after {
  content: "";
  height: 300px;
  width: 300px;
  background-color: #13D9A8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

/* 01. ========= video ripple animation ========== */
@keyframes dm-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 208, 161, 0.4);
  }
  70% {
    box-shadow: 0 0 0 45px rgba(16, 208, 161, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 208, 161, 0);
  }
}
/* 02. ========= video ripple animation ========== */
@keyframes dm-pulse-2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* 03. ========= ripple animation ========== */
@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/* 04. ========= btn-arrow-animation ========== */
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
/* 05. ========= firefly ========== */
@keyframes firefly {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    color: white;
  }
}
/* 06. ========= ripple animation ========== */
.gsp-ripple-white {
  border-radius: 50%;
  animation: gsp-ripple-white 2s linear infinite;
}

@-webkit-keyframes gsp-ripple-white {
  0% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
@keyframes gsp-ripple-white {
  0% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--gp-grey-1);
}

.theme-bg {
  background: var(--gp-heading-primary);
}

.theme-light-bg {
  background-color: var(--gp-icon-blue);
}

.white-bg {
  background: var(--gp-common-white);
}

.black-bg {
  background: var(--gp-common-black);
}

.breadcrumb_area {
  padding: 200px 0;
}
.breadcrumb_area.hdr-minimal{ padding: 60px 0; }
.breadcrumb_overlay {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.breadcrumb_overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(23, 17, 81, 0.7);
  z-index: -1;
}

.gsp-breadcrumb_title {
  color: var(--gp-common-white);
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-breadcrumb_title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-breadcrumb_title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .gsp-breadcrumb_title {
    font-size: 36px;
  }
}
.gsp-breadcrumb_link {
  justify-content: end;
}
@media (max-width: 767px) {
  .gsp-breadcrumb_link {
    justify-content: start;
  }
}
.gsp-breadcrumb_link span {
  color: var(--gp-common-white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-breadcrumb_link span {
    font-size: 16px;
  }
}
.gsp-breadcrumb_link span a {
  text-decoration: underline;
  margin-left: 5px;
}
.gsp-breadcrumb_link span a:hover {
  color: var(--gp-icon-green);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-breadcrumb_link span {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .serv-md {
    justify-content: start;
  }
}

.navtabs__icon {
  font-size: 100px;
  color: var(--gp-icon-green);
  display: inline-block;
}
.navtabs__content p {
  font-size: 16px;
  color: var(--gp-text-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navtabs__content p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navtabs__content p br {
    display: none;
  }
}

.nav-primary {
  margin-left: -23px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .nav-primary {
    margin-left: 0;
  }
}

.nav-secondary {
  margin-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .nav-secondary {
    margin-left: 0;
  }
}

.nav-tertiary {
  margin-left: 58px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .nav-tertiary {
    margin-left: 0;
  }
}

.gsp-nav-tavs {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171151;
  font-weight: 700;
  font-size: 14px;
}
.gsp-nav-tavs li {
  position: relative;
}
.gsp-nav-tavs li::before {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  background: #DFE3E9;
  top: 50%;
  transform: translateY(-50%);
}
.gsp-nav-tavs li:first-child::before {
  display: none;
}
.gsp-nav-tavs .nav-link.active {
  border-bottom: 4px solid var(--gp-icon-green);
  color: var(--gp-theme-primary);
  box-shadow: 0px 10px 10px rgba(21, 48, 73, 0.1);
  background-color: var(--gp-common-white);
}
.gsp-nav-tavs button {
  padding: 24px 120px;
  background-color: var(--gp-grey-1);
  color: var(--gp-text-2);
  border-bottom: 4px solid var(--gp-grey-1);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-nav-tavs button {
    padding: 24px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-nav-tavs button {
    padding: 22px 60px;
  }
}
@media (max-width: 767px) {
  .gsp-nav-tavs button {
    padding: 12px 20px;
  }
}
.gsp-nav-tavs button:hover {
  color: var(--gp-icon-green);
}

.nav-info {
  font-size: 18px;
  color: var(--gp-text-2);
}
@media (max-width: 767px) {
  .nav-info br {
    display: none;
  }
}

.navtabs__shape {
  position: absolute;
  top: 33px;
  left: 360px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navtabs__shape {
    left: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navtabs__shape {
    left: 230px;
  }
}

.nabthumb img {
  border-radius: 20px;
  width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .nabmission__content {
    padding-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .nabmission p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.nabmission__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.32;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .nabmission__title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

.gsp-section_sub-title {
  text-transform: uppercase;
  font-weight: 700;
  color: #0057bb;
  display: inline-block;
}
.gsp-section-title {
  font-size: 43px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .gsp-section-title {
    font-size: 32px;
  }
}
.gsp-section i {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 35px;
  display: block;
}
.gsp-section_link {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
}
.gsp-section_link > i {
  display: inline-block;
  margin-bottom: 0;
}
.gsp-section_link:hover {
  color: var(--gp-icon-green);
}
.gsp-section_link:hover i {
  animation: tfLeftToRight 0.5s forwards;
}
.gsp-section p {
  font-size: 15px;
  display: block;
  padding-right: 55px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .gsp-section p {
    padding: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-section p {
    padding: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-section p {
    padding: 0px;
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .gsp-section p {
    padding: 0px;
    font-size: 14px;
    margin-right: 0;
  }
}

.sub-title-white {
  color: var(--gp-common-white);
}

.title-white {
  color: var(--gp-common-white);
}

.left-line {
  position: relative;
}
.left-line::before {
  content: "";
  width: 35px;
  height: 2px;
  background-color: #0057bb;
  display: inline-block;
  margin-right: 10px;
}

.left-line-white {
  position: relative;
}
.left-line-white::before {
  content: "";
  width: 35px;
  height: 2px;
  background-color: var(--gp-common-white);
  display: inline-block;
  margin-right: 10px;
}

.right-line {
  position: relative;
}
.right-line::after {
  content: "";
  width: 35px;
  height: 2px;
  background-color: #0057bb;
  display: inline-block;
  margin-left: 10px;
}

.right-line-white {
  position: relative;
}
.right-line-white::after {
  content: "";
  width: 35px;
  height: 2px;
  background-color: var(--gp-common-white);
  display: inline-block;
  margin-left: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-section-center {
    text-align: center !important;
  }
}

.header__area {
  padding: 40px 90px 40px 80px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__area {
    padding: 40px 15px;
  }
}

.main-menu {
  margin: 0 0 0 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu {
    margin: 10px 0 0 0;
  }
}
.main-menu ul > li {
  display: inline-block;
  position: relative;
  z-index: 9;
}
.main-menu ul > li > a {
  padding: 15px 0;
  margin: 0 30px;
  font-size: 14px;
  color: #63626f;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}
.main-menu ul > li > a:hover, .main-menu ul > li > a.active {
  color: var(--gp-site-primary);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul > li > a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul > li > a {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul > li > a {
    font-size: 12px;
  }
}
.main-menu ul > li.has-dropdown a {
  position: relative;
}
.main-menu ul > li.has-dropdown a::after {
  content: "\f107";
  font-family: "Font Awesome";
  font-weight: 700;
  right: 0;
}
.main-menu ul > li .sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: max-content;
  padding: 20px 30px;
  background: var(--gp-theme-primary);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-menu ul > li .sub-menu > li {
  display: block;
  width: 100%;
  margin: 0;
}
.main-menu ul > li .sub-menu > li > a {
  display: block;
  font-weight: 500;
  padding: 5px 25px 5px 5px;
  font-size: 14px;
  z-index: 1;
  color: var(--gp-common-white);
  width: 100%;
  text-transform: capitalize;
  margin: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-menu ul > li .sub-menu > li > a:hover {
  color: #fece2a;
}
.main-menu ul > li .sub-menu > li > a::before {
  display: none;
}
.main-menu ul > li .sub-menu > li > a::after {
  content: "\f061";
  font-family: "Font Awesome";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-menu ul > li .sub-menu > li > a:hover::after {
  transform: translateY(-50%) translateX(3px);
}
.main-menu ul > li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.header-custom {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--gp-border-primary);
}

.header-logo-box {
  flex: 0 0 auto;
  width: 230px;
  text-align: center;
  padding: 15px;
}
.header-logo-box img {
  width: 100%;
}

.header-menu-box {
  width: 100%;
  border-left: 1px solid var(--gp-border-primary);
  overflow: visible;
}

.header-menu-top {
  border-bottom: 1px solid var(--gp-border-primary);
  padding: 10px 0;
}

.header-time {
  text-align: right;
}
.header-time span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--gp-text-2);
  margin-left: 50px;
  margin-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-time span {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.header-time span i {
  color: var(--gp-text-body);
  font-size: 14px;
  margin-right: 8px;
}

.header-top-mob {
  margin-left: 80px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  color: var(--gp-text-2);
  padding: 22px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-top-mob {
    margin-left: 30px;
  }
}
.header-top-mob span {
  margin-left: 5px;
}
.header-top-mob a {
  color: var(--gp-text-body);
}
.header-top-mob a:hover {
  color: var(--gp-icon-green);
}

.main-menu-second {
  margin: 0 0 0 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-second {
    margin: 0 0 0 30px;
  }
}

.header-cart-list {
  text-align: end;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-cart-list {
    margin-right: 25px;
  }
}

.header-bottom-btn {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  padding: 25px 45px;
  background-color: #0E63FF;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  color: var(--gp-common-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-bottom-btn {
    padding: 20px 40px;
  }
}
.header-bottom-btn::after {
  content: "";
  height: 300px;
  width: 300px;
  background-color: #2974FF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.header-bottom-btn:hover {
  color: #fff;
}
.header-bottom-btn:hover::after {
  transform: translateY(-50%) translateX(-50%) scale(1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-bottom-btn {
    padding: 25px 30px;
  }
}

.main-menu-second ul li {
  margin-right: 25px;
}
.main-menu-second ul li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .main-menu-second ul li {
    margin-right: 45px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu-second ul li {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-second ul li {
    margin-right: 20px;
  }
}
.main-menu-second ul li > a {
  margin: 0;
  padding: 20px 0;
}
.main-menu-second ul li > a:hover::before, .main-menu-second ul li > a.active::before {
  width: 100%;
}

.gsp-menu-toggle {
  font-size: 16px;
  line-height: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-menu-toggle {
    margin-right: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-menu-toggle {
    font-size: 28px;
  }
}

.gsp-side-info-area {
  background: #171151;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 30px;
  width: 350px;
  transform: translateX(120%);
  transition: 0.3s;
  z-index: 99;
}
.gsp-side-info-area.gsp-sidebar-opened {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .gsp-side-info-area {
    width: 300px;
  }
}

.gsp-sidebar-close {
  color: #fff;
  position: absolute;
  left: -35px;
  font-size: 21px;
  background: #171151;
  width: 35px;
  height: 35px;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.layout-left-right {
  display: flex;
  flex: 0 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .layout-left-right {
    display: block;
  }
}

.header-layout-left {
  width: 350px;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}
@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .header-layout-left {
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-layout-left {
    width: 250px;
  }
}

.content-layout-right {
  width: 100%;
}

.content-layout-right {
  width: calc(100% - 350px);
  margin-left: auto;
}
@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .content-layout-right {
    width: calc(100% - 300px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .content-layout-right {
    width: calc(100% - 250px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .content-layout-right {
    width: 100%;
  }
}

@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1500px) and (max-width: 1700px) {
  .header-left-logo {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-left-logo {
    padding-bottom: 20px;
  }
}
.header-left-logo a {
  margin: 70px 63px;
  display: block;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1500px) and (max-width: 1700px) {
  .header-left-logo a {
    margin: 35px 30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-left-logo a {
    margin: 35px 25px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-left-logo a {
    margin: 35px 25px;
    text-align: center;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-left-logo a img {
    width: 150px;
  }
}

.header-left-menu {
  margin: 0 0 140px 100px;
  border-left: 2px solid #201B58;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1500px) and (max-width: 1700px) {
  .header-left-menu {
    margin: 0 0 90px 80px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-left-menu {
    margin: 0 0 60px 60px;
  }
}
.header-left-menu ul > li {
  margin-bottom: 40px;
  position: relative;
}
.header-left-menu ul > li:last-child {
  margin-bottom: 0;
}
.header-left-menu ul > li.has-dropdown > a::after {
  content: "+";
  right: 0;
}
.header-left-menu ul > li a {
  color: var(--gp-common-white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 22px;
  display: block;
  position: relative;
}
.header-left-menu ul > li a::before {
  content: "";
  left: -2px;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  width: 2px;
  height: 0px;
  background-color: var(--gp-icon-green);
  position: absolute;
}
.header-left-menu ul > li a:hover {
  color: var(--gp-theme-secondary);
}
.header-left-menu ul > li a:hover::before {
  height: 100%;
}
.header-left-menu ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  left: 100%;
}
.header-left-menu .sub-menu {
  position: absolute;
  top: 0%;
  left: 105%;
  width: 200px;
  padding: 20px 10px;
  background: #29226a;
  transition: all 0.3s ease-out 0s;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.header-left-menu .sub-menu li {
  margin-bottom: 8px;
}
.header-left-menu .sub-menu li a {
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
}

.header-left-contact {
  text-align: center;
}
.header-left-contact span {
  font-weight: 700;
  font-size: 14px;
  color: var(--gp-theme-secondary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.header-left-contact a {
  font-family: "Days One";
  font-weight: 400;
  font-size: 30px;
  color: var(--gp-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-left-contact a {
    font-size: 24px;
  }
}
.header-left-contact a:hover {
  color: var(--gp-theme-secondary);
}

.hero-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 900px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .hero-bg {
    height: 750px;
  }
}
@media (max-width: 767px) {
  .hero-bg {
    height: 650px;
  }
}
.hero-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(89.9deg, #0055F1 -6.67%, rgba(23, 17, 81, 0) 73.29%);
  z-index: -1;
}

.gspherobg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.gspherotext{
  padding-top: 275px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1500px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gspherotext{
    padding-top: 150px;
    padding-left: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gspherotext{
    padding-top: 180px;
  }
}
.gspherotext_title {
  font-weight: 400;
  font-size: 60px;
  line-height: 1.16;
  color: var(--gp-common-white);
}
@media (max-width: 767px) {
  .gspherotext_title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .gspherotext_title br {
    display: none;
  }
}
.gspherotextp {
  font-weight: 500;
  font-size: 18px;
  color: var(--gp-common-white);
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .gspherotextp {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .gspherotextp br {
    display: none;
  }
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .gsp-common-area {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .gsp-common-area {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-common-area {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.gsp-mob-logo img {
  width: 220px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-mob-logo img {
    width: 180px;
  }
}

.logo img {
  width: 220px;
}

.footer-widget__title img {
  width: 220px;
}

.sidebarinfo {
  background-color: var(--gp-theme-primary);
  text-align: start;
  position: fixed;
  right: 0;
  top: 0;
  width: 420px;
  height: 100%;
  box-shadow: rgba(5, 13, 54, 0.05) 5px 15px 30px 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999999;
  padding: 30px;
  transform: translateX(100%);
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .sidebarinfo {
    width: 310px;
  }
}
.sidebarinfo.gsp-shop-sidebar-opened {
  transform: translateX(0);
}
.sidebarinfo__close {
  color: #fff;
  right: 30px;
  font-size: 18px;
  background: var(--gp-theme-secondary);
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40px;
}
@media (max-width: 767px) {
  .sidebarinfo__close {
    width: 30px;
    height: 30px;
  }
}
.sidebarinfo__logo a img {
  width: 180px;
}
@media (max-width: 767px) {
  .sidebarinfo__logo a img {
    width: 160px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sidebarinfo__content {
    padding-top: 35px;
    margin-bottom: 40px;
  }
}
.sidebarinfo__content p {
  font-weight: 500;
  font-size: 18px;
  color: var(--gp-common-white);
  margin-bottom: 55px;
}
.sidebarinfo__content span {
  color: var(--gp-text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}
.sidebarinfo__content a {
  display: block;
  color: var(--gp-common-white);
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .sidebarinfo__content a {
    font-size: 14px;
  }
}
.sidebarinfo__content a:hover {
  color: var(--gp-theme-secondary);
}
.sidebarinfo__content a i {
  color: #FFDC60;
  margin-right: 5px;
}
.sidebarinfo__content-inputarea span {
  color: var(--gp-text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.sidebarinfo__content-inputarea-input {
  position: relative;
}
.sidebarinfo__content-inputarea-input input {
  width: 100%;
  height: 60px;
  padding: 0 80px 0 25px;
  font-size: 16px;
  color: var(--gp-theme-primary);
  border: none;
  background-color: var(--gp-common-white);
  border-radius: 5px;
  border: 1px solid var(--gp-text-2);
}
.sidebarinfo__content-inputarea-input-btn {
  position: absolute;
  color: var(--gp-common-white);
  height: 60px;
  width: 60px;
  background-color: var(--gp-icon-green);
  border-radius: 5px;
  top: 0;
  right: 0;
}
.sidebarinfo__content-inputarea-input-btn:hover {
  background-color: var(--gp-icon-pink);
}
.sidebarinfo__gallery span {
  color: var(--gp-text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.sidebarinfo__gallery-item img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.sidebarinfo__socialicon a {
  color: var(--gp-common-white);
  margin-right: 20px;
  font-size: 14px;
}
.sidebarinfo__socialicon a:hover {
  color: var(--gp-theme-secondary);
}

.gsp-cart-icon-area {
  position: relative;
  padding: 18px 0;
}

.mean-container {
  overflow: hidden;
}

.gsp-home-one {
  position: absolute;
  left: 0;
  right: 0;
}

.header-sticky {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 99;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  background: var(--gp-common-white);
}
.header-sticky .gsp-bt-btn {
  box-shadow: rgba(100, 100, 111, 0.1) 1px 5px 20px 1px;
}

.gsp-home-one.header-sticky {
  padding-top: 0px;
  padding-bottom: 0px;
}
.gsp-home-one.header-sticky .main-menu nav > ul > li > a {
  padding: 40px 0;
}

.gsp-mobile-header-area.header-sticky {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 99;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  background: var(--gp-common-white);
}
.gsp-mobile-header-area.header-sticky .gsp-bt-btn {
  box-shadow: rgba(100, 100, 111, 0.1) 1px 5px 20px 1px;
}

/*----------------------------------------*/
/*  15. MEANMENU CSS START
/*----------------------------------------*/
/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  border-top: 1px solid #3C3962;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav ul li a:hover {
  color: #10D0A1;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 8px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #3C3962 !important;
  height: 26px;
  width: 26px;
  line-height: 26px;
  color: #fff;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--clr-theme-1);
  color: var(--gp-common-white);
  border-color: var(--clr-theme-1);
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 14px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: #10D0A1;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  color: var(--gp-the);
}

/*----------------------------------------*/
/*  04. BANNER CSS START
/*----------------------------------------*/
.banner__sub-title {
  text-transform: uppercase;
  color: var(--gp-icon-blue);
  font-weight: 700;
  display: inline-block;
}
.banner__title {
  font-size: 55px;
  color: var(--gp-heading-primary);
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .banner__title br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .banner__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .banner__title br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__content {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .banner__content {
    text-align: center;
    padding-top: 80px;
  }
}
.banner__content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--gp-text-2);
  margin-bottom: 45px;
  line-height: 29px;
}
@media (max-width: 767px) {
  .banner__content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner__content p br {
    display: none;
  }
}
.banner__item {
  padding: 20px 22px;
  border: 1px solid var(--gp-border-primary);
  border-radius: 10px;
  -webkit-transition: all 0.34s ease-out 0s;
  -moz-transition: all 0.34s ease-out 0s;
  -ms-transition: all 0.34s ease-out 0s;
  -o-transition: all 0.34s ease-out 0s;
  transition: all 0.34s ease-out 0s;
}
.banner__item:hover {
  border: 1px solid var(--gp-icon-blue);
}
.banner__item:hover .banner__item-icon {
  box-shadow: inset 0 0 0 40px var(--gp-icon-blue);
}
.banner__item:hover .banner__item-icon i {
  color: var(--gp-common-white);
}
.banner__item:hover .pink-icon {
  box-shadow: inset 0 0 0 40px var(--gp-icon-pink);
}
.banner__item:hover .green-icon {
  box-shadow: inset 0 0 0 40px var(--gp-icon-green);
}
.banner__item .pink-icon {
  background-color: var(--gp-icon-pink-light);
}
.banner__item .pink-icon i {
  color: var(--gp-icon-pink);
}
.banner__item .green-icon {
  background-color: var(--gp-icon-green-light);
}
.banner__item .green-icon i {
  color: var(--gp-icon-green);
}
.banner__item.pink-border:hover {
  border: 1px solid var(--gp-icon-pink);
}
.banner__item.green-border:hover {
  border: 1px solid var(--gp-icon-green);
}
.banner__item-content span {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__item-content span {
    font-size: 14px;
  }
}
.banner__item-icon {
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  background-color: var(--gp-icon-blue-light);
  display: block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 56px;
  margin-right: 15px;
  flex: 0 0 auto;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__item-icon {
    margin-right: 15px;
  }
}
.banner__item-icon i {
  color: var(--gp-icon-blue);
  font-size: 21px;
}
.banner__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 724px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner__shape {
    width: 600px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__shape {
    width: 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__shape {
    width: 420px;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__shape {
    position: static;
  }
}
.banner__shape img {
  border-radius: 0px 0px 362px 362px;
  max-width: 100%;
  height: 930px;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__shape img {
    height: 600px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__shape img {
    height: 630px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner__shape img {
    height: 700px;
  }
}
.banner__video-btn {
  position: absolute;
  bottom: 55px;
  right: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__video-btn {
    bottom: 0;
    right: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__video-btn {
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__video-btn {
    right: 30px;
    bottom: 50%;
    transform: translateY(-50%);
  }
}
.banner__video-icon {
  height: 115px;
  width: 115px;
  text-align: center;
  line-height: 105px;
  background: var(--gp-icon-green);
  border-radius: 50%;
  color: var(--gp-common-white);
  border: 5px solid var(--gp-common-white);
  font-size: 20px;
  display: block;
  animation: dm-pulse 1.5s infinite;
}
.banner__video-icon:hover {
  background-color: var(--gp-icon-blue);
  color: var(--gp-common-white);
}

.banner-scroll-btn {
  transform: rotate(-90deg);
  position: absolute;
  left: 20px;
  bottom: 100px;
  display: inline-block;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-scroll-btn {
    left: -40px;
  }
}
.banner-scroll-btn:hover {
  color: var(--gp-icon-blue);
}
.banner-scroll-btn:hover span {
  color: var(--gp-icon-blue);
}
.banner-scroll-btn i {
  font-size: 35px;
  transform: rotate(-90deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-scroll-btn i {
    font-size: 25px;
  }
}
.banner-scroll-btn span {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AFADBF;
  margin-left: 23px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-scroll-btn span {
    font-size: 12px;
  }
}

.banner-scroll-btn:hover .bannerscroll::after {
  background-color: var(--gp-icon-blue);
  color: var(--gp-icon-blue);
}

.bannerscroll-icon {
  display: flex;
  align-items: center;
}

.bannerscroll {
  position: relative;
}
.bannerscroll::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background-color: var(--gp-theme-primary);
  border-radius: 50%;
  left: 107px;
  bottom: 15px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bannerscroll::before {
    left: 35px;
  }
}
.bannerscroll::after {
  position: absolute;
  content: "";
  height: 370px;
  width: 1px;
  background-color: #AFADBF;
  border-radius: 50%;
  left: 109px;
  bottom: 220px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bannerscroll::after {
    left: 34px;
  }
}

.gsp-home-lg-banner {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-home-lg-banner {
    position: static;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-bt-btn-banner .gsp-bt-btn {
    box-shadow: rgba(100, 100, 111, 0.1) 0.5px 0.5px 5px 0.5px;
  }
}

/*----------------------------------------*/
/*  05. SLIDER CSS START
/*----------------------------------------*/
.slider-content {
  /* margin-left: -115px; */
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content {
    margin-left: 0;
    padding-top: 0;
  }
}
.slider-content__title {
  font-size: 57px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content__title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content__title {
    font-size: 44px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .slider-content__title {
    font-size: 34px;
    margin-bottom: 15px;
  }
}
.slider-content p {
  font-size: 18px;
  color: var(--gp-text-body);
  margin-bottom: 53px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content p {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .slider-content p br {
    display: none;
  }
}
.slider-content__social {
  margin-left: -115px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content__social {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content__social {
    margin-top: 30px;
    margin-left: 0;
  }
}
.slider-content__social a {
  font-weight: 400;
  font-size: 16px;
  color: var(--gp-text-3);
  text-transform: uppercase;
  margin-right: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content__social a {
    margin-right: 30px;
  }
}
.slider-content__social a i {
  margin-right: 15px;
}
.slider-content__social .facebook-2:hover {
  color: var(--gp-icon-fb);
}
.slider-content__social .youtub-2:hover {
  color: var(--gp-icon-red);
}
.slider-content__social .twitter-2:hover {
  color: var(--gp-icon-tweet);
}
.slider-content__shape {
  position: absolute;
  right: 35px;
  top: 195px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-content__shape {
    right: 380px;
    top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content__shape {
    right: 15px;
    top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content__shape {
    right: 200px;
    top: 55px;
  }
}
.slider-content__arrow {
  position: absolute;
  right: 170px;
  bottom: -10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-content__arrow {
    right: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content__arrow {
    right: 30px;
    bottom: 0px;
  }
}
@media (max-width: 767px) {
  .slider-content__arrow {
    right: 50%;
    transform: translateX(50%);
  }
}
.slider-content__arrow .slider-p {
  margin-right: 20px;
}
.slider-content__arrow i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--gp-border-secondary);
}
.slider-content__arrow i:hover {
  background-color: var(--gp-theme-primary);
  color: var(--gp-common-white);
  border: 1px solid var(--gp-theme-primary);
}

.gsp-slider .swiper-slide-active .slider-content__title, .gsp-slider .swiper-slide-active p, .gsp-slider .swiper-slide-active .slider-content__btn {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.gsp-slider .swiper-slide-active .slider-content__title {
  animation-delay: 0.3s;
  animation-duration: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content__title br {
    display: none;
  }
}

.gsp-slider .swiper-slide-active p {
  animation-delay: 0.3s;
  animation-duration: 0.3s;
}

.gsp-slider .swiper-slide-active .slider-content__btn {
  animation-delay: 0.7s;
  animation-duration: 0.7s;
}

.gsp-slider .swiper-slide-active .slider-content__bg, .gsp-slider .swiper-slide-active .slider-content__shape {
  animation-fill-mode: both;
  animation-name: fadeInRight;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content__shape img {
    width: 200px;
  }
}

.gsp-slider .swiper-slide-active .slider-content__bg {
  animation-delay: 0.3s;
  animation-duration: 0.3s;
}

.gsp-slider .swiper-slide-active .slider-content__shape {
  animation-delay: 0.6s;
  animation-duration: 0.6s;
}

.slider-content__bg img {
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content__bg img {
    width: 290px;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content__bg img {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-content__btn {
    margin-bottom: 30px;
  }
}

.slider-gsp-top {
  height: 870px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-gsp-top {
    height: 780px;
    padding-top: 50px;
  }
}

.slider-social {
  position: absolute;
  bottom: 97px;
  left: 0;
  right: 0;
  z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-social {
    bottom: 50px;
  }
}

/*----------------------------------------*/
/*  06. SERVICES CSS START
/*----------------------------------------*/
.search-form {
  padding: 50px 65px;
  background: var(--gp-common-white);
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-form {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .search-form {
    padding: 25px 15px;
  }
}
.search-form form {
  position: relative;
}
.search-form form input {
  width: 100%;
  padding: 35px 250px 35px 35px;
  border: 2px solid var(--gp-icon-green);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .search-form form input {
    padding: 15px;
  }
}
.search-form form input:focus::placeholder {
  opacity: 0;
}
.search-form form .search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .search-form form .search-btn {
    position: static;
    margin-top: 15px;
    transform: translateY(0);
  }
}

.services-item {
  background-color: var(--gp-common-white);
  padding: 70px 55px 70px 50px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .services-item {
    padding: 50px 25px 50px 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-item {
    padding: 50px 20px 50px 35px;
  }
}
.services-item__icon {
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  background-color: var(--gp-icon-blue-light);
  display: block;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 95px;
  flex: 0 0 auto;
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -ms-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
}
.services-item__icon i {
  color: var(--gp-icon-blue);
  font-size: 32px;
}
.services-item .pink-icon {
  background-color: var(--gp-icon-pink-light);
}
.services-item .pink-icon i {
  color: var(--gp-icon-pink);
}
.services-item .green-icon {
  background-color: var(--gp-icon-green-light);
}
.services-item .green-icon i {
  color: var(--gp-icon-green);
}
.services-item .sky-icon {
  background-color: var(--gp-icon-sky-light);
}
.services-item .sky-icon i {
  color: var(--gp-icon-sky);
}

.services-item:hover .pink-icon,
.services-item:hover .green-icon,
.services-item:hover .sky-icon {
  box-shadow: none;
}

.services-item:hover .services-item__btn .btn-hexa i {
  background-color: var(--gp-icon-blue);
}
.services-item:hover .services-item__btn .pink-hexa i {
  background-color: var(--gp-icon-pink);
}
.services-item:hover .services-item__btn .green-hexa i {
  background-color: var(--gp-icon-green);
}
.services-item:hover .services-item__btn .sky-hexa i {
  background-color: var(--gp-icon-sky);
}
.services-item__content p {
  font-size: 16px;
  margin-bottom: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .services-item__content p br {
    display: none;
  }
}
.services-item-gsp-title {
  font-size: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .services-item-gsp-title {
    font-size: 20px;
  }
}
.services-item-gsp-title a {
  background-image: linear-gradient(#171151, #171151), linear-gradient(#171151, #171151);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.services-item-gsp-title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.services-item .btn-hexa {
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  text-transform: uppercase;
}
.services-item .btn-hexa:hover {
  color: var(--gp-icon-blue);
}
.services-item .btn-hexa i {
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  background-color: var(--gp-icon-blue-light);
  display: inline-block;
  height: 20px;
  width: 18px;
  transform: translateY(5px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  flex: 0 0 auto;
  margin-right: 10px;
}
.services-item .pink-hexa:hover {
  color: var(--gp-icon-pink);
}
.services-item .pink-hexa i {
  background-color: var(--gp-icon-pink-light);
}
.services-item .green-hexa:hover {
  color: var(--gp-icon-green);
}
.services-item .green-hexa i {
  background-color: var(--gp-icon-green-light);
}
.services-item .sky-hexa:hover {
  color: var(--gp-icon-sky);
}
.services-item .sky-hexa i {
  background-color: var(--gp-icon-sky-light);
}

.gsp-services {
  justify-content: end;
}
@media (max-width: 767px) {
  .gsp-services {
    justify-content: start;
    margin-bottom: 30px;
  }
}
.gsp-services .services-p {
  margin-right: 20px;
}
.gsp-services i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid var(--gp-border-secondary);
  border-radius: 50%;
  text-align: center;
}
.gsp-services i:hover {
  border: 1px solid var(--gp-theme-primary);
  background-color: var(--gp-theme-primary);
  color: var(--gp-common-white);
}

.swipper-container {
  overflow: hidden;
}

.service-active {
  margin-right: -400px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .service-active {
    margin-right: 0;
  }
}

.gsp-services-item {
  padding: 0;
}
.text-color-primary {
  color: var(--gp-text-color-primary) !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-services-item {
    margin-left: 0;
  }
}

.services-link {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-link {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .services-link {
    text-align: start;
    margin-bottom: 30px;
  }
}
.services-link span {
  font-weight: 500;
  font-size: 18px;
  color: var(--gp-text-2);
}
@media (max-width: 767px) {
  .services-link span {
    font-size: 16px;
  }
}
.services-link span a {
  text-transform: uppercase;
  margin-left: 9px;
  color: var(--gp-site-primary);
}
@media (max-width: 767px) {
  .services-link span a {
    font-size: 14px;
  }
}
.services-link span a:hover {
  color: var(--gp-icon-green);
}
.services-link span a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}
.services-link span a i {
  margin-left: 5px;
}

.gsp-srv-title {
  font-size: 20px;
  text-transform: capitalize;
}

.gsp-services-box {
  background-color: var(--gp-common-white);
  padding: 60px 10px 42px 10px;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.gsp-services-box:hover {
  box-shadow: 0px 7px 11px rgba(14, 99, 255, 0.26);
  background-color: var(--gp-site-primary);
}
.gsp-services-box:hover .gsp-services-box__title {
  color: var(--gp-common-white);
}
.gsp-services-box:hover .gsp-services-box__icon {
  background-color: rgba(255, 255, 255, 0.1);
}
.gsp-services-box:hover .gsp-services-box__icon i {
  color: var(--gp-common-white);
}
.gsp-services-box:hover .gsp-services-box__btn a i {
  color: var(--gp-common-white);
}
.gsp-services-box__icon {
  height: 87px;
  width: 87px;
  line-height: 100px;
  text-align: center;
  background-color: var(--gp-icon-blue-light);
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.gsp-services-box__icon i {
  color: var(--gp-icon-blue);
  font-size: 32px;
}
.gsp-services-box__title {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.gsp-services-box__title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.gsp-services-box__title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.gsp-services-box__btn a {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: rgba(14, 99, 255, 0.5);
  font-size: 38px;
}

.gsp-pink-bg:hover {
  box-shadow: 0px 7px 11px rgba(247, 42, 117, 0.26);
  background-color: var(--gp-theme-pink);
}

.gsp-pink-icon {
  background-color: var(--gp-icon-pink-light);
}
.gsp-pink-icon i {
  color: var(--gp-theme-pink);
}

.pink-dot i {
  color: rgba(247, 42, 117, 0.5);
}

.gsp-green-bg:hover {
  box-shadow: 0px 7px 11px rgba(16, 208, 161, 0.26);
  background-color: var(--gp-theme-secondary);
}

.gsp-green-icon {
  background-color: var(--gp-icon-green-light);
}
.gsp-green-icon i {
  color: var(--gp-theme-secondary);
}

.green-dot i {
  color: rgba(16, 208, 161, 0.5);
}

.gsp-sky-bg:hover {
  box-shadow: 0px 7px 11px rgba(66, 191, 255, 0.26);
  background-color: var(--gp-theme-sky);
}

.gsp-sky-icon {
  background-color: var(--gp-icon-sky-light);
}
.gsp-sky-icon i {
  color: var(--gp-theme-sky);
}

.sky-dot i {
  color: rgba(66, 191, 255, 0.5);
}

.services-thumb-box {
  background-color: var(--gp-common-white);
}
.services-thumb-box:hover .services-thumb-box__thumb img {
  transform: scale(1.3);
}
.services-thumb-box:hover .services-thumb-box__icon {
  box-shadow: inset 0 0 0 60px var(--gp-theme-secondary);
}
.services-thumb-box:hover .services-thumb-box__icon i {
  color: var(--gp-common-white);
}
.services-thumb-box:hover.pink-round .services-thumb-box__icon {
  box-shadow: inset 0 0 0 60px var(--gp-theme-pink);
}
.services-thumb-box:hover.sky-round .services-thumb-box__icon {
  box-shadow: inset 0 0 0 60px var(--gp-theme-sky);
}
.services-thumb-box:hover.blue-round .services-thumb-box__icon {
  box-shadow: inset 0 0 0 60px var(--gp-site-primary);
}
.services-thumb-box__thumb img {
  -webkit-transition: all 1.2s ease-out 0s;
  -moz-transition: all 1.2s ease-out 0s;
  -ms-transition: all 1.2s ease-out 0s;
  -o-transition: all 1.2s ease-out 0s;
  transition: all 1.2s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-thumb-box__thumb img {
    width: 100%;
  }
}
.services-thumb-box__icon {
  flex: 0 0 auto;
  height: 60px;
  width: 60px;
  line-height: 70px;
  text-align: center;
  background-color: var(--gp-icon-green-light);
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: all 0.7s ease-out 0s;
  -moz-transition: all 0.7s ease-out 0s;
  -ms-transition: all 0.7s ease-out 0s;
  -o-transition: all 0.7s ease-out 0s;
  transition: all 0.7s ease-out 0s;
}
.services-thumb-box__icon i {
  color: var(--gp-icon-green);
  font-size: 23px;
}
.services-thumb-box__text-area {
  padding: 35px 30px;
}
.services-thumb-box__content > a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #B9B8CB;
  text-transform: uppercase;
}
.services-thumb-box__title {
  font-size: 20px;
}
@media (max-width: 767px) {
  .services-thumb-box__title {
    font-size: 18px;
  }
}
.services-thumb-box__title a {
  background-image: linear-gradient(#171151, #171151), linear-gradient(#171151, #171151);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.services-thumb-box__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.pink-round .services-thumb-box__icon {
  background-color: var(--gp-icon-pink-light);
}
.pink-round .services-thumb-box__icon i {
  color: var(--gp-icon-pink);
}

.sky-round .services-thumb-box__icon {
  background-color: var(--gp-icon-sky-light);
}
.sky-round .services-thumb-box__icon i {
  color: var(--gp-icon-sky);
}

.blue-round .services-thumb-box__icon {
  background-color: var(--gp-icon-blue-light);
}
.blue-round .services-thumb-box__icon i {
  color: var(--gp-icon-blue);
}

.gsp-srv-process p {
  font-size: 16px;
}
.gsp-srv-process__title {
  font-size: 42px;
}
.gsp-srv-process__list ul li {
  font-weight: 500;
  font-size: 16px;
}
.gsp-srv-process__list ul li i {
  font-size: 16px;
  color: var(--gp-site-primary);
  margin-right: 15px;
}

.gsp-srv-stap p {
  font-size: 16px;
  margin-bottom: 28px;
}
.gsp-srv-stap__title {
  font-size: 30px;
  font-weight: 400;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-srv-stap__list {
    margin-left: 0;
  }
}
.gsp-srv-stap__list ul li {
  font-weight: 500;
  font-size: 15px;
}
.gsp-srv-stap__list ul li i {
  font-size: 16px;
  color: var(--gp-site-primary);
  margin-right: 20px;
}

.gsp-srv-research p {
  font-size: 16px;
}
.gsp-srv-research__title {
  font-size: 30px;
  font-weight: 400;
}

div.gsp-srv-link {
  text-align: start !important;
}
div.gsp-srv-link a {
  color: var(--gp-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .services-thumb-img img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-thumb-img img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-srv-bg img {
    max-width: 100%;
  }
}

/*----------------------------------------*/
/*  07. ABOUT CSS START
/*----------------------------------------*/
.about__img {
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about__img {
    text-align: center;
  }
}
.about__img img {
  border-radius: 0 0 362px 341px;
  max-width: 100%;
}
.about__img-shape-text {
  background: var(--gp-icon-green);
  border-radius: 50%;
}
.about__exprience {
  position: absolute;
  bottom: -135px;
  left: 120px;
  height: 326px;
  width: 326px;
  background: var(--gp-icon-green);
  border-radius: 50%;
  padding: 65px 30px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about__exprience {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about__exprience {
    height: 200px;
    width: 200px;
    padding: 30px;
  }
}
.about__exprience h3 {
  font-size: 115px;
  color: var(--gp-common-white);
  font-family: days one;
  line-height: 1;
}
@media (max-width: 767px) {
  .about__exprience h3 {
    font-size: 80px;
  }
}
.about__exprience i {
  display: inline-block;
  font-size: 24px;
  color: var(--gp-common-white);
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  text-align: left;
}
@media (max-width: 767px) {
  .about__exprience i {
    font-size: 16px;
  }
}

.gsp-about__info-list ul li {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.gsp-about__info-list ul li i {
  font-size: 20px;
  color: var(--gp-icon-green);
  position: absolute;
  display: inline-block;
  left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-about__content {
    margin-left: 0;
  }
}

.about-thumb-shape {
  position: absolute;
  bottom: 0;
  left: -170px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-thumb-shape {
    left: -100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-thumb-shape {
    left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-thumb-shape {
    left: -120px;
  }
}

.about-video {
  position: absolute;
  top: 230px;
  left: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-video {
    left: 360px;
  }
}
@media (max-width: 767px) {
  .about-video {
    left: 0px;
  }
}
.about-video i {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  background: var(--gp-icon-green);
  border-radius: 50px;
  color: var(--gp-common-white);
  animation: dm-pulse 2s infinite;
}
.about-video i:hover {
  background-color: var(--gp-site-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .about-thumb {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .about-thumb img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .gsp-box-space {
    margin-left: 0;
    margin-right: 0;
  }
}

.ab-title {
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .ab-title {
    font-size: 30px;
  }
}

.about-align {
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-align {
    padding-left: 0;
  }
}

.ab-check-list ul li i {
  color: var(--gp-site-primary);
}

.gsp-ab-main-img {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .gsp-ab-main-img {
    margin-right: 0;
  }
}
.gsp-ab-main-img img {
  border-radius: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .gsp-ab-main-img img {
    max-width: 100%;
  }
}

.gsp-ab-shape img {
  border-radius: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-ab-shape img {
    max-width: 100%;
  }
}
.gsp-ab-shape .ab-shape-one {
  margin-bottom: 15px;
}

.gsp-ab-counter {
  border-radius: 5px;
  width: 236px;
  height: 258px;
  padding: 31px 15px 15px 15px;
  left: 50px;
  bottom: 7px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-ab-counter {
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-ab-counter {
    left: 90px;
    bottom: -125px;
  }
}
@media (max-width: 767px) {
  .gsp-ab-counter {
    width: 170px;
    height: 190px;
    left: 85px;
    bottom: -35px;
  }
}

@media (max-width: 767px) {
  .gsp-ab-img {
    justify-content: center;
  }
}

.about-title {
  font-size: 36px;
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .about-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .about-title br {
    display: none;
  }
}

.ab-count {
  left: -110px;
  bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-count {
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ab-count {
    left: 0;
    bottom: -80px;
  }
}

.gsp-3-thumb {
  display: flex;
  justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-3-thumb {
    justify-content: center;
  }
}

.gsp-ab-sm-title {
  font-size: 36px;
}

/*----------------------------------------*/
/*  08. COUNTER CSS START
/*----------------------------------------*/
.counter__item {
  border: 1px solid var(--gp-border-primary);
  padding: 75px 40px 70px 55px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .counter__item {
    padding: 75px 30px 70px 30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .counter__item {
    padding: 75px 20px 70px 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter__item {
    padding: 75px 20px 70px 25px;
  }
}
.counter__item:hover.counter__item {
  border: 1px solid var(--gp-icon-blue);
}
.counter__item:hover.blue-border {
  border: 1px solid var(--gp-icon-blue);
}
.counter__item:hover.pink-border {
  border: 1px solid var(--gp-icon-pink);
}
.counter__item:hover.sky-border {
  border: 1px solid var(--gp-icon-sky);
}
.counter__item:hover.green-border {
  border: 1px solid var(--gp-icon-green);
}
.counter__icon i {
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  background-color: var(--gp-icon-blue);
  display: inline-block;
  height: 20px;
  width: 18px;
  transform: translateY(5px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  flex: 0 0 auto;
  margin-right: 10px;
  animation: firefly 2.5s linear infinite;
}
.counter__icon.pink-hard i {
  background-color: var(--gp-icon-pink);
}
.counter__icon.sky-hard i {
  background-color: var(--gp-icon-sky);
}
.counter__icon.green-hard i {
  background-color: var(--gp-icon-green);
}
.counter__content p {
  font-size: 15px;
  margin-bottom: 0;
}
.counter__title {
  font-size: 48px;
  font-weight: 400;
}

.experience-item span {
  color: #141515;
  font-size: 15px;
  font-weight: 600;
}

.tl-progress {
  height: 200px;
  width: 200px;
  background: #fff;
  text-align: center;
  line-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 25px;
}
.tl-progress input {
  color: #171151 !important;
}

/*----------------------------------------*/
/*  09. GALLERY CSS START
/*----------------------------------------*/
@media (max-width: 767px) {
  .gsp-gallery {
    margin-left: 0;
    margin-right: 0;
  }
}
.gsp-gallery__item:hover .gsp-gallery__img::before {
  height: 100%;
}
.gsp-gallery__item:hover .gsp-gallery__content {
  bottom: 27px;
  opacity: 1;
  visibility: visible;
}
.gsp-gallery__item:hover .gsp-gallery__info {
  top: 35px;
  transform: rotateY(180deg);
  opacity: 1;
  visibility: visible;
}
.gsp-gallery__img img {
  width: 100%;
}
.gsp-gallery__img::before {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  background: linear-gradient(179.97deg, rgba(14, 99, 255, 0) 20.71%, #0E63FF 90.16%);
  left: 0px;
  right: 0;
  bottom: 0px;
  z-index: 1;
}
.gsp-gallery__info {
  position: absolute;
  top: 0px;
  right: 35px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.gsp-gallery__info a {
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  background-color: var(--gp-common-white);
  display: block;
  height: 75px;
  width: 65px;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
  color: var(--gp-common-white);
  position: relative;
}
.gsp-gallery__info a::before {
  position: absolute;
  content: "";
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  background-color: var(--gp-icon-green);
  display: block;
  height: 65px;
  width: 55px;
  left: 5px;
  top: 5px;
  z-index: -1;
}
.gsp-gallery__info a:hover::before {
  background-color: var(--gp-icon-sky);
}
.gsp-gallery__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  padding-bottom: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.gsp-gallery__content span {
  color: var(--gp-common-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.gsp-gallery__content span i {
  margin-right: 5px;
}
.gsp-gallery__content span a:hover {
  color: var(--gp-icon-green);
}
.gsp-gallery__title {
  text-transform: uppercase;
  font-size: 22px;
  color: var(--gp-common-white);
  margin-bottom: 5px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-gallery__title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .gsp-gallery__title {
    font-size: 16px;
  }
}
.gsp-gallery__title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.gsp-gallery__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.gallery-item-bg {
  margin-top: -215px;
}

.gallery-item img {
  width: 100%;
}
.gallery-item:hover.gallery-item::before {
  height: 210px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-item:hover.gallery-item::before {
    height: 150px;
  }
}
.gallery-item:hover .gallery-item__content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .gallery-item:hover .gallery-item__content {
    bottom: 0;
  }
}
.gallery-item::before {
  position: absolute;
  content: "";
  clip-path: polygon(50% 0%, 100% 60%, 100% 100%, 0 100%, 0 60%);
  bottom: 0px;
  left: 0;
  height: 0px;
  width: 100%;
  background-color: var(--gp-icon-green);
}
@media (max-width: 767px) {
  .gallery-item::before {
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0px 100%, 0 0%);
  }
}
.gallery-item__content {
  position: absolute;
  z-index: 2;
  bottom: -10px;
  left: 0px;
  padding: 10px 20px;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.gallery-item__content span {
  color: var(--gp-common-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.gallery-item__content span i {
  margin-right: 5px;
}
.gallery-item__content span:hover {
  color: var(--gp-icon-blue);
}
.gallery-item__title {
  font-size: 22px;
  color: var(--gp-common-white);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .gallery-item__title {
    font-size: 18px;
  }
}
.gallery-item__title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.gallery-item__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

/*----------------------------------------*/
/*  10. CHOOSE CSS START
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-choose__item {
    margin-left: 0;
  }
}
.gsp-choose__item:hover .gsp-choose__icon {
  box-shadow: inset 0 0 0 60px var(--gp-icon-blue);
}
.gsp-choose__item:hover .gsp-choose__icon i {
  color: var(--gp-common-white);
}
.gsp-choose__item:hover .pink-icon {
  box-shadow: inset 0 0 0 60px var(--gp-icon-pink);
}
.gsp-choose__item:hover .green-icon {
  box-shadow: inset 0 0 0 60px var(--gp-icon-green);
}
.gsp-choose__item:hover .sky-icon {
  box-shadow: inset 0 0 0 60px var(--gp-icon-sky);
}
.gsp-choose__icon {
  height: 115px;
  width: 115px;
  text-align: center;
  line-height: 130px;
  background-color: rgba(14, 99, 255, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.gsp-choose__icon i {
  color: var(--gp-icon-blue);
  font-size: 45px;
}
.gsp-choose__icon.pink-icon {
  background-color: rgba(247, 42, 117, 0.1);
}
.gsp-choose__icon.pink-icon i {
  color: var(--gp-icon-pink);
}
.gsp-choose__icon.green-icon {
  background-color: rgba(16, 208, 161, 0.1);
}
.gsp-choose__icon.green-icon i {
  color: var(--gp-icon-green);
}
.gsp-choose__icon.sky-icon {
  background-color: rgba(66, 191, 255, 0.1);
}
.gsp-choose__icon.sky-icon i {
  color: var(--gp-icon-sky);
}
.gsp-choose__content p {
  color: var(--gp-text-1);
  font-size: 15px;
}
.gsp-choose__title {
  color: var(--gp-common-white);
  font-weight: 400;
}

.gsp-choose-option span {
  font-size: 18px;
  color: var(--gp-text-1);
  font-weight: 500;
}
.gsp-choose-option span a {
  color: var(--gp-common-white);
  text-transform: uppercase;
}
.gsp-choose-option span a i {
  margin-left: 5px;
}
.gsp-choose-option span a:hover {
  color: var(--gp-icon-pink);
}
.gsp-choose-option span a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}

/*----------------------------------------*/
/*  11. APPOINMENT CSS START
/*----------------------------------------*/
.visitor-info {
  padding: 130px 110px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .visitor-info {
    padding: 130px 80px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .visitor-info {
    padding: 130px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .visitor-info {
    padding: 130px 50px;
  }
}
@media (max-width: 767px) {
  .visitor-info {
    padding: 130px 15px;
  }
}

.appoinment-title i {
  color: var(--gp-icon-blue);
  margin-right: 15px;
}

.visitor-form__input input {
  width: 100%;
  height: 60px;
  border: 1px solid #EFF1F6;
  border-radius: 5px;
  margin-bottom: 25px;
  padding: 0 20px;
}
.visitor-form__input input::placeholder {
  font-size: 15px;
  color: #B2B0C1;
}
.visitor-form__input input:hover {
  border: 1px solid var(--gp-icon-green);
}
.visitor-form__input textarea {
  width: 100%;
  height: 170px;
  border: 1px solid #EFF1F6;
  padding-top: 25px;
  padding-left: 20px;
  border-radius: 5px;
}
.visitor-form__input textarea::placeholder {
  color: #B2B0C1;
}
.visitor-form__input textarea:focus {
  border-color: var(--gp-icon-green);
  outline: none;
}

.visit-serial {
  text-align: end;
}
@media (max-width: 767px) {
  .visit-serial {
    text-align: start;
  }
}
.visit-serial span {
  font-size: 18px;
  font-weight: 500;
  color: var(--gp-text-2);
}
@media (max-width: 767px) {
  .visit-serial span {
    font-size: 15px;
  }
}
.visit-serial span a {
  text-decoration: underline;
  color: var(--gp-icon-blue);
}
.visit-serial span a:hover {
  color: var(--gp-icon-green);
}
.visit-serial span a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}
.visit-serial span a i {
  margin-left: 5px;
}

.appoinment-thumb {
  height: 100%;
}
.appoinment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appoint-thumb img {
  width: inherit;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .appoint-thumb img {
    width: 100%;
  }
}

.visitor-info-bg {
  background-color: var(--gp-common-white);
  padding: 42px 62px 0px 62px;
  margin-bottom: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .visitor-info-bg {
    padding: 42px 30px 0px 30px;
  }
}
@media (max-width: 767px) {
  .visitor-info-bg {
    padding: 42px 15px 0px 15px;
  }
}

.gsp-support-form {
  background-color: var(--gp-common-white);
  padding: 75px 90px 85px 90px;
  margin: 0 25px;
  border-bottom: 4px solid var(--gp-site-primary);
}
@media (max-width: 767px) {
  .gsp-support-form {
    margin: 0;
    padding: 50px 10px 50px 10px;
  }
}
.gsp-support-form span {
  font-weight: 500;
  font-size: 24px;
  text-align: left;
  display: block;
  margin-bottom: 50px;
}
.gsp-support-form form {
  margin-bottom: 12px;
}
.gsp-support-form form input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid #EFF1F6;
  box-shadow: 0px 16px 24px rgba(189, 196, 205, 0.13);
}
.gsp-support-form form input:focus {
  border: 1px solid var(--gp-site-primary);
  background-color: #F2F5FA;
}
.gsp-support-form form input:focus::placeholder {
  color: var(--gp-theme-primary);
}
.gsp-support-form form input::placeholder {
  color: #B2B0C1;
}
.gsp-support-form form textarea {
  width: 100%;
  height: 172px;
  padding: 14px 0 0 20px;
  border-radius: 5px;
  border: 1px solid #EFF1F6;
  box-shadow: 0px 16px 24px rgba(189, 196, 205, 0.13);
}
.gsp-support-form form textarea:focus {
  border: 1px solid var(--gp-site-primary);
  background-color: #F2F5FA;
}
.gsp-support-form form textarea:focus::placeholder {
  color: var(--gp-theme-primary);
}
.gsp-support-form form textarea:focus-visible {
  border: none;
}
.gsp-support-form form textarea::placeholder {
  color: #B2B0C1;
}

/*----------------------------------------*/
/*  12. TEAM CSS START
/*----------------------------------------*/
.gsp-team:hover .gsp-team__thumb a img {
  transform: scale(1.1);
}
.gsp-team:hover .gsp-team__title a {
  background-size: 0% 1px, 100% 1px;
}
.gsp-team__thumb {
  display: block;
  border-radius: 5px;
}
.gsp-team__thumb a img {
  width: 100%;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.gsp-team__content {
  padding: 40px 45px 45px 45px;
  background-color: var(--gp-common-white);
  border-radius: 0 0 5px 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-team__content {
    padding: 30px 25px 35px 25px;
  }
}
.gsp-team__content p {
  color: var(--gp-text-2);
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-team__title {
    font-size: 20px;
  }
}
.gsp-team__title a {
  background-image: linear-gradient(#171151, #171151), linear-gradient(#171151, #171151);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.gsp-team__social a {
  margin-right: 12px;
  color: var(--gp-icon-blue);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-team__social a {
    margin-right: 10px;
  }
}
.gsp-team__social a i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--gp-grey-1);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.gsp-team__social a:hover i {
  border: 1px solid var(--gp-icon-blue);
  background-color: var(--gp-icon-blue);
  color: var(--gp-common-white);
}
.gsp-team__position {
  font-size: 14px;
  font-weight: 700;
  color: var(--gp-icon-blue);
  text-transform: uppercase;
  display: block;
}

.gsp-youtube i,
.gsp-twitter i,
.gsp-fb i,
.gsp-skype i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--gp-grey-1);
}
.gsp-youtube i:hover,
.gsp-twitter i:hover,
.gsp-fb i:hover,
.gsp-skype i:hover {
  color: var(--gp-common-white);
}

.gsp-youtube i {
  color: var(--gp-icon-red);
}
.gsp-youtube:hover.gsp-youtube i {
  border: 1px solid var(--gp-icon-red);
  background-color: var(--gp-icon-red);
}

.gsp-twitter i {
  color: var(--gp-icon-tweet);
}
.gsp-twitter:hover.gsp-twitter i {
  border: 1px solid var(--gp-icon-tweet);
  background-color: var(--gp-icon-tweet);
}

.gsp-fb i {
  color: var(--gp-icon-fb);
}
.gsp-fb:hover.gsp-fb i {
  border: 1px solid var(--gp-icon-fb);
  background-color: var(--gp-icon-fb);
}

.gsp-skype i {
  color: var(--gp-icon-skype);
}
.gsp-skype:hover.gsp-skype i {
  border: 1px solid var(--gp-icon-skype);
  background-color: var(--gp-icon-skype);
}

.gsp-team-arrow {
  justify-content: end;
}
@media (max-width: 767px) {
  .gsp-team-arrow {
    margin-bottom: 30px;
    justify-content: start;
  }
}
.gsp-team-arrow .team-p {
  margin-right: 20px;
}
.gsp-team-arrow i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--gp-border-secondary);
}
.gsp-team-arrow i:hover {
  background-color: var(--gp-theme-primary);
  color: var(--gp-common-white);
  border: 1px solid var(--gp-theme-primary);
}

.team-item {
  text-align: center;
}
.team-item:hover .team-item__title a {
  background-size: 0% 1px, 100% 1px;
}
.team-item:hover .team-item__social-info a {
  opacity: 1;
  visibility: visible;
}
.team-item:hover .team-item__social-info a:first-child {
  transition-delay: 100ms;
}
.team-item:hover .team-item__social-info a:nth-child(2) {
  transition-delay: 180ms;
}
.team-item:hover .team-item__social-info a:nth-child(3) {
  transition-delay: 260ms;
}
.team-item:hover .team-item__social-info a:last-child {
  transition-delay: 320ms;
}
.team-item span {
  color: var(--gp-site-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.team-item__title a {
  background-image: linear-gradient(#171151, #171151), linear-gradient(#171151, #171151);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.team-item__social-info a {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  margin: 0 15px;
  color: #B2B0C1;
  font-size: 20px;
}
.team-item__social-info a:hover {
  color: var(--gp-theme-primary);
}

.team-arrow i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid var(--gp-border-secondary);
  border-radius: 50%;
}
.team-arrow i:hover {
  background-color: var(--gp-theme-primary);
  border: 1px solid var(--gp-theme-primary);
  color: var(--gp-common-white);
}
.team-arrow .team-prv {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .team-arrow .team-prv {
    left: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-arrow .team-prv {
    left: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-arrow .team-prv {
    left: -20px;
  }
}
@media (max-width: 767px) {
  .team-arrow .team-prv {
    left: -5px;
  }
}
.team-arrow .team-nxt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -80px;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .team-arrow .team-nxt {
    right: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-arrow .team-nxt {
    right: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-arrow .team-nxt {
    right: -20px;
  }
}
@media (max-width: 767px) {
  .team-arrow .team-nxt {
    right: -5px;
  }
}

.gsp-team {
  border: 1px solid var(--gp-grey-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-team-dtls__thumb img {
    width: 100%;
  }
}
.gsp-team-dtls__content {
  padding-left: -15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-team-dtls__content {
    margin-top: 0;
  }
}
.gsp-team-dtls__content span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--gp-site-primary);
  display: inline-block;
}
.gsp-team-dtls__content p {
  margin-bottom: 50px;
  color: var(--gp-text-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-team-dtls__content p {
    margin-bottom: 20px;
  }
}
.gsp-team-dtls__title {
  font-size: 24px;
}
.gsp-team-dtls__title:hover {
  color: var(--gp-theme-secondary);
}
.gsp-team-dtls__info ul li {
  font-size: 18px;
  color: #030A39;
  margin-bottom: 22px;
}
.gsp-team-dtls__info ul li span {
  color: #7A8085;
  text-transform: capitalize;
}
.gsp-team-dtls__info ul li span a:hover {
  color: var(--gp-site-primary);
}
.gsp-team-dtls__social {
  text-align: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-team-dtls__social {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-team-dtls__social {
    text-align: start;
  }
}
@media (max-width: 767px) {
  .gsp-team-dtls__social {
    text-align: center;
  }
}
.gsp-team-dtls__social a {
  height: 42px;
  width: 42px;
  text-align: center;
  line-height: 42px;
  display: inline-block;
  background: var(--gp-icon-fb);
  color: var(--gp-common-white);
  border-radius: 5px;
  margin-left: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-team-dtls__social a {
    margin-left: 5px;
  }
}

.gsp-team-dtls__social .gsp-dtls-insta {
  background-color: var(--gp-site-primary);
}

.gsp-team-dtls__social .gsp-dtls-tweet {
  background-color: var(--gp-icon-tweet);
}

.gsp-team-dtls__social .gsp-dtls-pinter {
  background-color: var(--gp-icon-red);
}

.gsp-team-dtls-text__title {
  font-size: 30px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .gsp-team-dtls-text__title {
    font-size: 26px;
  }
}
.gsp-team-dtls-text p {
  font-size: 16px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-team-dtls-item {
    margin-left: 0;
  }
}
.gsp-team-dtls-item__title {
  font-size: 24px;
}
.gsp-team-dtls-item p {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-team-dtls-item p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-team-dtls-item p br {
    display: none;
  }
}
.gsp-team-dtls-item__list ul li {
  font-weight: 500;
  margin-bottom: 5px;
}
.gsp-team-dtls-item__list ul li i {
  color: var(--gp-site-primary);
  margin-right: 8px;
}

/*----------------------------------------*/
/*  13. TESTIMONIAL CSS START
/*----------------------------------------*/
.gsp-testi {
  padding: 85px 47px 40px 47px;
  background-color: var(--gp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-testi {
    padding: 85px 30px 40px 30px;
  }
}
@media (max-width: 767px) {
  .gsp-testi {
    padding: 85px 25px 40px 25px;
  }
}
.gsp-testi__avata {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.gsp-testi__avata img {
  box-shadow: 0px 9px 11px 0px rgba(162, 170, 191, 0.25);
  border-radius: 50%;
}
.gsp-testi__content p {
  font-size: 15px;
  color: var(--gp-text-2);
  margin-bottom: 35px;
}
.gsp-testi__avata-title {
  font-family: "Archivo";
  font-weight: 600;
  font-size: 18px;
}
.gsp-testi__ava-position {
  font-size: 12px;
  font-weight: 700;
  color: var(--gp-icon-blue);
  text-transform: uppercase;
}

.gsp-test-arrow .gsp-test-nxt {
  margin-left: 20px;
}
.gsp-test-arrow i {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  border: 1px solid #D1D6E0;
}
.gsp-test-arrow i:hover {
  border: 1px solid var(--gp-heading-primary);
  background-color: var(--gp-heading-primary);
  color: var(--gp-common-white);
}

.testimonial-bg {
  background-repeat: no-repeat;
  background-size: cover;
}

.testi-thumb .swiper-slide img {
  border: 4px solid transparent;
  border-radius: 50%;
}

.testi-thumb .swiper-slide-thumb-active img {
  border: 4px solid var(--gp-common-white);
  border-radius: 50%;
}

.testi-content p {
  color: var(--gp-common-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  padding: 0 22px;
  margin-bottom: 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testi-content p {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .testi-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    padding: 0;
  }
}
.testi-content i {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  color: var(--gp-common-white);
  margin-bottom: 15px;
}
.testi-content span {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
}

.testi-arrow i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid var(--gp-common-white);
  border-radius: 50%;
  color: var(--gp-common-white);
}
.testi-arrow i:hover {
  background-color: var(--gp-common-white);
  border: 1px solid var(--gp-common-white);
  color: var(--gp-heading-primary);
}

@media (max-width: 767px) {
  .testi-bg .testi-arrow {
    position: absolute;
    bottom: -80px;
  }
}

.testi-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .testi-button-next {
    right: 32%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testi-button-next {
    right: 40%;
  }
}

.testi-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .testi-button-prev {
    left: 32%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testi-button-prev {
    left: 40%;
  }
}

@media (max-width: 767px) {
  .testi-bg {
    background-position: center;
  }
}

@media (max-width: 767px) {
  .testi-avta-bottom {
    padding-bottom: 35px;
  }
}

.gsp-testimonial-text .testi-content p {
  color: var(--gp-theme-primary);
}
.gsp-testimonial-text .testi-content i {
  color: var(--gp-theme-primary);
}
.gsp-testimonial-text .testi-content span {
  color: var(--gp-theme-primary);
}

.gsp-testimonial-arrow i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid var(--gp-theme-primary);
  border-radius: 50%;
  color: var(--gp-theme-primary);
}
.gsp-testimonial-arrow i:hover {
  background-color: var(--gp-theme-primary);
  color: var(--gp-common-white);
}

@media (max-width: 767px) {
  .gsp-testimonial-arrow {
    position: absolute;
    bottom: -80px;
  }
}

.gsp-testi-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .gsp-testi-button-prev {
    left: 32%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .gsp-testi-button-prev {
    left: 40%;
  }
}

.gsp-testi-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .gsp-testi-button-next {
    right: 32%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .gsp-testi-button-next {
    right: 40%;
  }
}

.gsp-testi-thumb-ava .swiper-slide-thumb-active img {
  border: 4px solid var(--gp-site-primary);
  border-radius: 50%;
}

/*----------------------------------------*/
/*  14. CTA CSS START
/*----------------------------------------*/
.cta-bg {
  border-radius: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-bg {
    background-position: right;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-bg {
    background-position: left;
  }
}

.cta-title {
  font-size: 36px;
  color: var(--gp-common-white);
  line-height: 1.3;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .cta-title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-content {
    margin-left: 30px;
  }
}

.gsp-cta-bg {
  border-radius: 5px;
  background-position: right;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gsp-cta-bg {
    background-position: left;
  }
}

.cta-shape {
  height: 130px;
  width: 130px;
  text-align: center;
  background: var(--gp-common-white);
  line-height: 130px;
  border-radius: 50%;
  border: 5px solid var(--gp-icon-blue);
  position: absolute;
  top: 130px;
  right: 430px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-shape {
    top: 100px;
    right: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-content {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .cta-content {
    margin-left: 20px;
  }
}
.cta-content .cta-title {
  font-size: 28px;
}
@media (max-width: 767px) {
  .cta-content .cta-title br {
    display: none;
  }
}

.brand-items .swiper-slide {
  text-align: center;
}

.brand-border {
  border-top: 1px solid var(--gp-border-primary);
  border-bottom: 1px solid var(--gp-border-primary);
}

.newsletter-title {
  font-weight: 400;
  font-size: 43px;
  color: var(--gp-common-white);
}

.news-round-shape {
  z-index: 1;
}
.news-round-shape::before {
  content: "";
  position: absolute;
  height: 824px;
  width: 824px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-radius: 50%;
  top: -210px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.newsletter-content span {
  font-weight: 500;
  font-size: 18px;
  color: var(--gp-common-white);
  margin-bottom: 45px;
  display: block;
}

.newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 22.45px 42px;
  color: var(--gp-common-white);
  background-color: var(--gp-icon-green);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 5px;
  line-height: 1;
}
@media (max-width: 767px) {
  .newsletter-btn {
    position: static;
    margin-top: 10px;
  }
}
.newsletter-btn:hover {
  background-color: var(--gp-icon-pink);
}
.newsletter-btn i {
  margin-left: 5px;
}

.newsletter-form form input {
  padding: 0 220px 0 25px;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: none;
}
@media (max-width: 767px) {
  .newsletter-form form input {
    padding: 0 20px 0 25px;
  }
}
.newsletter-form form input::placeholder {
  color: #B2B0C1;
  font-size: 15px;
}

.video-bg-icon {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.video-bg-icon a {
  height: 120px;
  width: 120px;
  line-height: 120px;
  text-align: center;
  background-color: var(--gp-common-white);
  border-radius: 50%;
  color: var(--gp-theme-primary);
  display: block;
  font-size: 20px;
  animation: dm-pulse-2 1.5s infinite;
}
@media (max-width: 767px) {
  .video-bg-icon a {
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 16px;
  }
}
.video-bg-icon a:hover {
  background-color: var(--gp-theme-secondary);
  color: var(--gp-common-white);
}

.video-bg img {
  max-width: 100%;
}

.process-bg {
  position: relative;
  z-index: 1;
}
.process-bg::before {
  position: absolute;
  content: "";
  background: linear-gradient(0.7deg, #171151 21.18%, rgba(23, 17, 81, 0) 99.43%);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: -1;
}

.fea-box {
  height: 830px;
  display: flex;
  align-items: end;
  padding: 50px 55px;
  border-right: 1px solid rgba(228, 224, 255, 0.22);
  position: relative;
}
@media (max-width: 767px) {
  .fea-box {
    height: 600px;
  }
}
.fea-box::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: #0E63FF;
  opacity: 0.85;
  z-index: -1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.fea-box:hover::before {
  height: 100%;
}

.gsp-process__icon i {
  height: 114px;
  width: 114px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 130px;
  font-size: 45px;
  color: var(--gp-common-white);
}
.gsp-process__content p {
  color: var(--gp-common-white);
  font-size: 15px;
  margin-bottom: 0;
}
.gsp-process__title {
  color: var(--gp-common-white);
  font-size: 20px;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .gspcontact {
    margin-right: 0;
  }
}
.gspcontact_item {
  border: 1px solid var(--gp-border-primary);
  padding: 50px 25px 40px 25px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.gspcontact_item:hover {
  border: 1px solid var(--gp-theme-secondary);
}
.gspcontact_title {
  font-size: 22px;
}
.gspcontact_address span {
  font-size: 18px;
  display: block;
}
.gspcontact_address span a:hover {
  color: var(--gp-theme-secondary);
}

.contactform input, .contactform textarea {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid var(--gp-border-primary);
  color: var(--gp-heading-primary);
  font-size: 16px;
  outline: 0;
  box-shadow: 0px 16px 24px rgba(189, 196, 205, 0.13);
}
.contactform input:focus, .contactform textarea:focus {
  border: 1px solid var(--gp-site-primary);
}
.contactform input::placeholder, .contactform textarea::placeholder {
  color: var(--gp-text-2);
}

.contactform textarea {
  height: 170px;
  padding: 25px 20px;
  line-height: 1.1;
  resize: none;
}

.gspcontactmap iframe {
  height: 100%;
  width: 100%;
  border-radius: 5px; 
  filter: grayscale(100%);
}

/*----------------------------------------*/
/*  16. RESEARCH CSS START
/*----------------------------------------*/
.research-item:hover .research-item__thum img {
  transform: scale(1.1);
}
.research-item__title a {
  background-image: linear-gradient(#171151, #171151), linear-gradient(#171151, #171151);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.research-item__title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.research-item__thum img {
  -webkit-transition: all 2s ease-out 0s;
  -moz-transition: all 2s ease-out 0s;
  -ms-transition: all 2s ease-out 0s;
  -o-transition: all 2s ease-out 0s;
  transition: all 2s ease-out 0s;
}
.research-item__content span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--gp-site-primary);
  letter-spacing: 0.7px;
  display: block;
  margin-bottom: 20px;
}
.research-item__content p {
  font-size: 15px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .research-item__content p {
    font-size: 14px;
  }
}
.research-item__btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 20px;
  color: var(--gp-site-primary);
  background-color: var(--gp-icon-blue-light);
  text-transform: uppercase;
  border-radius: 5px;
}
.research-item__btn:hover {
  color: var(--gp-common-white);
  background-color: var(--gp-site-primary);
}

.gsp-pink span {
  color: var(--gp-theme-pink);
}
.gsp-pink .research-item__btn {
  color: var(--gp-theme-pink);
  background: var(--gp-icon-pink-light);
}
.gsp-pink .research-item__btn:hover {
  color: var(--gp-common-white);
  background-color: var(--gp-theme-pink);
}

.gsp-green span {
  color: var(--gp-theme-secondary);
}
.gsp-green .research-item__btn {
  color: var(--gp-theme-secondary);
  background: var(--gp-icon-green-light);
}
.gsp-green .research-item__btn:hover {
  color: var(--gp-common-white);
  background-color: var(--gp-theme-secondary);
}

.gsp-sky span {
  color: var(--gp-theme-sky);
}
.gsp-sky .research-item__btn {
  color: var(--gp-theme-sky);
  background: var(--gp-icon-sky-light);
}
.gsp-sky .research-item__btn:hover {
  color: var(--gp-common-white);
  background-color: var(--gp-theme-sky);
}

/*----------------------------------------*/
/*  17. PRICING CSS START
/*----------------------------------------*/
.gsp-price {
  padding: 35px 42px 45px 55px;
  border: 1px solid var(--gp-border-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-top: 4px solid var(--gp-site-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .gsp-price {
    padding: 35px 20px 45px 20px;
  }
}
.gsp-price:hover {
  border-top: 4px solid var(--gp-site-primary);
}
.gsp-price__badge span {
  color: var(--gp-text-2);
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-block;
  text-transform: uppercase;
}
.gsp-price__content p {
  font-size: 20px;
  font-weight: 500;
}
.gsp-price__value {
  font-size: 45px;
}
.gsp-price__value span {
  color: var(--gp-text-2);
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}
.gsp-price__features ul li {
  position: relative;
  padding-left: 14px;
  color: var(--gp-text-2);
  font-size: 16px;
  margin-bottom: 15px;
}
.gsp-price__features ul li::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 4px;
  background: var(--gp-text-2);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.gsp-price__inactive {
  color: var(--gp-text-2);
  opacity: 0.3;
}
.gsp-price__btn a {
  background: var(--gp-site-primary);
  padding: 14px 87px;
  display: inline-block;
  font-size: 12px;
  color: var(--gp-common-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gsp-price__btn a {
    padding: 14px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .gsp-price__btn a {
    padding: 14px 40px;
  }
}
@media (max-width: 767px) {
  .gsp-price__btn a {
    padding: 12px 15px;
  }
}
.gsp-price__btn a span {
  margin-left: 10px;
  display: inline-block;
}
.gsp-price__btn:hover a span {
  animation: tfLeftToRight 0.5s forwards;
}

.gsp-price.active {
  box-shadow: 0px 26px 33px rgba(77, 97, 130, 0.05);
  border: none;
  border-top: 4px solid var(--gp-theme-pink);
}
.gsp-price.active:hover {
  border-top: 4px solid var(--gp-theme-pink);
}

.gsp-pink-btn a {
  background-color: var(--gp-theme-pink);
}

.gsp-yearly-price {
  border-top: 4px solid var(--gp-theme-secondary);
}
.gsp-yearly-price:hover {
  border-top: 4px solid var(--gp-theme-secondary);
}

.gsp-green-btn a {
  background-color: var(--gp-theme-secondary);
}

.gsp-white-price {
  background-color: #1C155E;
  border: none;
  border-top: 4px solid var(--gp-site-primary);
}
.gsp-white-price .gsp-price__value {
  color: var(--gp-common-white);
}
.gsp-white-price .gsp-price__heading p {
  color: var(--gp-common-white);
}
.gsp-white-price .gsp-price__features ul li {
  color: var(--gp-text-1);
}
.gsp-white-price .gsp-price__inactive {
  color: var(--gp-text-1);
  opacity: 0.3;
}

.gsp-white-price.active {
  border-top: 4px solid var(--gp-theme-pink);
  background-color: #292176;
}

.gsp-white-price.gsp-yearly-price {
  border-top: 4px solid var(--gp-theme-secondary);
}

/*----------------------------------------*/
/*  18. FAQ CSS START
/*----------------------------------------*/
.faq-accordion {
  margin: 0 15px;
}
@media (max-width: 767px) {
  .faq-accordion {
    margin: 0 0;
  }
}
.faq-accordion .accordion-button {
  color: var(--gp-theme-primary);
  background: none;
  position: relative;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 500;
  box-shadow: none;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-accordion .accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .faq-accordion .accordion-button {
    padding: 20px 30px 20px 25px;
    font-size: 16px;
  }
}
.faq-accordion .accordion-button::after {
  position: absolute;
  font-family: "Font Awesome 5";
  top: 35%;
  right: 20px;
  transform: translateY(-50%);
  content: "\f062";
  background: none;
  color: var(--gp-site-primary);
}
@media (max-width: 767px) {
  .faq-accordion .accordion-button::after {
    right: 15px;
  }
}
.faq-accordion .accordion-button.collapsed::after {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  content: "\f063";
  color: var(--gp-theme-primary);
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-items {
  border: 1px solid var(--gp-grey-1);
  box-shadow: 0px 20px 20px rgba(228, 228, 228, 0.25);
  margin-bottom: 30px;
}
.faq-accordion .accordion-content {
  border-bottom: 4px solid var(--gp-site-primary);
}
.faq-accordion .accordion-content p {
  padding: 0 75px 35px 45px;
  color: var(--gp-text-2);
  margin: 0;
}
@media (max-width: 767px) {
  .faq-accordion .accordion-content p {
    padding: 0 30px 35px 25px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .faq-accordion .accordion-content p br {
    display: none;
  }
}

.gspproditem:hover .gspproditem-order-icon {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}
.gspproditem_thumb img {
  width: 100%;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}
.gspproditem-order-icon {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s cubic-bezier 0s;
  width: 100%;
  z-index: 9;
  display: flex;
  justify-content: center;
}

.gspproditem .gspproditem-order-icon a {
  margin: 0 5px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 1px solid var(--gp-site-primary);
  border-radius: 50%;
  display: inline-block;
  background-color: #0c53a5;
  color: var(--gp-common-white);
}
.gspproditem-order-icon a:hover {
  background-color: var(--gp-theme-pink);
  border: 1px solid var(--gp-theme-pink);
}
.gspproditem_content p {
  font-size: 14px;
  font-weight: 400;
  color: #6b6f76;
  margin-bottom: 6px;
  line-height: 15px;
}
.gspproditem_title {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.gspproditem_title a {
  color: #005ac3;
  width: 100%;
  display: block;
  overflow: auto;
}
.gspproditem_review i {
  color: #F7931E;
}
.gspproditem_product-base {
  position: absolute;
  top: 20px;
  left: 30px;
  font-weight: 700;
  font-size: 12px;
  color: var(--gp-common-white);
  padding: 6px 13px;
  background: #FD4766;
  border-radius: 5px;
  line-height: 1;
}

.gspproduct span {
  font-weight: 500;
  font-size: 15px;
}

.tpfilter {
  justify-content: end;
}
@media (max-width: 767px) {
  .tpfilter {
    justify-content: start;
  }
}
.tpfilter span {
  font-weight: 500;
  font-size: 15px;
}
.tpfilter .nice-select {
  padding-left: 5px;
  border: none;
  color: var(--gp-theme-primary);
}

.productthumb{
  width: 50%;
  position: relative;
  margin: 0 auto;
  /* background: #c7c7c7; */
  padding: 6px;
}

.productthumb img {
  border-radius: 0;
  width: 100%;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .productthumb img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product {
    margin-left: 0;
  }
}
.product-details-content p {
  font-weight: 400;
  font-size: 16px;
  color: #777B83;
}
 

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-content p br {
    display: none;
  }
}
.product-dtitle {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .product-dtitle {
    font-size: 24px;
  }
}
.product-dinfo span {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #141515;
}
.product-rating a {
  color: #FFDC60;
}
.product-dprice {
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.02em;
}
.product-model-title {
  font-family: "Archivo";
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  color: #0B0B0B;
}
.product-quantity-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.02em;
  color: #0B0B0B;
}
.product-quantity input {
  color: var(--gp-theme-primary);
  border: none;
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.product-model-list a {
  font-size: 12px;
  font-weight: 600;
  color: #777B83;
  background: #F7F8FD;
  display: inline-block;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 15px;
  border-radius: 2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-model-list a {
    margin-right: 8px;
  }
}
@media (max-width: 767px) {
  .product-model-list a {
    margin-right: 5px;
    padding: 0 6px;
  }
}
.product-model-list a:last-child {
  margin-right: 0;
}
.product-model-list a:hover {
  background: var(--gp-site-primary);
  color: var(--gp-common-white);
}

.gsp-product-quantity .cart-minus, .gsp-product-quantity .cart-plus {
  cursor: pointer;
  color: #8D8884;
}
.gsp-product-quantity .cart-minus:hover, .gsp-product-quantity .cart-plus:hover {
  color: var(--gp-theme-primary);
}
.gsp-product-quantity input {
  height: 30px;
  width: 32px;
  font-size: 14px;
  border: none;
  font-weight: 700;
  text-align: center;
}

.product-rating {
  margin-right: 20px;
}
.product-rating a {
  font-size: 16px;
  color: #FFDC60;
}

.product-dinfo {
  display: flex;
}

.product-dprice del {
  font-size: 20px;
  color: #B9B9B9;
}

.pro-details-nav {
  background: #F9FAFB;
  display: inline-block;
  padding: 7px 7px;
}

.pro-details-nav-btn {
  border: none;
}
.pro-details-nav-btn li {
  font-weight: 500;
  font-size: 18px;
  color: var(--gp-text-body);
  position: relative;
}
.pro-details-nav-btn li::after {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  background: #DFE3E9;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .pro-details-nav-btn li::after {
    display: none;
  }
}
.pro-details-nav-btn li::before {
  content: "";
  height: 100%;
  width: 101%;
  top: 0;
  left: -1px;
  background: #0E63FF;
  position: absolute;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}
.pro-details-nav-btn li .active::before {
  opacity: 1;
  visibility: visible;
}
.pro-details-nav-btn li:last-child::after {
  display: none;
}
@media (max-width: 767px) {
  .pro-details-nav-btn li {
    font-size: 16px;
  }
}
.pro-details-nav-btn li .nav-links {
  padding: 20px 45px;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pro-details-nav-btn li .nav-links {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .pro-details-nav-btn li .nav-links {
    padding: 5px 15px;
  }
}
.pro-details-nav-btn li .nav-links.active {
  background: var(--gp-site-primary);
  color: var(--gp-common-white);
}

.tab-para p {
  font-size: 16px;
  line-height: 30px;
}

.comments-box {
  margin-bottom: 50px;
}

.user-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.comments-text span, .comments-text p {
  color: #777777;
  font-size: 16px;
}

.comment-title p {
  color: #777777;
  font-size: 16px;
}

.comment-rating span {
  font-weight: 500;
  margin-right: 5px;
}
.comment-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.comment-input textarea {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
  border: 1px solid #e7e7e7;
  padding: 20px;
}
.comment-input textarea:focus-visible {
  border: 1px solid transparent;
}
.comment-input input {
  width: 100%;
  height: 50px;
  resize: none;
  outline: 0;
  border: 1px solid #e7e7e7;
  padding: 8px 20px;
  margin-bottom: 30px;
}
.comment-input input:focus {
  border: 1px solid var(--gp-site-primary);
}

.comments-avatar {
  flex: 0 0 auto;
}

.table .add-info {
  font-size: 18px;
  font-weight: 500;
}

.table td {
  padding: 18px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .shop-left-right {
    margin-left: 0;
    margin-right: 0;
  }
}

.gsp-comments-title {
  font-size: 24px;
}
@media (max-width: 767px) {
  .gsp-comments-title {
    font-size: 18px;
  }
}

.avatar-name b {
  font-size: 16px;
  font-weight: 500;
}

.shop-faq .accordion-header button {
  font-size: 18px;
  padding: 20px 55px 20px 30px;
}
@media (max-width: 767px) {
  .shop-faq .accordion-header button {
    font-size: 14px;
  }
}
.shop-faq .accordion-content p br {
  display: none;
}
.shop-faq .accordion-content p {
  padding: 0 75px 20px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-button a {
    margin-bottom: 10px;
  }
}

/*----------------------------------------*/
/*  20. CART CSS START
/*----------------------------------------*/
.table-content table {
  background: #ffffff;
  border-color: #eaedff;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.table-content table.table > :not(:first-child) {
  border-top: 0;
}

.table-content .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #eaedff;
}

.table-content .product-quantity {
  float: none;
}

.table-content table td.product-name {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.table-content table td.product-name a:hover {
  color: var(--gp-theme-secondary);
}

.table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}

.table-content table th,
.table-content table td {
  border-bottom: 1px solid #eaedff;
  border-right: 1px solid #eaedff;
}

.product-quantity input {
  color: #000;
  font-size: 14px;
  font-weight: normal;
}

.table td,
.table th {
  border-top: 1px solid #eaedff;
}

.product-quantity > input {
  width: 80px;
  border-radius: 3px;
}

.table-content table td.product-subtotal {
  font-size: 16px;
}

.table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}

.coupon-all {
  margin-top: 50px;
}

.coupon {
  float: left;
}

@media (max-width: 767px) {
  .coupon {
    float: none;
  }
}
#coupon_code {
  height: 65px;
  border: 2px solid #eaedff;
  padding: 0 15px;
  margin-right: 10px;
  border-radius: 8px;
}

@media (max-width: 767px) {
  #coupon_code {
    margin-bottom: 15px;
  }
}
.coupon2 {
  float: right;
}

@media (max-width: 767px) {
  .coupon2 {
    float: none;
    margin-top: 15px;
  }
}
.cart-page-total {
  padding-top: 50px;
}

.cart-page-total > h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total > ul {
  border: 1px solid #eaedff;
}

.cart-page-total > ul > li {
  list-style: none;
  font-size: 15px;
  color: #6f7172;
  padding: 10px 30px;
  border-bottom: 1px solid #eaedff;
  font-weight: 400;
}

.cart-page-total ul > li > span {
  float: right;
}

.cart-page-total li:last-child {
  border-bottom: 0;
}

td.product-thumbnail img {
  width: 125px;
}

.product-quantity .cart-plus, .product-quantity .cart-minus {
  width: 25px;
  height: 37px;
  /* border: 2px solid #eaedff; */
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 20px;
  line-height: 33px;
}
.cart-quantity-input{
  border: 1px solid #ccc;
  display: flex;
  margin: 0 10px;
}

.product-quantity .cart-plus:hover, .product-quantity .cart-minus:hover {
  cursor: pointer;
  color: #000;
  background: #ededed;
  border-color: #eaedff;
}

.cart-input {
  height: 37px;
  width: 32px;
  text-align: center;
  font-size: 14px;
  border: none;
  border-top: 2px solid var(--gp-border-1);
  border-bottom: 2px solid var(--gp-border-1);
  display: inline-block;
  vertical-align: middle;
  margin: 0 -3px;
  padding-bottom: 0px;
}

/* Checkout */
.coupon-accordion h3 {
  background-color: #f6f6f6;
  border-top: 3px solid rgba(16, 208, 161, 0.2);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
}

.coupon-accordion h3::before {
  content: "\f07b";
  left: 15px;
  top: 13px;
  position: absolute;
  color: #6f7172;
  font-family: "Font Awesome 5";
  font-weight: 700;
}

.coupon-accordion span {
  color: #6f7172;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.coupon-accordion span:hover, p.lost-password a:hover {
  color: var(--gp-theme-primary);
}

.coupon-content {
  border: 1px solid #eaedff;
  display: none;
  margin-bottom: 20px;
  padding: 30px;
}

.coupon-info p.coupon-text {
  margin-bottom: 15px;
}

.coupon-info p {
  margin-bottom: 0;
}

.coupon-info p.form-row-first label, .coupon-info p.form-row-last label {
  display: block;
  color: #6f7172;
}

.coupon-info p.form-row-first label span.required, .coupon-info p.form-row-last label span.required {
  color: red;
  font-weight: 700;
}

.coupon-info p.form-row-first input, .coupon-info p.form-row-last input {
  border: 1px solid #eaedff;
  height: 45px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.coupon-info p.form-row-first input:focus, .coupon-info p.form-row-last input:focus {
  border-color: var(--gp-theme-secondary);
}

.coupon-info p.form-row input[type=submit]:hover, p.checkout-coupon input[type=submit]:hover {
  background: #3e976c none repeat scroll 0 0;
}

.coupon-info p.form-row input[type=checkbox] {
  position: relative;
  top: 2px;
}

.form-row > label {
  margin-top: 15px;
  margin-left: 15px;
  color: #6f7172;
}

.buttons-cart input, .coupon input[type=submit], .buttons-cart a, .coupon-info p.form-row input[type=submit] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

p.lost-password {
  margin-top: 15px;
}

p.lost-password a {
  color: #6f6f6f;
}

p.checkout-coupon input[type=text] {
  height: 45px;
  padding: 0 15px;
  width: 100%;
  border: 1px solid #eaedff;
  margin-bottom: 15px;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
p.checkout-coupon input[type=text]:focus {
  border-color: var(--gp-theme-secondary);
}

.coupon-checkout-content {
  display: none;
}

.checkbox-form h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 26px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #eaedff;
  padding: 0 10px;
  height: 50px;
}

.country-select label, .checkout-form-list label {
  color: #6f7172;
  display: block;
  margin: 0 0 5px;
}

.country-select label span.required, .checkout-form-list label span.required {
  color: red;
}

.country-select .nice-select {
  border: 1px solid #eaedff;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  color: #6f7172;
  margin-bottom: 20px;
}

.country-select .nice-select .list {
  width: 100%;
}

.checkout-form-list {
  margin-bottom: 30px;
}

.checkout-form-list label {
  color: #6f7172;
}

.checkout-form-list input[type=text], .checkout-form-list input[type=password], .checkout-form-list input[type=email] {
  background: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  height: 45px;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.checkout-form-list input[type=text]:focus, .checkout-form-list input[type=password]:focus, .checkout-form-list input[type=email]:focus {
  border-color: var(--gp-theme-secondary);
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=checkbox] {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.create-acc label {
  color: #6f7172;
  display: inline-block;
}

.create-account {
  display: none;
}

.ship-different-title h3 label {
  display: inline-block;
  margin-right: 20px;
  color: #6f7172;
}

.order-notes textarea {
  border: 1px solid #eaedff;
  height: 120px;
  padding: 15px;
  width: 100%;
  outline: 0;
  resize: none;
}

.order-notes textarea:focus {
  border-color: var(--gp-theme-secondary);
}

.order-notes textarea::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.order-notes textarea::placeholder {
  color: #6f7172;
  opacity: 1;
}

#ship-box-info {
  display: none;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default > .panel-heading {
  border-radius: 0;
}

.your-order {
  padding: 30px 40px 45px;
  border: 3px solid rgba(16, 208, 161, 0.2);
}

@media (max-width: 767px) {
  .your-order {
    padding: 15px;
  }
}
.your-order h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 30px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.your-order-table table {
  background: none;
  border: 0;
  width: 100%;
}

.your-order-table table th, .your-order-table table td {
  border-bottom: 1px solid #eaedff;
  border-right: medium none;
  color: #6f7172;
  font-size: 14px;
  padding: 15px 0;
  text-align: left;
}

@media (max-width: 767px) {
  .your-order-table table th, .your-order-table table td {
    padding-right: 10px;
  }
}
.your-order-table table th {
  border-top: medium none;
  color: #6f7172;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  width: 250px;
}

.panel-body > p {
  color: #222;
}

.your-order-table table .shipping ul li {
  list-style: none;
}

.your-order-table table .shipping ul li input {
  position: relative;
  top: 2px;
}

.your-order-table table .shipping ul li label {
  color: #6f7172;
}

.your-order-table table .shipping th {
  vertical-align: top;
}

.your-order-table table .order-total th {
  border-bottom: 0;
  font-size: 14px;
}

.your-order-table table .order-total td {
  border-bottom: medium none;
}

.your-order-table table tr.cart_item:hover {
  background: #F9F9F9;
}

.your-order-table table tr.order-total td span {
  color: var(--gp-theme-primary);
  font-size: 18px;
  font-weight: 500;
}

.payment-method {
  margin-top: 40px;
}
.payment-method .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.payment-method .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid var(--gp-border-primary);
}
.payment-method .accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: var(--gp-theme-primary);
  padding: 23px 0;
  border: none;
}
.payment-method .accordion-button:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.payment-method .accordion-button::after {
  position: absolute;
  content: "\f067";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--gp-ff-fontawesome);
  font-size: 16px;
  font-weight: 400;
  margin-left: 0;
  background-image: none;
}
.payment-method .accordion-button:not(.collapsed) {
  color: var(--gp-theme-primary);
  background-color: var(--gp-common-white);
  box-shadow: none;
}
.payment-method .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.payment-method .accordion-body {
  padding: 8px 0;
  padding-bottom: 40px;
}
.payment-method .accordion-collapse {
  border: none;
}

.panel-title > a {
  display: block;
}

.order-button-payment input {
  background: #232323 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  margin: 0px 0 0;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.order-button-payment input:hover {
  background: #3e976c none repeat scroll 0 0;
}

.payment-method .btn-link {
  background: no-repeat;
  border: medium none;
  border-radius: 0;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.payment-method .card {
  background-color: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
  border: 1px solid #eaedff;
}

.card-header:first-child {
  border-radius: 0;
}

.payment-method .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaedff;
}

.tpviewtext p {
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tpviewtext p {
    font-size: 16px;
  }
}
.tpviewtext__para {
  margin-bottom: 60px;
}

.tpprothumb img {
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tpprothumb img {
    max-width: 100%;
  }
}

.tpprosolution p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tpprosolution p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tpprovideo img {
    max-width: 100%;
  }
}
.tpprovideo .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 120px;
  width: 120px;
  background: var(--gp-common-white);
  text-align: center;
  line-height: 120px;
  border-radius: 50%;
  color: var(--gp-theme-primary);
  animation: dm-pulse-2 1.5s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tpprovideo .play-btn {
    height: 90px;
    width: 90px;
    line-height: 90px;
  }
}
.tpprovideo .play-btn:hover {
  background-color: var(--gp-theme-secondary);
  color: var(--gp-common-white);
}

/*----------------------------------------*/
/*  22. FOOTER CSS START
/*----------------------------------------*/
.footer-widget__title {
  color: var(--gp-common-white);
  font-size: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget__title {
    font-size: 22px;
  }
}
.footer-widget p {
  color: var(--gp-text-1);
  font-size: 15px;
  margin-bottom: 35px;
}
.footer-widget__social a {
  margin-right: 12px;
}
.footer-widget__social a i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--gp-text-1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-widget__social a:hover i {
  color: var(--gp-common-white);
  border: 1px solid var(--gp-icon-red);
  background-color: var(--gp-icon-red);
}
.footer-widget__links ul li {
  margin-bottom: 6px;
}
.footer-widget__links ul li:last-child {
  margin-bottom: 0;
}
.footer-widget__links ul li a {
  font-weight: 500;
  color: var(--gp-text-1);
}
.footer-widget__links ul li a:hover {
  color: var(--gp-icon-green);
}
.footer-widget__info ul li {
  margin-bottom: 5px;
  color: var(--gp-text-1);
  font-weight: 500;
}
.footer-widget__info ul li:last-child {
  margin-bottom: 0;
}
.footer-widget__info ul li a {
  font-weight: 500;
  color: var(--gp-text-1);
}
.footer-widget__info ul li a:hover {
  color: var(--gp-icon-green);
}
.footer-widget__newsletter form input {
  width: 100%;
  height: 60px;
  padding: 0 200px 0 25px;
  font-size: 16px;
  color: var(--gp-text-1);
  border: none;
  background-color: #27225D;
  border-radius: 5px;
  border: 1px solid #312A70;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .footer-widget__newsletter form input {
    padding: 0 80px 0 25px;
  }
}
.footer-widget__newsletter form input::placeholder {
  color: var(--gp-text-1);
  font-size: 15px;
}
.footer-widget__fw-news-btn {
  color: var(--gp-common-white);
  height: 60px;
  width: 60px;
  background: var(--gp-icon-green);
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
}
.footer-widget__fw-news-btn:hover {
  background-color: var(--gp-icon-pink);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-widget__copyright {
    text-align: center;
  }
}
.footer-widget__copyright span {
  color: var(--gp-common-white);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-widget__copyright span {
    margin-bottom: 10px;
    display: block;
  }
}
.footer-widget__copyright span a:hover {
  color: var(--gp-icon-green);
}
.footer-widget__copyright span i {
  font-style: normal;
}
.footer-widget__copyright-info ul li {
  margin-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget__copyright-info ul li {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .footer-widget__copyright-info ul li {
    margin-right: 15px;
  }
}
.footer-widget__copyright-info ul li:last-child {
  margin-right: 0;
}
.footer-widget__copyright-info ul li a {
  font-weight: 500;
  color: var(--gp-text-1);
}
.footer-widget__copyright-info ul li a:hover {
  color: var(--gp-icon-green);
}

.footer-area-bottom {
  padding: 30px 0;
  border-top: 1px solid #251F5B;
}

.footer-white-content {
  border-left: 1px solid #251F5B;
}

.footer-bottom-border {
  padding: 30px 0;
  border-top: 1px solid #251F5B;
}

.info-direction ul {
  justify-content: end;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .info-direction ul {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .info-direction ul {
    justify-content: center;
    margin-top: 15px;
  }
}

.gsp-f-youtube,
.gsp-f-twitter,
.gsp-f-fb,
.gsp-f-skype {
  margin-right: 12px;
}
.gsp-f-youtube i,
.gsp-f-twitter i,
.gsp-f-fb i,
.gsp-f-skype i {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--gp-border-primary);
}
.gsp-f-youtube i:hover,
.gsp-f-twitter i:hover,
.gsp-f-fb i:hover,
.gsp-f-skype i:hover {
  color: var(--gp-common-white);
  border: 1px solid var(--gp-icon-red);
  background-color: var(--gp-icon-red);
}

.gsp-f-twitter:hover.gsp-f-twitter i {
  color: var(--gp-common-white);
  border: 1px solid var(--gp-icon-tweet);
  background-color: var(--gp-icon-tweet);
}

.gsp-f-fb:hover.gsp-f-fb i {
  color: var(--gp-common-white);
  border: 1px solid var(--gp-icon-fb);
  background-color: var(--gp-icon-fb);
}

.gsp-f-skype:hover.gsp-f-skype i {
  color: var(--gp-common-white);
  border: 1px solid var(--gp-icon-skype);
  background-color: var(--gp-icon-skype);
}

.footer-col-2 {
  margin-left: 95px;
}
@media (max-width: 767px) {
  .footer-col-2 {
    margin-left: 0;
  }
}

.footer-col-3 {
  margin-left: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-col-3 {
    margin-left: 0;
  }
}

.footer-col-4 {
  margin-left: -22px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .footer-col-4 {
    margin-left: 0;
  }
}

.gsp-footer-widget i {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--gp-text-2);
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 767px) {
  .gsp-footer-widget__content {
    margin-bottom: 25px;
  }
}
.gsp-footer-widget__content > a {
  font-weight: 500;
  font-size: 18px;
}
.gsp-footer-widget__contact {
  font-size: 36px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gsp-footer-widget__contact {
    font-size: 30px;
  }
}
.gsp-footer-widget__sub-sec p {
  color: var(--gp-text-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .gsp-footer-widget__sub-sec p br {
    display: none;
  }
}
.gsp-footer-widget__sub-title {
  font-weight: 600;
  font-size: 18px;
  display: block;
}
.gsp-footer-widget__title {
  font-weight: 600;
  font-size: 18px;
  display: block;
}
@media (max-width: 767px) {
  .gsp-footer-widget__links {
    margin-bottom: 20px;
  }
}
.gsp-footer-widget__links ul li {
  margin-bottom: 5px;
  color: var(--gp-text-2);
}
.gsp-footer-widget__links ul li a {
  font-weight: 400;
  font-size: 15px;
  color: var(--gp-text-2);
  padding-left: 10px;
}
.gsp-footer-widget__links ul li a:hover {
  color: var(--gp-site-primary);
}
.gsp-footer-widget__list ul li {
  color: var(--gp-text-2);
}

.fw-social a {
  color: #B2B0C1;
  margin-right: 20px;
}
.fw-social a i {
  font-size: 16px;
}
.fw-social a i:hover {
  color: var(--gp-theme-primary);
}

.fw-border {
  padding: 30px 0;
  border-top: 1px solid var(--gp-border-primary);
}

.copyright-white span {
  color: var(--gp-common-white);
}
.copyright-white span i {
  color: var(--gp-common-white);
}

.footer-2-col-2 {
  margin-left: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-2-col-2 {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-2-col-2 {
    margin-left: 0px;
  }
}

.footer-area-black .gsp-footer-widget__title {
  color: #fff;
}

.footernewsletter__title {
  font-weight: 400;
  font-size: 24px;
  color: var(--gp-common-white);
}
.footernewsletter p {
  color: var(--gp-text-1);
  font-size: 15px;
}
.footernewsletter__form form input {
  width: 100%;
  height: 60px;
  background-color: var(--gp-theme-primary);
  border: 1px solid #312A70;
  border-radius: 5px;
  padding: 0 100px 0 20px;
  color: var(--gp-common-white);
}
.footernewsletter__form form input::placeholder {
  color: var(--gp-text-2);
  font-size: 15px;
}
.footernewsletter__fw-news-btn {
  background-color: var(--gp-theme-secondary);
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  border-radius: 5px;
}

.footercontact {
  display: flex;
  align-items: center;
}
.footercontact:hover .footercontact__icon {
  box-shadow: inset 0 0 0 50px var(--gp-icon-blue);
  color: var(--gp-common-white);
}
.footercontact:hover .fw-pink-icon {
  box-shadow: inset 0 0 0 50px var(--gp-icon-pink);
  color: var(--gp-common-white);
}
.footercontact:hover .fw-green-icon {
  box-shadow: inset 0 0 0 50px var(--gp-icon-green);
  color: var(--gp-common-white);
}
.footercontact__icon {
  flex: 0 0 auto;
  margin-right: 20px;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 90px;
  border-radius: 50%;
  background-color: rgba(14, 99, 255, 0.1);
  color: var(--gp-icon-blue);
  font-size: 35px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footercontact__icon {
    height: 60px;
    width: 60px;
    line-height: 70px;
    font-size: 25px;
  }
}
.footercontact__icon.fw-pink-icon {
  background-color: rgba(247, 42, 117, 0.1);
  color: var(--gp-theme-pink);
}
.footercontact__icon.fw-green-icon {
  background-color: rgba(16, 208, 161, 0.1);
  color: var(--gp-theme-secondary);
}
.footercontact__title {
  color: var(--gp-common-white);
  font-weight: 500;
  font-size: 16px;
}
.footercontact__title a:hover {
  color: var(--gp-site-primary);
}
.footercontact__content span {
  color: var(--gp-common-white);
  display: block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footercontact__content span {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footercontact__content span a br {
    display: none;
  }
}

.fw-pink-content a {
  color: var(--gp-common-white);
  display: block;
}
.fw-pink-content a:hover {
  color: var(--gp-theme-pink);
}

.cpy-white-content span {
  color: var(--gp-common-white);
}
.cpy-white-content span i {
  color: var(--gp-text-2);
}

.cpy-white-content-info a {
  color: var(--gp-text-1);
}

.fw-white-border {
  border-top: 1px solid var(--gp-common-white);
}

.gsp-footer-white-content .gsp-footer-widget__content i {
  color: var(--gp-text-1);
}
.gsp-footer-white-content .gsp-footer-widget__content h4 {
  color: var(--gp-common-white);
}
@media (max-width: 767px) {
  .gsp-footer-white-content .gsp-footer-widget__content h4 {
    font-size: 28px;
  }
}
.gsp-footer-white-content .gsp-footer-widget__content a {
  color: var(--gp-common-white);
}
.gsp-footer-white-content .gsp-footer-widget__content a:hover {
  color: var(--gp-theme-secondary);
}
.gsp-footer-white-content .gsp-footer-widget__sub-sec span {
  color: var(--gp-common-white);
}
.gsp-footer-white-content .gsp-footer-widget__sub-sec p {
  color: var(--gp-text-1);
}
.gsp-footer-white-content .gsp-footer-widget__title {
  color: var(--gp-common-white);
}
.gsp-footer-white-content .gsp-footer-widget__links li {
  color: var(--gp-text-1);
}
.gsp-footer-white-content .gsp-footer-widget__links a {
  color: var(--gp-text-1);
}
.gsp-footer-white-content .gsp-footer-widget__links a:hover {
  color: var(--gp-theme-secondary);
}
.gsp-footer-white-content .gsp-footer-widget__list li {
  color: var(--gp-text-1);
}
.gsp-footer-white-content .gsp-footer-widget__social a i {
  color: #B2B0C1;
}
.gsp-footer-white-content .gsp-footer-widget__social a i:hover {
  color: var(--gp-common-white);
}
.gsp-footer-white-content .footer-widget__copyright span {
  color: var(--gp-common-white);
}
.gsp-footer-white-content .footer-widget__copyright span i {
  color: var(--gp-text-1);
}
.gsp-footer-white-content .fw-border {
  border-top: 1px solid #332E66;
}
.gsp-footer-white-content .footer-widget__copyright-info a {
  color: var(--gp-text-1);
}

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