/*================================================
font-face
================================================*/
@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Medium.woff2") format("woff2"),
    url("../fonts/Metropolis-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis Extra";
  src: url("../fonts/Metropolis-ExtraBold.woff2") format("woff2"),
    url("../fonts/Metropolis-ExtraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-MediumItalic.woff2") format("woff2"),
    url("../fonts/Metropolis-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Light.woff2") format("woff2"),
    url("../fonts/Metropolis-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis Extra";
  src: url("../fonts/Metropolis-ExtraBoldItalic.woff2") format("woff2"),
    url("../fonts/Metropolis-ExtraBoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-LightItalic.woff2") format("woff2"),
    url("../fonts/Metropolis-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Light.woff2") format("woff2"),
    url("../fonts/Metropolis-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-BoldItalic.woff2") format("woff2"),
    url("../fonts/Metropolis-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Bold.woff2") format("woff2"),
    url("../fonts/Metropolis-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Regular.woff2") format("woff2"),
    url("../fonts/Metropolis-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis Semi";
  src: url("../fonts/Metropolis-SemiBold.woff2") format("woff2"),
    url("../fonts/Metropolis-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-RegularItalic.woff2") format("woff2"),
    url("../fonts/Metropolis-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis Semi";
  src: url("../fonts/Metropolis-SemiBoldItalic.woff2") format("woff2"),
    url("../fonts/Metropolis-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/*================================================
Moz Selection
================================================*/
:root {
  --font-metro: "Metropolis";

  scroll-behavior: smooth;

  --blue: #161846;
  --blue-blur: #1c1f56;
  --white: #fff;
  --grey: rgba(255, 255, 255, 0.514);
  --gradient: linear-gradient(91.26deg, #ff5599 -4.52%, #ffdc92 102.96%);
  --slider-blue: #51c3fe;
  --slider-green: #54ad66;
  --slider-purple: #7382bf;
  --slider-brown: #d36f6f;
  --slider-orange: #fe8551;
  --slider-violate: #7382bf;
  --slider-yellow: #fece51;
  --slider-navy-blue: #5196fe;
}

.white-text {
  color: var(--white);
}
.grey-text {
  color: var(--grey);
}
.slider-blue {
  background-color: var(--slider-blue);
}

.slider-grey {
  background-color: #4347472d;
}

.slider-green {
  background-color: var(--slider-green);
}
.slider-purple {
  background-color: var(--slider-purple);
}
.slider-brown {
  background-color: var(--slider-brown);
}
.slider-orange {
  background-color: var(--slider-orange);
}
.slider-violate {
  background-color: var(--slider-violate);
}
.slider-yellow {
  background-color: var(--slider-yellow);
}
.slider-navy-blue {
  background-color: var(--slider-navy-blue);
}

::-moz-selection {
  text-shadow: none;
  background: #161846;
  color: #fff;
}

::selection {
  text-shadow: none;
  background: #161846;
  color: #fff;
}

/*================================================
General
================================================*/
body {
  background: var(--blue);
  font-family: var(--font-metro);
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  line-height: 2;
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

html {
  overflow: auto;
}
a:hover {
  text-decoration: none;
}

h1 {
  font-size: 55px;
  line-height: 1.2;
}

h2 {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 300;
}

h3 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
}

h4 {
  font-size: 20px;
  line-height: 1;
  font-family: "Metropolis Extra";
  font-weight: 700;
  font-style: normal;
}
h5 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Metropolis Semi";
}

h6 {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

p {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
}
span {
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
}
.h6-bottom {
  margin-bottom: 25px;
}

/*===== Container =====*/
.navbar-toggler {
  display: none;
}
section {
  position: relative;
}

.z-index-1 {
  z-index: 1;
}

.p-opacity {
  opacity: 0.8;
}
.span-opacity {
  opacity: 0.5;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pointer {
  cursor: pointer;
}

.cover-image img,
.contain-image img,
.cover-image svg,
.contain-image svg,
.contain-image video,
.contain-image iframe {
  width: 100%;
  height: inherit;
  max-height: inherit;
  min-height: inherit;
}

.contain-image img,
.contain-image svg,
.contain-image video,
.contain-image iframe {
  -o-object-fit: contain;
  object-fit: contain;
}

.cover-image img,
.cover-image svg {
  -o-object-fit: cover;
  object-fit: cover;
}

/*===== header-section start =====*/
.header-section {
  position: relative;
  background-color: transparent;
  height: 50px;
  line-height: 50px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.navbar-menu ul li {
  margin-left: 45px;
  display: inline-block;
  text-decoration: none;
}

.navbar-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-menu {
  position: relative;
  text-align: center;
}
.header-1 {
  display: flex;
  align-items: center;
}
header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1;
  padding: 20px 0px;
  transition: 0.3s all;
  z-index: 99;
}
.header-scroll {
  background-color: #161846;
}
.navbar-menu ul li a:hover {
  color: #ffffff;
  opacity: 1;
}
.navbar-menu ul li a::before {
  content: " ";
  position: absolute;
  bottom: 7px;
  height: 2px;
  width: 20px;
  background-color: #ffffff;
  display: none;
}

.navbar-menu ul li a:hover::before {
  display: block;
}

.navbar-menu ul li a.active {
  color: #ffffff;
  opacity: 1;
}
.navbar-menu ul li a.active::before {
  display: block;
}
.header-section .button-primary {
  padding: 15px 45px;
}
/*===== header-section end =====*/
/*===== section-title start =====*/
.btn-section {
  position: relative;
}
.grediant-text {
  font-size: 55px;
  line-height: 75px;
  background: -webkit-linear-gradient(0deg, #ff5599, #ffdc92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.section-title-box {
  position: relative;
}

.section-title-box1 {
  position: relative;
  padding-left: 44px;
}
.section-title-box1 .h2 {
  margin-bottom: 20px;
}
.section-title-box1 p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 300;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.grediant-text-1 {
  font-size: 50px;
  /* line-height: 65px; */
  background: -webkit-linear-gradient(0deg, #ff5599, #ffdc92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.banner-img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  object-fit: contain;
  object-fit: cover;
  align-items: center;
  transform: translateY(-50%);
}
.banner-img img {
  object-fit: contain;
  width: 100%;
}
.banner-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.banner-section:before {
  content: "";
  background: url("../images/bg-cover/bg-cover-hero.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.banner-section:after {
  content: "";
  background: linear-gradient(
    270deg,
    #161846 30%,
    transparent 100%,
    transparent 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
/*===== section-title end =====*/
/*===== button start =====*/

.button-section {
  position: relative;
  text-align: center;
}

.button-primary {
  position: relative;
  font-size: 20px;
  padding: 20px 45px;
  line-height: 20px;
  color: #1c1f59;
  background: rgb(255, 85, 153);
  background: linear-gradient(
    90deg,
    rgba(255, 85, 153, 1) 0%,
    rgba(255, 220, 146, 1) 50%,
    rgba(255, 85, 153, 1) 100%
  );
  text-decoration: none;
  border-radius: 30px;
  display: flex;
  align-items: center;
  vertical-align: middle;
  font-weight: 600;
  font-family: "Metropolis Semi";
  border: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease 0s;
  background-position: left;
  background-size: 200%;
}

.button-primary:hover {
  background-position: right;
  color: #1c1f59;
}

.button-primary svg {
  margin-left: 15px;
}

.footer-subscribe {
  position: relative;
}
.footer-subscribe .button-primary {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  height: 50px;
}

.button-top {
  margin-top: 50px;
}

/*===== button end =====*/
/*===== about-us start =====*/

.about-us {
  background: linear-gradient(180deg, #1c1f59 0%, rgba(22, 24, 70, 0) 100%);

  position: relative;
  padding: 93px 0px;
}
.img-box {
  display: flex;
  position: relative;
  margin-top: 35px;
}
.about-info {
  align-self: center;
  position: relative;
  padding-left: 15px;
}

.about-us-img {
  position: relative;
}
.about-us-img-1 {
  position: relative;
  margin-top: 70px;
}

.about-us-img img {
  width: 100%;
}
.about-us-img-1 img {
  width: 100%;
}

.img-1 {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
}
.img-2 {
  position: absolute;
  bottom: -50px;
  left: 0;
  object-fit: cover;
}
.img-3 {
  position: absolute;
  bottom: 34px;
  height: 17%;

  right: 16px;
  object-fit: cover;
  z-index: -1;
}

/*===== about-us end =====*/

/*===== Quote From start =====*/

.get-in-touch {
  position: relative;
  margin: 100px 0px 100px 0px;
}
.form-border {
  background-color: var(--blue-blur);
  height: 100%;
  width: 100%;
  border-radius: 70px;
  padding: 80px 150px 89px 110px;
  background-image: url(../images/bg.png);
}

form.quote-form {
  position: relative;
  width: 100%;
  margin-top: 41px;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.514);
}

.quote-form .form-control,
.quote-form .form-control1 {
  padding: 20px 40px;
  margin-bottom: 30px;
  background: #161846;
  color: white;
  text-decoration: none;
  border: 1px solid transparent;
  width: 100%;
  margin-top: 14px;
  border-radius: 35px;
  height: 70px;
  transition: 0.3s all;

  list-style: 1;
}

.form-control {
  font-size: 22px;
}
.form-control1 {
  font-size: 16px;
}

.form-message-group {
  height: 100%;
}
form.quote-form {
  position: relative;
  width: 100%;
  margin-top: 41px;
}

.quote-form textarea.form-control {
  height: calc(100% - 70px);
}

.quote-form .form-label {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  opacity: 0.5;
  font-weight: normal;
  font-weight: 400;
}

.form-control:focus {
  background-color: #161846;
  border-color: var(--white);
  outline: 0;
  box-shadow: none;
}

textarea {
  resize: none;
}

/*===== Quote From end =====*/
/*===== footer-section start =====*/

.footer-section {
  position: relative;
  padding: 60px 0px;
  background-color: var(--blue-blur);
}

.footer-list svg path {
  transition: all 0.5s ease 0s;
}

.footer-list svg path:hover {
  fill: #ff5599;
  transition: all 0.5s ease 0s;
}

.contact-section {
  position: relative;
}
.contact-section li {
  list-style-type: none;
  display: flex;
  justify-content: start;
  margin-bottom: 25px;
  text-decoration: none;
}
.contact-section li a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.contact-section a {
  color: #fff;
  transition: 0.5s all;
  font-size: 16px;
}
.contact-section a:hover {
  color: #ff5599;
}
.contact-section a svg {
  margin-right: 15px;
}

.contact-section {
  margin-bottom: 0;
  padding-left: 0;
}

.contact-section li:last-child {
  margin-bottom: 0;
}

.footer-list {
  position: relative;
}
.footer-list ul {
  margin-bottom: 0;
  padding-left: 0;
}
.footer-list ul li {
  list-style-type: none;
  display: inline-block;
  justify-content: start;
  padding-left: 38px;
}

.footer-list ul li:first-child {
  padding-left: 0;
}

.footer-list {
  position: relative;
}
.quik-list ul {
  margin-bottom: 0;
  padding-left: 0;
}
.quik-list ul li {
  list-style-type: none;
  display: block;
  justify-content: start;
  padding: 0px 0px 30px 0px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;

  font-weight: 400;
  font-style: normal;
  color: #eae8ff;
  transition: all 0.5s ease 0s;
}
.quik-list ul li:first-child {
  padding-left: 0;
}
.quik-list ul li:hover {
  color: #ff5599;
}

.footer-text {
  font-weight: 500;
  font-style: normal;
}

.footer-row {
  width: 100%;
  max-width: 100%;
  padding-left: 90px;
}

/*===== footer-section end =====*/
/*===== our-services start =====*/
.our-services {
  position: relative;
  padding: 100px 0px 0px 0px;
}
.our-services-slider-section {
  text-align: center;
  display: block;
  position: relative;
  justify-content: center;
  transition: all 0.5s ease 0s;
}

.our-services-slider-media-section {
  position: relative;
  padding: 35px 92px;
  border-radius: 20px 20px 0px 0px;
  height: 100%;
  min-height: 263px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-services-slider-media-section img {
  object-fit: contain;
}

.slick-dots .slick-active {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(91.26deg, #ff5599 -4.52%, #ffdc92 102.96%);
  border-radius: 30px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  border: 1px solid #7a7171;
  border-radius: 30px;
}

.slick-initialized .slick-slide {
  display: block;
  margin: 0 10px;
  overflow: hidden;
  padding-bottom: 50px;
}
.our-services-slider-content {
  position: relative;
  padding: 35px 20px;
  background: #1a1d55;
  border-radius: 0px 0px 20px 20px;
}

.our-services-slider-content {
  position: relative;
}

.our-services-slider-content .slider-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  padding: 0;
  opacity: 1;
}

/*===== our-services end =====*/
.slick-prev,
.slick-next {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    90deg,
    rgba(255, 85, 153, 1) 0%,
    rgba(255, 220, 146, 1) 50%,
    rgba(255, 85, 153, 1) 100%
  ) !important;
  z-index: 1;
  border-radius: 50%;
}

.slick-prev::before,
.slick-next:before {
  content: "";
  height: 12px;
  width: 12px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  top: 25px;
  bottom: 0;
  opacity: 1;
}

.slick-prev:before {
  transform: rotate(-180deg);
}
.slick-arrow.slick-disabled {
  opacity: 0.5;
}