/*-----------------------------------=========Main-Style-Sheet=========----------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --theme__color1: #17215B;
  --font1: 'Poppins', sans-serif;
}

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

body {
  font-size: 17px;
  line-height: 1.2;
  background-color: #fff;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font1);
}

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

input {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
  outline: none;
}

::placeholder {
  opacity: 1;
}

:focus::placeholder {
  opacity: 0;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  /* Prevents HTML tables from becoming too wide */
  width: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

iframe {
  width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
}

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

p {
  line-height: 1.2;
  margin-bottom: 15px;
}

p:last-child {
  margin: 0;
}

.main-wrap {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1800px) {
  .container {
    max-width: 1548px;
  }

  .container.small {
    width: 1414px;
  }
}

@media (min-width: 1199px) and (max-width: 1799px) {
  .container {
    max-width: 1150px;
  }

  .container.container-small {
    width: 1100px;
  }
}



/* header */
.header-section {
  padding: 40px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {}

.header-logo img {
  width: 318px;
}

.main-menu {}

.main-menu ul {
  display: flex;
}

.main-menu ul li {
  margin-left: 93px;
}

.main-menu ul li:first-child {
  margin-left: 0;
}

.main-menu ul li a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}

.main-menu ul li a:hover {
  color: #6271c5;
}

/* header-end */



/* ---offcanvas-css--- */
.offcanvas-open {
  font-size: 22px;
  transition: 0.3s;
  color: #fff;
}.offcanvas-open:hover {
	color: #ddd;
}

.offcanvas-close {
  color: #fff;
  position: absolute;
  transition: 0.3s;
  right: 20px;
  top: 20px;
}

.offcanvas-close:hover {
  color: #97A3AE;
}

.offcanvas-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateX(-105%);
  transition: 0.3s;
}

.offcanvas-menu.active {
  transform: translate(0);
}

.offcanvas-menu .offmenu {
  max-width: 250px;
  min-width: 200px;
  z-index: 5;
  position: relative;
  background: var(--theme__color1);
  height: 100%;
  padding: 50px 20px 40px;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.offcanvas-menu .offmenu :-webkit-scrollbar {
  display: none;
}





.offcanvas-menu ul li a {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #fff;
  padding: 10px;
}

.dropdown-menu-custom ul {
  background: #fff;
  padding: 20px 0;
}

.dropdown-menu-custom ul li a {
  color: #97A3AE;
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.178);
  z-index: 2;
  transform: 0;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---offcanvas-css-end---*/

/* --preloader-- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--theme__color1);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* --preloader-end-- */


/* ---hero-section--- */
.hero-section {
  padding: 270px 0 0;
  position: relative;
  z-index: 1;
}

.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: var(--theme__color1);
  z-index: -1;
  clip-path: polygon(0 0, calc(100% - 170px) 0, 100% 190px, 100% 80%, 300px 100%, 0 60%);
}

.hero-shape1 {
  width: 422px;
  position: absolute;
  margin-left: 0;
  bottom: 14%;
  left: -11%;
}

.hero-section-inner {
  display: flex;
}

.hero-content {
  width: 45%;
  flex-shrink: 0;
  padding-right: 10%;
}

.hero-video {
  flex-grow: 1;
  height: calc(var(--this-width) * 0.6297229219143577);
  flex-shrink: 0;
  width: 60%;
  position: relative;
  z-index: 1;
}

.hero-shape2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -26%);
  z-index: -1;
}

.hero-video iframe {
  height: 100%;
  width: 100%;
  border-radius: 40px;
}



.hero-video .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: .3s;
  font-size: 68px;
  color: #fff;
}

.video-play:hover {
  color: #17215B;
}

/* ---hero-section---end */


