* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

dl, ol, ul, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* link primary color */
a {
  color: #010e76;
}

body {
  font-family: 'Poppins', sans-serif;
  position: relative;
  height: 100%;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: initial;
  width: 100%;
  height: 110px;
  background-color: white;
}

.header .topheader {
  width: 100%;
  height: 60%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .topheader .logo .techvantoLogo {
  width: 170px;
  height: 60px;
}

.header .topheader .headersocialIconsAndRegisterBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}

.header .topheader .headersocialIconsAndRegisterBtn .registerNowBtn {
  border: 2px solid #010e76;
  border-radius: 18px;
  font-size: 18px;
  color: #010e76;
  text-decoration: none;
  padding: 0px 24px;
}

.header .topheader .headersocialIconsAndRegisterBtn .registerNowBtn:hover {
  background-color: #010e76;
  color: white;
  -webkit-transition: .3s;
  transition: .3s;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a {
  text-decoration: none;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a .fa {
  border-radius: 50%;
  padding: 8px 8px;
  color: white;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a .fa:hover {
  -webkit-box-shadow: 0px 0px 20px #010e76;
          box-shadow: 0px 0px 20px #010e76;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a .fa:nth-last-child(2) {
  padding: 0px 1px;
}

.header .navBar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 100px;
  left: 0px;
  background-color: #010e76;
  width: 100%;
  height: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navBar .navLinks {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 60%;
}

.header .navBar .navLinks li {
  position: relative;
  border-right: 1px solid white;
}

.header .navBar .navLinks li a {
  padding: 4px 20px;
  display: block;
  color: white;
  text-decoration: none;
}

.header .navBar .navLinks li ul {
  position: absolute;
  border-bottom-left-radius: 10px;
  top: 30px;
  left: -20px;
  background: rgba(17, 30, 108, 0.95);
  display: none;
}

.header .navBar .navLinks li ul li {
  height: auto;
  border: none;
  display: block;
  width: 270px;
  padding: 5px 0px;
}

.header .navBar .navLinks li:hover ul {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  display: block;
}

.header .navBar .navLinks li:hover ul li:hover {
  background: #FA6400;
}

.header .navBar .navLinks .subMenu::before {
  content: '\f0d7';
  position: absolute;
  font-family: fontAwesome;
  color: white;
}

.header .navBar .navLinks .lastChild {
  border: none;
}

.mobileHeader {
  display: none;
}

.mobileStudentBenefits {
  display: none;
}

@media screen and (max-width: 1024px) {
  .headersocialIconsAndRegisterBtn {
    width: 70% !important;
  }
  .navLinks {
    width: 75% !important;
  }
}

@media screen and (max-width: 791px) {
  .headersocialIconsAndRegisterBtn {
    width: 650% !important;
  }
  .navLinks {
    width: 90% !important;
  }
}

.mobileHeader {
  width: 100%;
  height: auto;
  color: white;
}

.mobileHeader .mobileTopHeader {
  width: 100%;
  height: 40px;
  background-color: #010e76;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobileHeader .mobileTopHeader a {
  border: 2px solid;
  padding: 0px 6px;
  border-radius: 16px;
  text-decoration: none;
}

.mobileHeader .mobileTopHeader a:hover {
  background: white;
  color: #010e76 !important;
}

.mobileHeader .socialIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
}

.mobileHeader .socialIcons .socialLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobileHeader .socialIcons .socialLinks a {
  text-decoration: none;
}

.mobileHeader .socialIcons .socialLinks a .fa {
  background-color: red;
  border-radius: 50%;
  padding: 8px 8px;
  color: white;
}

.mobileHeader .socialIcons .socialLinks a .fa:nth-last-child(2) {
  padding: 0px 1px;
}

.mobileHeader .socialIcons .contactus {
  color: #010e76;
  text-align: center;
}

.mobileHeader .socialIcons hr {
  height: 1px;
  background-color: #010e76;
  width: 100%;
}

.mobileHeader .socialIcons .mobileNavBar {
  position: relative;
  z-index: 2;
  right: 0px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}

.mobileHeader .socialIcons .mobileNavBar .techvantoMobileLogo {
  width: 130px;
  height: 40px;
}

.mobileHeader .socialIcons .mobileNavBar .menu-toggle .fa {
  font-size: 26px;
  color: #010e76;
  cursor: pointer;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav {
  position: absolute;
  width: 100%;
  height: auto;
  background: #010e76;
  top: 50px;
  left: -150%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li {
  list-style: none;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li a {
  height: 50px;
  padding: 0px 20px;
  color: white;
  text-decoration: none;
  display: block;
  line-height: 50px;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li a:hover {
  background: white;
  color: #010e76 !important;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li .subMenu::before {
  content: '\f0d7';
  position: absolute;
  font-family: fontAwesome;
  color: white;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav .mobileActive {
  display: block;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav .mobileHide {
  display: none;
}

@media screen and (max-width: 660px) {
  .header {
    display: none;
  }
  .mobileHeader {
    display: block;
  }
}

.ourCoursesContainer {
  width: 100%;
  height: auto;
  padding: 40px;
  background-color: #f1f4fa;
}

.ourCoursesContainer h1 {
  color: #010e76;
}

.ourCoursesContainer .ourCourseCardLink {
  text-decoration: none;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard {
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px;
  border: 1px solid #010e76;
  background-color: white;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard .ourCourseCardImage img {
  width: 100%;
  height: auto;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard .ourCourseCardContent {
  width: 100%;
  height: auto;
  padding: 20px;
  overflow: hidden;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard .ourCourseCardContent .ourCourseCardTitle {
  color: #010e76;
  font-weight: 500;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard .ourCourseCardContent .ourCourseCardDescription {
  color: black;
  text-align: justify !important;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard:hover {
  -webkit-box-shadow: 0px 0px 19px 1px #010f76;
          box-shadow: 0px 0px 19px 1px #010f76;
  -webkit-transition: ease .5s;
  transition: ease .5s;
  background-color: #010e76;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard:hover .ourCourseCardTitle {
  color: white;
}

.ourCoursesContainer .ourCourseCardLink .ourCourseCard:hover .ourCourseCardDescription {
  color: white;
}

.ourCoursesContainer .ourCoursesSeeMoreBtn {
  margin-top: 50px !important;
  text-decoration: none;
  margin: auto;
  background: transparent;
  color: #010e76;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid #010e76;
  padding: 5px 29px;
}

.ourCoursesContainer .ourCoursesSeeMoreBtn:hover {
  background-color: #010e76;
  color: white;
  -webkit-box-shadow: 0px 0px 24px -2px #010f76;
          box-shadow: 0px 0px 24px -2px #010f76;
}

/*courses desgining started*/
.coursesHeaderDiv {
  position: relative;
  background-color: #FA6400;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  padding-top: 50px;
}

.coursesHeaderDiv h1, .coursesHeaderDiv p {
  color: white;
}

.separator-line-horrizontal {
  width: 60%;
  height: 2px;
  background-color: white;
}

/* Courses Style */
.WhatYouLearn {
  background-color: white;
  width: 100%;
}

.what-you-get {
  width: 100%;
  max-width: 1200px;
  /* margin-left:100px; */
  /* margin-top:50px; */
  background-color: #f1f4fa;
  border: 5px solid #dedfe0;
  padding: 10px 15px;
}

.js-simple-collapse--what-you-get {
  max-height: 301px;
}

.js-simple-collapse {
  overflow: hidden;
  position: relative;
}

.what-you-get__content {
  margin-bottom: 5px;
  /*float: right;*/
}

.what-you-get__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  /*float: right;*/
}

.what-you-get__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.what-you-get__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  width: 100%;
}

.what-you-get__items ul, ol {
  margin-top: 0;
  margin-bottom: 10.5px;
}

.what-you-get__items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.what-you-get__item--columns {
  width: 45%;
}

.what-you-get__icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #68B513;
  font-size: 16px;
  margin-right: 15px;
  margin-top: 2px;
}

.udi {
  vertical-align: -8%;
}

.udi {
  font-family: udemyicons !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.what-you-get__text {
  font-size: 15px;
}

.courseDescriptionDiv {
  /* margin-top:110px; */
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f1f4fa;
}

#regionDivion p {
  font-size: 30px;
}

.courseDescriptionDiv h2 {
  text-align: center;
}

.courseDescriptionDiv p {
  text-align: center;
}

#regionDivion p {
  text-align: center;
}

.coursePreRequistiDiv {
  width: 100%;
  /*margin:3px 0px;*/
  padding: 80px 27px;
  height: auto;
  /*padding-bottom:100px;*/
  background-color: #f1f4fa;
}

.coursePreRequistiDiv h8 {
  color: #010e76;
  font-size: 22px;
  font-weight: 500;
}

.coursePreRequistiDiv li {
  color: black;
  list-style: none;
}

.whoThisCourseIsFor {
  position: relative;
  /*margin-top:2px;*/
  background: white;
  /*background-image: linear-gradient(to right, #6976dd, #3240b8,#303eb4, #2938b6, #2334b6, #152284, #0b1779,#010e76);*/
  /*background: rgb(216,245,63);*/
  /*background: linear-gradient(90deg, rgba(216,245,63,1) 0%, rgba(98,133,48,1) 100%, rgba(9,9,121,1) 100%, rgba(0,212,255,1) 100%);*/
  /*background-color: #f1f4fa;*/
  /*border-top: 1px solid #ddd;*/
  /*background-color: pink;*/
  padding-top: 40px;
  padding-bottom: 80px;
  margin-bottom: 0px;
}

.whoForCourse {
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 20px;
  background-color: #f1f4fa;
}

.whoThisCourseIsFor h2 {
  text-align: center;
}

/*course content style*/
.wraper-45days {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px;
  height: auto;
  width: auto;
  padding: 25px 0px;
}

.wraper-30days {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
  height: auto;
  width: auto;
  padding: 25px 20px;
}

.title {
  font-weight: bold;
  font-size: 17px;
  margin: 5px 0px;
  border-radius: 24px;
}

/* .title:hover{
   border: 1px solid rgb(1, 14, 118);
   font-size: 17px;
   padding: 10px;
   color: white;
   background: rgb(1, 14, 118);
   cursor: pointer;
} */
.courseContenttitle {
  border: 1px solid #010e76;
  font-weight: bold;
  font-size: 17px;
  padding: 10px;
  margin: 5px 0px;
  border-radius: 24px;
}

.courseContenttitle:hover {
  border: 1px solid #010e76;
  font-size: 17px;
  padding: 10px;
  color: white;
  background: #010e76;
  cursor: pointer;
}

.showItems li {
  margin: 10px 0px;
  /*list-style-type: none;  !important*/
  /*border: 1px solid black;*/
  /*border: 1px solid rgb(1, 14, 118);*/
  padding: 5px;
  font-size: 15px;
  /*border-radius: 20px;*/
  margin-left: 40px;
}

.showItems li:hover {
  margin: 10px 0px;
  padding: 5px;
  margin-left: 40px;
}

.hideItems li {
  margin: 10px 0px;
  /*list-style-type: none;*/
  /*border: 1px solid #ddd;*/
  padding: 10px;
  display: none;
  /*border-radius: 20px;*/
}

.coursebtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.coursebtn p {
  margin: 0px 25px;
}

.myButton {
  background-color: #000000;
  border-radius: 28px;
  border: 1px solid #18ab29;
  cursor: pointer;
  color: red;
  font-family: Arial;
  font-size: 17px;
  padding: 15px 50px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #2f6627;
}

.myButton:hover {
  background-color: #c7d7d7;
}

.myButton p:focus {
  background-color: pink;
}

/* Right course card style */
.right-courseCard {
  padding: 6px;
  width: 300px;
}

.card-body {
  padding: 16px;
}

.card-text:last-child {
  text-align: justify;
  font-size: smaller;
}

/* Faq part */
.accordion {
  background-color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #010e76;
  text-align: left;
  outline: none;
  font-size: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  outline: none;
  display: block;
  color: #010e76;
}

.active, .accordion:hover {
  background-color: none;
}

.accordion:after {
  content: '\002B';
  color: #010e76;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 30px;
}

.active:after {
  content: "\2212";
}

.accordianPanel {
  margin-top: 5px;
  padding: 0px 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

/* Footer Style */
a {
  color: #010e76;
}

.footerSection {
  width: 100%;
  height: 750px;
  background-image: url(../images/WebFooter-Laptop-Image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.footerSection .queryform {
  z-index: 1;
  position: absolute;
  top: 25px;
  right: 100px;
  border-radius: 20px;
  width: 250px;
  height: auto;
  padding: 20px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, white), color-stop(50%, #010e76));
  background: linear-gradient(0deg, white 50%, #010e76 50%);
  -webkit-box-shadow: 0px 0px 16px 0px #010e76;
  box-shadow: 0px 0px 16px 0px #010e76;
  /* reset input */
}

.footerSection .queryform .queryFormTitle {
  color: white;
  font-size: 18px;
  font-weight: 800;
}

.footerSection .queryform #query {
  resize: none;
  border: 1px solid #010e76;
  color: black;
}

.footerSection .queryform #query:focus {
  border: 2px solid #010e76;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.footerSection .queryform .querybtn {
  float: right;
  color: white;
  background-color: #010e76;
}

.footerSection .queryform .form__group {
  position: relative;
  padding: 15px 0 0;
  width: 100%;
}

.footerSection .queryform .form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #fff;
  outline: 0;
  font-size: 13px;
  color: white;
  padding: 7px 0;
  background: transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.footerSection .queryform .form__field::-webkit-input-placeholder {
  color: transparent;
}

.footerSection .queryform .form__field:-ms-input-placeholder {
  color: transparent;
}

.footerSection .queryform .form__field::-ms-input-placeholder {
  color: transparent;
}

.footerSection .queryform .form__field::placeholder {
  color: transparent;
}

.footerSection .queryform .form__field:placeholder-shown ~ .form__label {
  font-size: 1rem;
  cursor: text;
  top: 20px;
}

.footerSection .queryform .form__label {
  position: absolute;
  top: 0;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 1rem;
  color: #fff;
}

.footerSection .queryform .form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  -o-border-image: linear-gradient(to right, white, white);
  border-image: -webkit-gradient(linear, left top, right top, from(white), to(white));
  border-image: linear-gradient(to right, white, white);
  border-image-slice: 1;
}

.footerSection .queryform .form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.footerSection .queryform .form__field:required, .footerSection .queryform .form__field:invalid {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.footerSection .queryform .trainingMode {
  margin-top: 20px;
}

.footerSection .queryform .trainingMode label, .footerSection .queryform .trainingMode p {
  font-size: 1rem;
  margin: 0px;
}

.footerSection #footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #010e76;
  width: 100%;
  height: auto;
  padding: 20px 0px 0px 0px;
  overflow: hidden;
}

.footerSection #footer .footerAboutTechvanto {
  margin-top: 25px;
}

.footerSection #footer h5 {
  margin-top: 25px;
}

.footerSection #footer .social {
  margin-top: 10px;
}

.footerSection #footer .social a {
  text-decoration: none;
}

.footerSection #footer .social a .circle {
  color: #010e76;
  display: inline-block;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 2px #888;
  box-shadow: 0px 0px 2px #888;
  padding: 0.5em 0.5em;
  background-color: white;
}

.footerSection #footer .social a .circle:hover {
  background-color: #010e76;
  color: whitesmoke;
}

.footerSection #footer .menu p {
  font-size: 20px;
}

.footerSection #footer .menu a {
  text-decoration: none;
  color: white;
  margin-top: 25px;
}

.footerSection #footer .services {
  height: auto;
}

.footerSection #footer .services a {
  text-decoration: none;
  color: white;
  margin-top: 25px;
}

.footerSection #footer .services p {
  font-size: 20px;
}

