/* Imports */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css");
@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");
/* Text Colors */
.text-primary {
  color: #2babe2;
}

.text-secondary {
  color: #5D7F2D;
}

/* Buttons & Backgrounds */
.btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  background-color: #5D7F2D;
  border: none;
  border-radius: 30px;
}

.btn:hover {
  background-color: #131529;
}

.btn-primary, .bg-primary {
  background: #2babe2;
  color: #ffffff;
}

.bg-primary-dark {
  background: #165671;
  color: #ffffff;
}

.btn-secondary, .bg-secondary {
  background: #5D7F2D;
  color: #ffffff;
}

.btn-dark, .bg-dark {
  background: #333333;
  color: #ffffff;
}

.btn-light, .bg-light {
  background: #f4f4f4;
  color: #333333;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
}

/* Dropdown Button */
.dropbtn {
  color: #ffffff;
  padding: 40px 20px;
  margin: 0 5px;
  border: 0;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #00bfe2;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 2px;
  padding: 10px;
  right: 5px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #2babe2;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #2babe2;
}

/* Headings */
.l-heading {
  text-align: center;
}

/* Text */
.primary-light-text {
  color: #95d5f1;
}

/* Flex Items */
.flex-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 100%;
}

.flex-items > div {
  padding: 20px;
}

/* Flex Columns */
.flex-columns .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.flex-columns .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-columns .column .column-1,
.flex-columns .column .column-2 {
  height: 100%;
}

.flex-columns img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flex-columns .column-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
}

.flex-columns h2 {
  font-size: 40px;
  font-weight: 100;
}

.flex-columns.flex-reverse .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* Section Header */
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 30px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 900;
  margin: 20px 0;
}

.section-padding {
  padding: 20px 20px 40px;
}

/* Flex Grid */
.flex-grid .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 4px;
}

.flex-grid .column {
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

/* Text Colors */
.text-primary {
  color: #2babe2;
}

.text-secondary {
  color: #5D7F2D;
}

/* Buttons & Backgrounds */
.btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  background-color: #5D7F2D;
  border: none;
  border-radius: 30px;
}

.btn:hover {
  background-color: #131529;
}

.btn-primary, .bg-primary {
  background: #2babe2;
  color: #ffffff;
}

.bg-primary-dark {
  background: #165671;
  color: #ffffff;
}

.btn-secondary, .bg-secondary {
  background: #5D7F2D;
  color: #ffffff;
}

.btn-dark, .bg-dark {
  background: #333333;
  color: #ffffff;
}

.btn-light, .bg-light {
  background: #f4f4f4;
  color: #333333;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
}

/* Dropdown Button */
.dropbtn {
  color: #ffffff;
  padding: 40px 20px;
  margin: 0 5px;
  border: 0;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #00bfe2;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 2px;
  padding: 10px;
  right: 5px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #2babe2;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #2babe2;
}

/* Headings */
.l-heading {
  text-align: center;
}

/* Text */
.primary-light-text {
  color: #95d5f1;
}

/* Flex Items */
.flex-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 100%;
}

.flex-items > div {
  padding: 20px;
}

/* Flex Columns */
.flex-columns .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.flex-columns .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-columns .column .column-1,
.flex-columns .column .column-2 {
  height: 100%;
}

.flex-columns img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flex-columns .column-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
}

.flex-columns h2 {
  font-size: 40px;
  font-weight: 100;
}

.flex-columns.flex-reverse .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* Section Header */
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 30px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 900;
  margin: 20px 0;
}

.section-padding {
  padding: 20px 20px 40px;
}

/* Flex Grid */
.flex-grid .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 4px;
}

