@charset "UTF-8";

/* ====== fonts =========== */
@font-face {
  font-family: 'Conv_Raleway-Bold';
  src: url("../fonts/font/Raleway-Bold_0.eot");
  src: local("Γÿ║"), url("../fonts/font/Raleway-Bold_0.woff") format("woff"), url("../fonts/font/Raleway-Bold_0.ttf") format("truetype"), url("../fonts/font/Raleway-Bold_0.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Conv_Raleway-Medium';
  src: url("../fonts/font/Raleway-Medium.eot");
  src: local("Γÿ║"), url("../fonts/font/Raleway-Medium.woff") format("woff"), url("../fonts/font/Raleway-Medium.ttf") format("truetype"), url("../fonts/font/Raleway-Medium.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Conv_Raleway-Regular';
  src: url("../fonts/font/Raleway-Regular.eot");
  src: local("Γÿ║"), url("../fonts/font/Raleway-Regular.woff") format("woff"), url("../fonts/font/Raleway-Regular.ttf") format("truetype"), url("../fonts/font/Raleway-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
/* ====== Color Palette =========== */
/* ====== fonts =========== */
/* ====== Font Sizes =========== */
/* ====== Text =========== */
/* ====== padding =========== */
/* ====== margin =========== */
/* ====== border radius =========== */
/* ====== box shadow =========== */
/*----------- functions -----------*/
/*---------- animation ----------*/

/* --------------------------------
RESET CSS
-------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block; }

ul,
li {
  list-style: none; }

select {
  width: 100%; }

input:focus, button:focus, textarea:focus {
  outline: 0; }

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

button {
  padding: .5rem 2rem;
  cursor: pointer; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  font-size: 15px;
  overflow-x: hidden; }

body {
  line-height: 1.6;
  font-family: "Conv_Raleway-Medium";
  overflow-x: hidden;
  color: #333; }

input {
  height: 42px;
  padding: 0 1rem;
  background: #eee;
  border: 0;
  border-radius: 8px;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  input::placeholder {
    color: #929292; }
  input:focus {
    -webkit-transform: translate(0, -0.5rem);
    -moz-transform: translate(0, -0.5rem);
    -o-transform: translate(0, -0.5rem);
    transform: translate(0, -0.5rem); }

textarea {
  resize: none;
  padding: 1rem;
  height: 150px;
  background: #eee;
  border: 0;
  border-radius: 8px;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  textarea::placeholder {
    color: #929292; }
  textarea:focus {
    -webkit-transform: translate(0, -0.5rem);
    -moz-transform: translate(0, -0.5rem);
    -o-transform: translate(0, -0.5rem);
    transform: translate(0, -0.5rem); }

p, h1, h2, h3, form {
  margin: 0 0 1rem 0px; }

h1 {
  font-size: 40px;
  font-size: 2.5rem; }

h2 {
  font-size: 30px;
  font-size: 2rem; }

h3 {
  font-size: 21px;
  font-size: 1.4rem; }

section {
  padding: 5rem 0; }

img {
  max-width: 100%; }

/*---------- General Classes -------------*/
.margin_top {
  margin-top: 2rem; }

.margin_top_3 {
  margin-top: 3rem; }

.margin_bottom {
  margin-bottom: 2rem; }

.margin_right {
  margin-right: 1rem; }

.margin_bottom_4 {
  margin-bottom: 4rem; }

.padding_top {
  padding-top: 2rem; }

.padding_bottom {
  padding-bottom: 2rem; }

.hidden {
  display: none; }

.disabled {
  color: #ccc; }

.v-m {
  vertical-align: middle; }

.position-relative {
  position: relative; }

/*---------- text Classes -------------*/
.text_blue {
  color: #5387ed; }

.text_gray {
  color: rgba(0, 0, 0, 0.5); }

/*---------- button classes -------------*/
.btn_blue {
  background: #5387ed;
  color: #fff;
  padding: .5rem 1.5rem;
  display: inline-block;
  border-radius: 20px;
  border: 2px solid #5387ed;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .btn_blue:hover {
    background: transparent;
    color: #5387ed;
    -webkit-transform: translate(0, -5px);
    -moz-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    transform: translate(0, -5px); }

.btn_blue_border {
  background: translate;
  color: #5387ed;
  padding: .5rem 1.5rem;
  display: inline-block;
  border-radius: 20px;
  border: 2px solid #5387ed;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .btn_blue_border:hover {
    background: #5387ed;
    color: #fff;
    -webkit-transform: translate(0, -5px);
    -moz-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    transform: translate(0, -5px); }

.btn_light {
  background: #fff;
  color: #5387ed;
  padding: .5rem 1.5rem;
  display: inline-block;
  border-radius: 20px;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .btn_light:hover {
    background: transparent;
    color: #fff;
    -webkit-transform: translate(0, -5px);
    -moz-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    transform: translate(0, -5px); }

/* ======== start header =========== */
.main_header {
  min-height: 5rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .main_header .navbar-brand {
    line-height: 0;
    z-index: 1; }
    .main_header .navbar-brand img {
      max-height: 80px !important; }
  .main_header .navbar-toggler {
    font-size: 2rem;
    cursor: pointer;
    z-index: 1; }
  .main_header .navbar {
    padding: 0; }
  .main_header .nav-item .nav-link {
    position: relative;
    padding: .5rem 1rem;
    font-family: "Conv_Raleway-Medium"; }
  .main_header .nav-item.active .nav-link, .main_header .nav-item:hover .nav-link {
    font-family: "Conv_Raleway-Bold"; }
  .main_header.light_header .nav-item .nav-link {
    color: #fff; }
  .main_header.light_header .navbar-toggler {
    color: #fff; }
  .main_header.light_header .navbar-brand {
    filter: contrast(0) brightness(100); }
  .main_header.light_bg {
    box-shadow: 8px 0 13px #d8d8d8;
    background: #fff;
    z-index: 109; }
    .main_header.light_bg .navbar-brand {
      filter: none; }
    .main_header.light_bg .navbar-toggler {
      color: #5387ed; }
    .main_header.light_bg .nav-item .nav-link {
      color: #333; }

/* ======== end header =========== */
/* ======== start hero section =========== */
.bg_img {
  background-image: linear-gradient(#28407b, #5387ed);
  position: relative; }
  .bg_img:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    border-width: 25rem 100vw 0 0;
    border-color: transparent #fff #fff transparent;
    border-style: solid; }

#hero_section {
  padding: 3rem 0 3rem; }
  #hero_section.first_style {
    position: relative;
    overflow: hidden;
    background-image: url(../images/main-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
#hero_section.first_style:after {
  content: '';
  position: absolute;
    background: #00000073;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}


    #hero_section.first_style:before {
      content: "";
      position: absolute;
      top: 0;
      background: linear-gradient(#5387ed, #28407b);
      padding-top: 50%;
      border-radius: 50px;
      width: 55%;
      transform: rotate(56deg) translate(85%, -100%) skew(-10deg); }
  #hero_section.second_style {
    position: relative; }
    #hero_section.second_style:before {
      content: "";
      height: 117%;
      top: -44%;
      z-index: -1;
      -webkit-transform: rotate(-13deg);
      -moz-transform: rotate(-13deg);
      -o-transform: rotate(-13deg);
      transform: rotate(-13deg);
      border-radius: 0 0 0 25px;
      right: -13%;
      position: absolute;
      background: #def0fd;
      width: 110%; }
    #hero_section.second_style:after {
      content: "";
      height: 117%;
      top: -44%;
      z-index: -1;
      -webkit-transform: rotate(-10deg);
      -moz-transform: rotate(-10deg);
      -o-transform: rotate(-10deg);
      transform: rotate(-10deg);
      border-radius: 0 0 0 25px;
      right: -10%;
      position: absolute;
      background: linear-gradient(to right bottom, #5387ed, #28407b);
      width: 110%; }
  #hero_section.third_style {
    position: relative; }
    #hero_section.third_style .top_mob {
      position: relative;
      z-index: 1; }
      #hero_section.third_style .top_mob .circle {
        position: absolute;
        width: 90%;
        height: 90%;
        top: 5%;
        left: 5%;
        background: #28407b;
        border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
        animation: border_animation 10s infinite linear;
        z-index: -1; }
        #hero_section.third_style .top_mob .circle:before {
          content: "";
          top: 0;
          left: 0;
          position: absolute;
          background: #5387ed;
          width: 100%;
          padding-top: 100%;
          border-radius: 80% 30% 50% 50%/50%;
          animation: border_animation 12s infinite linear; }
        #hero_section.third_style .top_mob .circle:after {
          content: "";
          top: 0;
          left: 0;
          position: absolute;
          width: 100%;
          height: 100%;
          background: radial-gradient(#5387ed 50%, #28407b);
          border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
          animation: border_animation 15s infinite linear; }
      #hero_section.third_style .top_mob img {
        max-width: 80%; }
  #hero_section.style_four {
    background: linear-gradient(50deg, #5387ed 0%, #28407b 100%);
    border-radius: 0 0 75% 0;
    border-width: 0 0 27px 0;
    border-style: solid;
    border-color: #def0fd; }
    #hero_section.style_four .top_mob {
      position: relative; }
    #hero_section.style_four .anim_img {
      position: absolute;
      top: 0;
      left: 0; }
  #hero_section.style_five {
    background: linear-gradient(50deg, #5387ed 0%, #28407b 100%);
    position: relative;
    overflow: hidden; }
    #hero_section.style_five:before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      border-width: 18rem 100vw 0 0;
      border-color: transparent #fff #fff transparent;
      border-style: solid; }
    #hero_section.style_five .top_mob {
      background: url(../img/top_slide_mop.png) no-repeat center;
      background-size: 100% 100%;
      max-width: 245px;
      margin: auto;
      padding: 49px 6px 53px 6px; }
      #hero_section.style_five .top_mob .slide img {
        max-width: 100%;
        width: auto;
        margin: auto; }
  #hero_section.style_six .anim_img {
    position: absolute;
    top: 0;
    left: 0;
    animation: top_nimate 3s 0s ease-in-out infinite; }
    #hero_section.style_six .anim_img:nth-child(2) {
      animation-delay: .3s; }
    #hero_section.style_six .anim_img:nth-child(3) {
      animation-delay: .6s; }
  #hero_section .app-btn {
    font-size: 13px;
    line-height: 15px;
    margin-top: 2rem; }
    #hero_section .app-btn .app_icon {
      font-size: 20px;
      margin-right: .5rem; }
    #hero_section .app-btn p {
      margin: 0px; 
    display: contents;
    font-size: 18px;}
    #hero_section .app-btn:first-child {
      margin-right: 1rem; }
  #hero_section #video_icon {
    margin-top: 4rem;
    display: inline-block;
    font-size: 18px; 
    color: #fff;}
    #hero_section #video_icon .video_icon {
      color: #5387ed;
      box-shadow: 0 0 10px #ccc;
      padding: 12px;
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      text-align: center;
      vertical-align: middle;
      margin-right: .5rem; }
  #hero_section .video_popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1929;
    display: none; }
    #hero_section .video_popup .video_src {
      position: relative;
      width: 700px;
      max-width: 80%; }
    #hero_section .video_popup .iframe_src {
      width: 100%;
      height: 0;
      padding-top: 56.3%;
      position: relative;
      display: none; }
      #hero_section .video_popup .iframe_src iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }

