/* Default */
:root {
  --mainColor: #002529;
  --secondaryColor: #15a1db;
  --grey: #c0bfbf;
  --white50: rgb(255 255 255 / 50%);
  --red: #cd0404;
  --text: #3b3b3b;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
body {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--dark)
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}
img {
  max-width: 100%;
}
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none
}
a {
  color: var(--secondaryColor)
}
a:focus,
a:hover {
  text-decoration: underline;
  color: var(--mainColor)
}
i,
span,
a {
  display: inline-block
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  color: var(--mainColor);
  margin: 0
}
h1 {
  font-size: 48px
}
h2 {
  font-size: 36px
}
h3 {
  font-size: 28px
}
h4 {
  font-size: 22px
}
h5 {
  font-size: 18px
}
h6 {
  font-size: 16px
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  margin: 0
}
.rounded {
  border-radius: 1rem !important;
}
.lead {
  line-height: 1.5em;
}
.secondary-color {
  color: var(--secondaryColor)
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%
}

.btn-primary {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  border-width: 3px;
  border-radius: 8px;
  -webkit-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  -ms-transition: all .5s ease-out 0s;
  -o-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
  padding: 8px 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: var(--mainColor);
  border-color: var(--white);
}

.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--mainColor);
  border-color: var(--secondaryColor);
  text-decoration: none;
}

/* Title */
.section_title .sub_title {
  font-size: 16px;
}
@media (max-width: 767px) {
  .section_title .sub_title {
    font-size: 14px
  }
}
.section_title .title {
  font-size: 40px;
  font-weight: 700
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_title .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .section_title .title {
    font-size: 24px
  }
}
/* Older browsers */
.browserupgrade {
  font-size: 20px
}
.browserupgrade i {
  font-size: 50px;
  color: var(--danger)
}
/* Header */
@media only screen and (min-width: 1400px) {
  .header_area {
    padding: 0 70px
  }
}
/* Navbar */
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 3px 6px 3px rgb(0 0 0 / 6%);
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  background-color: var(--mainColor)
}
@media only screen and (min-width: 1400px) {
  .header_navbar {
    padding: 0 70px
  }
}
.sticky {
  position: fixed;
  z-index: 99;
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s
}
.sticky .navbar {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .navbar {
    padding: 15px 0
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 15px 0
  }
}
.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 20px 0;
  }
}
.navbar-brand {
  padding: 0;
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--mainColor);
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 5px 24px;
  }
  .navbar-nav .nav-item {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--mainColor);
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 0 24px;
  }
}
.navbar-nav {
  margin-right: 30px;
}
.navbar-nav .nav-item {
  position: relative;
}
@media (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 16px;
  }
}

.navbar-nav .nav-item a {
  font-size: .8em;
  font-weight: 400;
  color: var(--white50);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 15px 20px;
  position: relative;
}
.navbar-nav .nav-item a {
  text-decoration: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    font-size: 1em;
  }
}
.navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  top: 1px;
  left: 0;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a::before {
    display: none
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    display: none
  }
}
.navbar-nav .nav-item.active > a {
  color: var(--white)
}
.navbar-nav .nav-item:hover a::before {
  background-color: var(--secondaryColor)
}
.navbar-nav .nav-item:hover > a {
  color: var(--secondaryColor)
}
.navbar-nav .nav-item.active > a::before,
.navbar-nav .nav-item:hover > a::before {
  width: 100%;
}
.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
.navbar-nav .nav-item .sub-menu li {
  display: block;
}
.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
}
.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: var(--mainColor)
}
.navbar-nav .sub-nav-toggler {
  display: none
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.navbar-btn .main-btn {
  padding: 0 20px;
  height: 45px;
  line-height: 45px;
  color: var(--mainColor);
  background-color: transparent;
  border: 2px solid var(--mainColor);
}
.navbar-btn .main-btn:hover {
  background-color: rgba(8, 152, 231, 0.3);
}
.navbar-nav .dropdown-menu {
  background-color: var(--mainColor);
  padding: 1em;
  border: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    padding: 0 3em;
  }
  .navbar-nav .dropdown-menu li {
    padding-bottom: 1em;
  }
}

.navbar-nav .nav-item a {
  color: var(--white);
}
.dropdown-item {
  margin: 0;
  padding: 0;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--mainColor);
  margin: 0;
  padding: 0;
  color: var(--white);
}
.nav-item.dropdown button {
  border: 0;
  background: var(--mainColor);
  font-size: .8em;
  font-weight: 400;
  color: var(--white);
  transition: all 0.3s ease-out 0s;
  padding: 15px 20px;
  position: relative;
}
.nav-item.dropdown button::before {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  top: 1px;
  left: 0;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.nav-item.dropdown.active button::before {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  top: 1px;
  left: 0;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: var(--secondaryColor)
}

.nav-item.dropdown.active button:hover{
  color: var(--secondaryColor);
  background-color: var(--mainColor);
}

.nav-item.dropdown.active button:hover::before,
.nav-item.dropdown button:hover::before {
  background-color: var(--secondaryColor);
  width: 100%;
}

.nav-item.dropdown button:hover {
  color: var(--secondaryColor);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-item.dropdown.active button::before  {
    display: none
  }
}

/* Info*/
.info_area div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 767px) {
  .info_area {
    padding-top: 3em;
  }
  .info_area .lead {
    font-size: 17px;
    padding-bottom: 3em;
  }
}