/* ---section-title-style--- */
.section-title-style {
  padding: 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title-style h2 {
  font-size: 45px;
  font-weight: 500;
  color: var(--theme__color1);
}

/* ---section-title-style---end */


/* ---section-content--- */
.section-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section-content p {
  font-weight: 300;
  color: #414042;
  text-align: center;
  line-height: 1.6;
}

.section-content .bottom-button {
  margin: 65px 0 0;
}

/* ---section-content---end */


/* ---comm-content--- */
.comm-content {}

.comm-content .h2 {
  font-size: 37px;
  margin: 0 0 22px;
  font-weight: 500;
  line-height: 1.5;
}

.comm-content p {
  font-weight: 300;
  line-height: 1.7;
}

.comm-content .bottom-button {
  margin: 55px 0 0;
}

/* ---comm-content---end */





/* ---about-us-section--- */
.about-us-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.about-us-content {
  padding: 0 39px;
}

.about-us-box-row {
  margin: 60px 0 -75px;
  border-radius: 18px;
  display: flex;
  background: #fff;
  box-shadow: 0 5px 15px #00000016;
  z-index: 3;
}

.about-us-box {
  padding: 50px 60px;
  width: 33.333333%;
  text-align: center;
  position: relative;
}

.about-us-box::before {
  content: '';
  height: 50%;
  width: 1px;
  background: #707070;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.about-us-box:nth-child(1):before {
  display: none;
}

.about-us-box .icon {
  margin: 0 0 25px;
  font-size: 50px;
  color: #92AFC7;
}

.about-us-box .content {}

.about-us-box .content h3 {
  margin: 0 0 22px;
  font-size: 25px;
  font-weight: 600;
  color: #124142;
}

.about-us-box .content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* ---about-us-section---end */



/* ---case-study-section--- */
.case-study-section {
  padding: 110px 0;
}

.case-study-section-inner {}

.case-study-row {}

.case-study-row-inner {
  display: flex;
  align-items: center;
}

.case-study-row2 .case-study-row-inner {
  align-items: flex-end;
}

.case-study-row1 {
  padding: 155px 0 20px;
  background: var(--theme__color1);
}

.case-study-row2 {
  margin: 100px 0 0;
}

.case-study-row .image-side {
  --img-d: 7.1%;
  --img-overflow: -13.5%;
  /* --img-overflow: -9%; */
  --margin-in: 7%;
  flex-shrink: 0;
  width: 60%;
  margin-left: var(--img-overflow);
  margin-right: var(--margin-in);
}

.case-study-row .image-side .image {
  padding: 0 0 var(--img-d) var(--img-d);
  position: relative;
  z-index: 1;
  border-radius: 23px;
}

.case-study-row .image-side .image::after {
  content: '';
  height: calc(100% - (var(--img-d) * 1));
  width: calc(100% - (var(--img-d) * 1));
  display: flex;
  background: #93B0C8;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
}

.case-study-row-flip .image-side .image {
  padding: 0 var(--img-d) var(--img-d) 0;
}

.case-study-row-flip .image-side .image::after {
  left: unset;
  right: 0;
}

.case-study-row .image-side .image img {
  border-radius: inherit;
  border: 1px solid #707070;
}

.case-study-row1 .image-side {
  margin-bottom: -125px;
}

.case-study-row-flip .image-side {
  margin-right: var(--img-overflow);
  margin-left: var(--margin-in);
}

.case-study-row .image-side img {}

.case-study-row .text-side {
  padding-right: 6%;
}

.case-study-row .text-side .h2 {}

.case-study-row .text-side p {}

.case-study-row .text-side .button {
  margin: 25px 0 0;
}

/* ---case-study-section---end */



/* ---some-work-section--- */
.some-work-section {
  padding: 70px 0 100px;
  background: #17215B06;
}

.some-work-section-inner {}

.some-work-row {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 65px;
}

.single-s-work {
  box-shadow: 0 25px 50px #00000016;
  z-index: 1;
  position: relative;
  border-radius: 23px;
  overflow: hidden;
  transition: .3s;
}
.single-s-work:hover{
  border-color: #17215b;
}
.frame {
	position: absolute;
	bottom: -65px;
	left: 0;
	right: 0;
	max-width: 122px;
	z-index: 1;
	transform: rotate(90deg);
	margin: 0 auto;
	height: 180px;
	transition: .3s;  
	opacity: 0;
	visibility: hidden;
	display: none;
}

.single-s-work:hover .frame{
  bottom: -35px;
  opacity: 1;
  visibility: visible
}
.single-s-work::before {
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--theme__color1);
  opacity: 0.5;
  border-radius: 0;
  z-index: 1;
}

.single-s-work img {
  border-radius: inherit;
  transition: .3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-s-work:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
}

.single-s-work::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: transparent;
	content: '';
	border: 5px solid #17215b;
	border-radius: 22px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.single-s-work:hover::after{
  opacity: 1;
  visibility: visible
}
/* ---some-work-section---end */



/* ---meet-ceo-section--- */
.meet-ceo-section {
  padding: 70px 0;
}

.meet-ceo-section-inner {
  padding: 0 39px;
}

.meet-ceo-section-inner .section-content {}

/* ---meet-ceo-section---end */



/* ---contact-us-section--- */
.contact-us-section {
  padding: 70px 0 100px;
}

.contact-us-section-inner {
  padding: 0 55px;
}

.contact-us-form {
  margin: 80px 0 0;
}

.contact-us-form-inner {}

/* ---contact-us-section---end */



/* ---single-input-x--- */
.single-input-x {
  width: 100%;
}

.single-input-x-t-label {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 500;
  color: #414042;
  width: 100%;
}

.single-input-x-input {
  font-size: 20px;
  padding: 25px 27px;
  width: 100%;
  font-weight: 500;
  border: 1px solid #414042;
}

.single-input-x-input::placeholder {
  color: #41404250;
}

.single-input-x-input.big {
  height: 276px;
}

.single-input-x-input.submit-button {
  background: var(--theme__color1);
  color: #fff;
  border: none;
  width: 355px;
  transition: 0.3s;
}

.single-input-x-input.submit-button:hover {
  background: #132aa8;
}

/* ---single-input-x---end */



/* ---footer-section--- */
.footer-section {
  background: var(--theme__color1);
}

.footer-section-inner {}

.footer-top {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}

.footer-logo {}

.footer-logo img {}

.footer-top .ft-item {}

.footer-top .ft-item p {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
  text-align: right;
  margin: 0;
}

.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}

.footer-menu {}

.footer-menu ul {
  display: flex;
}

.footer-menu ul li {
  margin-left: 60px;
}

.footer-menu ul li:first-child {
  margin-left: 0;
}

.footer-menu ul li a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}

.footer-menu ul li a:hover {
  color: #6271c5;
}

.f-social-menu {}

.f-social-menu ul {
  display: flex;
}

.f-social-menu ul li {
  margin-left: 60px;
}

.f-social-menu ul li:first-child {
  margin-left: 0;
}

.f-social-menu ul li a {
  height: 34.88px;
  width: 34.88px;
  font-size: 15px;
  font-weight: 500;
  color: var(--theme__color1);
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.f-social-menu ul li a:hover {
  background: #132aa8;
  color: #fff;
}

/* ---footer-section---end */