@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,600');
@import url(baguetteBox.min.css);


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Times, serif;

}

:root {
  --primary: #00062B;
  --secondary: #fd5000;
  --light: #ffffff;
  --dark: #000000;
  --bg-color: #ececec;
  --bg-color-alice: #f0f8ff;
}

li {
  list-style-type: none !important;
}

a {
  text-decoration: none !important;
}

.clr-orange {
  color: var(--secondary);
}

.clr-blue {
  color: var(--primary);
}

.bg-orange {
  background-color: var(--secondary);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0 !important;
  margin: 0 !important;
}

body {
  color: var(--primary) !important;
  font-size: 16px !important;
  line-height: 1.56 !important;
  width: 100%;
}

/* header-top-start */
.header-top {
  background-color: var(--primary);
  padding: 10px;
}

.header-top-items a,
.topbar-seperator {
  color: var(--light);
}

.header-social-icons ul {
  margin: 0px !important;
}

.header-social-icons ul li,
.brouchrue-btn a {
  padding: 0px 10px;
}

.brouchrue-btn {
  background-color: var(--secondary);
  padding: 3px 1px;
  color: var(--light);
  font-weight: 500;
  border-radius: 4px;
}

.brochure-btn-text {
  margin-left: 10px;
}

.enquiry-btn-text {
  margin-left: 10px;
}

.enquiry-btn-text {
  animation: blinker 1.5s step-end infinite;
  color: var(--light);
  font-size: 20px;
  font-weight: 500;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}


/* header-top-end */


/* header-bottom-start */

.header-bottom {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
}

.navbar-brand {
  display: block;
  margin: auto !important;
}

.nav-logo {
  width: 80px;

}

.custom_nav-container .navbar-collapse {
  justify-content: end;
}


.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 15px;
  color: var(--dark);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 500;
  position: relative;

}

.custom_nav-container .navbar-nav .nav-item .nav-link.active {
  color: var(--secondary);
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: var(--secondary);
}

.custom_nav-container .navbar-toggler {
  outline: none;
}


.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: var(--dark);
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--dark);
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
  transform: none;
}

/* header-bottom-end */


/* footer top start */
.footer-top {
  background-color: var(--bg-color-alice);
  padding: 10px 0px;
}

.contact-icons {
  background-color: var(--secondary) !important;
  width: 50px ;
  height: 50px;
}

/* footer top end */

/* footer bottom start */

.footer-bottom {
  background-color: var(--primary);
  padding: 40px 0px;
}

.footer-image img {
  width: 100%;
}

.footer-second-links a {
  color: var(--light);
  /* padding: 20px; */
}

.footer-second-links p {
  padding: 3px 0px !important;
}

.footer-icons ul {
  display: flex;

}

.footer-icons ul li {
  padding: 10px;
}

.footer-icons ul li img {
  width: 100%;
}

/* footer bottom end */

/* go to top button start */

.top-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background-color: #fd5000;
  border: 1px solid #fd5000;
  border-radius: 50%;
}


.top-btn a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  padding: 0px 10px;
  border: none;

}


/* go to top button end */


/* enquire btn start */

.open-button1 {
  background-color: var(--secondary);
  color: #fff;
  position: fixed;
  top: 44%;
  right: -35px;
  border: none !important;
  padding: 10px;
  cursor: pointer;
  z-index: 999 !important;
  /* -webkit-transform: rotate(-90.0deg); */
  transform: rotate(-90deg);
}

.chat-popup1 {
  background-color: var(--primary);
  color: #fff !important;
  position: fixed;
  top: 44%;
  right: 0;
  z-index: 999 !important;
  /* padding:  10px; */
  font-weight: 500;
  border-radius: 10px;
}

.chat-popup1 .close-enquire {
  margin: 15px !important;
  cursor: pointer;
}

.enquire-btn {
  margin: 20px 15px !important;
}

.enquire-btn a {
  padding: 10px;
  color: var(--light);
  background-color: var(--secondary);
  border-radius: 10px;
  cursor: pointer;
}

/* enquire btn end */


/*------------------------------------------------------------------
    CAROUSEL  START
-------------------------------------------------------------------*/

.main-heading {
  font-size: 3.4rem;
  font-weight: bold;
}

.main-carousel .carousel-caption {
  right: 43% !important;
  bottom: 10.25rem !important;
}

.carousel-logo {
  width: 100px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;

}

.owl-prev,
.owl-next {
  border: none;
  font-size: 2rem;
  cursor: pointer;
  background: none !important;
  color: #000 !important;
}

.owl-prev {
  margin-left: 50px !important;
}

.owl-next {
  margin-right: 50px !important;
}

.owl-prev span,
.owl-next span {
  font-size: 3rem;
  color: #e0e0e0;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: none !important;
}

/*------------------------------------------------------------------
  CAROUSEL  END
-------------------------------------------------------------------*/





