

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #444;
  font-family: 'hp-simplified-regular';
}

a {
  color: #007bff;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'hp-simplified-bold';
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.div-style-3{
    background: white !important;
}

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

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

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

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


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/


#intro {
    width: 100%;
    position: relative;
    background: url(../../img/aboutus/header.jpg) center bottom no-repeat;
    background-size: contain;
    padding: 100px 0 70px 0;
    min-height: 600px;
    background-color: black;
    background-position: right;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
  margin-top:5%;
}
.intro-img img{
    width:50%;
    float:right;
}
#intro .intro-info h2 {
  color: var(--theme-color3);
  margin-bottom: 20px;
  font-size: 78px;
  font-weight: 900;
}

#intro .intro-info h2 span {
  color: var(--theme-color4);
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 32px;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: 'hp-simplified-regular';
  color:var(--font-primary-color);
  text-align: justify;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  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;
  border-radius: 50%;
  border: 2px solid var(--font-primary-color);
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: var(--font-primary-color);
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: var(--font-primary-color);
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #fe8604;
  font-size: 22px;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 18px;
  letter-spacing: 1px;
  color:var(--font-primary-color);
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}
#why-us{
    position: relative; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black !important;
}
#why-us::before {
  content: "";
    background-image: url(../img/home-bg.jpg);
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.10;
}
/*#why-us{
    background-image:url(../img/home-bg.jpg);
}*/
.card-title{
    padding-top:20px;
}
.card-text > span{
    display:none;
    color:white !important;
}
.card-text > label:hover > span{
    display:block;
    color:white !important;
}


#portfolio-card {
  padding: 60px 0;
  background: white;
}

#portfolio-card .section-header h3,
#portfolio-card .section-header p {
  color: var(--theme-color2);
}

#portfolio-card .card {
  background: var(--theme-color2);
  border-color: var(--theme-color2);
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#portfolio-card .card:hover {
  background: var(--theme-color2);
  border-color: var(--theme-color2);
}

#portfolio-card .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#portfolio-card .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#portfolio-card .card p {
  font-size: 15px;
  color: #d8eafe;
}

#portfolio-card .card .readmore, .card-style2 > .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: var(--theme-color2) solid 2px;
  font-size: 14px;
  letter-spacing: 1px;
}

#portfolio-card .card .readmore:hover, .card-style2 > .readmore:hover {
  border-bottom: #fff solid 2px;
  font-size: 16px;
}

.card-style1 > .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: var(--theme-color1) solid 2px;
  font-size: 14px;
  letter-spacing: 1px;
}
.card-style1 > .readmore:hover {
  border-bottom: black solid 2px;
  font-size: 16px;
}
.card-style2 > p{
    text-align: justify;
}

#portfolio-card .counters {
  padding-top: 40px;
}

#portfolio-card .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#portfolio-card .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 1;
  color:var(--theme-color4);
}

#contact .info p {
  padding: 0 0 0px 36px;
  line-height: 28px;
  font-size: 14px;
  color:var(--theme-color4);
}

#contact .form #sendmessage {
  color: #007bff;
  border: 1px solid #007bff;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size:16px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size:16px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background:transparent;
  font-family: 'hp-simplified-regular';
  border: 1px solid var(--theme-color4);
  color:var(--theme-color4);
}
.form input{
    height: calc(2.25rem + 25px);
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--theme-color4) !important;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--theme-color4) !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--theme-color4) !important;
}
#contact .form button[type="submit"] {
  background: var(--theme-color1);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: black;
  transition: 0.3s;
  font-size: 16px;
  font-family: 'hp-simplified-regular';
  font-weight:bold;
  letter-spacing:1px;
}

#contact .form button[type="submit"]:hover {
  font-size:18px;
  cursor: pointer;
}

.secondButton{
  background: var(--theme-color2) !important;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff !important;
  transition: 0.3s;
  font-size: 16px;
  font-family: 'hp-simplified-regular';
  font-weight:bold;
  letter-spacing:1px;
}
.secondButton:hover{
  font-size:18px;
  cursor: pointer;
}
.black{
    color:black !important;
}

.candidateForm > div > input, .candidateForm > div > textarea{
    border: 1px solid black !important;
    color:black !important;
}
.candidateForm > div > input::placeholder, .candidateForm > div > textarea::placeholder{
  color: black !important;
  opacity: 1;
}
.candidateForm > div > input:-ms-input-placeholder, .candidateForm > div > textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--theme-color4) !important;
}

.candidateForm > div > input::-ms-input-placeholder, .candidateForm > div > textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--theme-color4) !important;
}


.card-style4{
    background-color: var(--theme-color1);
    padding: 20px;
    box-shadow: 0px 2px 10px var(--theme-color1)
}
.card-style4 > h4{
    color: var(--theme-color2);
    font-size: 20px;
    letter-spacing: 1px;
}
.card-style2 > h6, .card-style2 > span, .card-style2 > label > a{
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
}
.card-style2:hover > h6, .card-style2:hover > span{
    color: black;
}
.card-style2:hover > label > a{
    color: var(--theme-color2);
}
.card-style2 > p{
    color: white;
    font-size: 16px;
    letter-spacing: 1px;
}


@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
    padding-top:200px;
  }
  /*.card-body > div > img{
      width:93%;
  }*/
  /*#why-us .card {
    margin: 0;
  }*/
}

@media (max-width: 768px) {
    #intro {
    padding: 50px 0 0px 0;
    max-height: 400px;
    min-height: 300px;
    background-size: cover;
  }
  #intro .intro-info{
      padding-top:90px;
  }
  #about{
      padding: 0px 0px 50px 0px;
  }
  .back-to-top {
    bottom: 15px;
  }
  /*.card-body > div > img{
      width:93%;
  }*/
}

@media (max-width: 767px) {
  #intro {
    padding: 50px 0 0px 0;
    max-height: 400px;
    min-height: 300px;
    background-size: cover;
  }
  #intro .intro-info{
      padding-top:90px;
  }
  #about{
      padding: 0px 0px 50px 0px;
  }

  .section-header p {
    width: 100%;
  }
  /*.card-body > div > img{
      width:93%;
  }*/
}

@media (max-width: 574px) {
  #intro {
    padding: 50px 0 0px 0;
    max-height: 400px;
    min-height: 300px;
    background-size: cover;
  }
  #intro .intro-info{
      padding-top:90px;
  }
  #about{
      padding: 0px 0px 50px 0px;
  }
  /*.card-body > div > img{
      width:93%;
  }*/
}