

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.funkyradio div {
  clear: both;
  overflow: hidden;
}

#search {
    width:90%;
}

.searchicon {
    color:#5CB85C;
}

/*custom font*/
@import url(http://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}


/*form styles*/
#msform {
  width: 400px;
  margin:50px auto;
  text-align: center;
  position: relative;
}


#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;
  
  /*stacking fieldsets above each other*/
  position: absolute;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input, #msform textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
}
/*buttons*/
#msform .action-button {
  width: 100px;
  background: #166caf;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #166caf;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 33.33%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #27AE60;
  color: white;
}

body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #255FCD;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #255FCD;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.main-nav  .btn-primary
{
  background-color: #255FCD;
  color: #ffffff;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #255FCD;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #166caf;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

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

.main-pages {
  margin-top: 60px;
}

.logo img{
    width: 180px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
    height: 530px;
  position: relative;
  background: url("../img/Mask%20Group%201@3x.png") center bottom no-repeat;
  background-size: cover;
  padding: 230px 0 120px 0;
    margin-top: 50px;
}

#intro .intro-info {
  width: 100%;
    text-align: center;
    margin-top: 0px;
}

#intro .intro-info h2 {
  color: #000;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 400;
}

#intro .intro-info h2 span {
  color: #255FCD;
  
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #255FCD;
  border: 2px solid #255FCD;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #255FCD;
    border-style: solid;
    border-width: medium;
  color: #007CDC;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #255FCD;
  border-color: #255FCD;
  color: #fff;
}

#intro .header-lower{
    width: 1100px;
    margin-top: 50px;
    margin-left: 180px;
   padding: 0px 30px 0px 30px;
    background-color: white;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
}

#intro .header-lower img{
    margin-left: 50px;
}

#intro .header-lower .img1 img{
    width: 50px;
    margin-top: 25px;
}

#intro .header-lower .img2 img{
    width: 35px;
    margin-bottom: 10px;
    margin-top: 30px;
}

#intro .header-lower .img3 img{
    width: 50px;
    margin-top: 25px;
}

#intro .header-lower .img4 img{
    width: 50px;
    margin-top: 25px;
}

#intro .header-lower .img5 img{
    width: 37px;
    margin-bottom: 10px;
    margin-top: 20px;
}

#intro .header-lower h5{
    text-align: center;
}

.bottom-img{
    margin-left: 30px;
}

.first:hover{
    background-color: #255FCD;
    color: white;
    transition: all 0.3s ease-in-out;
}

@media (max-width:768px){
    #intro .header-lower{
        width: 370px;
        margin-top: 20px;
        margin-left: 20px;
    }
    
    #intro .header-lower img{
        margin-left: 100px;
    }

    #intro .header-lower .img1 img{
        width: 60px;
        margin-top: 25px;
    }

    #intro .header-lower .img2 img{
        width: 45px;
        margin-left: 110px;
    }

    #intro .header-lower .img3 img{
        width: 60px;
        margin-top: 25px;
    }

    #intro .header-lower .img4 img{
        width: 60px;
        margin-top: 25px;
    }

    #intro .header-lower .img5 img{
        width: 47px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    #intro .header-lower h5{
        text-align: center;
        font-size: 16px;
    }

    .bottom-img{
        margin-left: 30px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}


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

.main-nav li img{
    width: 20px;
    margin-right: 10px;
}

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

