/* navbar */

.Navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 72%;
  padding: 0 5%;
  margin: auto;
}

.Navbar > div {
  white-space: nowrap;
  margin: 17px;
}

.extra {
  flex-grow: 1;
}

.Navbar a {
  text-decoration: none;
  color: #5a6b7b;
  font-size: 14px;
}

.Navbar a:hover {
  color: #3077bd;
}

.Navbar__toggle i {
  font-size: 30px;
}

.Navbar__mobile {
  animation: nav-open 0.3s ease;
}

/* platform */

.platform {
  text-align: center;
  background-color: #f7fcff;
  padding: 5% 0;
  width: 100%;
}

.platDesc {
  width: 35%;
  margin: 30px auto;
}

.platSec {
  display: flex;
  width: 60%;
  margin: auto;
  margin-bottom: 50px;
}

.platSec > div {
  width: 33%;
  align-items: flex-start;
  margin-left: 10%;
  margin-bottom: 80px;
}

.platSec h4 {
  color: #495358;
  line-height: 50px;
  font-size: 13px;
  text-transform: uppercase;
}

.platSec1 {
  display: flex;
  width: 80%;
  margin: auto;
  margin-bottom: 80px;
}

.platSec1 > div {
  width: 25%;
  align-items: flex-start;
  margin-left: 14%;
}

.platSec1 h4 {
  color: #495358;
  line-height: 50px;
  font-size: 13px;
  text-transform: uppercase;
}

/* footer */

.Footer {
  text-align: center;
  margin-top: 60px;
  background-color: #f7fcff;
  padding: 6% 0 2%;
}

.Footer h1 {
  font-size: 40px;
  line-height: 64px;
  color: #3d4859;
  font-weight: 400;
}

.Footer i {
  font-size: 12px;
  display: inline-block;
  color: #3077bd;
}
.Footer i span {
  padding-left: 5px;
  letter-spacing: 0.8px;
  font-weight: 400;
  color: #3d5ebd;
}
.Footer i span:hover {
  text-decoration: underline;
}

.footerList {
  font-size: 14px;
  color: #5f6d7b;
  width: 25%;
  margin: 25px auto 55px;
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: space-evenly;
}

.lastFooter {
  border-top: 0.5px #dee9f1 solid;
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 70%;
  padding: 3% 0%;
  margin: 140px auto 30px;
  color: #5a6b7b;
}

.lastFooter > div {
  display: flex;
  flex-direction: column;
  flex-basis: auto;
  text-align: left;
}

.lastFooter > div:nth-child(1) a {
  text-decoration: none;
  color: #5a6b7b;
  font-size: 16px;
}

.lastFooter b {
  font-size: 18px;
  color: #424853;
}
.lastFooter p {
  font-size: 16px;
}

.lastFooter p:hover,
.lastFooter p:hover {
  color: #3077bd;
  cursor: pointer;
}

.lastFooter i:nth-child(1) {
  color: #3077bd;
  font-size: 20px;
  margin-right: 10px;
}

.lastFooter i:nth-child(2) {
  color: red;
  font-size: 20px;
}

.last {
  display: flex;

  width: 40%;
  margin-left: 20%;
}

.last > div {
  flex-basis: 1;
  margin: 0 15px;
}

.last > div:nth-child(1) {
  flex-grow: 1;
  text-align: left;
  margin: 0;
}

.last p {
  font-size: 14px;
  color: #83add7;
  cursor: pointer;
}

.last p:hover {
  color: #3077bd;
}

.last div:nth-child(1) p:hover {
  color: #83add7;
  cursor: initial;
}

/* common */

* {
  margin: 0;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  scroll-behavior: smooth;
}

body {
  padding: 11px 0px;
  background-image: linear-gradient(rgb(247, 252, 255), rgb(255, 255, 255));
  overflow-x: hidden;
  position: relative;
}

.right {
  float: right;
}
.left {
  float: left;
}
.clear {
  clear: both;
}

p {
  font-size: 21px;
  line-height: 31px;
  color: #636b7b;
}

.freebtn {
  display: block;
  width: 320px;
  height: 55px;
  font-size: 16px;
  text-transform: uppercase;
  margin: 20px auto 5px;
  background-color: #0288d1;
  color: white;
  outline: none;
  border: none;
  border-radius: 5px;
  opacity: 0.8;
}
.freebtn:hover {
  opacity: 1;
}

.mainHeading {
  font-size: 34px !important;
  color: #3d4859;
  font-weight: 400;
}

.blueBtn {
  height: 40px;
  width: 130px;
  font-weight: 400;
  font-size: 14px;
  color: #5fbdf7;
  border-radius: 5px;
  border: 2px solid #5fbdf7;
  background-color: transparent;
  outline: none;
}

.blueBtn:hover {
  background-color: #5fbdf7;
  color: white;
}