/* ======== end hero section =========== */
/* ======== start logo section =========== */
#logos_section .owl-stage {
  display: flex;
  justify-content: center;
  align-items: center; }
#logos_section .logo {
  filter: grayscale(100%) opacity(0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  #logos_section .logo:hover {
    filter: none; }
#logos_section img {
  max-height: 50px;
  width: auto;
  margin: auto; }

/* ======== end logo section =========== */
/* ======== start features section =========== */
#features_section .feature_item {
  background: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  #features_section .feature_item:hover {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05); }
  #features_section .feature_item .feature_desc {
    margin-bottom: 0; }
  #features_section .feature_item .feature_icon {
    font-size: 30px;
    padding-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: #5387ed;
    z-index: 1; }
    #features_section .feature_item .feature_icon div {
      width: 5rem;
      height: 5rem;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: auto;
      z-index: -1;
      line-height: 0; }
      #features_section .feature_item .feature_icon div:before {
        content: '\f04b';
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        line-height: 5rem;
        font-size: 5rem;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        transform: rotate(-97deg) skew(10deg);
        color: #def0fd; }
#features_section.style2 .feature_item {
  padding: 2rem;
  box-shadow: 0 0 14px #eee;
  border: 1px solid #eee; }
#features_section.style3 .feature_item {
  padding: 2rem;
  box-shadow: 0 0 14px #eee;
  border-radius: 8px; }
  #features_section.style3 .feature_item .feature_icon {
    font-size: 21px;
    padding-top: 0;
    border: 3px solid;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  #features_section.style3 .feature_item:hover .feature_icon {
    background: linear-gradient(#28407b, #5387ed);
    color: #fff; }

/* ======== end features section =========== */
/* ======== start description section =========== */
#description_section {
  position: relative;
  background: rgb(241 241 241); }
  #description_section .container {
    position: relative; }
    #description_section .container:after {
      content: '\f04b';
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      top: 70%;
      left: 50%;
      font-size: 6rem;
      color: #5387ed;
      z-index: 0;
      -webkit-transform: rotate(31deg);
      -moz-transform: rotate(31deg);
      -o-transform: rotate(31deg);
      transform: rotate(31deg); }
    #description_section .container img {
      position: relative;
      z-index: 1; }
  #description_section .features_list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: .5rem; }
    #description_section .features_list li:before {
      content: "";
      width: 8px;
      height: 8px;
      position: absolute;
      left: 0;
      top: calc(50% - 4px);
      background: #5387ed;
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 0 0 2px #5387ed; }
  #description_section.style2 .container:after {
    display: none; }