/* Services */
.services_area,
.grey_area {
  background: #f5f5f5;
}
.row-flex {
  display: flex;
  flex-wrap: wrap;
}
.single_services {
  background: var(--white);
  -webkit-box-shadow: 0 3px 16px 0 rgba(5, 38, 41, 0.5);
  -moz-box-shadow: 0 3px 16px 0 rgba(5, 38, 41, 0.5);
  box-shadow: 0 3px 16px 0 rgba(5, 38, 41, 0.5);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 50px 30px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_services {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .single_services {
    padding: 30px 20px;
  }
}
.single_services .services_icon i {
  color: var(--mainColor);
  font-size: 56px;
  line-height: 60px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .single_services .services_icon i {
    font-size: 48px;
    line-height: 50px;
  }
}
.single_services .services_content {
  margin-top: 25px;
}
.single_services .services_content .services_title a {
  color: var(--grey);
  font-size: 25px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_services .services_content .services_title a {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .single_services .services_content .services_title a {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_services .services_content .services_title a {
    font-size: 20px;
  }
}
.single_services .services_content p {
  margin-top: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_services .services_content p {
    font-size: 14px;
  }
}
.single_services:hover {
  background-color: var(--mainColor);
}
.single_services:hover .services_icon i,
.single_services:hover .services_content .services_title,
.single_services:hover .services_content .services_title p,
.single_services:hover .services_content p {
  color: var(--white);
}

/*Service principal*/
.single_services_section {
  background: var(--white);
  -webkit-box-shadow: 0 3px 16px 0 rgba(5, 38, 41, 0.5);
  -moz-box-shadow: 0 3px 16px 0 rgba(5, 38, 41, 0.5);
  box-shadow: 0 3px 16px 0 rgba(5, 38, 41, 0.5);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 10px;
}
.single_services_section:hover {
  background-color: var(--mainColor);
}
.single_services_section:hover .services_title {
  color: var(--white);
}
.single_services_section a:hover {
  text-decoration: none;
}

.single_services_section img {
  border-radius: 10px 10px 0 0;
}

.single_services_section h4 {
  font-size: 1.1em;
  color: var(--mainColor);
}

/*Service list*/
.services .inner_content .list-group-flush .list-group-item {
 font-size: 0.9em;
}

@media (max-width: 767px) {
  .list-group-flush {
    padding: 0;
  }
  
}

/* Inner bg images */
.about .hero_area,
.services .hero_area {
  height: auto;
  min-height: 250px;
  overflow: hidden;
  position: relative;
}

.about .hero_area {
  background: url(../images/hero_about2.png) fixed no-repeat;
  background-size:contain;
}

.services_general .hero_area {
  background: url(../images/hero_services.png) fixed no-repeat;
  background-size:contain;
}

.services_financial .hero_area {
  background: url(../images/hero_financial.png) fixed no-repeat;
  background-size:contain;
}

.services_insurance .hero_area {
  background: url(../images/hero_insurance.png) fixed no-repeat;
  background-size:contain;
}

.services_banking .hero_area {
  background: url(../images/hero_banking.png) fixed no-repeat;
  background-size:contain;
}

.services_software .hero_area {
  background: url(../images/hero_software.png) fixed no-repeat;
  background-size:contain;
}

.services_bi .hero_area {
  background: url(../images/hero_bi.png) fixed no-repeat;
  background-size:contain;
}

@media (max-width: 767px) {
  .hero_area {
    margin-top: 75px;
  }

  .hero_area h1 {
    font-size: 1.25em;
  }

  .about .hero_area {
    background: url(../images/hero_about2_mobile.png) fixed no-repeat;
    background-size:contain;
  }
  
  .services_general .hero_area {
    background: url(../images/hero_services_mobile.png) fixed no-repeat;
    background-size:contain;
  }
  
  .services_financial .hero_area {
    background: url(../images/hero_financial_mobile.png) fixed no-repeat;
    background-size:contain;
  }
  
  .services_insurance .hero_area {
    background: url(../images/hero_insurance_mobile.png) fixed no-repeat;
    background-size:contain;
  }
  
  .services_banking .hero_area {
    background: url(../images/hero_banking_mobile.png) fixed no-repeat;
    background-size:contain;
  }
  
  .services_software .hero_area {
    background: url(../images/hero_software_mobile.png) fixed no-repeat;
    background-size:contain;
  }
  
  .services_bi .hero_area {
    background: url(../images/hero_bi_mobile.png) fixed no-repeat;
    background-size:contain;
  }
}


.about .inner_content p,
.services_general .inner_content p {
  margin-top: 0;
  line-height: 2;
}

@media (max-width: 767px) {
  
  .inner_content {
    padding: 1em;
  }

  .services_general h1 {
    font-size: 2rem;
  }

  .about .services_graph {
    margin: 1em 0;
  }

  .about.secondary-list {
    margin: 20px 0;
    padding: 0;
  }
}

/* Inner */
.inner_content {
  min-height: calc(100vh - 300px);
}

@media (max-width: 767px) {
  .inner_content {
    padding-top: 25px;
  }
}

.inner_content p {
  margin-top: 30px;
}

.inner_content .hightlight,
.mainText {
  font-size: 1.25rem;
  color: var(--mainColor);
}
.inner_content .hightlight::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 3px;
  top: 24px;
  background-color: var(--mainColor);
}
.inner_content .list-group-flush {
  background-color: rgb(255 255 255 / 75%);
  -webkit-box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.36);
  box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.36);
}
.inner_content .list-group-flush .list-group-item {
  border: 0;
  background: none;
}