.main-nav a {
  display: block;
  position: relative;
  color: #004289;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #166caf;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  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;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

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

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #255FCD;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

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

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

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

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

.main-nav button {
    border-radius: 20px;
    background-color: #255FCD;
    border: 0;
}

.main-nav button a{
    color: white;
}

.main-nav button a:hover{
    color: white;
}

.main-nav button:hover > a {
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

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

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

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

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

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

.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-toggle {
  position: fixed;
  right: 0;
  top: 0;
  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 {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

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

.mobile-nav-active .mobile-nav {
  left: 0;
}

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

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

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 30fpx;
  color: black;
  text-align: center;
  
  position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #fff;
}

/* Section 1
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  /*box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);*/
}

#services .box {
  width: 250px;
  height: auto;
  padding: 10px;
  position: absolute;
  top: 180px;
  overflow: hidden;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .description {
  font-size: 14px;
    font-weight: bold;
  line-height: 24px;
  margin-bottom: 0;
    text-align: center;
}

.service1 img{
    width: 300px;
    margin-left: 30px;
}

.service2 img{
    width: 300px;
    margin-left: 25px;
}

.service3 img{
    width: 300px;
    margin-left: 20px;
}

.service1 .box{
    margin-left: 55px;
}

.service2 .box{
    margin-left: 50px;
}

.service3 .box{
    margin-left: 45px;
}

#services .section-header h3{
    margin-top: 70px;
}

/* Section 2 (Gradient)
--------------------------------*/

.gradient {
    width: 380px;
    height: 300px;
    background-image: linear-gradient(to right, #255FCD , #033188);
}

.gradient img{
    width: 100px;
    margin: 60px 0px 0px 140px;
}

.gradient1 img{
    width: 97px;
    margin-top: 80px;
}

.gradient2 img{
    width: 95px;
    margin-top: 70px;
}

.gradient1 p{
    margin-top: 20px;
}

.gradient2 p{
    margin-top: 25px;
}

.gradient3 p{
    margin-top: 15px;
}

.gradient3 img{
    width: 110px;
    margin-top: 70px;
}

.gradient p{
    color: white;
    font-size: 20px;
    text-align: center;

}

@media (max-width:768px){
    .gradient {
        background-image: linear-gradient(#255FCD , #033188);
    }
}

/* Statistics Section
--------------------------------*/

.text { 
    position: absolute; 
    top: 95px; 
    margin-left: 70px; 
    margin-right: 50px;
    font-weight: bold;
    color: #255FCD;
    text-align: center;
    line-height: 25px;
    font-size: 25px;
} 

.stat1 .text{
    margin-left: 40px;
}

.stat2 .text{
    margin-left: 42px;
}

.stat3 .text{
    margin-left: 49px;
}

.stat4 .text{
    margin-left: 100px;
}

.stat1 h4{
    margin-left: 20px;
    padding-top: 10px;
}

.stat2 h4{
    margin-left: 10px;
    padding-top: 15px;
}

.stat3 h4{
    margin-left: 0px;
    padding-top: 0px;
}

.stat4 h4{
    margin-left: 20px;
    padding-top: 3px;
}

.mydiv .icon1{
    width: 140px;
    margin-top: 30px;
}

.mydiv .icon2 {
    width: 130px;
    margin-top: 40px;
}

.mydiv .icon3 {
    width: 150px;
    margin-top: 30px;
}

.mydiv .icon4 {
    width: 240px;
    margin-top: 35px;
}

.stat1{
    margin-left: 180px;
}

.stat2{
    margin-left: 120px;
}

.stat3{
    margin-left: 90px;
}

.stat4{
    margin-left: 0px;
}

@media(max-width:768px){
    .stat1{
        margin-left: 120px;
    }

    .stat2{
        margin-left: 130px;
    }

    .stat3{
        margin-left: 120px;
    }

    .stat4{
        margin-left: 70px;
    }
}

/* How It Works Section
--------------------------------*/

.grey-box {
    width: 400px;
    height: 200px;
    background-color: #EFF8FF;
}

.steps img {
   width: 300px;
    height: 200px;
}

#why-us .steps h1{
    position: absolute;
    top: 1960px;
    left: 680px;
    font-size: 70px;
    font-weight: normal;
    color: #255FCD;
    font-family: Helvetica;
    left: 680px;
}

#why-us .step1 h1{
    top: 1970px;
}

#why-us .step2 h1{
    top: 2175px;
}

#why-us .step3 h1{
    top: 2370px;
}

#why-us .step4 h1{
    top: 2575px;
}