/* ======== end description section =========== */
/* ======== start effective features section =========== */
#effective_features .feature {
  position: relative; }
  #effective_features .feature:before {
    content: "";
    position: absolute;
    top: 16px;
    width: 40px;
    height: 2px;
    background: #def0fd;
    z-index: -1; }
  #effective_features .feature:after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 13px;
    background: #5387ed;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #5387ed; }
#effective_features .text-left .feature:before {
  left: 0;
  transform: translatex(-160%); }
#effective_features .text-left .feature:after {
  left: -22px; }
#effective_features .text-right .feature:before {
  right: 0;
  transform: translatex(160%); }
#effective_features .text-right .feature:after {
  right: -22px; }

/* ======== end effective features section =========== */
/* ======== start clients section =========== */
#clients_section {
  position: relative;
  overflow: hidden; }
  #clients_section:before {
    content: "";
    position: absolute;
    right: -20%;
    bottom: 5rem;
    width: 60%;
    height: calc(80% - 5rem);
    background: #def0fd;
    z-index: -1;
    border-radius: 50px 0 0 50px;
    transform: skew(-25deg); }
  #clients_section:after {
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    width: 100%;
    height: calc(82% - 5rem);
    background: linear-gradient(#5387ed, #28407b);
    z-index: -1;
    border-radius: 0 50px 50px 0;
    transform: skew(-25deg); }
  #clients_section .owl-carousel .owl-nav {
    position: absolute;
    top: 1rem;
    right: -38%; }
  #clients_section .owl-carousel .owl-prev, #clients_section .owl-carousel .owl-next {
    display: inline-block;
    border: 2px solid #fff;
    padding: 0 1rem;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 8px; }
    #clients_section .owl-carousel .owl-prev:hover, #clients_section .owl-carousel .owl-next:hover {
      border-color: #5387ed; }
    #clients_section .owl-carousel .owl-prev:before, #clients_section .owl-carousel .owl-next:before {
      content: '\f30b';
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      width: 30px;
      height: 30px;
      color: #5387ed;
      font-size: 20px; }
  #clients_section .owl-carousel .owl-next:before {
    content: '\f30b'; }
  #clients_section .owl-carousel .owl-prev {
    margin-right: 1rem; }
    #clients_section .owl-carousel .owl-prev:before {
      content: '\f30a'; }
  #clients_section .owl-stage-outer {
    padding: 0 1rem 1rem 0; }
  #clients_section .owl-item .client_item {
    background: #fff;
    border-radius: 8px;
    padding: 1rem 2rem;
    margin-right: 1rem; }
    #clients_section .owl-item .client_item .client_opinion {
      font-size: 14px; }
    #clients_section .owl-item .client_item .client_img {
      margin-right: 1rem; }
      #clients_section .owl-item .client_item .client_img img {
        width: 40px;
        border-radius: 50%; }
    #clients_section .owl-item .client_item .client_name, #clients_section .owl-item .client_item .client_position {
      margin: 0; }
  #clients_section .owl-item.active .client_item {
    box-shadow: 0 0 15px #ccc; }

