/*
Fonts & General Styles
--------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}td,th{padding:0;}fieldset,img{border:0;}
address,caption,cite,code,dfn,th,var{font-style:normal;font-weight:normal;}
caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,button,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
#yui3-css-stamp.cssreset{display:none;}

@media print{*{color:#000 !important;text-shadow:none !important;background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important;}
a[href]:after{content:" (" attr(href) ")";}
abbr[title]:after{content:" (" attr(title) ")";}
a[href^="javascript:"]:after,
a[href^="#"]:after{content:"";}
pre,
blockquote{border:1px solid #999;page-break-inside:avoid;}
thead{display:table-header-group;}
tr,
img{page-break-inside:avoid;}
img{max-width:100% !important; height: auto;}
p,
h2,
h3{orphans:3;widows:3;}
h2,
h3{page-break-after:avoid;}
select{background:#fff !important;}
.navbar{display:none;}
.table td,
.table th{background-color:#fff !important;}
.btn > .caret,
.dropup > .btn > .caret{border-top-color:#000 !important;}
.label{border:1px solid #000;}
.table{border-collapse:collapse !important;}
.table-bordered th,
.table-bordered td{border:1px solid #ddd !important;}
}
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  /* Removes padding behaviour on widths */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}



:root {
  --theme-color1: #007eff;
  --theme-color2: #0763c0;
  --container-width: 1320px;
  --container-padding: 20px;
  --icon-font: "tabler-icons";
  --body-margin: 72px;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
}

