/*=== MEDIA QUERY ===*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:300,400,600");
html {
  color: #737f8a;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #737f8a;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

p {
  font-family: "Roboto", sans-serif;
}

.color {
  color: #1759C2;
}

.red-color {
  color: #c41919;
}

/*=================================================================
  Basic Setup
==================================================================*/
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #1759C2;
}

::selection {
  color: #fff;
  background: #1759C2;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

a {
  color: #fff;
  transition: all 0.3s ease-in 0s;
}

iframe {
  border: 0;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus,
a:hover {
  color: #6CB670;
}

.kill-margin-bottom {
  margin-bottom: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.section-pt {
  padding-top: 100px;
}

.space-section {
  padding-bottom: 30px;
  padding-top: 100px;
}

.btn {
  background-color: transparent;
  color: #fff;
  padding: 10px 30px;
  border-radius: 0;
  transition: all 0.3s ease-in 0s;
}
.btn:focus {
  color: #ddd;
  box-shadow: none;
}

.btn-transparent {
  border: 1px solid #4e595f;
}
.btn-transparent:hover, .btn-transparent:focus {
  background-color: #1759C2;
  border-color: #1759C2 !important;
  color: #fff;
}

.form-control::-webkit-input-placeholder {
  /*  Chrome, Safari, Opera  */
  color: #ddd;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ddd;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ddd;
}

.form-control:-ms-input-placeholder {
  /*  Internet Explorer  */
  color: #ddd;
}

.border {
  border-top: 2px solid rgba(236, 239, 241, 0.07);
  height: 1px;
  margin: 15px auto 0;
  position: relative;
  width: 30%;
}
.border:before {
  background-color: #fff;
  content: "";
  height: 6px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  top: -4px;
  width: 50px;
  background-color: #1759C2;
}

.sub-title {
  padding: 0 0 50px;
}

.sub-title > h3 {
  border-left: 3px solid #ddd;
  border-right: 3px solid #ddd;
  display: inline-block;
  padding: 5px 25px;
  text-transform: uppercase;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.bg-one {
  background-color: #fff;
}

.parallax-section {
  background-attachment: fixed !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.no-padding {
  padding: 0 !important;
}

.inline-block {
  display: inline-block;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

a {
  transition: all 0.2s ease-in 0s;
}

iframe {
  border: 0;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus,
a:hover {
  color: #1759C2;
}

.btn-main {
  background: #1759C2;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 35px;
}
.btn-main:hover {
  background: #0c2f67;
  color: #fff;
}

.mt-20 {
  margin-top: 20px;
}

.section {
  padding: 100px 0;
}
@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

.section-sm {
  padding: 150px 0;
}

.section-xs {
  padding: 50px 0;
}

.btn:focus {
  color: #ddd;
}

#home {
  position: relative;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.preloader {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  position: absolute;
}

.preloader span {
  position: absolute;
  display: block;
  bottom: 0;
  width: 9px;
  height: 5px;
  border-radius: 5px;
  background: #fff;
  -webkit-animation: preloader 2s infinite ease-in-out;
  animation: preloader 2s infinite ease-in-out;
}

.preloader span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}

.preloader span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}

.preloader span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

.preloader span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}

.preloader span:nth-child(6) {
  left: 55px;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}

@-webkit-keyframes preloader {
  0% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    background: #1759C2;
  }
  50%, 100% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
}
@keyframes preloader {
  0% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    background: #3498db;
  }
  50%, 100% {
    height: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
  }
}
.title {
  padding-bottom: 60px;
}
.title h2 {
  font-weight: 700;
  font-size: 38px;
  color: #000;
}
.title h2 span {
  color: #1759C2;
}
@media (max-width: 768px) {
  .title h2 {
    font-size: 30px;
  }
}
.title p {
  color: #666;
}
.title.title-white h2 {
  color: #fff;
}

.bg-gray {
  background: #f9f9f9;
}

.section-bg {
  background: #292F36;
}

.overly {
  position: relative;
}
.overly:before {
  content: "";
  background: rgba(0, 0, 0, 0.096);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.header-bradcrumb {
  background: transparent;
}
.header-bradcrumb a,
.header-bradcrumb .active {
  color: #cfcfcf;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
}
.header-bradcrumb a:hover {
  color: #1759C2;
}

.slick-slide {
  outline: none;
}

/* CSS mfp-with-zoom class */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pagination li {
  margin: 5px;
  display: inline-block;
}
.pagination li a {
  background: #242930;
  border: 0;
  color: #fff;
  border-radius: 0 !important;
}
.pagination li a:focus, .pagination li a:hover, .pagination li a.active {
  background: #1759C2;
  color: #fff;
  box-shadow: none;
}

.slick-dots {
  bottom: 30px !important;
}
.slick-dots li button:before {
  font-size: 15px !important;
}
.slick-dots li.slick-active button:before {
  color: #1759C2;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

.mt-80px {
  margin-top: -80px;
}

.number {
  opacity: 0.1;
  font-size: 130px;
  display: block;
  line-height: 120px;
  position: absolute;
  top: 10px;
  color: #1759C2;
}

.hover-style-1 {
  position: relative;
}
.hover-style-1:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  background: linear-gradient(90deg, #1759C2 0%, #3f96ee 100%);
  border-color: #1759C2;
}
.hover-style-1 h3,
.hover-style-1 p,
.hover-style-1 a,
.hover-style-1 i,
.hover-style-1 h4 {
  position: relative;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}
.hover-style-1:hover:before {
  height: 100%;
}
.hover-style-1:hover a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.hover-style-1:hover h3,
.hover-style-1:hover h4,
.hover-style-1:hover p,
.hover-style-1:hover a,
.hover-style-1:hover span {
  color: #fff;
}

.hover-style-1:hover i {
  color: rgba(255, 255, 255, 0.8) !important;
}

.contact-form .form-group {
  margin-top: 20px;
}
.contact-form input[type=text],
.contact-form [type=email] {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact-form input[type=text]:focus,
.contact-form [type=email]:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.contact-form .btn {
  background: #1759C2;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 35px;
  margin-top: 20px;
}
.contact-form .btn:hover {
  background: #0c2f67;
  color: #fff;
}

.z-index {
  z-index: 99;
}

.bgr-dark {
  background: #03073B;
}

.bg-blue {
  background: #F0F6FF;
}

.schools-list li a {
  color: #000;
  font-weight: 500;
}
.schools-list li a:hover {
  color: #006aff;
}

#preloader {
  background: #fff;
  height: 100%;
  left: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 999999999;
}

.btn-download {
  color: #000;
}
.btn-download:hover {
  color: #fff;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2901960784);
  z-index: 200;
}
@media (max-width: 768px) {
  .float {
    bottom: 25px;
    left: 25px;
  }
}

.float:hover {
  text-decoration: none;
  color: #25d366;
  background-color: #fff;
}

.whats-float {
  margin-top: 16px;
}

.float-up {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #1759C2;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 23px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2901960784);
  z-index: 200;
}
@media (max-width: 768px) {
  .float-up {
    bottom: 25px;
    right: 25px;
  }
}

.float-up:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0c2f67;
}

.up-float {
  margin-top: 20px;
}

.logo {
  margin-top: 10px;
  display: inline-block;
}

/*=================================================================
  Navigation
==================================================================*/
.navigation {
  background-color: #ffffff;
  width: 100%;
  z-index: 100;
  margin-bottom: 0;
  padding: 0px 0;
  top: 0;
}
.navigation .logo {
  padding: 0;
  height: auto;
  margin-top: 0;
}
.navigation .logo img {
  height: auto;
  width: 350px;
}
@media (max-width: 768px) {
  .navigation .logo img {
    width: 255px;
  }
}
.navigation .navigation-menu li a.active {
  color: #1759C2 !important;
}
.navigation .navigation-menu a {
  padding-left: 15px !important;
  padding-right: 15px !important;
  font-size: 16px;
  color: #000 !important;
  font-weight: 600;
}
.navigation .navigation-menu a:hover, .navigation .navigation-menu a:focus {
  background: transparent;
  color: #1759C2 !important;
}

.navigation-schools {
  width: 100%;
  background-color: #ffffff;
  z-index: 101;
  margin-bottom: 0;
  padding: 0px 0;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
@media (min-width: 720px) {
  .navigation-schools {
    min-height: 102px;
  }
}
.navigation-schools .logo {
  padding: 0;
  height: auto;
  margin-top: 0;
}
.navigation-schools .logo img {
  height: auto;
  width: 350px;
}
@media (max-width: 768px) {
  .navigation-schools .logo img {
    width: 200px;
  }
}
.navigation-schools .navigation-menu li a.active {
  color: #1759C2 !important;
}
.navigation-schools .navigation-menu a {
  padding-left: 15px !important;
  padding-right: 15px !important;
  font-size: 16px;
  color: #000 !important;
  font-weight: 600;
}
.navigation-schools .navigation-menu a:hover, .navigation-schools .navigation-menu a:focus {
  background: transparent;
  color: #1759C2 !important;
}

.navbar-toggle {
  border: 1px solid #fff;
  border-radius: 0;
}
.navbar-toggle span {
  background: #fff;
}

.bg-1 {
  background-image: url("../images/backgrounds/bg_2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero-area {
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-area .slide-2 {
    padding: 175px 0 !important;
  }
}
.hero-area .block {
  text-align: center;
  z-index: 99;
  padding-top: 136px;
}
@media (max-width: 768px) {
  .hero-area .block {
    padding-top: 65px;
  }
}
.hero-area .block .video-button a {
  background: #fff;
  display: inline-block;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  line-height: 60px;
  font-size: 20px;
  margin-left: 3px;
  color: #1759C2;
}
.hero-area .block h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .hero-area .block h1 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .hero-area .block h1 {
    font-size: 36px;
  }
}
.hero-area .block p {
  color: #fff;
  font-size: 20px;
  width: 70%;
  margin: 0 auto;
}
.hero-area .block .btn-transparent {
  margin-top: 40px;
  border-color: #fff;
  padding: 14px 50px;
  font-size: 18px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.slider-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.overlay {
  position: relative;
}
.overlay::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  left: 0;
}

.overlay2 {
  position: relative;
}
.overlay2::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  left: 0;
}

.overlay3 {
  position: relative;
}
.overlay3::before {
  content: "";
  background: rgba(0, 0, 0, 0.558);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  left: 0;
}

.dark-bg {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}

.hero-slider {
  overflow-x: hidden;
}
.hero-slider .prevArrow {
  left: -100px;
}
.hero-slider .nextArrow {
  right: -100px;
}
@media (max-width: 768px) {
  .hero-slider .prevArrow,
  .hero-slider .nextArrow {
    display: none !important;
  }
}
.hero-slider .prevArrow {
  left: 40px;
}
.hero-slider .nextArrow {
  right: 40px;
}

/* slick style */
.slick-slide {
  outline: 0;
}

.slick-slide img {
  display: unset;
}

/* slick arrows */
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  height: 70px;
  width: 70px;
  background: rgba(23, 89, 194, 0.5);
  color: #fff;
  border: 0;
  line-height: 70px;
  font-size: 35px;
  transition: 0.2s ease;
  border-radius: 50%;
  cursor: pointer;
}
.slick-arrow::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background: transparent;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.2s ease;
}
.slick-arrow::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  transition: 0.2s ease;
}
.slick-arrow:focus {
  outline: 0;
}
.slick-arrow:hover {
  background: #1759C2;
}

