

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Nunito Sans', sans-serif;
  color: #444444;
}

a {
  color: #6B8BE8;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #526fc5;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #041d8f;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.2s;
  z-index: 997;
  transition: all 0.2s;
  /* background: rgba(1, 4, 136, 0.9); */
}

#header.header-transparent {
  background: transparent;

}



#header.header-scrolled {
  background: #ffffff;
  height: 100px;
  padding-bottom: 100px;
  padding-top: 20px;
}

.first-header {
  margin-top: 80px;
}

@media screen and (max-width: 1400px) {
  .first-header{
    margin-top: 80px;
  }
  /* #header .logo h1 {
    margin-left: 80px !important;
  } */
}
@media screen and (max-width: 600px) {
  .first-header{
    margin-top: 20px;
  }
  #header.header-scrolled {
    height: 75px;
    padding-bottom: 30px;
    padding-top: 0px;
  }
}

/* .first-header{
  margin-top: 1% !important;
} */


/* .mr-auto{
  margin-right: 400px !important;
} */
@media screen and (max-width: 1400px) {
  .mr-auto{
    margin-right: 500px !important;
  }
  .first-header {
    max-width: 1100px !important;
  }
}

#header .logo h1 {
  font-size: 34px;
  margin-top: 10px;
  letter-spacing: 1.5px !important;
  font-weight: 800;
  letter-spacing: 1px;
  /* font-family: 'Alegreya Sans SC', sans-serif; */
  color: #6B8BE8 !important;
  /* margin-left: 100px; */
}

#header .techno {
  font-size: 25px !important;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-left: 2px;
  margin-top: 6px;
  color: #2f58d0;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 64px;
  }
  #header .logo h1 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #6B8BE8;
  padding: 10px 0 10px 25px;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 25px;
  background-color: #2f58d0;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #6B8BE8;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  border-radius: 5px;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #557ae5;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #6B8BE8;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 30px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #6B8BE8;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #557ae5;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #6B8BE8;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(13, 18, 252, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  margin-top: 8%;
  width: 100%;
  /* background: url("../img/hero-bg.jpg"); */
  position: relative;
  padding: 100px 0 0 0;
}

.container{
  max-width: 1300px;
}
.hero-container{
  height: 50vh;
}
.hero-text{
  margin-top: -180px;
}
@media (max-width: 1380px) {
  .hero-container{
    height: 70vh;
  }
  #hero {
    padding: 70px 0 0 0;
    margin-top: 100px;
  }
}
@media (max-width: 600px) {
  #hero {
    padding: 70px 0 0 0;
    margin-top: 90px !important;
  }
}
@media (max-width: 1440px) {
  .hero-container{
    height: 60vh;
  }
  #hero {
    padding: 70px 0 0 0;
    margin-top: 150px;
  }
}
@media (max-width: 1400px) {
  .hero-container{
    height: 70vh;
  }
  #hero {
    padding: 70px 0 0 0;
    margin-top: 150px;
  }
  .hero-text{
    margin-top: -150px;
  }
}

@media (max-width: 1300px) {
  .hero-container{
    height: 60vh;
  }
  #hero {
    padding: 70px 0 0 0;
    margin-top: 150px;
  }
}


#hero:before {
  content: "";
  background: #6B8BE8;
  position: absolute;
  /* opacity: 0.91; */
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: rgba(255, 255, 255);
}

#hero h1 span {
  /* color: #cedafd; */
  /* border-bottom: 4px solid #2f58d0; */
  font-size: 48px;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 35px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #2f58d0;
}

#hero .btn-get-started:hover {
  background: #1f0c9b;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 100%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .hero-img {
    margin-top: -20px;
    margin-bottom: 120px;
  }
  .hero-container{
    height: 100vh !important;
  }
  #hero h1 {
    line-height: 48px !important;
  }
  .hero-waves {
    display: none !important;
  }
}

@media screen 
  and (min-width: 600px) 
  and (max-width: 800px) {
  .hero-img {
    margin-top: 10px;
    margin-bottom: 180px;
    width: 80%;
    margin-left: 100px;
  }
  .hero-waves {
    display: none !important;
  }
  .hero-container{
    height: 100vh !important;
  }
}



@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