a,
a:hover,
button,
button:hover {
  transition: 0.3s all ease 0s;
  -webkit-transition: 0.3s all ease 0s;
  -moz-transition: 0.3s all ease 0s;
  -ms-transition: 0.3s all ease 0s;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

/*Heading-Pallete*/
h1 {
  font-size: 62px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}
.container {
  max-width: 1320px;
  padding: 0px 20px;
  width: 100%;
  margin: 0 auto;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.w-50 {
  width: 50%;
}
.h-100 {
  height: 100%;
}
.btn {
  background: var(--theme-color1);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  position: relative;
  padding: 12px 42px 12px 20px;
  transition: 0.5s all ease 0s;
  letter-spacing: 0.03em;
}
.anchor-link::after {
  content: "\ea24";
  font-family: "tabler-icons";
  position: absolute;
  right: 18px;
  font-size: 17px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -1px;
}
.btn:hover {
  background: var(--theme-color2);
}
.plain-link {
  color: #fff;
  position: relative;
  text-decoration: none;
  padding-right: 20px;
}
.plain-link::after {
  content: "\ea24";
  font-family: "tabler-icons";
  position: absolute;
  right: 0px;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.max-650 {
  max-width: 670px;
}
.sub-heading .btn {
  margin-top: 22px;
}
.sub-heading {
  margin-bottom: 40px;
}
.sub-heading h6 {
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.sub-heading h6 {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--theme-color1);
}
.sub-heading h2 {
  font-weight: 700;
}
.position-relative {
  position: relative;
}
p {
    line-height: 1.8;
    margin-bottom: 15px;
}
.text-center {
  text-align: center;
}
.flex-wrap {
  flex-wrap: wrap;
}


.main-content {
  margin-top: var(--body-margin);
}
header {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #fff;
  height: var(--body-margin);
  box-shadow: 0px 0px 6px 5px rgba(0,0,0,0.1);
}
.header-section {
  padding: 5px 0px;
}
.site-logo {
  width: 30%;
}
.header-menu {
  width: 70%;
  text-align: right;
}
.header-menu ul {
  padding: 0px;
  margin: 0px;
}
.header-menu li {
  display: inline-block;
  margin-left: 60px;
}
.header-menu li a {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  display: block;
  position: relative;
  padding: 10px 0px;
}
.header-menu li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 2px;
  /* background: var(--theme-color1); */
  width: 0px;
  margin: 0 auto;
  transition: 0.3s all ease 0s;
}
.header-menu li a:hover::after,
.header-menu li a.active::after {
  width: 100%;
  transition: 0.3s all ease 0s;
}
.site-logo img,
.footer-logo img {
  max-width: 150px;
}
.header-menu li:last-child a {
  /* background-color: var(--theme-color1); */
  padding: 10px 25px;
  color: #fff;
  font-size:13px;
}
.header-menu li:last-child a.active {
  background-color: var(--theme-color2);
}

.hero-section {
  height: calc(100vh - 90px);
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
}
.header-section .site-logo img {
    position: relative;
    top: 3px;
}
.banner-img {
  width: 55%;
}
.banner-content {
  width: 45%;
}
.banner-div h1 {
  font-weight: 600;  
  line-height: 1.25em;
  margin-bottom: 30px;
}
.hero-section .container {
  position: relative;
}
.banner-div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0px 20px;
}
.about-section {
  padding: 100px 0px 80px;
}
.minus-margin {
  margin: 0px -10px;
}
.about-section .sub-heading {
  text-align: center;
  margin: 0 auto 45px;
}
.service-div {
  padding: 0px 10px;
  width: 33.33%;
  margin-bottom: 20px;
}
.service-box {
  position: relative;
  overflow: hidden;
}
.service-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 64.61%;
}
.service-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*background: rgba(0,0,0,0.4);*/
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4c4c4c+0,ffffff+100&1+0,0+100 */
background: linear-gradient(to bottom,  rgba(29,25,25,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  transform: rotate(180deg);
}
.service-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  z-index: 9;
  color: #fff;
}
.service-box::before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -130px;
  background: #000;
  transform: skew(0deg, 40deg);
  width: 410px;
  height: 290px;
  z-index: 9;
}
.service-box::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -130px;
  background: #000;
  transform: skew(0deg, 40deg);
  width: 410px;
  height: 290px;
  opacity: 0.2;
}
.service-content i {
  width: 80px;
  height: 80px;
  background: #fff;
  display: block;
  margin-bottom: 20px;
}
.service-content h4 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.why-left {
  width: 50%;
  position: relative;
}
.why-left > span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 20px;
}
.why-left > span img {
  max-width: 160px;
}
.why-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 100%;
  position: relative;
}
.why-image::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0; 
  top: 0px;
  bottom: 0px;
  background: rgba(0,0,0,0.55);
}
.why-section {
  background: #f5f5f5;
  padding: 100px 0px;
}
.why-right {
  width: 50%;
  margin-left: -120px;
}
.content-box {
  background: #fff;
  padding: 40px;
  position: relative;
}
.why-right ul {
  margin: 0px;
}
.why-right ul li {
  display: block;
  position: relative;
  font-size: 16px;
  margin-bottom: 28px;
  padding-left: 36px;
}
.why-right ul li:last-child {
  margin-bottom: 0px;
}
.why-right ul li::before {
  content: "\eba6";
  position: absolute;
  left: 0px;
  top: -7px;
  font-family: var(--icon-font);
  color: var(--theme-color1);
  font-size: 24px;
}

p:last-child {
  margin-bottom: 0px;
}
.sub-heading h5 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
}

.footer-top {
    /*border-top: 1px solid #ccc;*/
	background-color:#eeeffe;
    padding: 40px 0px;
}
.footer-logo {
  width: 40%;
}
.footer-address {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-address span {
    color: #b2acac;
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}
.footer-box {
  margin-left: 60px;
}
.clients-section {
  padding:100px 0px;
}
.client-content {
  padding: 0px 18px;
  width: 50%;
}
.content-div {
  border: none;
  border-radius: 3px;
  padding: 40px;
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.08);
}
.content-div h4 {
  font-weight: 600;
  margin-bottom: 25px;
}
.content-div span {
  display: inline-block;
  margin-right: 15px;
}
.content-div img {
    max-width: 160px;
    max-height: 75px;
}