/* Footer*/
.footer_area {
  background-color: var(--mainColor);
}

.footer_area .footer_link p {
  font-size: 0.8rem;
}

.footer_wrapper {
  position: relative;
}
.social li {
  display: inline-block;
  margin-right: 15px;
  margin-top: 15px;
}
.social li a {
  width: 45px;
  height: 45px;
  line-height: 52px;
  text-align: center;
  color: var(--mainColor);
  background-color: var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.social li a:hover {
  background-color: var(--secondaryColor);
  color: var(--white);
}
.social li a:focus,
.social li a:active {
  background-color: var(--secondaryColor);
  color: var(--white);
}
.footer_title {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--secondaryColor);
}
.legal {
  background: var(--mainColor);
  color: var(--white);
}
.legal a {
  color: var(--secondaryColor)
}
.legal a:hover,
.legal a:focus {
  color: var(--white);
}
.legal small {
  color: var(--white);
  font-size: 0.7em;
}
/* Terms & Legal */
.legal_list .list-group .list-group-flush p {
  padding: 0;
}
.legal_list p.title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 3px;
  top: 24px;
  background-color: var(--secondaryColor);
}
.terms .inner_content .list-group-flush {
  box-shadow: none;
}

/*Services */
.secondary-list .list-group-item {
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
  border: 0;
  background: none;
  padding-left: 0;
}

.service .box {
  background-color: #e9ecef;
  border-radius: 0.3rem;
  padding: 4rem 2rem
}

.service .box p {
  margin-top: 0;
  width: 100%;
}

/*FORM*/
.form-control {
  height: 52px;
  background: #fff;
  color: #000;
  font-size: 14px;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1); }
  .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.7) !important; }
  .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.7) !important; }
  .form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.7) !important; }
  .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.7) !important; }
  .form-control:focus, .form-control:active {
    border-color: rgba(0, 0, 0, 0.1); }

textarea.form-control {
  height: inherit !important; }

.wrapper {
  width: 100%;
  -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18); 
  border-radius: 1rem 0 0 1rem;
}

.info-wrap {
  background-color: var(--mainColor);
  border-radius: 1rem;
}
.contact-wrap {
  border: 2px solid var(--mainColor);
  border-radius: 1rem 0 0 1rem;
  border-right: 0;
}

.info-wrap h3 {
  color: #fff; }

.info-wrap .dbox {
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px; }

  .info-wrap .dbox:last-child,
  .info-wrap .dbox p {
    margin-bottom: 0; 
  }
  
  .info-wrap .dbox p span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 80%;
    }

    .info-wrap .dbox p,
    .info-wrap .dbox p a {
      color: #fff; }

  .info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); }

    .info-wrap .dbox .icon span {
      font-size: 20px;
      color: #fff; }

  .info-wrap .dbox .text {
    width: calc(100% - 50px); }

@media (min-width: 992px) {
  .info-wrap {
    margin-top: -20px;
    margin-bottom: -20px;
  } 
  }

@media (max-width: 767px) {
  .contact-wrap {
    border-right: 2px solid;
    border-radius: 1rem;
    margin-bottom: 1em;
  }
  .info-wrap {
    border-radius: 1rem;
  }
  .wrapper {
    box-shadow: none;
  }
}

#contactForm .error {
  color: var(--red);
  font-size: 12px; }

#contactForm .form-control {
  font-size: 16px; }

#message {
  resize: vertical; }

#form-message-warning, #form-message-success {
  display: none; }

#form-message-warning {
  color: var(--red); }

#form-message-success {
  color: #28a745;
  font-size: 18px;
  font-weight: bold; }

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-size: 16px;
  font-weight: bold; }

.contact .header_area {
  position: fixed;
  width: 100%;
  z-index: 100;
}

  /* Carousel*/
.carousel-caption-home {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  text-align: center;
  left: 15%;
  right: 15%;
}

@media (max-width: 767px) {
    .carousel {
      margin-top: 75px;
    }
    .carousel-caption-home  {  
      left: 5%;
      right: 5%;}

    .carousel h1 {
      font-size: 1.5em;
      padding: 0;
    }
    .carousel .lead {
      font-size: 0.8em;
    }
  }
  
  /* Color line on top of cards */
  .line-head{
    height: auto;
    width: 100%;
    background-color: var(--mainColor);
    border-radius: 1rem 1rem 0 0;
    padding-bottom: .5rem;
  }