.flex-grid .column {
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

/* CSS Reset */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Elements */
body {
  font-family: "Nunito", sans-serif !important;
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

h1, h2 {
  font-weight: 300;
  line-height: 1.2;
}

p {
  margin: 10px, 0;
}

img {
  width: 100%;
}

/* Navbar */
.omt-logo-no-name {
  margin: 0 auto;
  width: 547px;
}

.navbar {
  font-family: "Nunito", sans-serif !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #24284e;
  color: #fff;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0px;
  padding: 0 30px 0px 0px;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  z-index: 2;
}

.navbar.top {
  background: transparent;
}

.navbar a:hover {
  /*border-bottom: $primaryColor 2px solid;*/
  color: #c8f7ff;
  cursor: pointer;
}

.navbar .logo-link:hover {
  border-bottom: none;
}

.navbar a {
  font-family: "Nunito", sans-serif !important;
  color: #ffffff;
  margin: 0px 30px 0px 0px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.navbar a.logo-color {
  height: 90px;
  width: 595px;
  position: relative;
}

.navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
}

.navbar .logo {
  font-weight: 400;
}

/* Header */
.hero {
  background: url("../images/home/dev_coding.jpg") no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: #fff;
}

.hero .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  padding: 40px 20px;
}

.hero .content a {
  z-index: 1;
}

.hero .content h1 {
  font-size: 3.5rem;
  font-weight: 100;
  text-align: center;
}

.hero .content h1 img {
  width: 200px;
  margin-bottom: 15px;
  height: auto;
}

.hero .content p {
  color: #74f3f3;
  font-size: 20px;
  max-width: 600px;
  margin: 0px 0 20px;
  text-align: center;
  font-weight: 500;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}

/* About */
#about .omt-logo {
  margin: 24px auto;
  max-width: 100%;
}

#about p {
  margin: 15px auto;
  text-align: center;
  line-height: 20px;
}

#about h3 {
  color: #131629;
}

/* Icons */
.services {
  width: 100%;
  position: relative;
  background: url("../images/home/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

.services h2 {
  color: #ffffff;
}

.sc-primary {
  border: 0.3px solid #2289b5;
}

.sc-secondary {
  border: 0.3px solid #4a6624;
}

.sc-primary i,
.sc-primary h3 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #2289b5;
}

.sc-secondary i,
.sc-secondary h3 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #4a6624;
}

.service-call-to-action {
  text-align: center;
  padding: 56px 0;
}

.service-call-to-action h3 {
  margin-bottom: 40px;
  color: #ffffff;
}

/* Team */
.team {
  background: #d2d2d2;
  padding: 60px 0;
  width: 100%;
}

.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
          box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 190px;
  height: 100%;
  width: 100%;
  background: url("../images/home/team-shape.svg") no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.team .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.team .member .social a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #131629;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
  min-height: 118px;
  max-height: 118px;
}

.team .member:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
          box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
  right: 8px;
  opacity: 1;
}

/* Contact */
#contact h2 {
  padding: 15px;
}

/* Callback form */
.callback-form {
  width: 100%;
  padding: 20px;
}

.callback-form label {
  display: block;
  margin-bottom: 5px;
}

.callback-form .form-control {
  margin-bottom: 15px;
}

.callback-form label {
  text-align: left;
  padding-left: 2px;
}

.callback-form input {
  width: 100%;
  padding: 5px;
  height: 40px;
  border: #f5f5f5 1px solid;
}

.callback-form textarea {
  width: 100%;
  padding: 5px;
  border: #f5f5f5 1px solid;
  font-family: 'Open Sans', sans-serif;
  resize: none;
}

.callback-form input:focus,
.callback-form textarea:focus {
  outline-color: #2babe2;
}

.callback-form .btn {
  padding: 12px 0;
  margin-top: 20px;
}

/* Footer */
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 280px;
  background-color: #2b2e40;
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer p {
  margin: 8px;
}

.footer a:hover {
  color: #2babe2;
}

/* Mobile */
@media (max-width: 988px) {
  .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 120px;
    padding: 20px;
  }
  .navbar a {
    font-size: 0.85rem;
    padding: 8px 8px;
    margin: 0 0px;
  }
  .home-menu-option {
    display: none;
  }
  .flex-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-columns .column, .flex-grid .column {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
  .team .flex-items div {
    max-width: 100%;
    width: 100%;
  }
  .team .flex-items div p {
    width: 75%;
    margin: auto;
  }
  .team img {
    height: 300px;
    width: 300px;
  }
  .service-card {
    width: 95% !important;
  }
}

/* Acertos Rodrigo */
.btn.btnnew, a.btn.btnnew {
  -webkit-box-shadow: #131529 0px 7px 29px 0px;
          box-shadow: #131529 0px 7px 29px 0px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 1px 0px #494a54;
  font-weight: 900;
  background-color: #131529;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.btn-secondary, .bg-secondary {
  color: #ffffff;
  border-radius: 50px;
  /* padding: 6px 25px 7px 25px; */
  white-space: nowrap;
  /* font-size: 14px; */
  display: inline-block;
}

.border-btn {
  border-width: 3px;
  border-style: solid;
  border-color: #18fefe;
  -webkit-animation: border-pulsate 2s infinite;
          animation: border-pulsate 2s infinite;
}

