/* font-famaly-hear */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Play:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* font-famaly-hear-end */

/* root */
:root {
  --poppins: "Poppins", sans-serif;
  --play: "Play", serif;
  --inter: "Inter", serif;

  --white-color: #fff;
  --black-color: #000;

  --primary: #009DE0;
  --secondary: #000;

  --hover-colo: #000;

  --body-color: #000000;
  --heading-color: #000;
}

/* root */

/* defaults-css-start */
html {
  font-size: 100%;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  line-height: 29px;
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 400;
}

a,
button {
  transition: all 0.3s ease-out 0s;
  -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;
}

a:focus,
button:focus,
.btn:focus {
  outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--play);
  color: var(--heading-color);
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 29px;
  color: var(--body-color);
  margin-bottom: 15px;
}

label {
  color: var(--body-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

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

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

::selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

/* defaults-css--end */

/* theme-css */

.fs-2 {
  font-size: 60px !important;
  line-height: 75px !important;
  text-transform: uppercase;
}

.btn {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--play);
  padding: 20px 50px;
  border-radius: 0px;
}

.btn-main {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white-color);
}

.btn-main:hover {
  color: var(--white-color);
  border-color: #0983b8;
  background-color: #0983b8;
}

.pretitle {
  display: block;
  font-size: 25px;
  line-height: 75px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--play);
  text-transform: uppercase;
}




/* theme-css-end */

/* ======== header style start ============ */

.header-nav nav>ul>li>a {
  display: block;
  font-size: 13px;
  line-height: 29px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 0px;
  position: relative;
}

.header-nav ul li:hover a {
  color: var(--primary);
}

.header-nav ul li.has-submenu>a {
  padding-right: 10px;
}

.header-nav ul li.has-submenu>a::after {
  position: absolute;
  right: -4px;
  top: 48%;
  transform: translateY(-50%);
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4px 4.5px 0 4.5px;
  border-color: #FFFFFF transparent transparent transparent;
  transform: rotate(0deg);
}

.header-nav ul li.has-submenu:hover a::after {
  border-color: var(--primary) transparent transparent transparent;
}

.header-nav ul li a.active {
  font-weight: bold;
}

.header-nav ul li {
  position: relative;
}

.header {
  position: absolute;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 111;
  padding: 24px 0px;
}

.header-nav ul {
  gap: 30px;
}

.header-link {
  text-decoration: none;
  display: inline-flex;
  color: #fff;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  align-items: center;
}

.header-link span.icon {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}

.header-nav ul li.has-submenu:hover ul.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-nav ul li.has-submenu ul.submenu {
  position: absolute;
  left: 0px;
  transform: translateX(-18px);
  background: #fff;
  min-width: 186px;
  padding: 7px 0px 10px;
  border-bottom: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  top: 110%;
  transition: all .3s;
}

.header-nav ul li.has-submenu ul.submenu::after {
  position: absolute;
  left: 20px;
  bottom: 100%;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5.5px 6px 5.5px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(0deg);
}


.header-nav ul li.has-submenu ul.submenu li a {
  display: block;
  font-size: 13px;
  text-decoration: none;
  padding: 9px 20px;
  color: var(--body-color);
  line-height: 1;
}

.header.sticky {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11111;
}

/* ======== header style end ============ */

/* ======== hero style start ============ */


.hero-area {
  position: relative;
  background: #1F1F1F;
  z-index: 1;
  padding: 295px 0px 166px;
}

.hero-banner {
  position: absolute;
  z-index: -1;
  width: calc(100% - 60px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  clip-path: polygon(100% 0, 100% calc(100% - 132px), calc(100% - 132px) 100%, 0 100%, 0 0);
}

.hero-content h1 {
  font-size: 110px;
  line-height: 100px;
  position: relative;
  margin-bottom: 15px;
}

.hero-content h1::after {
  position: absolute;
  left: -20px;
  top: 52%;
  width: 1px;
  height: 89%;
  content: "";
  background: #fff;
  transform: translateY(-50%);
}

.hero-content p {
  max-width: 90%;
  margin-bottom: 55px;
}

.hero-play {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-video {
  width: 129px;
  height: 129px;
  background: #FFFFFF3D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all .3s;
}

.play-video:hover {
  background: #FFFFFF8C;
}


/* ======== hero style end ============ */

/* ======== about-area style start ============ */


.about-area {
  background: #1F1F1F;
  padding: 174px 0px 174px;
}

.about-img {
  width: 577px;
  height: 634px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(100% 0, 100% calc(100% - 131px), calc(100% - 113px) 100%, 0 100%, 0 0);
}

.about-content {
  max-width: 544px;
  padding-bottom: 20px;
}

.about-content p {
  color: #fff;
  font-weight: 250;
  margin-bottom: 50px;
}

.about-content h2 {
  color: #fff;
}

.about-content {}

/* ======== about-area style end ============ */

/* ======== service-area style start ============ */


.service-area {
  padding: 116px 0px 138px;
}

.service-title-top {
  flex: 0 0 auto;
  width: 593px;
  position: relative;
}

.service-title-top::after {
  position: absolute;
  left: calc(100% + 41px);
  top: 53%;
  transform: translateY(-50%) rotate(20deg);
  width: 1px;
  height: 159px;
  content: "";
  background: #00000033;
}

.service-title-content {
  flex: 0 0 auto;
  width: 435px;
}

.service-title-content p {
  font-weight: 275;
  margin-bottom: 0px;
}

.service-title {
  margin-bottom: 80px;
}

.service-item {
  max-width: 360px;
  height: 457px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 65px, 52px 0);
  position: relative;
  transition: .3s;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .3s;
}

.service-item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(to top, #000000d1, #0000);
}

.service-item-content {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  height: auto;
  z-index: 11;
  text-align: center;
}

.service-item-content a {
  text-decoration: none;
  color: #fff;
  font-family: var(--play);
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: bold;
}

.service-bottom {
  padding-top: 100px;
}

.service-item:hover img {
  transform: scale(1.06);
}

.service-wrapper {
  max-width: 1140px;
  margin: 0 auto;
}


.testicmonial-content p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  color: #1F1F1F;
  margin-bottom: 23px;
  max-width: 320px;
  transition: .3s;
}