/* ======== end clients section =========== */

/* ======== start Download section =========== */
#download_section {
  color: #fff;
  position: relative; }
  #download_section:before {
    content: "";
    position: absolute;
    right: -21%;
    top: 0;
    width: 115%;
    height: 100%;
    background: linear-gradient(#5387ed, #28407b);
    z-index: -1;
    border-radius: 50px 0 0 50px;
    transform: skew(25deg); }
  #download_section p {
    max-width: 800px;
    margin: 1rem auto; }
  #download_section .app-btn {
    font-size: 13px;
    line-height: 15px;
    margin-top: 2rem; }
    #download_section .app-btn .app_icon {
      font-size: 20px;
      margin-right: .5rem; }
    #download_section .app-btn p {
      margin: 0px; }
    #download_section .app-btn:first-child {
      margin-right: 1rem; }

/* ======== end Download section =========== */

/* ======== star contact-us section =========== */
#contact_section {
  background: linear-gradient(to left, #def0fd, #fff 60%);
  position: relative;
  overflow: hidden; }
  #contact_section:after {
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    width: 50%;
    height: 30%;
    background: linear-gradient(#5387ed, #28407b);
    z-index: 0;
    border-radius: 0 50px 50px 0;
    transform: skew(-25deg); }
  #contact_section .contact__us {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto; }
  #contact_section #contact_form {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.35);
    background: #fff; }
    #contact_section #contact_form .form_heading {
      background: #5387ed;
      color: #fff;
      padding: .5rem 1rem;
      margin-bottom: 1rem; }
      #contact_section #contact_form .form_heading h3 {
        margin-bottom: 0; }
    #contact_section #contact_form .row {
      margin: 0; }
    #contact_section #contact_form #contact_submit {
      display: block;
      margin: 0 auto 1rem; }
  #contact_section .contact_info {
    padding-left: 1rem; }
    #contact_section .contact_info .contact_item {
      margin-bottom: 2rem; }