.step2, .step4{
    margin-left: 390px;
}

#why-us .steps h4{
    text-align: center;
    padding-top: 30px;
    color: #255FCD;
    font-weight: 500;
}

#why-us .steps h5{
    text-align: center;
    font-weight: normal;
    width: 300px;
    margin-left: 50px;
    line-height: 20px;
}

#why-us{
    margin-bottom: 100px;
}

@media (max-width:768px){
    .steps img{
        display: none;
    }
    
    #why-us .mob{
        display: block;
    }
    
    .step1, .step2, .step3, .step4{
        margin-left: 0px;
        margin-bottom: 10px;
    }
    
    #why-us{
        margin-bottom: 50px;
    }
    
    .grey-box {
        width: 390px;
        height: 200px;
    }
}

/*--------------------------------------------------------------
# College Logo Section 
--------------------------------------------------------------*/

#college-logo .container-fluid {
    height: auto;
    background-color: #EFF8FF;
    color: black;
}

#college-logo{
    text-align: center;
}

.logo-row1 img{
    width: 130px;
    margin-top: 40px;
}

.logo-row1{
    margin-left: 100px;
}

.logo-row2 img{
    width: 130px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.logo-row2{
    margin-left: 160px;
}

@media (max-width:768px){
    .logo-row1, .logo-row2{
        margin-left: 90px;
    }
    
    #college-logo .owl-carousel .owl-item img{
        width: 50%;
        margin-top: 40px;
    }
    
    .logo-row2 img{
        width: 130px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/* Contact Section
--------------------------------*/

#contact {
  background-color: #EFF8FF;
  padding-bottom: 50px;
  overflow: hidden;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #166caf;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .info {
  color: #283d50;
    margin-left: 10px;
}

#contact .info i {
  font-size: 32px;
  color: #166caf;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 18px;
}

#contact .form #sendmessage {
  color: #255FCD;
  border: 1px solid #255FCD;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 1 0px;
  box-shadow: none;
  font-size: 14px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
}

#contact .form button[type="submit"], .request-footer button[type="submit"] {
  background: #255FCD;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .form .contactForm{
    margin-left: 60px;
}

.request-footer {
    margin-left: 140px;
}

.request-footer .info p{
    text-align: center;
}

.request-footer img{
    width: 20px;
    height: 20px;
}

.request-footer h4{
    color: black;
    text-align: center;
    margin-left: 20px;
    font-size: 17px;
}

#contact .form button[type="submit"]:hover {
  background: #255FCD;
  cursor: pointer;
}
.map-final
{
  border:0; 
  width : 1435px; 
  height:470px;
}

.map-box{
    width: 1100px;
    background-color: white;
    height: auto;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    overflow: hidden;
    position: relative; 
    margin-left: 170px; 
    margin-right: 50px;
    font-weight: 500;
    
    text-align: center;
    line-height: 25px;
}

@media (max-width:768px){
    #contact .form .contactForm{
        margin-left: 0px;
    }
    
    .email-icon{
        margin-left: 40px;
    }
    
    #contact .request-footer p{
        text-align: center;
    }
    
    .get-in-touch{
        display: none;
    }
    
    .request-footer {
        margin-left: 0px;
    }
    
    .request-footer img{
        width: 20px;
        height: 20px;
        margin-left: 100px;
        margin-top: 20px;
    }
}

@media(min-width:768px){
    #contact .request-footer .mob-get-in-touch{
        display: none;
    }
}

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

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  margin-bottom: 20px;
    margin-left: 10px;
    box-shadow: 0 0px 20px 0 rgba(68, 88, 144, 0.1);
    margin-top: 20px;
    padding-bottom: 30px;
    margin-right: 10px;
}

.testimonials .testimonial-item .rating-img {
  width: 70px;
  margin: 0 auto;
    margin-bottom: 20px;
}