.prevArrow {
  left: 0px;
}
.prevArrow::before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 35px;
}
.prevArrow::after {
  right: 20px;
}

.nextArrow {
  right: 0px;
}
.nextArrow::before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  left: 35px;
}
.nextArrow::after {
  left: 20px;
}

/* /slick arrows */
.descriptions .icon-box {
  font-size: 30px;
  display: flex;
  border-radius: 30px;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
  height: 50px;
  width: 50px;
  transition: all 0.3s ease 0s;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  background-color: #fff;
}
.descriptions .icon-box i {
  font-size: 30px;
  color: #1759C2;
}

/*=================================================================
  Programs 
==================================================================*/
.programs p {
  font-size: 18px;
}
.programs h3 {
  font-size: 20px;
}
.programs .program-info {
  text-align: left;
}
.programs .program-info li {
  margin-left: 10px;
  font-size: 18px;
  color: #737f8a;
}
.programs .program-expirience {
  text-align: left;
}
.programs .program-expirience li {
  margin-left: 10px;
  font-size: 18px;
  color: #737f8a;
}
.programs .program-expirience li i {
  font-size: 22px;
  color: #1759C2;
  margin-right: 10px;
}
.programs .view-more-link i {
  font-size: 22px;
}
.programs .collapse-content {
  margin-left: 10px;
}
.programs .collapse-content li {
  margin-left: 10px;
  font-size: 18px;
  color: #737f8a;
}
.programs .collapse-content li i {
  font-size: 22px;
  color: #1759C2;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .programs .contact-button {
    margin-left: 10px;
  }
}