/* ======== end contact-us section =========== */
/* ======== start footer section =========== */
.site_footer {
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden; }
  .site_footer:before {
    content: "";
    position: absolute;
    right: -20%;
    top: 0;
    width: 115%;
    height: 100%;
    background: linear-gradient(#5387ed, #28407b);
    z-index: -1;
    border-radius: 50px 0 0 50px;
    transform: skew(25deg); }
  .site_footer .logo {
    filter: invert(1) brightness(100);
    display: inline-block;
    margin-bottom: 1rem; }
  .site_footer #subscribe_form {
    max-width: 500px;
    position: relative;
    margin: 1rem auto; }
    .site_footer #subscribe_form .sub_btn {
      position: absolute;
      right: 0;
      background: transparent;
      border: 0;
      padding: 0 1rem;
      line-height: 42px;
      color: #5387ed;
      font-size: 18px;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .site_footer #subscribe_form .sub_btn:hover {
        transform: scale(1.2) rotate(20deg); }
    .site_footer #subscribe_form .form-input {
      width: 100%; }
  .site_footer .social_media {
    margin-bottom: 1rem; }
    .site_footer .social_media a {
      display: inline-block;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 10px #ccc;
      color: #5387ed;
      line-height: 39px;
      font-size: 1.1rem;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      border: 2px solid transparent; }
      .site_footer .social_media a:hover {
        background: transparent;
        color: #fff;
        border-color: #fff; }

.goto_top_button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 11; }
  .goto_top_button .goto_top {
    display: inline-block;
    padding: .5rem 1rem;
    background: linear-gradient(#5387ed, #28407b);
    border-radius: 8px;
    color: #fff;
    font-size: 17px; }

/* ======== end footer section =========== */
/* ======== start blogs pages =========== */
.top_section {
  position: relative;
  padding: 8rem 0 4rem; }
  .top_section:before {
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    width: 115%;
    height: 100%;
    background: linear-gradient(#5387ed, #28407b);
    z-index: -1;
    border-radius: 0 50px 50px 0;
    transform: skew(-25deg); }
  .top_section .breadcrumb {
    background: transparent; }
    .top_section .breadcrumb .breadcrumb-item {
      float: none;
      display: inline-block;
      color: #fff;
      text-transform: uppercase; }
      .top_section .breadcrumb .breadcrumb-item:before {
        color: #fff; }
      .top_section .breadcrumb .breadcrumb-item a {
        color: #fff; }

.pagination {
  margin-top: 4rem; }
  .pagination .page-item .page-link {
    color: #5387ed; }
  .pagination .page-item.active .page-link {
    background: linear-gradient(#5387ed, #28407b);
    border-color: #5387ed;
    color: #fff; }

.aside-sec .search-form {
  position: relative;
  margin-top: 0;
  margin-bottom: 3rem; }
  .aside-sec .search-form .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0px;
    color: #fff;
    width: 42px;
    height: 42px;
    padding: 0;
    text-align: center;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(#5387ed, #28407b); }
  .aside-sec .search-form .search-input:focus {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
.aside-sec .catigories h3, .aside-sec .tags h3 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee; }
.aside-sec .catigories {
  margin-bottom: 3rem; }
  .aside-sec .catigories .cat_item {
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: .5rem 1rem; }
.aside-sec .tags .tag-item {
  padding: .5rem 1rem;
  background: #5387ed;
  border-radius: 8px;
  margin: 0 .5rem .5rem 0; }
  .aside-sec .tags .tag-item a {
    color: #fff; }

.comments h3 {
  font-weight: bold;
  color: #5387ed;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #eee; }
.comments .comment {
  margin-bottom: 1rem; }
  .comments .comment .comment_img {
    margin-right: 1rem; }
    .comments .comment .comment_img img {
      width: 80px;
      border-radius: 50%; }
  .comments .comment ._name {
    font-weight: bold; }
.comments #comment_form {
  margin-top: 4rem; }

/* ======== end blogs pages =========== */
@media (max-width: 991px) {
  .main_header #main-menu {
    padding: 2rem 0;
    overflow-y: auto; }
    .main_header #main-menu .navbar-nav {
      border-radius: 8px;
      background: #fff;
      padding: 2rem; }
      .main_header #main-menu .navbar-nav .nav-link {
        color: #28407b;
        text-align: center; }

  #hero_section {
    text-align: center; }
    #hero_section .d-flex {
      justify-content: center; }
  
    #hero_section.first_style:before {
      display: none; }
    #hero_section.second_style:before {
      height: 94%;
      top: 0%;
      z-index: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      right: 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0.05), transparent);
      width: 100%; }
    #hero_section.second_style:after {
      height: 100%;
      top: 0;
      z-index: -1;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      right: 0;
      width: 100%; }
    #hero_section.third_style:before {
      display: none; }
    #hero_section.style_five .top_mob {
      margin-top: 2rem;
      display: block; }

  #effective_features .text-right {
    text-align: left !important; }
  #effective_features img {
    display: none; }
  #effective_features .feature {
    padding-left: 1rem; }
    #effective_features .feature:before {
      display: none; }
    #effective_features .feature:after {
      left: 0 !important; }

  .aside-sec {
    margin-top: 4rem; } }
