body {
  background: linear-gradient(45deg, #b9d2d1, transparent);
  overflow-x: hidden;
  font-family: calibri!important;
  color: #1F3A93!important;
}

.bg {
  background-image: url('bg.jpg');
  height: 100vh; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

nav.navbar.navbar-custom {
  background: linear-gradient(#fefefe, #fefefe);
}
.btn-dark {
    color: #fff;
    background-color: #e05200!important;
    border-color: #e05200!important;
}
.btn {
  border: none;
  padding: 16px 32px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  opacity: 0.6;
  transition: 0.3s;
}

.btn:hover {
	opacity: 1
}

p.text-center {
  font-size: 30px;
}

.footer-bottom {
  margin-top: 15%;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.row {
  margin-right: 0px;
  margin-left: 0px;
}

@media screen and (max-width: 425px) {
  .container {
    justify-content: center !important;
  }
  .copyright-text {
    text-align-last: center;
  }
  .col-sm-6 {
    margin-bottom: 30%;
  }
}

h1 {
  animation: 3s slidein-right;
}

h2 {
  animation: 3s slidein-left;
}

@keyframes slidein-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slidein-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

.copyright-text {
    color: #1F3A93;
}

section {
    background-color: rgba(255,255,255,0.8);
}