@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font: 'Raleway', sans-serif;
    --primaryColor: #00a6dd;
    --secondaryColor: #a70013;
    --secondaryBgColor: #d9d9d9;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    letter-spacing: -1.5%;
    font-weight: 400;    
	background: var(--whiteColor);
	color: var(--blackColor);	

}

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

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

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

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

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

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/

.header-nav {
    padding: 17px 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    transition: 0.3s;
}

.header-nav.menu-sticky { 
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px 0;
}

.header-nav.menu-sticky .logo-area img {
    max-width: 208px;
}

.logo-area img {
    max-width: 258px;
    transition: 0.2s;
}

.main-menu ul {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    width: 100%;
}

.main-menu ul li a {
    position: relative;
    font-size: 19px;
    font-weight: 500;
    color: var(--primaryColor);
}

.main-menu ul li a:hover,
.main-menu ul li.active a {
    color: var(--secondaryColor);
}

.humberger-menu {
    height: 22px;
    width: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

.humberger-menu:hover {
    opacity: 1;
}

.humberger-menu span {
    height: 3px;
    width: 100%;
    background-color: #181818;
}

/*========== offcanvas design ==========*/
.offcanvas {
    z-index: 9999 !important;
}

.offcanvas .btn-close {
    background: none;
    font-size: 22px;
    box-shadow: none;
}

.offcanvas-header {
    border-bottom: 1px solid #33333373;
    padding-block: 25px;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 25px;
}

.offcanvas-body ul {
    padding-top: 10px;
}

.offcanvas-body ul li a {
    padding: 8px 17px;
    display: block;
    width: 100%;
    margin-bottom: 2px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.offcanvas-body ul li a:after {
    content: "";
    display: block;
    background-color: rgba(235, 235, 235, 0.61);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    transition: 0.5s;
    z-index: -1;
    border-radius: 5px;
}

.offcanvas-body ul li a:hover:after {
    width: 100%;
}

.offcanvas-body ul li a:hover {
    color: var(--primaryColor);
    padding-left: 19px;
}

.offcanvas-header .logo-area img {
    max-width: 180px;
}

.hero-area{
    padding-top: 98px;
}

.hero-area img {
    max-height: 640px;
    object-fit: cover;
    object-position: 100% 100%;
}

/* production-area */
.production-area {
    padding-block: 90px;
}

.production-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.primary-heading {
    font-weight: 600;
    font-size: 55px;
}

.btn-primary {
    padding: 13px 30px;
    background: var(--primaryColor);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--secondaryColor);
}

.secondary-heading h3 {
    font-size: 48px;
    font-weight: 600;
    padding-bottom: 30px;
}

/* what-we-do-area  */
.what-we-do-area {
    padding-top: 107px;
    padding-bottom: 130px;
}

.what-we-do-area .pt-90 {
    padding-top: 90px;
}

.wwd-single-card img {
    width: 100%;
}

.wwd-single-card h4 {
    padding-top: 35px;
    padding-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

/* footer- */
.footer-area{
    padding-top: 79px;
    padding-bottom: 70px;
    background-color: var(--secondaryBgColor);
}

.footer-logo img {
    max-width: 150px;
}

.footer-links h4 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 17px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    position: relative;
}

.footer-links ul li a:hover {
   color: var(--secondaryColor);
   text-decoration: underline;
}

/* serivce page design */
.services-area .single-service-row {
    padding-bottom: 250px;
}

.left-vw-padding {
    padding-left: calc((100vw - 1400px) / 2);
    padding-right: 130px;
}

.right-vw-padding {
    padding-right: calc((100vw - 1400px) / 2);
    padding-left: 130px;
}

.service-right img {
    width: 100%;
}

.additional-services {
    padding-top: 200px;
}

.additional-services .row {
    row-gap: 50px !important;
    padding-bottom: 30px;
}

/* case studies page design */
.projects-showcase-wrap{
    padding-top: 60px;
    padding-bottom: 250px;
}

.single-project-card {
    padding: 70px 50px;
    border: 1px solid #00000080;
    background-color: #fff;
}

.single-project-card  img {
    width: 100%;
}

.single-project-card h3 {
    font-size: 48px;
    font-weight: 400;
}

.single-project-card .content {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.projects-showcase-wrap .row {
    row-gap: 150px;
}

/* .meet-out-team */
.meet-out-team {
    padding-top: 120px;
    padding-bottom: 148px;
    background-color: #fff;
}

.meet-out-team .secondary-heading {
   padding-bottom: 100px;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    padding-top: 35px;
}

.team-member img {
    border-radius: 50%;
    max-width: 220px;
}

.team-member .designation {
    padding-top: 25px;
    padding-bottom: 25px;
}

.support-area .secondary-heading h3 {
    font-size: 24px;
    font-weight: 700;
}

.support-area .secondary-heading ul {
    list-style-type: disc;
    margin: initial;
    padding-left: 17px;
}

.gap-x-xl-90 {
    row-gap: 90px;
}

.contact-row-heading {
    padding-top: 120px;
    text-align: center;
    padding-bottom: 150px;
}

.team-member a:hover {
    color: var(--primaryColor);
}

.map-area {
    background-color: #fff;
    padding-bottom: 140px;
}

.map-area iframe {
    width: 100%;
    min-height: 400px;
    border-radius: 10px;
}

.footer-social-links ul {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer-social-links ul li a{
    font-size: 28px;
}

.row-gap-70 {
    row-gap: 70px;
}

.service-left p a:hover {
    color: var(--primaryColor);
}