/* Front */

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #425263;
  overflow-x: hidden;
  margin: 0;
}

svg {
  display: block;
}

a,
button,
input,
textarea,
button,
select {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button {
  cursor: pointer;
  outline: 0;
}

* {
  box-sizing: border-box;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  outline: 0;
}

a,
a:hover {
  text-decoration: none;
}

a {
  color: #454D99;
}

a:hover {
  color: #283398;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 700;
}

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

.container {
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/
.btn {
  min-width: 184px;
  padding: 14px 30px;
  background: #7381FF;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border: 0;
  transition: all 0.3s;
}

.btn:hover {
  background: #4753c4;
  color: #fff;
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
  position: absolute;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
}

.site-header .header-inner {
  position: relative;
}

.site-header .header-inner .site-logo a {
  display: block;
  max-width: 166px;
}

.site-header .header-inner .site-logo a img {
  width: 100%;
}

.site-header .header-inner .site-logo a .sticky-logo {
  display: none;
}

.site-header .header-inner .site-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-header .header-inner .site-nav .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.uninstall-img-edge{
  width: 500px;
}

.site-header .header-inner .site-nav .menu-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.site-header .site-mobile-logo {
  display: none;
}

.site-header .site-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-header .site-main-menu li {
  margin: 0 23px;
  position: relative;
  padding: 24px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li:last-child {
  margin-right: 0;
}

.site-header .site-main-menu li > a {
  color: #425263;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.site-header .site-main-menu li > a:hover {
  color: #7381FF;
}
.site-header .site-main-menu li > a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #7381FF;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  left: 0;
}

.site-header .site-main-menu li > a:hover:after {
  width: 100%;
}

.site-header.header-eight .toggle-menu .bar {
  background: #90e16b;
}

.site-header.header-eight .header-inner .site-nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/

.banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/left-top.svg"), url("../img/right-top.svg"), url("../img/right-bottom.svg"), url("../img/left-bottom.svg");
  background-repeat: no-repeat;
  background-position: left top, right top, right bottom, left bottom;
  padding: 100px 0;
}

.banner-content {
  display: flex;
  align-items: center;
}

.banner-text {
  width: 50%;
}

.banner-image {
  width: 50%;
}

.banner-title {
  font-size: 42px;
  margin-bottom: 24px;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 300;
}

footer {
  width: 100%;
  background: #454D99;
  padding: 13px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
}

.terms footer{
  position:relative;
}

.terms .banner {
  padding-top: 250px;
}

.banner.block {
  display: block;
  height: auto;
}

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

.features {
  display: flex;
  justify-content: center;
}

.feature {
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
  border-radius: 7px;
  padding: 50px 18px 34px;
  position: relative;
  margin: 40px;
  max-width: 288px;
  text-align: center;
}

.feature-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-text {
  font-weight: 300;
}

.feature-btn {
  margin-top: 32px;
  text-align: center;
}

.feature-icon {
  background: #7381FF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 991px){
  .banner {
    background-size: 50%;
  }
}

@media all and (max-width: 767px){
  .banner {
    height: auto;
  }

  .banner-content {
    flex-direction: column;
  }

  .banner-text,
  .banner-image {
    width: 100%;
  }

  .home footer,
  .contact footer {
    position: static;
  }
}
@media all and (max-width: 600px){
  .site-header .header-inner .site-nav {
    flex-direction: column;
    padding: 15px 0 5px;
  }

  .site-header .site-main-menu li {
    padding: 10px 0;
  }

  .banner {
    padding-top: 200px;
  }

  .features {
    flex-direction: column;
  }
}