.testicmonial-content h6 {
  font-family: var(--poppins);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: .3s;
}

.quote {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 52px;
  height: 52px;
}

.quote img.quote-main {
  opacity: 1;
  z-index: 1;
}

.quote img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transition: .3s;
}

.testimonial-item:hover .quote img.main {
  opacity: 0;
}

.testimonial-item:hover .quote img.quote-white {
  opacity: 1;
}

.testimonial-item:hover .quote img.quote-main {
  opacity: 0;
}

.testimonial-item:hover {
  border-color: transparent;
}

.testimonial-item:hover .testicmonial-content p {
  color: #fff;
}

.testimonial-item:hover .testicmonial-content h6 {
  color: #fff;
}

.testimonial-item:hover .testicmonial-content h6 svg path {
  fill: #fff;
}

.testimonial-item {
  padding: 32px 36px 49px;
  border: 1px solid #00000033;
  position: relative;
  transition: all .3s;
  z-index: 1;
}

.testimonial-item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  transition: .3s;
  background: linear-gradient(180deg, #009DE0 0%, #2C799A 100%);
  opacity: 0;
}

.testimonial-item:hover::after {
  opacity: 1;
}

.testimonial-author img {
  width: 89px;
  height: 89px;
  object-fit: cover;
  object-position: center;
}

.testimonial-author {
  margin-bottom: 22px;
}

.testicmonial-content img.star-imgs {
  margin-bottom: 8px;
  display: block;
}


.testimonial-area {
  padding: 100px 0px 150px;
  background: #E5E5E5;
}

.testimonial-title {
  margin-bottom: 70px;
}

.sw-nav button {
  position: absolute;
  border: none;
  background: #E5E5E5;
  padding: 8px 14px;
  z-index: 1111;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.sw-nav button.s-next {
  left: auto;
  right: -100px;
}

.sw-nav button svg path {
  fill: black;
}

.sw-nav button:hover svg path {
  fill: var(--primary);
}

/* ======== service-area style end ============ */

/* ======== gallery-area style start ============ */


.gallery-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-item {
  max-width: 394px;
  width: 100%;
  height: 433px;
}

/* ======== gallery-area style end ============ */

/* ======== GIT area style start ============ */


.git-area {
  padding: 150px 0px 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.git-content-header h2 {
  color: #fff;
}

.git-content-header p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.git-content {
  max-width: 467px;
}

.git-content-header {
  margin-bottom: 25px;
}

.git-contact li a {
  font-size: 22px;
  line-height: 31px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding: 23px 0px;
}

.git-contact li a span.icon {
  flex: 0 0 auto;
  width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.git-contact li a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(153, 153, 153, 0) 100%);
  opacity: 0.2;
}

.git-contact li:last-child a::after {
  display: none;
}

.input-box input {
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  border-radius: 0px;
  padding: 18px 0px;
  border: none;
  border-bottom: 1px solid #fff3;
  resize: none;
}

.input-box input::placeholder {
  font-size: 18px;
  color: #fff;
  line-height: 22px;
}

.input-box textarea {
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  border-radius: 0px;
  padding: 15px 0px;
  border: none;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-bottom: 1px solid #fff3;
  resize: none;
  min-height: 109px;
}

.input-box textarea::placeholder {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
}

.input-box {
  margin-bottom: 26px;
}

.form-submit {
  padding-top: 33px;
}

.input-box textarea:focus {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: #fff !important;
}

.input-box input:focus {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: #fff !important;
}


/* ======== GIT area style end ============ */

/* ======== sections style start ============ */
/* ======== sections style end ============ */

/* ======== footer style start ============ */


.footer {
  padding: 30px 0px 27px;
}

.footer-wrpaper p {
  margin-bottom: 0px;
  font-size: 17px;
  color: #000000;
  font-weight: 500;
  font-family: var(--inter);
}

/* ======== footer style end ============ */



/* ======== sections style start ============ */
.header-bar button {
  background: transparent;
  border: none;
  font-size: 24px;
  padding: 3px 9px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.offcanvas-menu ul li a {
  color: #000;
  text-decoration: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid #0000001A;
}

.offcanvas-menu ul li ul li a {
  font-size: 16px !important;
}

.offcanvas-menu ul li a span svg {
  transition: .3s;
}

.offcanvas-menu ul li a[aria-expanded="true"] span svg {
  transform: rotate(180deg);
}

.offcanvas-menu ul li a:hover {
  color: var(--primary);
}

.offcanvas {
  z-index: 1111111;
}

/* ======== sections style end ============ */