/*=================================================================
  About us section
==================================================================*/
.about-us p {
  font-size: 18px;
}
.about-us h3 {
  font-size: 20px;
}

/*=================================================================
  About school
==================================================================*/
.about-school p {
  font-size: 18px;
}
.about-school h3 {
  font-size: 20px;
}

/*=================================================================
 Call To Action 1
==================================================================*/
.call-to-action {
  background-attachment: fixed;
}
.call-to-action h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 37px;
  }
}
.call-to-action h3 {
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .call-to-action h3 {
    font-size: 25px;
  }
}
.call-to-action h4 {
  font-size: 22px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .call-to-action h4 {
    font-size: 18px;
  }
}
.call-to-action .btn-main {
  margin-top: 20px;
}

.contact-us {
  padding-top: 50px;
}

.contact-form {
  margin-bottom: 60px;
}
.contact-form textarea.form-control {
  padding: 10px;
  height: 120px;
}

.contact-form input:hover,
.contact-form textarea:hover,
#contact-submit:hover {
  border-color: #1759C2;
}

#contact-submit {
  border: 1px solid rgba(236, 239, 241, 0.07);
  background: #1759C2;
  padding: 12px 0;
  width: 100%;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.google-map #map_canvas {
  height: 400px;
}

.contact-info p {
  margin-bottom: 25px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 38px;
  color: #ffffff;
  font-weight: 700;
}