:root {
  --primary_color: #4a3bca;
  --dark_primary_color: #2b1e68;
  --accent_color: #6B8BE8;
  --dark_primary_text_color: #313845;
  --light_primary_text_color: #fff;
  --gradient_dark: #6B8BE8;
  --gradient_light: #6B8BE8;
  --topbar_color: #fff;
  --topbar_accent_color: #6B8BE8;
  --topbar_background_color: #4a3bca;
  --menu_color: #111;
  --menu_accent_color: #6B8BE8;
  --menu_background_color: #fff;
  --dark_theme_menu_color: #fff;
  --dark_theme_menu_accent_color: #6B8BE8;
  --dark_theme_menu_background_color: #382a7c;
  --transparent_menu_color: #111;
  --transparent_menu_accent_color: #6B8BE8;
  --transparent_menu_background_color: transparent;
  --dark_theme_transparent_menu_color: #fff;
  --dark_theme_transparent_menu_accent_color: #6B8BE8;
  --dark_theme_transparent_menu_background_color: transparent;
  --sticky_menu_color: #fff;
  --sticky_menu_accent_color: #6B8BE8;
  --sticky_menu_background_color: #382a7c;
  --submenu_color: #313845;
  --submenu_background_color: #fff;
  --submenu_hover_color: #fff;
  --submenu_hover_background_color: #4a3bca;
  --accent_color_rgb: 255,118,23;
  --primary_color_rgb: 74,59,202;
}
.rtel-case-study-2 .rtin-case-study-box-layout2 .rtin-content {
  position: relative;
  margin-bottom: 55px;
  padding: 38px 40px 14px;
  text-align: center;
  background-color: var(--light_primary_text_color);
  border-radius: 6px;
  -webkit-box-shadow: rgb(149 156 204 / 36%) 0px 15px 50px 0px;
  box-shadow: rgb(149 156 204 / 36%) 0px 15px 50px 0px;
  z-index: 2;
}