.testimonials .testimonial-item .quote-icon {
  width: 50px;
  margin-left: 250px;
    position: absolute;
    top: 240px;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 10px 0 5px 0;
  color: #000;
    padding-top: 30px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #000;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc !important;
}

.testimonials .owl-dot.active {
  background-color: #106eea !important;
}

.testimonial-item .row{
    display: flex;
    margin-left: 200px;
}

.testimonial-item .row p{
    color: #7f7f7f;
    font-style: normal;
}

.testimonial-item .row img{
    width: 30px;
    height: 30px;
    margin-left: 300px;
}

.rating-img {
    width: 100px;
}

.testimonial1 {
    width: 400px;
    height: 300px;
    box-shadow: 0 0px 20px 0 rgba(68, 88, 144, 0.1);
}

#college-testimonials {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

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

@media (max-width: 768px){
    .testimonial-item .row p{
        color: #7f7f7f;
        font-style: normal;
        text-align: center;
    }
    
    .testimonials .testimonial-item .quote-icon {
        top: 220px;
    }
}

.email-icon {
    width: 30px;
    margin-left: 170px;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

@media (max-width:768px){
    .brand-carousel {
        margin-top: 0;
        height: 170px;
    }
}

/*.owl-carousel.off {
    display: block;
}*/

.login {
    margin-right: 20px;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

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

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
    
  #intro .intro-info {
      margin-bottom: 20px;
  }

  #why-us .card {
    margin: 0;
  }
}

@media (max-width:768px){
    .text{
        text-align: center;
        margin-left: 60px;
        margin-right: 60px;
    }
    
    .service{
        margin-top: 100px;
    }
    
    .box-common{
        margin-top: 100px;
    }
    
    .service2 .text{
        margin-top: 100px;
        margin-left: 80px;
        margin-right: 90px;
    }
    
    .service3 img{
        margin-left: 30px;
        width: 295px;
    }
    
    .service3 .text{
        margin-top: 100px;
        margin-left: 90px;
        margin-right: 100px;
    }
    
    
    .service3 .box{
        margin-left: 50px;
    }
    
    #services .container .row1{
        margin-left: 5px;
    }

}


@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
    
  #intro {
      margin-top: 0px;
  }

  #intro .intro-info h2 {
    font-size: 30px;
    margin-top: 50px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
  .section-header h3 {
  font-size: 25px;
  }
  #msform {
 
      position:unset;
    }
    .map-final
    {
      text-align: center;
      border:0; 
      width : 100%; 
      height:auto;
    }
   
    .map-box{
        width: 90%;
        background-color: white;
        height: auto;
        box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        overflow: hidden;
        margin-top: 0px;
        position: absolute; 
        margin-left: 20px; 
        margin-right: 50px;
        font-weight: 500;
        text-align: center;
        line-height: 25px;
    }
    
    #about {
        margin-top: 950px;
    }
    
    .about-extra1 {
        padding-top: 0px;
    }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

.row2 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.request-footer input{
    width: 300px;
    margin-left: 110px;
}

.request-footer label{
    color: black;
    font-weight: lighter;
}

@media (max-width:768px){
    .request-footer input{
        width: 300px;
        margin-left: 25px;
    }
    
    .request-footer h4{
        margin-top: 20px;
    }
    
    #request-banner .container-fluid {
    height: 250px;
    }
    
    #request-banner h5{
        text-align: left;
        margin-left: 50px;
        margin-top: 10px;
    }
    
    #request-banner button{
        background-color: #007CDC;
        color: white;
        border-radius: 20px;
        margin-left: 130px;
        border: 0;
        width: 150px;
        height: 35px;   
    }

    #request-banner input{
        text-align: left;
        width: 150px;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 20px;
    }
}

@media (max-width:768px){
    .section-padding{
        padding:30px 0;
    }
    
    .owl-dots {
        display: none;
    }
    
    .customer-logos{
        display: none;
    }
    
    #carousel img{
        margin-left: 90px;
    }
}

@media (min-width:768px){
    #carousel{
        display: none;
    }
}




