/*
 @Author: Forenax Technologies
 @URL: https://forenax.com/
 This file contains the styling for the actual theme, this is the file you need to edit to change the look of the theme.
 
 This files contents are outlined below.
 01.	Theme Reset Style
 02.	Global Elements
 03.	Menu
 04.	Social
 05.	Article
 06.	Posts
 07.	Responsive
 08.	Widgets
 09.	Flexslider
 10.	Grid
*/

/* =============================================
			Theme Reset Style					
============================================= */
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-Bold.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-Bold.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 600;
  src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-BoldItalic.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-BoldItalic.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 200;
  src: local("IBM Plex Sans ExtraLight"), local("IBMPlexSans-ExtraLight"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-ExtraLight.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-ExtraLight.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 200;
  src: local("IBM Plex Sans ExtraLight Italic"),
    local("IBMPlexSans-ExtraLightItalic"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-ExtraLightItalic.woff2")
      format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-ExtraLightItalic.woff")
      format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-Italic.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-Italic.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 300;
  src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-Light.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-Light.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 300;
  src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-LightItalic.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-LightItalic.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  src: local("IBM Plex Sans Medium"), local("IBMPlexSans-Medium"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-Medium.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-Medium.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 500;
  src: local("IBM Plex Sans Medium Italic"), local("IBMPlexSans-MediumItalic"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-MediumItalic.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-MediumItalic.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: local("IBM Plex Sans"), local("IBMPlexSans"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-Regular.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-Regular.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-SemiBold.woff2") format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 600;
  src: local("IBM Plex Sans SemiBold Italic"),
    local("IBMPlexSans-SemiBoldItalic"),
    url("./fonts/ibm-plex/woff2/IBMPlexSans-SemiBoldItalic.woff2")
      format("woff2"),
    url("./fonts/ibm-plex/woff/IBMPlexSans-SemiBoldItalic.woff") format("woff");
}
:root {
  --themecolor: #0052cc;
  --primarycolor: #172b4d;
  --secondarycolor: #505f79;
  --transition: all 300ms ease-in-out;
}
* {
  margin: 0px;
  padding: 0px;
}
*:after,
*:before {
  transition: var(--transition);
}
body {
  color: #666;
  background: #fff;
  font: 400 16px/1.3 "IBM Plex Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: var(--primarycolor);
  margin: 0 0 8px;
  line-height: 1.5;
  font-style: normal;
  text-transform: capitalize;
  font-family: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--themecolor);
}
p a {
  transition: var(--transition);
}
p a,
p a:hover {
  text-decoration: underline;
}
p {
  margin: 0 0 20px;
  line-height: 20px;
  letter-spacing: normal;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
}
ul {
  margin: 0;
}
figure {
  margin-bottom: 6px;
  position: relative;
}
img {
  height: auto;
  max-width: 100%;
}
strong {
  color: #414141;
}
iframe {
  width: 100%;
  float: left;
  border: none;
}
button {
  border: none;
  outline: none;
}
button:active,
button:focus {
  outline: none;
}
textarea,
select,
.at-select select,
.form-control,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  color: #666;
  outline: none;
  height: 40px;
  background: #fff;
  font-size: 14px;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 18px;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
textarea.form-control {
  resize: none;
  height: 210px;
}
.form-control::-webkit-input-placeholder {
  color: #666;
} /* WebKit, Blink, Edge */
.form-control:-moz-placeholder {
  color: #666;
} /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder {
  color: #666;
} /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder {
  color: #666;
} /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder {
  color: #666;
} /* Microsoft Edge */
input:focus,
.select select:focus,
.form-control:focus {
  color: #666;
  border-color: #666;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.form-group {
  width: 100%;
  float: left;
  margin: 0 0 20px;
}
label {
  color: #666;
  display: block;
  margin-bottom: 10px;
}
form p {
  float: left;
  position: relative;
  width: 100%;
}
form p span i {
  top: 13px;
  left: 16px;
  color: #474747;
  position: absolute;
}
option {
  padding: 5px 15px;
}
li {
  line-height: 28px;
  list-style: disc inside none;
}
ul ul {
  margin-left: 20px;
}
ol {
  float: none;
  list-style: decimal;
  padding-left: 15px;
}
ol ol {
  margin-left: 20px;
}
ol li {
  list-style: decimal;
  width: 100%;
}
/* =============================================
			Theme Global Elements				
============================================= */
.at-haslayout {
  width: 100%;
  float: left;
}
.at-sectionspace {
  padding: 100px 0;
}
.at-locationmap {
  width: 100%;
  float: left;
  height: 500px;
}
.at-btn-sm {
  padding: 0 20px;
  line-height: 30px;
}
.at-btn {
  color: #fff;
  padding: 0 50px;
  position: relative;
  text-align: center;
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
  background: var(--themecolor);
  font: 18px/50px "IBM Plex Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.at-btn:hover {
  color: #fff;
}
.at-btn-lg {
  width: 100%;
}
.at-socialicons {
  overflow: hidden;
  list-style: none;
  text-align: center;
}
.at-socialicons li {
  float: left;
  padding: 0 10px;
  line-height: inherit;
  list-style-type: none;
}
.at-socialicons li a {
  width: 30px;
  height: 30px;
  display: block;
  color: #7a869a;
  background: #fff;
  overflow: hidden;
  font-size: 13px;
  line-height: 30px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  text-transform: capitalize;
  transition: var(--transition);
}
.at-socialicons li a i {
  line-height: inherit;
}
.at-socialicons li a:hover {
  color: #fff;
  background: var(--themecolor);
}
.at-verticalmiddle {
  margin: 0 -1px;
  float: none !important;
  display: inline-block;
  vertical-align: middle;
}
.at-description {
  width: 100%;
  float: left;
}
.at-stars span,
.at-stars {
  width: 100px;
  height: 16px;
  float: left;
  line-height: 16px;
  position: relative;
}
.at-stars span:after,
.at-stars:before {
  top: 0;
  left: 0;
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  letter-spacing: 4px;
  font-family: "FontAwesome";
  color: rgba(218, 218, 218, 0.8);
  content: "\f005 \f005 \f005 \f005 \f005";
}
.at-stars span {
  width: 75%;
  overflow: hidden;
}
.at-stars span:after {
  color: #000;
}
.at-dropdowanrow {
  top: 9px;
  right: 15px;
  color: #fff;
  width: 20px;
  height: 20px;
  display: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  text-align: center;
}
.at-dropdowarrow i {
  display: block;
  font-size: inherit;
  line-height: inherit;
}
.at-open .at-dropdowarrow i:before {
  content: "\f106";
}
.menu-item-has-children,
.menu-item-has-mega-menu {
  position: relative;
}
.navbar-toggle {
  border: 0;
  margin: 3px 0;
  border-radius: 0;
  padding: 10px 12px;
}
.navbar-toggle .icon-bar {
  background: #fff;
}
.at-formtheme {
  width: 100%;
  float: left;
}
.at-formtheme fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  float: left;
  position: relative;
}
.at-inputwithicon {
  position: relative;
}
.at-inputwithicon i {
  top: 0;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
}
.at-inputwithicon .form-control {
  z-index: 1;
  position: relative;
}
/* =============================================
			Theme Styling						
============================================= */
.at-home {
}
.at-wrapper {
}
.at-main {
}
.at-footer {
}
.at-container {
  float: left;
  width: 100%;
  padding: 0 220px;
}
/* =============================================
			Header Style					
============================================= */
.at-header {
  z-index: 10;
  position: fixed;
  padding: 20px 220px;
  background: transparent;
}
.at-header.fixed {
  background: #fff;
  box-shadow: 0px 0px 30px rgba(23, 43, 77, 0.1);
}
.at-logo {
  float: left;
  width: 175px;
  overflow: hidden;
}
.at-logo a,
.at-logo img {
  width: 175px;
  height: 40px;
  display: block;
}
.at-navigationarea {
  float: right;
  margin-top: 4px;
}
.at-nav {
  float: left;
  text-transform: capitalize;
  font: 14px/18px "IBM Plex Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.at-navigation {
  padding: 0;
  width: 100%;
  float: left;
}
.at-navigation ul {
  width: 100%;
  float: left;
  list-style: none;
  text-align: center;
  line-height: inherit;
}
.at-navigation ul li {
  padding: 8px 30px;
  vertical-align: top;
  line-height: inherit;
  list-style-type: none;
  display: inline-block;
}
.at-navigation ul li a {
  padding: 5px 0;
  display: block;
  color: #7a869a;
  position: relative;
  transition: var(--transition);
}
.at-navigation ul li a:after {
  left: 0;
  width: 0;
  bottom: 0;
  content: "";
  height: 2px;
  position: absolute;
  transition: var(--transition);
  background: var(--themecolor);
}
.at-navigation ul li.active a,
.at-navigation ul li a:hover {
  color: var(--primarycolor);
}
.at-navigation ul li.active a:after,
.at-navigation ul li a:hover:after {
  width: 80%;
}
.at-callnowbtn {
  color: #fff;
  border: 0;
  float: left;
  outline: none;
  padding: 10px;
  border-radius: 6px;
  background: var(--themecolor);
  box-shadow: -10px 10px 10px rgba(23, 43, 77, 0.1);
}
.at-callnowbtn i {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.at-callnowbtn span {
  color: #fff;
  font-size: 10px;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-callnowbtn span em {
  display: block;
  font-size: 16px;
  font-style: normal;
}
/* =============================================
			Banner Style
============================================= */
.at-banner {
  background: url("images/banner-bg.png") no-repeat;
  background-size: cover;
}
.at-banner-content {
  float: left;
  width: 100%;
  padding: 285px 220px 250px;
}
.at-banner-content h1 {
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 100px;
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-banner-content h1 span {
  display: block;
  text-transform: none;
  font-family: "IBM Plex Sans";
  font-weight: 300;
}
.at-banner-content p {
  display: block;
  margin-top: -80px;
  margin-bottom: 100px;
  text-transform: none;
  font-family: "IBM Plex Sans";
  font-weight: 300;
}
/* =================================================================
							Main Style
==================================================================== */
/* =============================================
			Challenging	Solutions Style
============================================= */
.at-challenging-solution {
  padding: 200px 0 150px;
}
.at-sectionhead {
  float: left;
  width: 100%;
  padding: 0 0 120px;
  position: relative;
  text-align: center;
}
.at-challenging-solution .at-sectionhead:before {
  top: 0;
  left: 150px;
  content: "";
  z-index: -1;
  width: 210px;
  height: 170px;
  position: absolute;
  background: url("images/patran.png") no-repeat;
}
.at-challenging-solution .at-sectionhead:after {
  top: 0;
  right: 90px;
  content: "";
  z-index: -1;
  width: 210px;
  height: 170px;
  position: absolute;
  background: url("images/patran.png") no-repeat;
}
.at-sectionhead .at-imagebox {
  width: 210px;
  height: 210px;
  overflow: hidden;
  border-radius: 10px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 50px 0 -260px;
}
.at-sectionhead .at-imagebox img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.at-sectionhead h2 {
  font-size: 40px;
  line-height: 50px;
  vertical-align: top;
  display: inline-block;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-sectionhead h2 span {
  display: block;
}
.at-patranbox-sm {
  top: 0;
  width: 50px;
  right: 370px;
  height: 50px;
  display: block;
  position: absolute;
  background: #ffab00;
  border-radius: 10px;
}
.at-patranbox-lg {
  top: 120px;
  width: 90px;
  right: 210px;
  height: 90px;
  display: block;
  position: absolute;
  background: #0747a6;
  border-radius: 10px;
}
.at-content-area {
  float: left;
  width: 100%;
}
.at-contentbox {
  float: left;
  width: 100%;
  padding-right: 70px;
}
.at-contentbox h3 {
  color: #172b4d;
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-family: "IBM Plex Sans";
  font-weight: 300;
}
.at-contentbox h3 span {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: var(--themecolor);
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-contentbox .at-description p {
  color: #505f79;
  font-size: 16px;
  line-height: 24px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}

/* Portfolio Section
--------------------------------*/
.section-bg {
  margin-top: 30px;
}
#portfolio {
  padding: 60px 0;
  margin-top: 30px;
}
.section-header {
  color: #0052cc;
}
#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 20px;
  color: #413e66;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #1bb1dc;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #1bb1dc;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #f8fcff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #1bb1dc;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #42c3e8;
}

#portfolio
  .portfolio-item
  .portfolio-wrap
  .portfolio-info
  .link-preview:hover
  i,
#portfolio
  .portfolio-item
  .portfolio-wrap
  .portfolio-info
  .link-details:hover
  i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #282646;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* =============================================
			About us Style
============================================= */
.at-aboutus {
  background: url("./images/aboutus-bg.jpg") no-repeat 0 40%;
  background-size: cover;
  padding: 214px 0 115px;
  margin-bottom: 30px;
}
.at-aboutus-imagearae {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 155px 0 110px;
}
.at-aboutus-imagearae:after {
  top: 400px;
  z-index: 1;
  content: "";
  left: 195px;
  width: 300px;
  height: 170px;
  position: absolute;
  background: url("./images/patran2.png") no-repeat;
}
.at-aboutus-image {
  margin: 0;
  width: 450px;
  height: 330px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.at-aboutus-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.at-aboutus-imagearae .at-patranbox-lg {
  top: 77%;
  left: 50%;
  z-index: 2;
  right: auto;
  width: 210px;
  height: 210px;
  margin-left: -45px;
}
.at-aboutus-imagearae .at-patranbox-sm {
  top: 500px;
  z-index: 2;
  width: 90px;
  right: 50px;
  height: 90px;
}
.at-aboutus .at-contentarea {
  float: left;
  width: 100%;
}
.at-aboutus .at-sectionhead {
  padding: 0;
  text-align: left;
  margin-bottom: 60px;
}
.at-aboutus .at-sectionhead h2 {
  color: #fff;
  font-size: 40px;
  margin: 0 0 10px;
  line-height: 40px;
  text-transform: none;
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-aboutus .at-sectionhead h2 span {
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}
.at-aboutus .at-sectionhead p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-aboutus .at-description {
  margin-bottom: 36px;
}
.at-aboutus .at-description p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-btnarea {
  float: left;
  width: 100%;
}
.at-aboutus .at-btnarea .at-btn {
  color: #0747a6;
  padding: 0 65px;
  font-size: 16px;
  background: #fff;
  margin-right: 30px;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-aboutus .at-btnarea .at-btn.lightblue {
  color: #fff;
  background: #2684ff;
}
.at-aboutus .at-btnarea .at-btn:last-child {
  margin: 0;
}
/* counter  */

.counters {
  padding-top: 40px;
}

.counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #555186;
}
.counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #8a87b6;
}
/* =============================================
			Our Services Style
============================================= */
.at-ourservices {
  position: relative;
  background: #f4f5f7;
  padding: 195px 100px 25px;
}
.at-ourservices .at-sectionhead {
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}
.at-ourservices .at-sectionhead h2 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
  color: var(--primarycolor);
  text-transform: none;
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-ourservices .at-sectionhead h2 span {
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 25px;
  color: var(--themecolor);
}
.at-ourservices .at-sectionhead p {
  margin: 0;
  color: #505f79;
  font-size: 16px;
  line-height: 24px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-ourservices-area {
  float: left;
  width: 100%;
}
.at-ourservicebox {
  width: 100%;
  float: left;
  padding: 60px;
  margin: 15px 0;
  background: #fff;
  min-height: 502px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(23, 43, 77, 0.05);
}
.at-title {
  float: left;
  width: 100%;
  margin-bottom: 70px;
}
.at-title h3 {
  font-size: 32px;
  margin-bottom: 0;
  line-height: 40px;
  color: var(--themecolor);
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-title h3 span {
  display: block;
  color: #a5adba;
  font-size: 20px;
  line-height: 30px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-iconbox {
  float: left;
  width: 100%;
  margin: 0 0 70px;
  text-align: center;
}
.at-iconbox img {
  display: block;
  margin: 0 auto;
  max-width: 100px;
}
.at-ourservicebox .at-description p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.mt-minas-100 {
  margin-top: -115px;
}
.at-ourservices-area .at-patranbox-sm {
  top: 50%;
  width: 50px;
  height: 50px;
  right: 130px;
}
/* =============================================
			Technologies Style
============================================= */

.at-technologies {
  background: #f4f5f7;
  padding: 60px 0;
}
.at-technologiesslider .item {
  float: left;
  width: 100%;
  padding: 0 15px;
}
.at-technologiesbox {
  width: 100%;
  float: left;
  background: #fff;
  padding: 32px 51px;
  border-radius: 10px;
  transition: var(--transition);
}
.at-technologiesimg {
  width: 108px;
  height: 97px;
  margin: 0 auto;
}
.at-technologiesimg img {
  width: 100%;
  display: block;
  mix-blend-mode: luminosity;
  transition: var(--transition);
}
.at-technologiesbox:hover .at-technologiesimg img {
  mix-blend-mode: darken;
}
.at-slidernav .at-prev,
.at-slidernav .at-next {
  top: 60%;
  left: 10px;
  width: 46px;
  color: #fff;
  height: 46px;
  outline: none;
  font-size: 20px;
  line-height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  background: rgba(0, 82, 204, 0.1);
  transition: var(--transition);
}
.at-slidernav .at-prev:focus,
.at-slidernav .at-next:focus {
  outline: none;
}
.at-slidernav .at-next {
  left: auto;
  right: 10px;
}
.at-slidernav .at-prev:hover,
.at-slidernav .at-next:hover {
  background: rgba(0, 82, 204, 1);
}
.at-sliderdots {
  float: left;
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
.at-sliderdots .owl-dot {
  width: 8px;
  height: 8px;
  margin: 5px;
  border-radius: 50%;
  background: #dfe1e6 !important;
}
.at-sliderdots .owl-dot.active {
  background: #2684ff !important;
}
.at-sliderdots .owl-dot:focus {
  outline: none;
}
/* =============================================
			Showcase Style
============================================= */
.at-showcase {
  background: #f4f5f7;
  padding: 140px 0 0;
}
.at-showcase .at-sectionhead {
  padding: 0 0 40px;
}
.at-showcase .at-sectionhead h2 {
  margin: 0;
  color: #172b4d;
  font-size: 60px;
  line-height: 72px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-showcase .at-sectionhead h2 strong {
  color: #172b4d;
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-filterbale-nav {
  float: left;
  width: 100%;
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
}
.at-filterbale-nav li {
  padding: 0 30px;
  display: inline-block;
  list-style-type: none;
  vertical-align: middle;
}
.at-filterbale-nav li a {
  display: block;
  color: #7a869a;
  padding: 5px 0;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  text-transform: capitalize;
  transition: var(--transition);
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-filterbale-nav li a:hover,
.at-filterbale-nav li a.active {
  color: #172b4d;
}
.at-filterbale-nav li a:after {
  left: 0;
  width: 0;
  bottom: 0;
  content: "";
  height: 2px;
  position: absolute;
  background: #2684ff;
  transition: var(--transition);
}
.at-filterbale-nav li a.active:after,
.at-filterbale-nav li a:hover:after {
  width: 100%;
}
.masonry-grid {
  float: left;
  width: 25%;
}
.at-showcasebox {
  float: left;
  width: 100%;
}
.at-showcasebox figure {
  margin: 0;
  float: left;
  width: 100%;
  position: relative;
}
.at-showcasebox figure img {
  display: block;
  width: 100%;
}
.at-showcasecontent {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  visibility: hidden;
  background: rgba(23, 43, 77, 0.9);
  transition: var(--transition);
}
.at-showcasecontent h3 {
  color: #fff;
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 20px;
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-showcasecontent .at-description p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-showcasecontent .at-btnarea {
  left: 20px;
  float: left;
  width: auto;
  bottom: 20px;
  position: absolute;
}
.at-showcasecontent .at-btnarea .at-btn {
  font-size: 10px;
  padding: 0 10px;
  line-height: 34px;
  margin-right: 10px;
  background: #2684ff;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-showcasecontent .at-btnarea .at-btn:last-child {
  margin: 0;
}
.at-showcasebox:hover .at-showcasecontent {
  opacity: 1;
  visibility: visible;
}
.grid-item {
  width: 25%;
}
/* =============================================
			Footer Style
============================================= */
.at-footer {
  background: url("images/footer-bg.jpg") no-repeat;
  background-size: cover;
}
.at-footermain {
  float: left;
  width: 100%;
  padding: 100px 0;
}
.at-footerlogo-area {
  float: left;
  width: 100%;
  margin-bottom: 100px;
}
.at-footerlogo {
  width: 100%;
  float: left;
}
.at-footerlogo a {
  width: 526px;
  height: 120px;
  display: block;
  margin: 0 auto;
}
.at-footerlogo a img {
  display: block;
  margin: 0 auto;
}
.at-footercontent {
  float: left;
  width: 100%;
  padding: 0 100px;
}
.at-col {
  float: left;
  width: 33.33%;
}
.at-footercontent .at-title {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.at-footercontent .at-title h3 {
  margin: 0;
  color: #172b4d;
  font-size: 20px;
  line-height: 23px;
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.at-footercontent .at-description {
  margin-bottom: 35px;
  padding-right: 50px;
}
.at-footercontent .at-description p {
  color: #505f79;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-emailbox {
  color: #fff;
  float: left;
  height: 40px;
  padding: 0 13px;
  line-height: 40px;
  border-radius: 6px;
  background: #0052cc;
}
.at-emailbox a {
  color: #fff;
}
.at-emailbox i {
  font-size: 20px;
  margin-right: 13px;
  display: inline-block;
  vertical-align: middle;
}
.at-emailbox span {
  font-size: 16px;
  line-height: 19px;
  display: inline-block;
  vertical-align: middle;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-emailbox span em {
  display: block;
  font-size: 10px;
  line-height: 13px;
  font-style: normal;
}
.at-links {
  float: left;
  width: 100%;
  list-style: none;
}
.at-links li {
  float: left;
  width: 100%;
  padding: 6px 0;
  list-style-type: none;
}
.at-links li a {
  color: #505f79;
  display: block;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-infolist {
  float: left;
  width: 100%;
  list-style: none;
}
.at-infolist li {
  float: left;
  width: 100%;
  color: #505f79;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  list-style-type: none;
  padding: 5px 0 5px 30px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-infolist li:first-child {
  margin-bottom: 15px;
}
.at-infolist li a {
  color: #505f79;
}
.at-infolist li i {
  left: 0;
  top: 5px;
  color: #0052cc;
  font-size: 20px;
  position: absolute;
  margin-right: 10px;
  vertical-align: top;
  display: inline-block;
}
.at-infolist li span {
  display: inline-block;
  vertical-align: top;
}
.at-bottombar {
  float: left;
  width: 100%;
  padding: 20px;
  border-top: 1px solid #dfe1e6;
}
.at-bottombar .at-copyright {
  float: left;
  color: #7a869a;
  padding: 7px 0;
  font-size: 12px;
  font-family: "IBM Plex Sans";
  font-weight: 400;
}
.at-socialicons {
  float: right;
}

/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#services .box:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#services .icon i {
  font-size: 36px;
  line-height: 1;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #1bb1dc;
}

#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}