@media (max-width: 767px) {

.top-header:before {
    content: "";
    width: 80% !important;
    right: 40px !important;
    z-index: -1;
}
.top-header {
  text-align: center !important;
}
.top-header a {
  padding: 2px 10px !important;
}
.navbar-toggler {
  width: auto;
}
.main_header #main-menu .navbar-nav {
    border-radius: 0;
    background: #e9eaec;
    padding: 15px;
}
.top-form #contact_form {
  margin-top: 20px;
}

  #features_section .feature_item {
    margin-bottom: 4rem; }
  #features_section.style2 .col-lg-3.margin_top_3 {
    margin-top: 0px; }

  #description_section .desc_mob {
    margin-top: 2rem; }

  #clients_section .owl-carousel .owl-nav {
    right: 0;
    position: relative; }
    #clients_section .owl-carousel .owl-nav .owl-prev, #clients_section .owl-carousel .owl-nav .owl-next {
      background: #5387ed; }
      #clients_section .owl-carousel .owl-nav .owl-prev:before, #clients_section .owl-carousel .owl-nav .owl-next:before {
        color: #fff; }

  #pricing_section .pricing_table {
    margin-bottom: 2rem; }

  #download_section:before {
    right: -19%;
    transform: skew(10deg); }

  .blog {
    margin-bottom: 2rem; }

  #contact_section #contact_form {
    margin-bottom: 2rem; } }