.con-info {
  margin-bottom: 20px;
}
.con-info span {
  color: #ffffff;
  font-size: 18px;
}
.con-info i {
  color: #79acff;
  font-size: 30px;
}

.contact-bar {
  background: linear-gradient(90deg, #1759C2 0%, #3f96ee 100%);
  padding: 10px;
}

.icon-bar span {
  color: #fff;
  font-size: 16px;
}
.icon-bar i {
  color: #fff;
  font-size: 25px;
}

.con-info i,
.con-info span {
  float: left;
}

.con-info span {
  margin: -5px 0 0 15px;
}

.error {
  display: none;
  padding: 10px;
  color: #D8000C;
  border-radius: 4px;
  font-size: 13px;
  background-color: #FFBABA;
}

.success {
  background-color: #6cb670;
  border-radius: 4px;
  color: #fff;
  display: none;
  font-size: 13px;
  padding: 10px;
}

#map {
  height: 370px;
  width: 100%;
}

/*=================================================================
  Footer section
==================================================================*/
.social-icon {
  padding: 0px 0 30px;
}
.social-icon ul {
  text-align: center;
}
.social-icon ul li {
  margin-bottom: 4px;
}
.social-icon ul li:hover a {
  background-color: #1759C2;
  transform: rotateY(0deg);
}
.social-icon ul li:hover a i {
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  transform: rotateY(0deg);
}
.social-icon ul li a {
  background-color: #26292e;
  border: 1px solid transparent;
  display: block;
  height: 70px;
  width: 70px;
  transform: rotateY(180deg);
  transition: all 400ms ease-out 0s;
}
@media (max-width: 768px) {
  .social-icon ul li a {
    width: 55px;
    height: 55px;
  }
}
.social-icon ul li a i {
  color: #79acff;
  display: inline-block;
  font-size: 32px;
  line-height: 70px;
  margin: 0;
  filter: alpha(opacity=30);
  transform: rotateY(180deg);
  transition: all 400ms ease-out 0s;
}
@media (max-width: 768px) {
  .social-icon ul li a i {
    line-height: 55px;
    font-size: 25px;
  }
}

.copyright {
  padding: 10px 0;
  color: #fff;
}
.copyright img {
  margin-bottom: 15px;
}
.copyright p {
  margin-top: 10px;
}

#scrollUp {
  border: 1px solid #4e595f;
  bottom: 15px;
  color: #fff;
  display: none;
  padding: 8px 12px;
  position: fixed;
  right: 20px;
  z-index: 600;
}

#scrollUp:hover {
  background-color: #1759C2;
  border: 1px solid #1759C2;
}

/*# sourceMappingURL=styles.css.map */
