/*
  Author :
  Designed by: Rajesh Koladiya
*/

/* FONTS */
@font-face {
  font-family: "Amariya";
  src: url("./../fonts/Amariya-UltraLight.eot");
  src: url("./../fonts/Amariya-UltraLight.eot?#iefix")
      format("embedded-opentype"),
    url("./../fonts/Amariya-UltraLight.woff2") format("woff2"),
    url("./../fonts/Amariya-UltraLight.woff") format("woff"),
    url("./../fonts/Amariya-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./../fonts/Lato-Bold.eot');
  src: url('./../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'),
      url('./../fonts/Lato-Bold.woff2') format('woff2'),
      url('./../fonts/Lato-Bold.woff') format('woff'),
      url('./../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./../fonts/Lato-Regular.eot');
  src: url('./../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
      url('./../fonts/Lato-Regular.woff2') format('woff2'),
      url('./../fonts/Lato-Regular.woff') format('woff'),
      url('./../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./../fonts/Lato-Light.eot');
  src: url('./../fonts/Lato-Light.eot?#iefix') format('embedded-opentype'),
      url('./../fonts/Lato-Light.woff2') format('woff2'),
      url('./../fonts/Lato-Light.woff') format('woff'),
      url('./../fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./../fonts/Lato-Medium.eot');
  src: url('./../fonts/Lato-Medium.eot?#iefix') format('embedded-opentype'),
      url('./../fonts/Lato-Medium.woff2') format('woff2'),
      url('./../fonts/Lato-Medium.woff') format('woff'),
      url('./../fonts/Lato-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* FONTS END */
/* Root */
:root {
  /* default colors */
  --primary-color: #67B5FE;
  --white-color: #ffffff;
  --black-color: #000000;

  /* Font style */
  --primary-font: "Lato", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
}
/* Root */
/* selction css */
::selection {
  background: var(--primary-color);
  color: var(--white-color);
}
/* selction css */
/* default css */
body {
  font-family: var(--primary-font);
  font-weight: 400;
  background-color: var(--white-color);
}

a {
  color: var(--primary-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover {
  color: var(--black-color);
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: normal;
  color: var(--black-color);
  margin-bottom: 0;
  /* letter-spacing: 1px; */
}
body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child,
body h5:last-child,
body h6:last-child,
body p:last-child {
  margin-bottom: 0;
}
p {
  font-size: 20px;
  font-weight: 300;
  color: var(--black-color);
}
.heading-title {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: var(--black-color);
}
.btn,
.form-control:focus,
button:focus,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
ul {
  margin: 0px;
  padding: 0px;
}
ul li {
  padding: 0px;
  margin: 0px;
  list-style: none;
  -webkit-text-stroke: 0.3px;
}
.d-align {
  display: flex;
  align-items: center;
}
.d-align-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.d-wrap {
  display: flex;
  flex-wrap: wrap;
}
.cursor-pointer {
  cursor: pointer;
}
.img-cover {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
section {
  padding: 0 12px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}
.img-contain {
  object-fit: contain;
}
.img-cover {
  object-fit: cover;
}
.img-inherit {
  width: 100%;
  height: inherit;
}
.primary-bg {
  background-color: var(--primary-color);
}
.hover-text{
  transition: all 0.3s;
}
.hover-text:hover{
  color: var(--primary-color);
}
/* BUTTON STYLING */
.primary-btn {
  text-transform: uppercase;
  background-color: var(--primary-color);
  min-width: 250px;
  min-height: 55px;
  font-size: 20px;
  font-weight: 400;
  padding: 7px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  color: var(--white-color);
  border-radius: 30px;
  transition: 0.5s all;
}
.primary-btn:hover,
.primary-btn.press-release-note-btn:hover
{
  background-color: transparent;
  color: var(--primary-color);
}
/* BUTTON STYLING END */
.form-group{
  margin-bottom: 40px;
}
.custom-input,.custom-textarea{
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 10px 30px;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: var(--black-color);
}
.form-control::placeholder{
  font-weight: 300;
  font-size: 20px;
  text-align: left;
  color: var(--black-color);
  opacity: 0.7;
}
.custom-textarea{
  height: 153px;
}
.form-control:focus{
  border: 1px solid var(--black-color);
}
/* Default css start*/
header{
  padding: 35px 12px;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--white-color);
}
header ul li a,.mobile-header li a{
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--black-color);
  position: relative;
  transition: all 0.3s;
}
header ul li:not(:first-child){
  padding-left: 65px;
}
header ul li a::after,
.mobile-header li a::after{
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 100%;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
}
header ul li a:hover,
.mobile-header li a::after{
  color: var(--primary-color);
}
.active-link{
  color: var(--primary-color) !important;
}
header ul li a:hover::after, .active-link::after,
.mobile-header li a.active-link::after{
  opacity: 1;
}
.header-logo{
  max-width: 200px;
}
header.fixed {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.mobile-header{
  width: 0;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  background-color: var(--white-color);
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  z-index: 99;
  transition: all 0.3s;
}
.mobile-header-show{
  width: 90%;
}
.mobile-header ul{
  padding: 50px 30px 30px;
}
.mobile-header li:not(:last-child){
  margin-bottom: 30px;
}
.hero-section .item{
  height: calc(100vh - 94px);
}
.hero-section .owl-dots{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white-color);
}
footer{
  padding: 100px 12px 92px;
}
.align-items-baseline{
  align-items: baseline;
}
footer h4{
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.09em;
  text-decoration-line: underline;
  color: var(--black-color);
}
.quick-links-list li a{
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.09em;
  color: #000000;
}
.quick-links-list li:not(:last-child){
  padding-bottom: 10px;
}
.index-social-ico-wrap .follo-social-link{
  position: absolute;
  bottom: 30px;
  z-index: 1;
  right: 30px;
  gap: 0;
}
.index-social-ico-wrap .follo-social-link li{
  background: var(--white-color);
}
.follo-social-link{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:  15px 0;
}
.follo-social-link li{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 100%;
  transition: all 0.3s;
}
.follo-social-link li:hover{
  background-color: var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.follo-social-link li:not(:last-child){
  margin-right: 12px;
}
footer h6{
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.09em;
  color: var(--black-color);
}
.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 115px;
}
.personal-contact-inner-img-col{
  padding-right: 50px;
}
.personal-contact-inner-col{
  padding-left: 50px;
}
.personal-contact-inner-col::before {
  content: '';
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  height: 255px;
  position: absolute;
  left: 0;
  top: -25px;
}
.pc-list:not(:last-child){
  padding-bottom: 40px;
}
.pc-title{
  width: 150px;
}
.pc-details{
  width: calc(100% - 150px);
  padding-left: 14px;
}
.footer-grid-row{
  display: flex;
  align-items: center;
  grid-gap: 50px 100px;
}
.footer-main-grid-left-col{
  width: 60%;
}
.footer-main-grid-right-col{
  display: flex;
  justify-content: end;
  grid-gap: 30px 60px;
  width: 40%;
}
.form-grid-row{
  display: flex;
  gap: 50px 215px;
  width: 100%;
}
.form-grid-col{
  width: 50%;
}
.form-section{
  padding: 100px 12px 40px;
}
.form-paragraph-txt{
  font-weight: 300;
  font-size: 25px;
  line-height: 45px;
  text-align: center;
  color: var(--black-color);
  max-width: 920px;
  margin: 0 auto 110px;
}
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.upload-btn-wrapper .btn {
  border: 2px dashed var(--primary-color);
  color: #4A4A4A;
  background-color: #F8F8F8;
  padding: 12px 30px;
  border-radius: 20px;
  font-weight: 300;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-btn-wrapper input[type=file] {
  font-size: 31px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.project-gallary-section .nav-pills{
  width: 294px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 100px;
}
.project-gallary-section .tab-content {
  width: calc(100% - 588px);
}
.project-gallary-section .nav-pills .nav-link.active, .project-gallary-section .nav-pills .show>.nav-link {
  color: var(--primary-color);
  background-color: transparent;
}
.project-gallary-section .nav-pills .nav-link{
  width: max-content;
  padding: 0;
  font-weight: 300;
  font-size: 20px;
  color: var(--black-color);
  padding: 40px 0;
}
.project-gallary-section .nav-pills .nav-link span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  position: relative;
}
.project-gallary-section .nav-pills .nav-link span::after{
  content: '';
  width: 2px;
  height: 0;
  background-color: var(--primary-color);
  position: absolute;
  left: -5px;
  top: 0;
  transition: all 0.3s;
}
.project-gallary-section .nav-pills .nav-link span:hover::after,
.project-gallary-section .nav-pills .nav-link.active span::after, .project-gallary-section .nav-pills .show>.nav-link span::after{
  height: 100%;
}
.project-gallary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

.project-gallary-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}
.project-gallary-img img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all 0.3s;
}
.project-gallary-img img:hover {
  transform: scale(1.05);
}
.project-gallary-img:hover + h6{
  color: var(--primary-color);
}
.project-gallary-col h6 {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
/* identical to box height, or 120% */
  color: #000000;
  width: max-content;
  margin-top: 12px;
  transition: all 0.3s;
}
.project-gallary-section{
  padding-bottom: 50px;
}
/* Default css end*/

.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}