@media (max-width: 575px) {
  html {
    font-size: 12px; }

  h1 {
    font-size: 2.2rem; }

  .main_header .navbar-brand img {
    max-width: 115px; }

  #hero_section.style_four {
    border-radius: 0 0 35% 0; }

  .pagination {
    margin-top: 0rem; }

  #faq_section .accordion .card button.btn {
    padding: 1rem; }

  #effective_features .feature:after {
    top: 9px; }

  #download_section:before {
    right: 0;
    width: 100%;
    transform: skew(0deg); }

  .site_footer .logo {
    max-width: 115px; }
  .site_footer .social_media a {
    width: 30px;
    height: 30px;
    line-height: 30px; }
  .site_footer p {
    font-size: 9px; }
  .site_footer:before {
    -webkit-transform: skew(15deg, 0deg);
    -moz-transform: skew(15deg, 0deg);
    -o-transform: skew(15deg, 0deg);
    transform: skew(15deg, 0deg); }
  .site_footer #subscribe_form {
    max-width: 80%; } }

/*# sourceMappingURL=style.css.map */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}
.top-header {
  background: linear-gradient(#5387ed, #28407bc2);
  text-align: right;
  position: relative;
  z-index: 1;
}
.top-header a {
      padding: 10px;
    display: inline-block;
    color: #fff;
}
.top-header:before {
  content: "";
  position: absolute;
  width: 29%;
    height: 100%;
    clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
    background: black;
    right: 195px;
    z-index: -1;
}
.top-form #contact_form {
  background: white;
    padding: 10px;
}
.top-form #contact_form h3 {
  color: #4672cc;
  text-align: center;
    border-left: 2px solid #4672cc;
    border-right: 2px solid #4a79d6;
}
.top-form #contact_form input, textarea, button {
  width: 100%;
}
.start_site .top_content h1 {
  color: #fff;
}
.start_site .top_content p {
  color: #fff;
}

.services-sec .box{
    position:relative;
    overflow: hidden;
    border-bottom: 2px solid #4570c8 !important;
    border: 1px solid black;
    margin-bottom: 30px;
}
.services-sec .box .box-img{
    transform: translateX(0px);
    transition:transform 0.40s linear ;
}
.services-sec .box:hover .box-img{
    transform: translateX(100%);
}
.services-sec .box .box-img img{
    width: 100%;
    height: auto;
}
.services-sec .box .content{
    position: absolute;
    top:0;
    right: 100%;
    width:100%;
    height:100%;
    padding:5%;
    text-align:center;
    background:#4068bc;
    transition:right 0.40s linear;
}
.services-sec .box:hover .content{
    right:0%;
}
.services-sec .box .title{
    font-size:18px;
    text-transform:capitalize;
    color:#fff;
    margin: 5% 0 0;
}

.services-sec .box .title:after,
.services-sec .box .description:after{
    content: "";
    border-bottom: 1px solid #fff;
    display: block;
    margin:3% auto;
    width: 57%;
}
.services-sec .box .social-links{
    padding:0;
    margin:0;
}
.services-sec .box .social-links li{
    list-style: none;
    display: inline-block;
    background: black;
    padding: 5px 20px;
    margin-top: 20px;
    border-radius: 30px;
}
.services-sec .box .social-links li a{
    color:#fff;
    font-size:18px;
    display: flex;
}
@media only screen and (max-width: 990px) {
    .services-sec .box{
        margin-bottom:20px;
    }
}
#Certificates {
  background: rgb(241 241 241);
}
#Certificates h1 {
  color: #000;
  text-align: center;
}
#Certificates .Certificate-box {
  border: 3px double #4b79d7;
}
#Certificates .Certificate-box img:hover {
  transform: scale(1.8, 1.8);
  transition: .9s;
  position: absolute;
  z-index: 11;
}
.whasapp-icon {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 11;
}
.whasapp-icon img {
  width: 70px;
}
.phone-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 11;
}
.phone-icon img {
  width: 80px;
}