.footerSection #footer .contact a {
  text-decoration: none;
  color: white;
  margin-top: 10px;
}

.footerSection #footer .secondFooter {
  width: 100%;
  height: 70px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footerSection #footer .secondFooter p {
  font-weight: 600;
  text-align: center;
  margin: auto 0px;
}

.footerSection .fBottom {
  width: 100%;
  font-size: 12px;
  height: 50px;
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footerSection .fBottom a {
  text-decoration: none;
  color: #010e76;
}

.footerSection .fBottom a p {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .footerSection {
    width: 100%;
    height: 1030px;
    background-image: url(../images/WebFooter-Laptop-Image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .footerSection form {
    position: absolute;
    top: 0;
    left: 21%;
    width: 600px;
    height: auto;
  }
  .footerSection #footer .social a {
    text-decoration: none;
  }
  .footerSection #footer .social a .circle {
    color: #010e76;
    display: inline-block;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 2px #888;
    box-shadow: 0px 0px 2px #888;
    padding: 0.5em 0.5em;
    background-color: white;
  }
  .footerSection #footer .social a .circle:hover {
    background-color: #010e76;
    color: whitesmoke;
  }
  .footerSection #footer .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footerSection #footer .services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footerSection #footer .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 991px) {
  .footerSection #footer .c1 .logo img {
    width: 160px !important;
    height: 55px !important;
  }
  .footerSection #footer .c1 p {
    font-size: 15px;
  }
  .footerSection #footer .c1 .social a i {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .footerSection {
    width: 100%;
    height: 1550px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/WebFooter-Mobile-footer-image.png);
    position: relative;
  }
  .footerSection form {
    width: 250px;
    height: auto;
    top: 3%;
    left: 19%;
  }
  .footerSection #footer .c1 {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footerSection #footer .c1 p {
    text-align: center;
    margin-top: 7px;
  }
  .footerSection #footer .menu {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footerSection #footer .services {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footerSection #footer .contact {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
/*# sourceMappingURL=common.css.map */