.rtel-case-study-2 .rtin-case-study-box-layout2 .rtin-content:before {
  content: "";
  width: 100%;
  height: 8px;
  border-radius: 6px 6px 0 0;
  background: -webkit-gradient(linear,left top,right top,from(var(--gradient_dark)),to(var(--gradient_light)));
  background: linear-gradient(to right,var(--gradient_dark),var(--gradient_light));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.rtel-case-study-2 .rtin-case-study-box-layout2 .rtin-content .rtin-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.rtel-case-study-2 .rtin-case-study-box-layout2 .rtin-content .rtin-title a {
  color: var(--dark_primary_text_color);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.rtel-case-study-2 .rtin-case-study-box-layout2 .rtin-content:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 25px solid var(--light_primary_text_color);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  bottom: -25px;
  right: 0;
  left: 0;
  margin: auto;
}
.rtel-case-study-2 .rtin-case-study-box-layout2 .rtin-img {
  position: relative;
  text-align: center;
}
.rtel-case-study-2 .rtin-case-study-box-layout2 .rtin-img img {
  border-radius: 50%;
  width: 360px;
  border: 6px solid #6B8BE8 !important;
  transform: scale(1);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.three-circles-heading{
  margin-top: 100px;
  text-align: center;
}
.has-subtitle{
  font-size: 50px;
  font-weight: 700;
  color: #2f58d0 !important;
}
.prosper{
  color: #2f58d0 !important;
}
.promise-center{
  margin-bottom: 10px;
}
.promise{
  display: flex;
  width: 30%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  color: #6B8BE8;
}

@media (max-width: 1030px) {
  .promise{
    width: 80%;
  }
}
@media (max-width: 600px) {
  .promise{
    width: 100%;
  }
}

.promise-subtitle{
  font-size: 24px;
  margin-top: 10px;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e9dbce;
  font-family: "Nunito Sans", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #2f58d0;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  /* text-transform: uppercase; */
  font-family: "Nunito Sans", sans-serif;
  color: #2f58d0;
}
@media (max-width: 600px) {
  .section-title p {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# established
--------------------------------------------------------------*/
.img-established {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  margin-top: 150px;
}

.img-established::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #6B8BE8;
  opacity: 0.9;
}


@media (min-width: 1024px) {
  .img-established {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .img-established .testimonial-item p {
    width: 80%;
  }
}

.top-established{
  font-size: 25px;
  text-align-last: center;
  color: #fff;
  margin-bottom: 70px;
  text-align: center;
}
.bottom-established{
  font-size: 25px;
  text-align-last: center;
  color: #fff;
  margin-top: 50px;
  text-align: center;
}
.established {
  padding: 70px 0 60px;
}

.established .top-box {
  padding: 40px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.established .top-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  background: #2f58d0;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
}


.established .top-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #6B8BE8;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details{
  margin-top: 70px;
}
.details-para{
  align-self: center;
}
.content h3 {
  font-weight: 600;
  font-size: 30px;
  color: #6B8BE8;
}
.content h3::after {
  content: '';
  display: block;
  width: 100px;
  margin-top: 15px;
  height: 3px;
  background:#2f58d0;
  bottom: 0;
}
.details .content p {
  font-weight: 500;
  font-size: 18px;
}

.divide-line{
  content: "";
  display: block;
  /*max-width: 1000px;*/
  margin-top: 15px;
  height: 1px;
  background: #c3c3ce;
  bottom: 0;
  margin-top: 120px;
  margin-bottom: 120px;
}

@media (max-width: 600px) {
  .love-solutions {
    margin-top: 40px;
    text-align: center;
  }
  .content h3::after {
    display: none;
  }
  .passion-consultancy{
    text-align: center;
    margin-bottom: 30px;
  }
  .divide-line{
    margin-top: 40px;
    margin-bottom: 40px;
  }
}



/*--------------------------------------------------------------
# clients
--------------------------------------------------------------*/
.clients {
  padding-top: 30px !important;
  background-position: center center;
  margin-top: 100px;
  background:#6B8BE8;
}

.value-clients{
  font-size: 50px;
  color: #fff;
  font-weight: 700
}

.value-clients:after {
  content: '';
  display: block;
  margin-top: 15px;
  height: 3px;
  background: #cedafd;
  bottom: 0;
}
@media (max-width: 600px) {
  .value-clients{
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin-bottom: -20px;
    margin-top: -50px;
  }
  .img-width-mobile{
    width: 130px;
  }
  .clients {
    padding: 40px 0 0 0!important;
  }
}

.projects{
  margin-top: 50px;
  justify-content: center;
}
.image-size{
  margin: 10px !important;
}



/*--------------------------------------------------------------
# Strength
--------------------------------------------------------------*/
.strength-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 100px;
  margin-bottom: 80px;
}

.strength-section {
  background-image: -webkit-linear-gradient(0deg, #6B8BE8 0%, #2f58d0 100%);
  background-image: -webkit-linear-gradient(0deg, #6B8BE8 0%, #2f58d0 100%);
  background-image: -webkit-linear-gradient(0deg, #6B8BE8 0%, #2f58d0 100%);
}

.strength-section .section-tittle3 p {
  color: #fff;
  margin-top: -20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.strength-section .app-shape .app-shape-top {
  position: absolute;
  top: 100px;
  left: 125px;
}

.strength-section .app-shape .app-shape-left {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.strength-section .app-shape .app-shape-right {
  position: absolute;
  right: 0px;
  top: 0px;
}
.strength-section .app-shape .app-shape-bottom {
  position: absolute;
  bottom: 100px;
  right: 100px;
}
.app-img{
  text-align-last: right;
}

@media (max-width: 600px) {
  .app-img{
    margin-left: -50px;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  /* background: #fff; */
  margin-bottom: 120px;
}
@media (max-width: 600px) {
  .contact{
    padding: 30px 0 !important;
  }
  .contact-us-center {
    margin-bottom: 10px;
  }
  }
  @media (max-width: 900px) {
    .address-desktop{
      display: none;
    }
    .address-mobile{
      display: block !important;
      margin-top: 50px;
      margin-bottom: -100px;
    }
    .contact-us-center {
      margin-bottom: -20px !important;
    }
    }
.address-mobile{
    display: none;
  }
/* .contact-us{
  text-align-last: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 100px;
}
.contact-us p{
  text-align-last: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
} */

.contact-us-center {
  margin-bottom: 40px;
  margin-top: 30px;
}

.contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #6B8BE8;
}

/* .contact-us:before,
.contact-us:after {
    content: '';
    border-top: 2px solid #6B8BE8;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}
.contact-us:after {
    margin: 0 0 0 20px;
} */
/* .contact-us-subtitle{
  font-size: 24px;
  margin-top: 10px;
} */

.contact .info i {
  font-size: 20px;
  color: #2f58d0;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2f58d0;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 16px;
  color: #6B8BE8;
  line-height: 28px;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #2f58d0;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #2f58d0;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #2f58d0;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #6B8BE8;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #2f58d0;
}

button:focus{
  outline: none !important;
}

.contact .php-email-form .error-message{
  background: #6B8BE8;
}
.backlink p{
  display: none !important;
}
.col{
  margin-top: 35px !important;
}
.col h1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700 !important;
  text-align: -webkit-center;
  color: #6B8BE8 !important;
  font-size: 60px !important;
  padding-bottom: 0 !important;
}
.col p {
  font-size: 17px;
  text-align: -webkit-center;
  display: none !important;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #6B8BE8;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #6B8BE8;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  border-top: 1px solid #d0d0ee;
  text-align: center;
  padding-top: 30px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