@media only screen and (max-width: 1280px) {
  .service-img {
    padding-bottom: 75%;
  }
  .content-div img {
    max-width: 110px;
  }
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  h4 {
    font-size: 18px;
  }
  .header-menu li {
    margin-left: 30px;
  }
  .header-menu li:last-child a {
    padding: 8px 18px;
  }
  .site-logo img {
    max-width: 130px;
    top: 0 !important;
  }
  .service-div {
    width: 50%;
  }
  .service-img {
    padding-bottom: 64.61%;
  }
  .sub-heading h5 {
    font-size: 18px;
  }
  .why-right ul li {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .md-block {
    display: block;
  }
  .minus-margin {
    margin: 0px;
  }
  .why-right {
    width: 100%;
    margin: -100px 0px 0px 0px;
    padding: 0px 50px;
  }
  .why-left {
    width: 100%;
  }
  .client-content {
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .client-content:last-child {
    margin-bottom: 0px;
  }
  .why-section,
  .clients-section {
    padding: 60px 0px;
  }
  .about-section {
    padding: 60px 0px 40px;
  }
  .footer-logo {
    width: 30%;
  }
  .footer-address {
    width: 70%;
  }
  .footer-box {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section {
    height: auto;
    padding-bottom: 110%;
  }
  .hero-section .container {
    position: static;
  }
  .sm-block {
    display: block;
  }
  .site-logo {
    width: 40%;
  }
  .header-menu {
    width: 60%;
  }
  .header-menu ul {
    position: fixed;
    right: -1000%;
    top: 68px;
    background: #fff;
    height: calc(100vh - 68px);
    padding: 10px 0px;
    border-top: 1px solid #eae1e1;
    transition: 1s all ease 0s;
  }
  .header-menu.menu-open ul {
    right: 0px;
    width: 100%;
    transition: 0.5s all ease 0s;
  }
  .header-menu li a:hover::after, .header-menu li a.active::after {
    display: none;
  }
  .header-menu li a {
    padding: 15px !important;
    border-bottom: 1px solid #ece6e6;
    color: #000 !important;
	font-size: 14px;
  }
  .header-menu li a.active {
    color: var(--theme-color1) !important;
  }
  .header-menu li:last-child a {
    background: transparent !important;
	font-size: 14px;
  }
  .header-menu.menu-open .menu-icon .menu-active {
    display: none;
  }
  .header-menu.menu-open .menu-icon .menu-inactive {
    display: block;
  }
  .header-menu li {
    display: block;
    margin: 0px;
    text-align: left;
  }
  .menu-inactive {
    display: none;
  }
  .menu-icon {
    display: inline-block;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
  }
  .menu-icon img {
    width: 32px;
    height: auto;
  }
  .header-section {
    padding: 10px 0px;
  }
  header {
    height: 68px;
  }
  .main-content {
    margin-top: 68px;
  }
  .container {
    padding: 0px 15px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.3;
  }
  h2 {
    font-size: 24px;
  }
  h4 {
    font-size: 16px;
  }
  h6 {
    font-size: 13px;
  }
  .btn {
    padding: 10px 40px 10px 15px;
    font-size: 13px;
  }
  .btn::after {
    right: 16px;
  }
  .about-section {
    padding: 50px 0px 30px;
  }
  .sub-heading h6 {
    margin-bottom: 10px;
  }
  .about-section .sub-heading {
    margin-bottom: 30px;
  }
  .service-div {
    width: 100%;
  }
  .service-content {
    padding: 20px;
  }
  .service-img {
    padding-bottom: 80%;
  }
  .why-section, .clients-section {
    padding: 50px 0px;
  }
  .why-left > span {
    padding: 12px;
  }
  .why-left > span img {
    max-width: 120px;
  }
  .why-right {
    margin: 0px;
    padding: 0px;
  }
  .content-box {
    padding: 30px 25px;
  }
  .sub-heading {
    margin-bottom: 30px;
  }
  .content-div {
    padding: 25px;
    text-align: center;
  }
  .content-div h4 {
    margin-bottom: 20px;
  }
  .content-div span {
    display: block;
    margin: 0px 0px 5px;
  }
  .content-div span:last-child {
    margin-bottom: 0px;
  }
  .footer-logo,
  .footer-address {
    width: 100%;
	text-align: center;
  }
  .footer-logo{
	  margin-left:-15px;
  }
  .footer-address {
    display: block;
    margin-top: 22px;
  }
  .footer-box {
    margin: 0px 0px 15px;
  }
  .footer-box:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .menu-icon {
    display: none;
  }
}