* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Livvic", sans-serif;
}
a {
  color: #E91C23;
  text-decoration: none;
}
.sec_h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 50px;
}
input,
textarea {
  border: none;
  outline: none;
  width: auto;
  font-family: "Livvic", sans-serif;
  color: #313131;
  font-size: 20px;
}
.btn {
  min-height: 40px;
  min-width: 150px;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Livvic", sans-serif;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  margin: 10px 0;
  padding: 10px 20px;
}
.btn.orange {
  background: #585755;
  color: #fff;
}
.btn:hover {
  transform: scale(1.1);
}
.nav_bar {
  height: 225px;
  width: 100%;
  z-index: 99999999;
  position: fixed;
  padding-bottom: 225px;
}
.nav_bar .head {
  height: 50px;
  width: 100%;
  background: #0A347E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.nav_bar .head .contact span {
  margin: 0 10px;
  font-size: 18px;
  color: #fff;
}
.nav_bar .head .social {
  display: flex;
  align-items: center;
  color: #0A347E;
}
.nav_bar .head .social .icon {
  height: 30px;
  width: 30px;
  background: #fff;
  border-radius: 15px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
}
.nav_bar .head .social .icon:hover {
  transform: scale(1.1);
}
.nav_bar .brand {
  height: 100px;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.nav_bar .brand .left img {
  height: 90px;
  width: auto;
}
.nav_bar .brand .right {
  display: flex;
  align-items: center;
}
.nav_bar .brand .right img {
  height: 80px;
}
.nav_bar .menu {
  height: 75px;
  width: 100%;
  background: #fff;
  border-top: 1px solid #d6d6d6;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.nav_bar .menu #check {
  display: none;
}
.nav_bar .menu .checkbtn {
  display: none;
}
.nav_bar .menu ul {
  display: flex;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
.nav_bar .menu ul li {
  margin: 0 10px;
  position: relative;
}
.nav_bar .menu ul li::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0%;
  height: 3px;
  background: #adadaa;
  transition: 0.4s ease-out;
}
.nav_bar .menu ul li:hover::after {
  left: 0;
  width: 100%;
}
.nav_bar .menu ul button {
  display: none;
}
.nav_bar .menu .sec_logo {
  position: absolute;
  right: 20px;
  display: none;
}
.nav_bar .menu .sec_logo img {
  height: 60px;
}
.header {
  width: 100%;
  background: #fff;
  position: relative;
}

.header .slider_item {
  position: relative;
  height: auto;
  display: none;
}
.header .slider_item img {
  width: 100%;
  position: relative;
  left: 100%;
  opacity: 1;
  transform: translateX(-100%);
  animation-name: fade;
  animation-duration: 0.3s;
}
@keyframes fade {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
.header .slider_item .content {
  width: 700px;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  animation-name: height;
  animation-duration: 0.5s;
}
.header .slider_item .content .label {
  border-left: 5px solid #ffa41b;
  padding: 10px 20px;
  margin: 10px 0;
}
.header .slider_item .content .label p {
  font-size: 20px;
  font-weight: 600;
}
.header .slider_item .content h1 {
  font-size: 60px;
}
@keyframes height {
  from {
    left: -100%;
  }
  to {
    left: 50px;
  }
}
.header .slider_item.active {
  display: block;
}
.header .dot_container {
  position: absolute;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.collaboration {
  width: 100%;
  padding-top: 20px;
  margin: 10px 0;
}
.collaboration .logo_container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.collaboration .logo_container .logo_item {
  width: 250px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  border-radius: 15px;
  border: 2px solid #0A347E;
  transition: 0.3s;
}
.collaboration .logo_container .logo_item img {
  width: 80%;
}
.collaboration .logo_container .logo_item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 10px -4px #d6d6d6;
}
.small_slider {
  width: 100%;
  margin: 50px 0;
}
.small_slider .item {
  width: 100%;
  display: flex;
}
.small_slider .item .column {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.small_slider .item .column.img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.small_slider .item .column.img img {
  width: 100%;
}
.small_slider .item .column.content {
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #0A347E, #666cfb);
  color: #fff;
}
.small_slider .item .column.content .items_container {
  padding: 20px;
  margin: 50px 0;
}
.small_slider .item .column.content .items_container .tag_container {
  border-left: 5px solid #eee;
  padding: 10px;
}
.small_slider .item .column.content .items_container .tag_container span {
  font-size: 18px;
  font-weight: 600;
}
.small_slider .item .column.content .items_container h1 {
  font-size: 50px;
  margin: 20px 0;
}
.small_slider .item .column.content .items_container p {
  font-size: 18px;
}
.small_slider .item .column .bg {
  height: 100%;
  width: 100%;
  position: absolute;
  font-size: 50px;
  color: #eee;
}
.small_slider .item .column .bg .trophy {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.small_slider .item .column .bg .book {
  position: absolute;
  top: 10px;
  right: 10px;
}
.small_slider.awards .item .img img {
  position: relative;
  left: -100%;
  animation-name: small_slider_left;
  animation-duration: 2s;
}
@keyframes small_slider_left {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
.small_slider.awards .item .content .items_container {
  overflow: hidden;
}
.small_slider.awards .item .content .items_container .tag_container,
.small_slider.awards .item .content .items_container .item_title,
.small_slider.awards .item .content .items_container .item_para {
  position: relative;
  left: 150%;
  animation-name: small_slider_right1;
  animation-duration: 2s;
}
.small_slider.awards .item .content .items_container .item_title {
  animation-delay: 0.1s;
}
.small_slider.awards .item .content .items_container .item_para {
  animation-delay: 0.2s;
}
@keyframes small_slider_right1 {
  0% {
    left: 50%;
  }
  25% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
.small_slider.facilities .item .img img {
  position: relative;
  left: 100%;
  animation-name: small_slider_leftf;
  animation-duration: 2s;
}
@keyframes small_slider_leftf {
  0% {
    left: 100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
.small_slider.facilities .item .content .items_container {
  overflow: hidden;
}
.small_slider.facilities .item .content .items_container .tag_container,
.small_slider.facilities .item .content .items_container .item_title,
.small_slider.facilities .item .content .items_container .item_para {
  position: relative;
  left: -100%;
  animation-name: small_slider_rightf;
  animation-duration: 2s;
}
.small_slider.facilities .item .content .items_container .item_title {
  animation-delay: 0.1s;
}
.small_slider.facilities .item .content .items_container .item_para {
  animation-delay: 0.2s;
}
@keyframes small_slider_rightf {
  0% {
    left: -100%;
  }
  25% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
.provide {
  padding: 50px;
}
.provide .tiles_container {
  width: 100%;
  display: grid;
  grid-template-columns: 32% 32% 32%;
  justify-content: space-between;
}
.provide .tiles_container .tiles_column {
  height: auto;
  width: auto;
}
.provide .tiles_container .tiles_column .tiles_item {
  width: 100%;
  background: #d6d6d6;
  border-radius: 15px;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px 0;
  color: #fff;
  transition: 0.3s;
}
.provide .tiles_container .tiles_column .tiles_item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 10px -4px #d6d6d6;
}
.provide .tiles_container .tiles_column .tiles_item .icon {
  height: 100px;
  width: 100px;
  background: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.provide .tiles_container .tiles_column .tiles_item .icon img {
  width: 80%;
}
.provide .tiles_container .tiles_column .tiles_item h1 {
  margin: 10px 0;
  font-size: 22px;
  text-align: center;
}
.provide .tiles_container .tiles_column .tiles_item .line_brake {
  height: 2px;
  width: 80%;
  background: #fff;
}
.provide .tiles_container .tiles_column .tiles_item p {
  margin: 10px 0;
}
.provide .tiles_container .tiles_column .tiles_item p ul li {
  color: #fff;
}
.provide .tiles_container .tiles_column .tiles_item.theme {
  background: #0691c9;
}
.provide .tiles_container .tiles_column .tiles_item.pink {
  background: #ff69e7;
}
.provide .tiles_container .tiles_column .tiles_item.orange {
  background:  #10b566;
}
.provide .tiles_container .tiles_column .tiles_item.green {
  background: #ffa41b;
}
.provide .tiles_container .tiles_column .tiles_item.violet {
  background: #03b1a2;
}
.provide .tiles_container .tiles_column .tiles_item.red {
  background: #ff5a6e;
}
.provide .tiles_container .tiles_column .tiles_item.purple {
  background: #c95305; #666cfb;
}
.courses {
  width: 100%;
  background: #0A347E;
  padding: 60px;
  color: #fff;
}
.courses p {
  text-align: left;
  font-size: 20px;
}
.courses .card_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.courses .card_container .card_item {
  width: 45%;
  background: #fff;
  border-radius: 15px;
  color: #000;
  padding: 15px;
}
.courses .card_container .card_item p {
  font-size: 18px;
}
.courses .card_container .card_item img {
  width: 100%;
}
.testim {
  width: 100%;
  padding: 50px 20px;
}
.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
  background: #0A347E;
  border-radius: 15px;
}
.testim .wrap .arrow {
  display: block;
  position: absolute;
  color: #313131;
  cursor: pointer;
  font-size: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  z-index: 22222222;
  background: #fff;
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 25px;
  text-align: center;
  line-height: 50px;
}
.testim .wrap .arrow:before {
  cursor: pointer;
}
.testim .wrap .arrow.left {
  left: 10px;
}
.testim .wrap .arrow.right {
  right: 10px;
}
.testim .wrap .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}
.testim .wrap .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.testim .wrap .dots .dot.active,
.testim .wrap .dots .dot:hover {
  background: #eee;
  border-color: #eee;
}
.testim .wrap .dots .dot.active {
  animation: testim-scale 0.5s ease-in-out forwards;
}
.testim .wrap .cont .testi_item {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}
.testim .wrap .cont .testi_item.inactive {
  opacity: 1;
}
.testim .wrap .cont .testi_item.inactive .img img {
  animation: testim-hide 0.5s ease-in-out forwards;
}
.testim .wrap .cont .testi_item.inactive h2 {
  animation: testim-content-out 0.4s ease-in-out forwards;
}
.testim .wrap .cont .testi_item.inactive p {
  animation: testim-content-out 0.5s ease-in-out forwards;
}
.testim .wrap .cont .testi_item.active {
  position: relative;
  opacity: 1;
}
.testim .wrap .cont .testi_item.active .img img {
  animation: testim-show 0.5s ease-in-out forwards;
}
.testim .wrap .cont .testi_item.active h2 {
  animation: testim-content-in 0.4s ease-in-out forwards;
}
.testim .wrap .cont .testi_item.active p {
  animation: testim-content-in 0.5s ease-in-out forwards;
}
.testim .wrap .cont .testi_item .img img {
  display: block;
  width: 70%;
  height: auto;
  margin: auto;
}
.testim .wrap .cont .testi_item h2 {
  color: #eee;
  font-size: 1em;
  margin: 15px 0;
}
.testim .wrap .cont .testi_item p {
  font-size: 1.15em;
  color: #eee;
  width: 80%;
  margin: auto;
}
@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }
  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }
  70% {
    box-shadow: 0px 0px 10px 5px #eee;
  }
  100% {
    box-shadow: 0px 0px 0px 0px #eee;
  }
}
@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}
.media {
  width: 100%;
  padding: 50px;
}
.media .news_container {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
}
.media .news_container .news_item {
  height: auto;
  display: flex;
  align-items: center;
}
.media .news_container .news_item img {
  width: 100%;
}
.media .vid_container {
  height: auto;
  width: 100%;
}
.faq {
  width: 100%;
  background: #0A347E;
  display: flex;
  padding: 20px 50px;
}
.faq .title {
  width: 30%;
  color: #fff;
}
.faq .title h3 {
  font-size: 25px;
  margin: 10px 0;
  color: #eee;
}
.faq .title h1 {
  font-size: 70px;
  margin: 10px 0;
}
.faq .title p {
  font-size: 20px;
  margin: 10px 0;
}
.faq .ques_container {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq .ques_container .faq_item {
  width: 80%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}
.faq .ques_container .faq_item .faq_ques {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}
.faq .ques_container .faq_item .faq_ques .icon {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  background: #777;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  transition: transform 0.3s ease-in;
}
.faq .ques_container .faq_item .faq_ans {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.faq .ques_container .faq_item.active .faq_ans {
  padding: 10px 30px;
  height: auto;
}
.faq .ques_container .faq_item.active .faq_ques .icon {
  transform: rotate(180deg);
}
footer {
  border-top: 1px solid #d6d6d6;
}
footer .content {
  padding: 0 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 30% auto auto;
  grid-gap: 10px;
  justify-content: space-between;
}
footer .content .item {
  height: auto;
  padding: 10px;
}
footer .content .item h1 {
  font-size: 30px;
  color: #0A347E;
}
footer .content .item p {
  color: #777;
}
footer .content .brand img {
  width: 80%;
}
footer .content .brand .social {
  display: flex;
  align-items: center;
  color: #0A347E;
  margin: 10px 0;
}
footer .content .brand .social .icon {
  height: 30px;
  width: 30px;
  background: #0A347E;
  border-radius: 15px;
  color: #fff;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
}
footer .content .brand .social .icon:hover {
  transform: scale(1.1);
}
footer .content .navigation ul {
  margin-left: 20px;
 
}
footer .content .navigation ul li {
  font-size: 18px;
  color: #777;
  margin-bottom: 10px;
  margin-top: 5px;
}
footer .content .navigation ul li a {
  color: #777;
}
footer .content .contact p {
  margin: 10px 0;
  font-size: 18px;
}
footer .content .contact p i {
  color: #0A347E;
}
footer .copy_rights {
  height: 50px;
  width: 100%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  color: #777;
}
.page_header {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_header img {
  width: 100%;
  opacity: 0.5;
}
.page_header .content {
  position: absolute;
  color: #fff;
  font-size: 35px;
}
.img_slider {
  width: 100%;
}
.img_slider .item {
  width: 100%;
  display: flex;
}
.img_slider .item .column {
  width: 50%;
  overflow: hidden;
}
.img_slider .item .column.img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img_slider .item .column.img .swiper {
  width: 100%;
  height: 100%;
}
.img_slider .item .column.img .swiper .swiper-button-next,
.img_slider .item .column.img .swiper .swiper-button-prev {
  color: #fff;
}
.img_slider .item .column.img .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.img_slider .item .column.img .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img_slider .item .column.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 50px;
}
.img_slider .item .column.content h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #0A347E;
}
.img_slider .item .column.content p {
  font-size: 18px;
  margin: 10px 0;
  text-align: justify;
  color: #777;
}
.img_slider .item .column.content h1 {
  font-size: 35px;
  color: #0A347E;
}
.img_slider .item .column.content ul li {
  color: #777;
  margin: 10px;
}
.content_container {
  width: 100%;
  margin: 10px 0;
  padding: 50px;
  padding-bottom: 0%;
}
.serviceheader
{padding:50px;

}

}
.content_container h3 {
  font-size: 22px;
  margin: 50px 0;
  color: #0A347E;
}
.content_container p {
  font-size: 18px;
  margin: 10px 0;
  text-align: justify;
  color: #777;
}
.content_container h1 {
  font-size: 35px;
  color: #0A347E;
}
.content_container ul li {
  color: #777;
  margin: 10px;
}
.gallery_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 0;
}
.gallery_section .heading {
  width: 50%;
  padding-bottom: 50px;
}
.gallery_section .heading h3 {
  font-size: 3em;
  font-weight: bolder;
  padding-bottom: 10px;
  border-bottom: 3px solid #222;
  color: #313131;
}
.gallery_section .heading h3 span {
  font-weight: 100;
  color: #777;
}
.gallery_section .box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.gallery_section .box .dream {
  display: flex;
  flex-direction: column;
  width: 32.5%;
}
.gallery_section .box .dream img {
  width: 100%;
  padding-bottom: 15px;
  border-radius: 5px;
}
.gallery_section .sec_h {
  color: #0A347E;
  margin: 50px 0;
  font-size: 3em
}
.gallery_section h1 {
  color: #777;
  margin: 50px 0;
}
.gallery_popup {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.631372549);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: scroll;
  display: none;
  z-index: 9999999999;
}
.gallery_popup .img_container {
  padding: 5px;
  width: 50%;
  background: #fff;
  border-radius: 15px;
  overflow: auto;
  max-height: 90%;
  animation-name: open_gall;
  animation-duration: 0.5s;
}
.gallery_popup .img_container img {
  border-radius: 15px;
  width: 100%;
}
@keyframes open_gall {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.gallery_popup .close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  background: #0A347E;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 25px;
}
.contact_sec {
  width: 100%;
  background: #0A347E;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.contact_sec .static_holder {
  height: 200px;
  width: 80%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.contact_sec .static_holder .item {
  height: auto;
  width: 250px;
  background: #fff;
  border-radius: 15px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.contact_sec .static_holder .item .icon {
  height: 50px;
  width: 50px;
  background: #0A347E;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
  color: #fff;
}
.contact_sec .static_holder .item h1 {
  text-align: center;
  font-size: 20px;
}
.contact_sec .static_holder .item p {
  text-align: center;
  font-size: 15px;
}
.contact_sec .form_container {
  height: 800px;
  width: 90%;
  overflow: hidden;
  margin-top: 180px;
  padding: 20px 0;
  display: flex;
}
.contact_sec .form_container .content {
  height: 100%;
  width: 30%;
  background: #1e0a77;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  color: #fff;
}
.contact_sec .form_container .content h1 {
  font-size: 40px;
  text-align: center;
}
.contact_sec .form_container .content p {
  font-size: 22px;
  text-align: center;
}
.contact_sec .form_container .form {
  height: 100%;
  width: 70%;
  background: #fff;
  border-radius: 25px;
  padding: 25px;
}
.contact_sec .form_container .form h1 {
  font-size: 40px;
}
.contact_sec .form_container .form hr {
  margin: 20px 0;
}
.contact_sec .form_container .form .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.contact_sec .form_container .form .row .item {
  height: 100%;
  width: 50%;
  padding: 10px;
}
.contact_sec .form_container .form .row .item .contact_input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  margin: 10px 0;
  padding: 20px 10px;
  font-weight: 600;
  border: 1px solid #0A347E;
}
.contact_sec .form_container .form .row .msg_container {
  width: 100%;
  padding: 10px 0;
  border-radius: 15px;
  overflow: hidden;
}
.contact_sec .form_container .form .row .msg_container .contact_textarea {
  width: 100%;
  border-radius: 15px;
  padding: 10px;
  border: 1px solid #0A347E;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .sec_h1 {
    font-size: 35px;
  }
  .collaboration .logo_container .logo_item {
    padding: 5px;
  }
  .collaboration .logo_container .logo_item img {
    width: 95%;
  }
  .gallery_popup .img_container {
    width: 90%;
  }
  .contact_sec .form_container .content {
    width: 40%;
  }
  .contact_sec .form_container .form {
    width: 60%;
  }
}
@media only screen and (max-width: 930px) {
  .nav_bar .head .contact span {
    font-size: 12px;
  }
  .nav_bar .menu ul li {
    font-size: 12px;
  }
  .courses {
    padding: 20px;
  }
  .courses .card_container .card_item {
    width: 49%;
  }
  .provide {
    padding: 20px;
  }
  .faq .ques_container .faq_item {
    width: 100%;
  }
  .contact_sec .form_container .content h1 {
    font-size: 30px;
  }
  .contact_sec .form_container .form {
    padding: 10px;
  }
  .contact_sec .form_container .form h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .nav_bar {
    height: 150px;
    width: 100%;
    position: relative;
  }
  .nav_bar .head {
    display: none;
  }
  .nav_bar .brand {
    position: fixed;
    top: 0;
  }
  .nav_bar .brand .left img {
    height: 60px;
  }
  .nav_bar .brand .right img {
    height: 60px;
  }
  .nav_bar .menu {
    position: fixed;
    top: 100px;
  }
  .nav_bar .menu .checkbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #313131;
    border-radius: 20px;
    color: #fff;
  }
  .nav_bar .menu ul {
    background: #0A347E;
    position: fixed;
    height: calc(100% - 101px);
    width: 50%;
    top: 101px;
    right: -100%;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
  }
  .nav_bar .menu ul li {
    width: 150px;
    font-size: 20px;
    margin: 10px 0;
  }
  .nav_bar .menu ul li a {
    color: #fff;
  }
  .nav_bar .menu #check:checked ~ ul {
    right: 0;
  }
  .media {
    padding: 20px;
  }
  .media .news_container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .media .news_container .news_item {
    width: 70%;
  }
  footer .content {
    display: flex;
    flex-direction: column;
  }
  footer .content .item {
    width: 100%;
  }
  footer .content .brand img {
    width: 50%;
  }
  .small_slider.awards .item {
    flex-direction: column;
  }
  .small_slider.facilities .item {
    flex-direction: column-reverse;
  }
  .small_slider .item .column {
    width: 100%;
  }
  .provide .tiles_container {
    display: flex;
    flex-direction: column;
  }
  .faq {
    flex-direction: column;
  }
  .faq .title {
    margin-bottom: 20px;
    width: 100%;
  }
  .faq .ques_container {
    width: 100%;
  }
  .header .slider_item .content {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
  }
  .header .slider_item .content h1 {
    font-size: 40px;
  }
  .img_slider.right .item {
    flex-direction: column-reverse;
  }
  .img_slider.left .item {
    flex-direction: column;
  }
  .img_slider .item .column {
    width: 100%;
  }
  .gallery_section .box {
    flex-direction: column;
  }
  .gallery_section .box .dream {
    width: 100%;
  }
  .contact_sec .static_holder {
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }
  .contact_sec .static_holder .item {
    height: 200px;
    width: 100%;
    margin: 10px 0;
  }
  .contact_sec .form_container {
    flex-direction: column;
    height: auto;
    margin-top: 640px;
  }
  .contact_sec .form_container .content {
    width: 100%;
  }
  .contact_sec .form_container .form {
    width: 100%;
  }
}
@media only screen and (max-width: 568px) {
  .sec_h1 {
    font-size: 25px;
  }
  .nav_bar .brand .right {
    display: none;
  }
  .nav_bar .menu .sec_logo {
    display: block;
  }
  .nav_bar .menu ul li {
    font-size: 15px;
    width: 120px;
  }
  .nav_bar .menu ul button {
    display: block;
  }
  .collaboration .logo_container {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
    padding: 10px;
  }
  .collaboration .logo_container .logo_item {
    padding: 5px;
    width: auto;
  }
  .collaboration .logo_container .logo_item img {
    width: 80%;
  }
  .courses {
    padding: 10px;
  }
  .courses .card_container {
    flex-direction: column;
  }
  .courses .card_container .card_item {
    width: 100%;
    margin: 10px 0;
  }
  .media .news_container .news_item {
    width: 100%;
  }
  .faq {
    flex-direction: column;
    padding: 10px;
  }
  .header .slider_item img {
    width: 100%;
  }
  .header .slider_item .content {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
  }
  .header .slider_item .content h1 {
    font-size: 30px;
  }
  .page_header .content {
    font-size: 20px;
  }
  .contact_sec .form_container .form .row {
    flex-direction: column;
  }
  .contact_sec .form_container .form .row .item {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 320px) {
  .sec_h1 {
    font-size: 15px;
  }
}
.white {
  color: white;
}
.blue {
  color: #0A347E;
}
.freespace {
  height: 225px;
}
.fadedwhite {
  color: #777;
}
.success {
  font-size: 34px;
  text-align: center;
  background-color: #0A347E;
  border: #085e9c 5px solid; 
  border-radius: 340px;
  box-shadow: black 5px 5px;
  font-weight: 600;
  padding: 2%;
}
@media (max-width: 768px) {
  .freespace {
    height: 0;
  }
  .btn {
    width: 100%;
  }
  .success {
    font-size: 17px;
  }
}