@-webkit-keyframes border-pulsate {
  0% {
    border-color: #18fefe;
  }
  50% {
    border-color: #2d3265;
  }
  100% {
    border-color: #18fefe;
  }
}

@keyframes border-pulsate {
  0% {
    border-color: #18fefe;
  }
  50% {
    border-color: #2d3265;
  }
  100% {
    border-color: #18fefe;
  }
}

.bg-primary-dark {
  background: #26a9e1;
  color: #ffffff;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  line-height: 1.2;
  position: relative;
  text-align: center;
  width: 100%;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00bfe2;
  bottom: 0;
  left: calc(50% - 25px);
}

.flex-columns .column-2 {
  padding: 30px 90px;
}

.text-center {
  text-align: center;
}

.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  margin-top: var(--bs-gutter-y);
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.m10 {
  margin: 6px 30px;
}

.services .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 80px;
}

.team .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 300px;
}

.col-25 {
  width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.col-33 {
  width: 33.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.col-50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-100 {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.col-100,
.col-25,
.col-33,
.col-50 {
  margin-bottom: 40px;
}

@media (min-width: 601px) and (max-width: 1024px) {
  .col-25,
  .col-33 {
    width: 50%;
  }
}

@media (min-width: 991px) and (max-width: 1228px) {
  .navbar {
    height: 60px;
    padding: 0 15px 0px 0px;
  }
  .navbar a {
    font-size: 12px;
    margin: 0px 20px 0px 0px;
  }
  .omt-logo-no-name {
    width: 365px;
    margin: 15px auto;
  }
  .navbar a.logo-color {
    width: 400px;
  }
}

.logo-color {
  display: block;
}

.logo-color-mobile {
  display: none;
}

@media (max-width: 990px) {
  .logo-color {
    display: none;
  }
  .logo-color-mobile {
    display: block;
  }
  img.omt-logo-no-name-mobile {
    width: 200px;
    position: relative;
    top: -10px;
  }
  .services .row, .team .row {
    margin: 10px 0px;
  }
  .navbar {
    padding: 20px 0px !important;
  }
  .navbar a {
    font-size: 12px !important;
    padding: 0px 7px !important;
  }
}

@media (max-width: 767px) {
  .col-25,
  .col-33,
  .col-50 {
    width: 100%;
  }
}

.services .service-box {
  -webkit-box-shadow: 0px 0 30px rgba(1, 41, 112, 0.2);
          box-shadow: 0px 0 30px rgba(1, 41, 112, 0.2);
  height: 100%;
  min-height: 410px;
  padding: 50px 30px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
  color: #333;
  background-color: #fff;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #24284e;
  margin-bottom: .5rem;
}

.services .service-box .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  border-bottom: 3px solid #2db6fa;
}

.services .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}

.services .service-box.blue .read-more {
  color: #2db6fa;
}

.services .service-box.blue:hover {
  background: #131529;
}

.services .service-box.orange {
  border-bottom: 3px solid #f68c09;
}

.services .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}

.services .service-box.orange .read-more {
  color: #f68c09;
}

.services .service-box.orange:hover {
  background: #131529;
}

.services .service-box.green {
  border-bottom: 3px solid #08da4e;
}

.services .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}

.services .service-box.green .read-more {
  color: #08da4e;
}

.services .service-box.green:hover {
  background: #131529;
}

.services .service-box.red {
  border-bottom: 3px solid #e9222c;
}

.services .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}

.services .service-box.red .read-more {
  color: #e9222c;
}

.services .service-box.red:hover {
  background: #131529;
}

.services .service-box.purple {
  border-bottom: 3px solid #b50edf;
}

.services .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}

.services .service-box.purple .read-more {
  color: #b50edf;
}

.services .service-box.purple:hover {
  background: #131529;
}

.services .service-box.pink {
  border-bottom: 3px solid #f51f9c;
}

.services .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}

.services .service-box.pink .read-more {
  color: #f51f9c;
}

.services .service-box.pink:hover {
  background: #131529;
}

.services .service-box:hover h3, .services .service-box:hover p, .services .service-box:hover .read-more {
  color: #fff;
}

.services .service-box:hover .icon {
  background: #fff;
}

.clearfix:after {
  clear: both;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

img, svg {
  vertical-align: middle;
}

.text-blue {
  color: #26a9e1;
}

.text-dark {
  color: #131629;
}
/*# sourceMappingURL=style.css.map */