/*------------------------------------------------------------------
  college  START
-------------------------------------------------------------------*/


/* 
.colleges {
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  border: none;

}

.first-college-img,
.second-college-img {
  cursor: pointer;
  border: none !important;

}

.first-college .card,
.second-college .card {
  border: none;
  box-shadow: 0px 0px 40px #00000029;
  transition: transform .2s;
  margin: 0 auto;
}

.first-college:hover,
.second-college:hover {
  transform: scale(1.02);
  transition: all 0.5s ease-in-out 0s;

} */

/* college end */







.v-m-list {
  padding: 0px 30px;

}

.v-m-list li {
  list-style: disc !important;
  text-align: justify;
  margin-top: 10px;
}




/*------------------------------------------------------------------
  college  END
-------------------------------------------------------------------*/



.vision-mission-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.vission-section .card,
.mission-section .card {
  transition: all 0.3s ease-in-out;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px #00000029;
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
  border: none;
}

.vission-section .card:hover,
.mission-section .card:hover {
  transform: scale(1.02);
  transition: .7s;
}



.section-head {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.section-head h6 {
  position: relative;
  padding: 0;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.vision-heading h3 {
  position: relative;

}

.section-head h6:before,
.vision-heading h3::before {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--secondary);
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.section-head h6 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: var(--primary)
}







/*------------------------------------------------------------------
    WHY CHOOSE US START
-------------------------------------------------------------------*/


.item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
}

.item:hover {
  background: #fd5000;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #fd5000;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.20);
  color: #fd5000
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #fd5000
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #fd5000
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #fd5000
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #fd5000
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #fd5000
}

.item p {
  font-size: 15px;
  line-height: 26px;
}

.item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
}

.mission p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #fd5000;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #fd5000;
}

.skills {
  padding-top: 0px;
}

.skills .prog-item {
  margin-bottom: 25px;
}

.skills .prog-item:last-child {
  margin-bottom: 0;
}

.skills .prog-item p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--secondary);
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h6 {
  position: relative;
  padding: 0;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.section-head h6:before {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--secondary);
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.section-head h6 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: var(--primary)
}


/*------------------------------------------------------------------
  WHY CHOOSE US END
-------------------------------------------------------------------*/



.head-img {
  width: 60%;
  display: block;
  margin: auto;
}






/*------------------------------------------------------------------
  GALLERY SECTION START
-------------------------------------------------------------------*/

.photo-btn,
.video-btn {
  margin: 10px;
  border: 1px solid var(--primary);
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.photo-btn:hover,
.video-btn:hover {
  background-color: var(--secondary);
  color: var(--light);
  border: 1px solid var(--secondary);
}

.photo-btn:hover i,
.video-btn:hover i {
  color: var(--light);
}


.active-btn {
  background-color: var(--primary);
  color: #fff;
}

.active-btn i {
  color: #fff;
}


.read_btn a {
  background-color: transparent;
  color: var(--secondary);
  padding: 7px 20px;
  border: 1px solid var(--secondary);
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
}

.read_btn:hover a:hover {
  background-color: var(--secondary);
  color: var(--light);
}

.photo-section .home-photos img {
  width: 100%;
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}


.photo-section .home-photos img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/*------------------------------------------------------------------
  GALLERY SECTION END
-------------------------------------------------------------------*/






/* about html start */

.pages-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  width: 100%;
  height: 30vh;
}

.pages-heading,
.pages-breadcrumb {
  margin: 10px 0;
  /* Adjust the margin as needed */
  color: var(--light);
}

.pages-breadcrumb a {
  text-decoration: none;
  color: var(--secondary);
}

.card-data {
  padding: 20px;
}

.facilities-icon {
  text-align: center;

}

.facilities-icon i {
  font-size: 45px;
}

.facilities-heading {
  text-align: center;
}

.facilities-text {
  text-align: center;
}


.detailed_chart {
  background: url(../images/chart_bg.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 97px 0;
}


.chart_bottom {
  display: flex;
  align-items: center;
}

.chart-text {
  margin: 11px 0 0;
  display: inline-block;
}


.chart-text p {
  color: var(--light);
  font-size: 23px;
  font-weight: 500;
}

.chart-text p span {
  display: block;
}


.event-img {
  position: relative;
  -webkit-box-shadow: 0 25px 90px 3px #c7c5c7;
  -moz-box-shadow: 0 25px 90px 3px #c7c5c7;
  box-shadow: 0 25px 90px 3px #c7c5c7;
  border-radius: 5px;
}

.event-img_date {
  position: absolute;
  top: 28px;
  left: 48px;
  background: var(--secondary);
  border-radius: 2px;
  padding: 8px 12px;
  color: var(--light);
  font-size: 13px;
}

.event-img_title {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, black 100%);
  padding: 85px 0 20px;
  border-radius: 5px;
}

.event-img_title h3 {
  color: #fff;
  padding-left: 48px !important;
  position: relative;
}

.event-img_title h3:after {
  height: 2px;
  width: 21px;
  background: var(--secondary);
  content: "";
  position: absolute;
  left: 48px;
  top: 115%;
}

.event-img_title p {
  color: var(--light);
  font-size: 17px;
  padding: 16px 48px 0 !important;
}

.event_date {
  width: 82px;
  background: var(--primary);
  float: left;
  text-align: center;
  border-radius: 2px;
}

.event-date-wrap {
  border: 1px dashed var(--light);
  margin: 8px;
  padding: 4px 0;
}

.event-date-wrap p {
  font-size: 23px;
  font-weight: 700;
  color: var(--light);
  margin: 0;
}

.event-date-wrap span {
  color: var(--light);
  font-weight: 500;
  font-size: 14px;
}

.date-description {
  margin-left: 115px;
}

.date-description h3 {
  margin-top: 0 !important;
  font-weight: 500;
  margin-bottom: 25px !important;
  position: relative;
}

.date-description h3:after {
  height: 2px;
  width: 21px;
  background: var(--secondary);
  content: "";
  position: absolute;
  left: 0;
  top: 115%;
}

.footer-copyrites {
  background-color: #040b3b;
  padding: 15px;
}

.enquiry-card {
  transition: all 0.3s ease-in-out;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 40px #00000029;
  border-radius: 10px;
  padding: 15px;

}

.enquiry-card:hover {
  cursor: pointer;
  transform: scale(1.02);
  transition: .7s;
}

.enquiry-card ul li {
  list-style-type: disc !important;
}

.submit-btn {
  width: 100px;
  display: block !important;
  margin: auto;
  background-color: var(--secondary) !important;
  color: var(--light) !important;
}

.stars {
  color: #f0932b;
  margin-bottom: 20px;
  text-align: center;
}

.textimonial-img img {
  border-radius: 50%;
}


.item {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
}

.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.toggle_btn {
  cursor: pointer;
  color: #007bff;
}

.toggle_btn.active {
  color: #007bff;
}

.long-description {
  display: none;
}

.long-description.active {
  display: block;
}

/* Style for the arrow icon */
.arrow {
  margin-left: 5px;
}

.toggle_btn.active .arrow i {
  transform: rotate(180deg);
}



.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}

/* .advertisers-service-sec {
  background-color: #f5f5f5;
} */

.advertisers-service-sec span {
  color: var(--secondary);
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--primary), var(--secondary));
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--primary);
  margin: 1em 1em;
  z-index: 3;
}

.advertisers-service-sec p {
  color: var(--primary);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: var(--primary);
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: var(--secondary);
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
}

/* ADVERTISERS SERVICE CARD ENDED */


.collge-img{
  background-image: url('/images/NEETIITINT_IMG-1.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
}
.college-text-main,.college-text-sub{
  color: var(--light);
}

.college-text{
  position: relative;
  top: 50%;
}

.word-scroll{
  background-color: var(--primary);
  color: var(--light);
}

.ittjeelist ul li {
  list-style-type: disc !important;
}

/* .elementskit-infobox{
   height: 50vh;
   background-color: #ECECEC00;
   padding: 10px 10px 10px 10px;
   border-style: dashed;
   border-width: 2px 2px 2px 2px;
   border-color: var(--primary);
   border-radius: 5px 5px 5px 5px;
}
.elementskit-info-box-icon > img{
  border-style: dashed;
  padding: 5px;
  border-width: 2px 2px 2px 2px;
  border-color: var(--primary);
} */

/* .elementskit-info-box-title:hover{
  color: var(--dark);
} */
.box-body{
  margin-top: 10px;
}
.box-body > p{
  margin-top: 20px;
}

.fw-500{
  font-weight: 500;
}
@media screen and (max-width: 768px) {

  .main-heading {
    font-size: 1em;
  }

  .main-carousel .carousel-caption {
    right: 41% !important;
    bottom: 1.25rem !important;
  }


  .carousel-logo {
    width: 50px;
  }

  .chart_bottom {
    display: flex;
    justify-content: center;
  }

  .footer-icons ul li img {
    width: 50%;
  }

  .footer-image img {
    width: 50% !important;
  }

  .colleges {
    display: block !important;
  }

  .first-college,
  .second-college {
    margin-top: 15px !important;
  }

  .first-college .card,
  .second-college .card {
    width: 80%;
    /* Adjust the width as needed */
    margin: 0 auto;
    /* Center-align the card */
  }

  .vision-mission-section {
    display: block;
  }

  .footer-contact-blog {
    padding: 10px;
  }

}


@media (min-width: 769px) and (max-width: 1280px) {
  .main-heading {
    font-size: 2em;
  }

}