*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: openSans;
  src: url(../static/fonts/open-sans/OpenSans-Regular.ttf);
}

@font-face {
  font-family: openSansEBold;
  src: url(../static/fonts/open-sans/OpenSans-ExtraBold.ttf);
}

@font-face {
  font-family: openSansBold;
  src: url(../static/fonts/open-sans/OpenSans-Bold.ttf);
}

:root {
  --themeBlue: #3e4394;
  --themeOrange: #eda206;
  --themelightBlue: #f0f3fd;
  --themeDGray: #676767;
  --TextGray: #707070;
  --textBlue: #21b4e4;
  --pinkish: #ef579e;
  --lighBlue: #f0f3fd;
}

*:focus {
  outline: -webkit-focus-ring-color none;
  outline: none;
}

a:visited,
a:focus,
a:active,
a:hover {
  outline: none !important;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: inherit;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--pinkish);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--themeBlue);
}

/*=====*/
::-webkit-input-placeholder {
  opacity: 1;
}

:-moz-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

/*=====*/
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0.5;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.5;
}

::selection {
  background: var(--pinkish);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--themeRed);
  color: #000;
  text-shadow: none;
}

input:focus,
select:focus {
  outline: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill:hover,
select:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  box-shadow: 0 0 0px 1000px white inset;
  background-color: #fff !important;
}

.form-control {
  background: #f0f3fd;
  border: none;
  outline: none;
  border-radius: 4px;
}

.form-control:focus {
  box-shadow: none;
  border: none;
  outline: none;
  background: #ebebeb;
}

button:focus {
  outline: none;
  box-shadow: none;
}

/*========*/
img {
  max-width: 100%;
  height: auto;
}

a,
a *,
a:before,
a:after,
.btn,
.btn * {
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border-radius: 6px;
  display: inline-block;
}

a {
  text-decoration: none;
  outline: none;
  color: #000;
  border-radius: 6px;
}

a:focus,
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

label {
  margin-bottom: 0;
  line-height: 36px;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

/*======Changeable Global=========*/
body {
  font-size: 16px;
  font-weight: 500;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  color: #000;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  font-family: openSansEBold;
}

.h1 {
  font-size: 36px;
  line-height: 48px;
  font-family: openSansEBold;
}

h2 {
  font-size: 32px;
  line-height: 30px;
  font-family: openSansEBold;
}

.h2 {
  /* font-size: 30px;
  line-height: 30px;
  font-family: openSansEBold; */
}

h3 {
  font-size: 30px;
  line-height: 36px;
  font-family: openSansEBold;
}

.h3 {
  font-size: 28px;
  line-height: 30px;
  font-family: openSansBold;
}

h4 {
  font-size: 24px;
  line-height: 48px;
}

.h4 {
  font-size: 22px;
  line-height: 24px;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 24px;
}

h6 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
}

.h6 {
  font-size: 16px;
}

.h7 {
  font-size: 15px;
  line-height: 36px;
  font-weight: 400;
}

.h8 {
  font-size: 14px;
  line-height: 26px;
  font-weight: normal;
}

/*=============*/
p {
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 10px;
  color: rgb(0 0 0 / 68%);
}

b,
strong {
  font-weight: 700;
  color: #000;
  font-family: sans-serif;
}

button:focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}

button {
  border-radius: 6px;
  font-weight: 600;
  border: none;
  outline: none;
}

button:hover {
  opacity: 0.8;
}

#wrapper {
  font-family: openSans;
  overflow: hidden;
}

.themeOrange {
  color: var(--themeOrange);
}

.themeBlue {
  color: var(--themeBlue);
}

.themeBlueTwo {
  color: var(--themeTextBlue);
}

.textBlue {
  color: #21b4e4;
}

input [type="number"] {
  -webkit-appearance: none;
}

::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* ==================== signUp Page ===================== */
.signUpMain {
  background-image: url(../static/images/newImages/Signup.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  min-height: 100vh;
  width: 100%;
  padding: 91px 255px 78px 255px;
}

.signUpBox {
  background: #fff;
  border-radius: 10px;
  padding: 37px 54px;
}

.signUpHeader {
  text-align: center;
  margin-bottom: 27.9px;
}

.signUpHeader h3 {
  color: var(--textBlue);
}

.signUpHeader img {
  margin-bottom: 40.9px;
}

.signUpForm .form-group {
  margin-bottom: 27.9px;
}

.signUpForm label {
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
  color: rgb(0 0 0 / 68%);
  margin-bottom: 7.9px;
}

.signUpForm .form-control {
  height: 49px;
}

.signUpBtn {
  background: var(--pinkish);
  color: #fff;
  width: 223px;
  height: 52px;
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  border-radius: 10px;
}

.signUpLink {
  background: var(--pinkish);
  color: #fff;
  width: 223px;
  height: 52px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 10px;
  line-height: 50px;
  text-align: center;
}

.signUpLink:hover {
  color: var(--pinkish);
  border: 2px solid var(--pinkish);
  background: transparent;
  opacity: 1;
}

.signUpBtn:hover {
  color: var(--pinkish);
  border: 2px solid var(--pinkish);
  background: transparent;
  opacity: 1;
}

.btnSec {
  text-align: center;
}

/*   =================  HomePage ================ */

/* header */
.topBar {
  min-height: 60px;
  max-height: 60px;
  background: var(--themeBlue);
  padding: 21px 0px 21px 0px;
}

.topBarCont a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin: 0 12px;
}

header {
  height: 93px;
  background: #fff;
  /* padding: 0 200px 0 186px; */
  padding: 23px 20px 20px 80px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navMenu a {
  margin-left: 23px;
  color: #000;
  letter-spacing: 0.2px;
  font-size: 15px;
}

.navMenu {
  display: flex;
}

.navMenu a:hover {
  color: var(--themeBlue);
  font-weight: 600;

  opacity: 1;
}

.navItems {
  align-items: center;
  display: flex;
}

a.active {
  color: var(--themeBlue);
  font-weight: bold;
  display: inline-block;
  line-height: 28px;
}

a.active::after {
  content: "";
  background: var(--themeBlue);
  height: 2px;
  width: 30px;
  display: block;
  margin: 0 auto;
}

a.active:hover {
}

.logInBtn {
  padding: 5px 6px;
    height: 31px;
    background: var(--pinkish);
    color: #fff !important;
    text-align: center;
    line-height: 22px;
}

.logInBtn:hover {
  background: transparent;
  color: var(--pinkish) !important;
  border: 2px dotted var(--pinkish);
  line-height: 16px;
}

/*  home page first sec  */
.firstMain {
  background-image: url(../static/images/newImages/cover_Pic.jpg);
  /* background-image: url(../static/images/newImages/homePage.png); */
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 147px 224px;
  text-align: center;
}

.fistMainH1 {
  color: #fff;
  margin-bottom: 12px;
}

.firstMainP {
  color: #fff;
  margin-bottom: 39px;
  font-weight: 500;
}

/* contest sec  */

.ceoMsgMain {
    background: var(--themelightBlue);
    padding: 10.7px 135px 70px 180px;
    position: relative;
}

.ceoMsgSec {
  display: flex;
}

.ceoMsgSecLeft,
.ceoMsgSecRight {
  width: 50%;
}

.ceoMsgSecRight {
  align-self: center;
  padding-top: 100px;
}

.ceoMsgSecLeft {
  padding-top: 85px;
}

.ceoMsgSecLeft h4 {
  color: var(--themeBlue);
  line-height: 32px;
}

.ceoMsgSecLeft h2 {
  margin-bottom: 34px;
  font-size: 29px;
}

.ceoMsgSecLeft img {
  margin-bottom: 18.4px;
}

.ceoMsgSecLeft p {
  /* padding-right: 64px; */
  color: rgb(0 0 0 / 85%);
  line-height: 30px;
}
.ceoMsgSecLeft h6 {
  font-weight: 700;
}
.ceoSech6 {
  font-size: 16px;
  margin: 10px 0px;
}
.ceoMsgSecLeft ul {
  margin: 10px 0px;
  padding-left: 35px;
}

.ceoMsgSecLeft ol {
  margin: 10px 0px;
  padding-left: 35px;
}

.awardTextH5 {
  font-weight: bolder !important;
  margin: 10px 0px;
  font-family: openSansEBold;
}

.slick-prev:before {
  content: "";
  /*background-image: url(../static/images/slick-prev.png);*/
  background-repeat: no-repeat;
  display: block;
  height: 26px;
  width: 26px;
}

.slick-next:before {
  content: "";
  background-image: url(../static/images/newImages/slick-next.png);
  background-repeat: no-repeat;
  display: block;
  width: 26px;
  height: 26px;
}

/* your solution sec */
.SolutionSec {
  background-image: url(../static/images/newImages/whyChooseBg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-color: var(--themelightBlue);
  /* height: 832px; */
  padding: 252px 200px 100px;
  text-align: center;
  position: relative;
}

.SolutionSec h3 {
  color: #fff;
}

.solContMain {
  margin: 63px 0px;
  display: flex;
  justify-content: space-between;
}

.solBox {
  background: #fff;
  /* padding: 41px 30px 42.7px; */
  padding: 41px 5px 42.7px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 16%);
  width: 31.056%;
  position: relative;
  min-height: 231px;
}

.solBox img {
  max-width: 78.68px;
  margin-bottom: 40px;
  min-width: 78px;
  max-height: 70px;
  height: 70px;
}

.solBox h6 {
  padding: 0 30px;
}

.comLearningSec {
  background: #f5f5f5;
  padding: 164px 207px;
  text-align: center;
}

.comLearningSec .h3 {
  margin-bottom: 17px;
}

.comLearningSec p {
  margin-bottom: 70px;
}

.newsLetterSec {
  background: var(--themeOrange);
  padding: 28px 164px 26.2px 205px;
  display: flex;
  justify-content: space-between;
}

.nlsLeft {
  width: 35%;
}

.nlsRight {
  width: 53.461%;
  padding-top: 72px;
}

.nlsRight h1 {
  color: #fff;
  font-size: 35px;
  font-weight: bold;
}

.nlsRight p {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 27px;
}

.subInputMain {
  position: relative;
}

.subInputMain .form-control {
  border-radius: 12px;
  height: 65px;
  background-color: #fff;
  padding-left: 35px;
}

.subscrBtn {
  position: absolute;
  top: 17%;
  right: 2%;
  width: 109px;
  height: 43px;
  border-radius: 10px;
  background: var(--themeBlue);
  text-align: center;
  line-height: 43px;
  color: #fff !important;
}

a.subscrBtn:hover {
  background: var(--pinkish);
}

.testimonialSec {
  background: #f5f5f5;
  padding: 170px 0px 107px 200px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.dottedBg {
  position: absolute;
  left: 1px;
  top: 62.8px;
  width: 100px;
}

.testiLeft {
  width: 24.533%;
  letter-spacing: 0.2px;
  position: relative;
}

.testiLeft h3 {
  line-height: 34px;
  margin-bottom: 16px;
}

.testiLeft p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 32px;
}

.testislider {
  width: 75.044% !important;
  margin-right: -45px;
}

.tSliderBox {
  padding: 0 0.4%;
}

.tSliderSubBox {
  background: #fff;
  border-radius: 10px;
  padding: 21px 15px 30px;
  /* box-shadow: 0 0 5px rgb(0 0 0 / 16%); */
  box-shadow: -3px 1px 12px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -3px 1px 12px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -3px 1px 12px 4px rgba(0, 0, 0, 0.1);

  text-align: center;
  margin: 10px 0px;
  min-height: 340px;
  position: relative;
}

.tSliderBox img {
  display: inline-block !important;
  width: 79px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 7.8px;
}

.tSliderBox p {
  font-size: 15px;
  line-height: 21px;
  color: rgb(0 0 0 / 68%);
  margin-bottom: 16px;
  word-break: break-all;
}

.tSliderBox span {
  font-size: 14px;
  line-height: 20px;
  color: var(--pinkish);
  display: block;
  position: absolute;
  bottom: 10px;
  padding: 0 5px 0 2px;
}

.testislider .slick-prev {
  left: 17% !important;
  top: 70%;
}

.testislider .slick-prev::before {
  content: "";
  background-image: url(../static/images/newImages/slickPrev.png);
}

.testislider .slick-next {
  left: 20% !important;
  top: 70%;
}

.slick-prev,
.slick-next {
  width: 26px;
  height: 26px;
}

.responsiveTwo {
  position: static;
}
.responsive .rbBoxCont{
  /* border: 2px solid rgb(0 0 0 / 15%) !important; */
}
.sliderImgMain img {
    width: 100%;
    height: 200px;
}
.homeTopSlider .sliderImgMain img{
  height: auto;
}

/* recent blog */
.recentBlogMain {
  /*padding: 164px 96px 170px 200px;*/
  padding: 50px 60px;
}

.recentBlogMain .h3 {
  text-align: center;
  margin-bottom: 70px;
}

.rbBox {
  /* width: 30.52%; */
  padding: 0 15px;
  position: relative;
}

.rbTag {
  position: absolute;
  top: 17px;
}

.rbBoxCont {
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 21px 22px 25px 23px;
  /* box-shadow: 0 0 7px rgb(0 0 0 / 15%); */
  border: 2px solid rgb(0 0 0 / 15%);
  margin-bottom: 10px;
  border-top: none !important;
  box-shadow: -1px 9px 6px -5px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 9px 6px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 9px 6px -5px rgba(0, 0, 0, 0.75);
  position: relative;
  min-height: 375px;
}

.rbBoxContHead {
  display: flex;
  margin-bottom: 16px;
}

.rbBoxContHead .h8 {
  display: flex;
  align-items: baseline;
  gap: 2%;
  margin-right: 26.4px;
  width: 120px;
}

.rbBoxContHead img {
  margin-right: 9.8px;
}

.rbbcCont .h6 {
  font-family: openSansBold;
  margin-bottom: 8px;
}

.rbbcCont p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 16px;
}

.rbbcCont .signUpLink {
  width: 131px;
  height: 36px;
  line-height: 36px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  position: absolute;
  bottom: 15px;
  display: block;
}

.rightArrow {
  margin-left: 10px;
}

.recentBlogMain .slick-next:before {
  background-image: url(../static/images/newImages/blogSlierNext.png);
  background-repeat: no-repeat;
  display: block;
  width: 34px;
  height: 34px;
}

.recentBlogMain .slick-prev {
  left: 50%;
  bottom: -10% !important;
  top: auto !important;
  transform: translate(-120%, -50%);
}

.recentBlogMain .slick-next {
  right: 45%;
  bottom: -10% !important;
  top: auto;
  transform: translate(0%, -50%);
}

.recentBlogMain .slick-prev:before {
  background-image: url(../static/images/newImages/blogSlierBefore.png);
  background-repeat: no-repeat;
  display: block;
  width: 34px;
  height: 34px;
}

.recentBlogMain .slick-prev,
.slick-next {
  width: 34px;
  height: 34px;
}
.sliderImgMain {
  width: 100%;
  /* height: 170px; */
  height: auto;
}
.topSliderDateRow{

}
.topSliderDateRow h4{
  color: #0a53be;
  font-size: 16px;
  border-bottom:1px solid  #0a53be;
    line-height: 30px;
  margin-bottom:5px;
}
.topSliderDateRow h5{
  font-weight: bold;
  font-size: 14px;
}
.homeTopSlider .rbBoxCont{
  min-height: 200px;
}
.recentBlogMain .homeTopSlider .slick-prev{
  bottom: -58px !important;
}
.homeTopSlider .rbBoxCont .titleText{
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.recentBlogMain .homeTopSlider .slick-next{
  bottom: -58px !important;
}
#topBannerModal .modal-body .ceoMsgSecLeft{
  width: 100%;
  padding:0;
}

/* footer */
footer {
  background: var(--themeBlue);
  color: #fff;
}

.footerMain {
  display: flex;
  justify-content: space-between;
  padding: 81px 170px 93.5px;
  color: #fff;
}

.footerCenter {
  width: 17.74%;
  padding-top: 60px;
}

.footerRight {
  padding-top: 60px;
}

.quickMain {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.quickLeft,
.quickRight {
  display: flex;
  flex-direction: column;
}

.footerLogo {
  margin-bottom: 25px;
}

.footerLeft {
  width: 399px;
}

.footerLeft p {
  color: #fff;
  padding-left: 15px;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0;
}

.footerRight a {
  margin-right: 15.5px;
}

.subFooter {
  display: flex;
  justify-content: space-between;
  padding: 21.5px 200px 23px;
  height: 64px;
}

.subFooter div a {
  margin-left: 54px;
}

.subFooter p {
  font-size: 12px;
  line-height: 25px;
  color: #fff;
}

footer hr {
  background: rgb(255 255 255 / 25%);
  margin: 0;
}

footer .h6 {
  color: #fff;
  margin-bottom: 21px;
  font-weight: 600;
}

footer a {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}

.mobNav {
  display: none;
}

.menuBarIcon {
  display: none;
}

.sclAddModal {
  max-width: 50%;
}
.sclAddModal .modal-header {
  border: none !important;
  padding: 10px 20px;
}
.sclAddModal .modal-content {
  border: none;
  box-shadow: 0px 1px 8px var(--pinkish);
}
.sumbitBtn {
  width: 140px;
  height: 45px;
  background: #3e4394;
  color: #fff;
  text-align: center;
}

/* ================= about us page =================== */
.aboutFirstSec {
  background-image: url(../static/images/newImages/aboutUsMain.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 106px 224px;
  text-align: center;
}

.syllabusMain {
  background-image: url(../static/images/newImages/syllabusMain.jpg);
}

.aboutUsMain .solutionMain h1 {
  margin-bottom: 19px;
  color: #fff;
}

section.solutionMain.aboutFirstSec nav {
  justify-content: center;
}

.quesAnsMain {
  padding: 167px 150px 104.2px 150.3px;
}

.quesAnsMain .h3 {
  text-align: center;
  margin-bottom: 71px;
}

/* accordian sec */
.accordianMain {
  position: relative;
}

img.upAccord {
  position: absolute;
  top: -55px;
  right: -10px;
}

.accordion .card-header:after {
  font-family: "FontAwesome";
  content: "";
  float: right;
  background-image: url(../static/images/newImages/down-arrow.png);
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  background-position: center;
  /* background-size: contain; */
}

.accordion .card-header.collapsed:after {
  /* symbol for "collapsed" panels */
  content: "";
  background-image: url(../static/images/newImages/RightArrowAccordion.png);
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  background-position: center;
}

.accordion .card-header.collapsed .card-title {
  font-weight: bold;
}

.card-header.collapsed {
  border: none !important;
}

.card-header[aria-expanded="true"] {
  color: var(--themeBlue);
  font-weight: bold;
}

.card-header:first-child {
  border-radius: 8px !important;
}

#accordion .card-header {
  padding: 25px 35px 0px 35px;
  border: none !important;
  background: #f5f6f9;
  margin-bottom: 18px !important;
  min-height: 70px;
}

#accordion .card-body {
  background: #f5f6f9;
  padding: 0px 35px 0px 35px;
  margin-top: -20px;
  margin-bottom: 20px;
  color: #313030;
}

.card-body.collapse.show {
  margin-top: -35px !important;
}

.card-body.collapse.show > .card-title {
  color: Red;
}

.forToggle {
  /* color: var(--themeBlue) !important; */
}

#accordion .card-body p {
  font-size: 16px;
  line-height: 25px;
  padding-right: 180px;
  letter-spacing: 0.3px;
}

#accordion .card {
  border: none !important;
  border-radius: 8px;
  cursor: pointer;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-weight: normal;
}

li.breadcrumb-item a {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  content: "/";
}

.breadcrumb-item.active {
  color: var(--pinkish);
  font-weight: 800;
}

/* about service main */
.aboutServiceMain {
  padding: 170px 200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.serviceBox {
  border-radius: 10px;
  box-shadow: 0 0 22px rgb(0 0 0 / 16%);
  padding: 47px 33px 45px 33px;
  width: 30.23%;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
}

.serviceBox:hover {
  background: #ef579e;
  color: #fff;
}

.serviceBox:hover h6 {
  color: #fff;
}

.serviceBox h6 {
  display: block;
}

.iconbox {
  background: var(--themeBlue);
  width: 60px;
  height: 60px;
  border-radius: 6px;
  color: #fff;
  margin: 0 auto 18px;
  padding-top: 20px;
}

.iconbox i {
  font-size: 22px;
}

.mvSecRowOne {
  display: flex;
}

.mvSecRLeft {
  padding: 76px 91px 76px 150px;
  background: var(--themeBlue);
  width: 50%;
  text-align: justify;
}

.mvSecRLeft .h3 {
  color: #fff;
  margin-bottom: 18px;
}

.mvSecRLeft p {
  color: #fff;
  line-height: 22px;
}

.mvSecRRight {
  width: 50%;
}
.mvSecRRight video {
  height: 100% !important;
}

.mvSecRRight img {
  height: 100%;
}

.mvSecRowTwo {
  flex-direction: row-reverse;
}

.mvSecRowTwo .mvSecRLeft {
  background: var(--textBlue);
  /* text-align: right; */
  padding: 76px 200px 76px 91px;
  text-align: justify;
}

/* ======================= syllabus page css ========================== */
.sylTabSec {
  padding: 80px 140px 0px;
}

.sylTabSec .nav-pills .nav-link {
  background: #f5f5f5;
  border-radius: 10px;
  width: 100%;
  height: 55px;
  font-size: 18px;
  font-weight: bold;
  color: rgb(0 0 0 / 68%);
}

.sylTabSec li.nav-item {
  width: 32.5%;
}

.sylTabSec .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--textBlue);
  color: #fff;
}

.curcontMain {
  margin-bottom: 170px;
}

.curcontMain h3 {
  text-align: center;
  margin: 70px 0px;
}

.curcontBoxSec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.curSylBox {
  border-radius: 10px;
  box-shadow: 0 0px 16px rgb(0 0 0 / 18%);
  width: 31.263%;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.curcontBoxSec .curSylBox:nth-of-type(7) {
  width: 60%;
  margin: 0 auto;
}

/* .curSylBox::before {
  content: '';
  height: 3px;
  width: 99%;
  display: block;
  background: var(--textBlue);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 83px 53px 45px 97px;
} */
.curSylBox:before {
  content: "";
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 7px;
  background: var(--textBlue);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.sylBoxTwo:before {
  content: "";
  background: var(--themeBlue);
}

.sylBoxThree:before {
  content: "";
  background: #47c079;
}

.sylBoxFour:before {
  content: "";
  background: #a754ee;
}

.sylBoxFive:before {
  content: "";
  background: var(--textBlue);
}

.sylBoxSix:before {
  content: "";
  background: var(--themeBlue);
}

.curSylBox h5 {
  font-weight: bold;
  margin-bottom: 5px;
}
.curSylBox h4 {
  font-weight: 700;
}
.curSylBox h6 {
  font-weight: normal;
  margin-bottom: 20px;
}

.downloadBtn {
  width: 203px;
  height: 43px;
  background: var(--pinkish);
  color: #fff;
  display: block;
  line-height: 40px;
  font-weight: 700;
  margin: 0 auto;
}
.downloadBtn:hover {
  color: #fff;
}
/* .uperBorder {
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
} */

/* =================== result page css ================== */
.resultMain {
  background-image: url(../static/images/newImages/resultPageMain.jpg);
}

.searchResultMain {
  padding: 109px 200px 70px;
}
.webResultSupMain {
  padding: 70px 120px 60px;
}

section.searchResultMain h3 {
  text-align: center;
  margin-bottom: 55px;
}

select {
  -webkit-appearance: none;
  font-size: 14px;
}

img.downIconselect {
  position: absolute;
  top: 70%;
  right: 10%;
}

.orderDetailSec label {
  font-size: 14px;
  color: #000;
  font-weight: bold;
  margin-bottom: 12px;
}

.orderDetailSec .form-group {
  max-width: 30.739% !important;
  margin-bottom: 30px !important;
}

.orderDetailSec .form-control {
  border-radius: 6px;
  height: 55px;
  font-size: 13px;
  padding-left: 20px;
}

.orderDetailSec form .form-row {
  justify-content: space-between;
  flex-direction: row-reverse;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
  display: none !important;
}

div#example_length {
  display: none;
}

.dataTableMain {
  background: #f5f5f5;
  padding: 70px 200px;
}

.dataTableOne {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 25px 29px;
}
.dataTableOne th {
  color: var(--themeBlue);
  font-size: 16px;
  line-height: 22px;
}

.table td,
.table th {
  border: none !important;
  text-align: center !important;
}

table.dataTable.table-striped > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px #f5f5f5 !important;
  /* border-radius: 8px !important; */
}
.table td {
  color: rgb(0 0 0 / 78%);
}

.dtfirstTd {
  border-radius: 8px 0 0 8px !important;
}

.dtLastTd {
  border-radius: 0px 8px 8px 0px !important;
}
.dtLastTd .h6 {
  width: 74px;
  height: 30px;
  color: #fff;
  background: #a754ee;
  border-radius: 4px;
  line-height: 30px;
}
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  content: "";
  display: none !important;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  content: "";
  display: none !important;
}
div.dataTables_wrapper div.dataTables_info {
  font-size: 13px !important;
  color: var(--themeBlue) !important;
  margin-top: 10px;
}
li#example_previous,
li#example_next {
  font-size: 13px;
}
.page-item.active .page-link {
  font-size: 13px;
  background: var(--themeBlue);
}
.page-item.active .page-link:hover,
.page-item.active .page-link:focus {
  box-shadow: none;
  background: var(--pinkish);
  border: none;
}
ul.pagination li {
  margin: 10px 3px;
}
.dataTableOne .page-link {
  font-size: 13px;
}
.table thead th {
  vertical-align: top !important;
  height: 45px;
}
.secAward {
  background: var(--textBlue) !important;
}
.thirdAward {
  background: var(--pinkish) !important;
}
.fourthAward {
  background: var(--themeDGray) !important;
}
.firstAward {
  background: var(--themeOrange) !important;
}

/* ============================= quiz page css ============================ */
.quizMain {
  background: #e4e6ff;
  min-height: 100vh;
  padding: 39px 180px 42px;
}
.quizSubSec {
  background-image: url(../html/images/newImages/quizBg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  /*min-height: 593px;*/
  padding: 20px 10px 0px;
  margin-top: 30px;
}
.quizSubSecHead {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 30px;
}
.quizSubSecHead .h4 {
  font-weight: 700;
}
.quizSubSecHead h6 {
  border-radius: 8px;
  background: #c7ffd6;
  width: 121px;
  height: 42px;
  line-height: 42px;
  text-align: center;
}
.quizSubSecHead h6 img {
  vertical-align: top;
  padding-top: 9px;
}
.qNoSec {
  /* background-color: red; */
  position: relative;
  /*display:flex;*/
  /*justify-content:flex-end;*/
  width: 55px;
  max-height: 60px;
}
.qNoSec img {
  position: relative;
}
.qNoSec h3.h7 {
  font-size: 15px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}
.quesSec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.clock {
  display: block;
  margin: 0;
}
.quesSecLeft {
  width: 20.3%;
}
.quesSecRight {
  width: 75%;
  border: 1px solid #000000;
  border-radius: 10px;
  min-height: 85.37px;
  padding: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qRightSub {
  background: #e4e6ff;
  border-radius: 10px;
  min-height: 71.77px;
  text-align: center;
  padding: 24px 5px;
  flex: 1;
}
.qRightSub p{
  margin-bottom:2px !important;
  line-height: 17px !important;
}
.qRightSub h6 {
  color: #000 !important;
  text-align: start;
  font-weight: 800;
  font-family: "circular";
  font-size: 14px;
  line-height: 20px !important;
}

.ansSec {
  margin-bottom: 40px;
}
.ansSec img {
  width: 100px;
  height: 92px;
  margin: 0 10px;
}
.ansSec label {
  font-size: 13px;
  line-height: 19px;
  font-weight: normal;
  margin-left: 9px;
    font-family: auto;
    font-weight: 500;
   font-family: 'circular';
}

.ansSec h6 {
  margin-bottom: 22.2px;
}
.ansSec .row {
  justify-content: flex-start;
  padding: 0 15px;
}
.ansSec .row .form-group{
  flex-grow:1;
}
.quizBtnSec {
  display: flex;
  justify-content: center;
  gap: 3%;
}
.quizBtn {
  width: 223px;
  height: 45px;
  border-radius: 10px;
  color: #fff;
  background: var(--themeBlue);
  text-align: center;
  line-height: 45px;
  font-weight: bold;
}
.quizBtn:hover {
  color: #fff;
}
.quizSubmitBtn {
  background: var(--pinkish);
}
.nextBtn {
  background: var(--pinkish);
}
.greetMain {
  min-height: 100vh;
  background: var(--themeBlue);
}
.greetMain a {
  width: 100%;
}
.greetBg {
  position: relative;
}
.thankText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.galRowTwo {
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}
.galRowTwoLeft {
  width: 63.562%;
}
.galRowTwoLeft iframe,
.galRowTwoLeft img {
  border-radius: 10px;
}
.galRowTwoRight {
  width: 35.194%;
}
.galRowTwoRight img {
  border-radius: 10px;
}
.galRowThree {
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}
.grtBox {
  width: 32%;
}
.grtReverse {
  flex-direction: row-reverse;
}
.uploadMain {
  background: #f5f5f5;
  border: 2px dashed #8c8c8c;
  margin-bottom: 62px;
  text-align: center;
  padding: 48px 0px;
}
.btn-container {
  background: #f5f5f5;
  border-radius: 5px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.imgupload {
  color: #1e2832;
  /* padding-top: 40px; */
  /* font-size: 7em; */
  display: none;
}
.imgupload.ok {
  display: none;
  color: green;
}
.imgupload.stop {
  display: none;
  color: red;
}
#namefile {
  color: var(--themeBlue);
  font-size: 12px;
  margin: 0;
  /* display: none; */
}
#fileup {
  opacity: 0;
  -moz-opacity: 0;
  width: 225px;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  height: auto;
  top: 20%;
}
#btnup {
  width: 223px;
  height: 52px;
  border-radius: 10px;
  color: #fff;
  background: var(--pinkish);
}
/* ==================== blog page css ================= */

.blogContent {
  padding: 126px 200px;
  background: #f5f5f5;
}
.blogHeading {
  width: 731px;
  font-weight: 700 !important;
  font-family: openSansBold;
  margin-bottom: 20px;
}
.blogContent p {
  line-height: 25px;
  margin-bottom: 40px;
}
.blogImgRow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 39px;
}
.blogImgRow img {
  height: 217px;
}
.blogImgRowLeft {
  width: 52.588%;
}
.blogImgRowCent,
.blogImgRowRight {
  width: 22.35%;
}
.blogQuoteSec {
  background: #fff;
  margin-bottom: 50px;
  padding: 12px 40px 28px 22px;
}
.blogQuoteSec p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
  margin-top: 12.5px;
}
.ulListSec {
  margin-bottom: 47px;
}
.ulListSec p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
}
.ulListSec ul li::marker {
  color: var(--themeBlue);
  font-size: 21px;
}
.ulListSec ul {
  padding-left: 25px;
}
.ulListSec ul li {
  font-size: 14px;
  line-height: 20px;
  color: #707070;
  margin-top: 9px;
}
.shareSocialSec {
  display: flex;
}
.shareSocialSec h5 {
  background: #fff;
  text-align: center;
  width: 164px;
  height: 40px;
  padding: 8px 2px;
  margin-right: 12px;
}
.shareSocialSec img {
  margin-right: 8px;
}
.formMain .curSylBox p {
  font-size: 14px;
  line-height: 22px;
  margin: 9px 0 18px 0px;
}
.formMain .curSylBox {
  padding: 28px 15px;
}
.formMain .curSylBox:before {
  content: "";
  border-radius: 0px 10px 10px 0;
  width: 7px;
  height: 100%;
}

/* ============= contact us page =============== */
.contactMain {
  padding: 170px 200px;
}
.aboutBoxesSec {
  display: flex;
  justify-content: space-between;
}
.aboutBox {
  max-height: 196px;
  width: 31.263%;
  padding: 29px 49px;
  box-shadow: 0 0 15px rgb(0 0 0 / 16%);
  border-radius: 10px;
  text-align: center;
  color: #000000;
}
.aboutBox img {
  margin-bottom: 24.7px;
}
.aboutBox p {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.aboutBox a {
  word-break: break-All;
  color: #000000;
  line-height: 25px;
}
.aboutBox.abBoxThree {
  padding-top: 45px;
}
.aboutBox.abBoxThree img {
  margin-bottom: 30px;
}
.contFormSec {
  padding: 0 200px 170px;
  text-align: center;
}
.contFormSec h3 {
  margin-bottom: 70px;
}
.signUpForm.contactUsForm {
  text-align: start;
}
.contactUsForm .form-control {
  padding-left: 68px;
  height: 84px;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.inputIcon {
  position: absolute;
  top: 32px;
  left: 32px;
}
.inputMsgIcon {
  top: 35px;
}
.contactUsForm textarea.form-control {
  height: auto;
  padding: 32px 68px;
}

.mapSec iframe {
  width: 100%;
  margin-bottom: -7px;
}
.guideLineMain {
  margin: 40px 0px;
  padding: 5px;
}
.guideLineMain p {
  text-align: justify;
  line-height: 20px;
}
/* cur sylabus new css */
.curSubNewMain {
  /*padding: 108px 200px 0px;*/
}
.curSubNewMain h2 {
  background: var(--textBlue);
  color: #fff;
  border-radius: 10px;
  width: 100%;
  height: 71px;
  line-height: 70px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

/* some extra during responsiveness */
section.solutionMain.aboutFirstSec h1 {
  color: #fff;
  margin-bottom: 15px;
}
.formMain .curSylBox a {
  color: #fff;
}
.subBtnTwo {
  width: 109px;
  height: 50px;
  border-radius: 10px;
  background: var(--themeBlue);
  text-align: center;
  line-height: 50px;
  color: #fff !important;
}
.orderDetailSec .subBtnBox {
  margin: 0 !important;
  padding: 0 !important;
  text-align: end;
  align-self: center;
  padding-top: 15px !important;
}
.forInstMain ol {
  padding-left: 30px;
  margin: 5px 0px;
}

.uTubeLink {
  margin: 0 !important;
  width: 42px;
  height: 40px;
  text-align: center;
  background: #e62e2d;
}
.youTubeIcon {
  font-size: 19px;
  border-radius: 5px;
  color: #fff;
  line-height: 36px;
  display: block;
}

.webResultSupMain {
  padding: 70px 120px 60px;
}

.webResltMain {
  padding: 60px 30px !important;
}
.webResltMain .dataTableOne {
  overflow-x: scroll;
  padding: 20px;
}
.webResltTable th,
.webResltTable td {
  padding: 10px 5px !important;
}
.minW300 {
  min-width: 300px !important;
}
.minW250 {
  min-width: 250px !important;
}
.minW200 {
  min-width: 200px !important;
}
.minW160 {
  min-width: 160px;
}
.minW150 {
  min-width: 150px !important;
}
.maxW100 {
  max-width: 100px !important;
}
.maxW60 {
  max-width: 60px !important;
}
.maxW80 {
  max-width: 80px !important;
}
.maxW100 {
  max-width: 100px !important;
}
.maxW135 {
  max-width: 135px !important;
}
.maxW200 {
  max-width: 200px !important;
}
.webResltMain .col-sm-12 {
  padding: 0 !important;
}
.webResltTable td {
  font-size: 15px !important;
}
.qualifyText {
    line-height: 25px;

  text-align: center;
  margin: 15px 0px 45px;
  font-weight: 400 !important;
}
.awardText {
  padding: 10px !important;
  width: 100% !important;
  font-size: 14px !important;
  height: auto !important;
  max-height: initial;
  font-weight: 700;
  min-width: 125px;
  line-height: 15px !important;
}

.minW160 {
  min-width: 160px;
}
.minW150 {
  min-width: 150px !important;
}
.maxW100 {
  max-width: 100px !important;
}
.maxW60 {
  max-width: 60px !important;
}
.maxW80 {
  max-width: 80px !important;
}
.maxW100 {
  max-width: 100px !important;
}
.maxW135 {
  max-width: 135px !important;
}
.maxW200 {
  max-width: 200px !important;
}
.webResltMain .col-sm-12 {
  padding: 0 !important;
}
.webResltTable td {
  font-size: 15px !important;
}
.qualifyText {
  text-align: center;
  margin: 15px 0px 45px;
  font-weight: 400 !important;
}
/* ====== add question css ========== */
.addQuesMain {
  padding: 30px 80px;
  background: var(--themelightBlue);
}
.addQuesMain .django-ckeditor-widget {
  width: 100%;
}
.addQuesMain div#cke_id_full_question {
  width: 100% !important;
}
.addQuesMain label {
  font-size: 16px;
  margin: 20px 0px;
  display: block;
}
.addQuesMain form {
  background: #fff;
  padding: 5px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgb(0 0 0 / 16%);
}
.addQuesMain .form-group select {
  background: #f0f3fd;
  border: none;
  outline: none;
  border-radius: 4px;
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.plusBtn {
  width: 100px;
  line-height: 30px !important;
  height:45px !important;
}
.addQusSubmitBtn {
  line-height: 30px !important;
  width: 160px;
  height:45px !important;
}
input#image_3 {
  background: none;
}
input#image_4 {
  background: none;
}
.addQuesMain input[type="checkbox"],
.addQuesMain input[type="radio"] {
  max-width: 10% !important;
}
.quizHeader {
    position: relative;
  }
  .quizHeader a{
    position: absolute;
  left:0;top:20px;
    color:#0a53be;
  }


/*  =======  @media query code start     =========*/

@media (min-width: 1367px) {
  .mvSecRowOne.mvSecRowTwo img {
    width: 100%;
    min-height: 320px;
    height: 400px;
  }

  .mvSecRowTwo .mvSecRLeft {
    max-height: 400px;
    padding-top: 120px;
  }

  .accordianMain .container {
    max-width: 100%;
  }

  .solBox h6 {
    position: static;
    bottom: 28px;
    padding: 0 20px;
    left: 1%;
  }
  .quizSubSec {
    background-position: top;
    /* min-height: 940px; */
  }
  .galRowTwoRight img {
    width: 100%;
  }
  .grtBox img {
    width: 100%;
  }
  .galRowTwoLeft img {
    width: 100%;
  }

  .blogImgRow img {
    width: 100%;
  }
}

@media (max-width: 1290px) {
  header {
    padding: 20px 25px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 29px;
  }

  .h2 {
  }

  h3 {
    font-size: 27px;
  }

  .h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 22px;
    line-height: 44px;
  }

  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 17px;
  }

  .h6 {
    font-size: 15px;
  }

  .h7 {
    font-size: 14px;
  }

  .h8 {
    font-size: 13px;
  }

  /*=============*/
  p {
    font-size: 14px;
  }
  header {
    /* padding: 20px 50px; */
    height: 80px;
  }
  .navMenu a {
    margin-left: 12px;
    font-size: 14px;
  }
  .navLogo {
    min-width: 135px;
  }
  .navLogo a img {
    width: 135px;
  }
  .ceoMsgMain {
    padding: 45px 50px;
  }
  .ceoMsgSecLeft ul {
    padding-left: 30px;
    font-size: 15px;
  }
  .signUpLink {
    width: 200px;
    height: 45px;
    font-size: 15px;
    line-height: 42px;
  }
  .SolutionSec {
    padding: 175px 50px 120px;
  }
  .comLearningSec {
    background: #f5f5f5;
    padding: 100px 60px;
    text-align: center;
  }
  .newsLetterSec {
    padding: 28px 60px;
  }
  .nlsRight h1 {
    font-size: 32px;
  }
  .nlsRight p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .testimonialSec {
    padding: 130px 60px;
  }
  .tSliderSubBox {
    padding: 20px 15px;
    margin: 10px 0px;
  }
  .testiLeft p {
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 25px;
  }
  .tSliderBox img {
    width: 75px;
    margin-bottom: 7px;
  }
  .testislider .slick-prev {
    width: 30px;
    height: 30px;
  }
  .testislider .slick-next {
    width: 30px;
    height: 30px;
  }
  .slick-prev:before {
    content: "";
    height: 24px;
    width: 24px;
    background-size: cover;
  }
  .slick-next:before {
    content: "";
    height: 24px;
    width: 24px;
    background-size: cover;
  }
  .tSliderBox p {
    margin-bottom: 14px;
  }
  .recentBlogMain {
    padding: 120px 60px;
  }
  .sliderImgMain {
    width: 100%;
    /* height: 130px; */
  }
  .rbBoxCont {
    padding: 18px;
  }
  .footerMain {
    padding: 70px 60px;
  }
  img.footerLogo {
    width: 200px;
  }
  .subFooter {
    padding: 19px 60px;
    height: 60px;
  }
  .sclAddModal {
    max-width: 65%;
  }
  .aboutServiceMain {
    padding: 130px 60px;
  }
  .mvSecRLeft {
    padding: 60px 70px;
  }
  .mvSecRowTwo .mvSecRLeft {
    padding: 60px 70px;
  }
  .quesAnsMain {
    padding: 100px 60px;
  }
  .curSubNewMain {
    /*padding: 80px 60px;*/
  }
  .curSubNewMain h2 {
    height: 65px;
    line-height: 68px;
    font-size: 19px;
    margin-bottom: 45px;
  }
  .sylTabSec {
    padding: 70px 60px 10px;
  }
  .curSylBox {
    padding: 30px 20px 10px;
    margin-bottom: 25px;
  }
  .downloadBtn {
    width: 195px;
    height: 40px;
    font-size: 15px;
    line-height: 37px;
  }
  .curSylBox h6 {
    margin-bottom: 15px;
    font-size: 15px;
  }
  .curcontMain {
    margin-bottom: 90px;
  }
  .sylTabSec .nav-pills .nav-link {
    height: 60px;
    font-size: 19px;
  }
  .searchResultMain {
    padding: 80px 60px 50px;
  }
  .dataTableMain {
    padding: 60px 60px;
  }
  .contactMain {
    padding: 100px 60px;
  }
  .contFormSec {
    padding: 0 60px 100px;
  }
  .aboutBox {
    padding: 25px 20px;
  }
  .contactUsForm .form-control {
    padding-left: 65px;
    height: 64px;
  }
  .inputIcon {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 18px;
  }
  .quizMain {
    padding: 35px 90px;
  }
  .quesSec {
    margin-bottom: 30px;
  }

  .quizMainTwo {
    padding: 15px 90px !important;
  }
  .quizMainTwo .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .quizMainTwo .myCard {
    padding: 20px 20px 5px;

    margin: 20px auto 40px;
  }
  .addQuesMain {
    padding: 30px 60px;
  }
}

@media (min-width: 992px) {
  .mobNav {
    display: none !important;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 31px;
    line-height: 37px;
  }

  .h1 {
    font-size: 30px;
    line-height: 37px;
  }

  h2 {
    font-size: 26px;
  }

  .h2 {
  }

  h3 {
    font-size: 24px;
  }

  .h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
    line-height: 35px;
  }

  .h4 {
    font-size: 18px;
  }

  h5,
  .h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 15px;
  }

  .h6 {
    font-size: 13px;
  }

  .h7 {
    font-size: 12px;
  }

  .h8 {
    font-size: 12px;
  }

  /*=============*/
  p {
    font-size: 13px;
  }
  header {
    padding: 12px 50px 5px;
    height: 70px;
  }
  .navLogo {
    min-width: 100px !important;
  }
  .navLogo a img {
    width: 125px;
  }

  .navMenu a {
    font-size: 14px;
  }

  .navItems {
    display: none;
  }

  .mobNav {
    background: var(--themelightBlue);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0 20px 20px 0px;
    box-shadow: 0 0 12px rgb(0 0 0 / 50%);
    padding: 35px 25px 20px 50px;
    min-height: 100vh;
    width: 280px;
    z-index: 9999;
  }

  .mobNav .navItems {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .mobNav .navItems a {
    margin-bottom: 30px;
  }

  .navCloseIcon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 23px;
    color: var(--themeOrange);
  }

  .menuBarIcon {
    font-size: 23px;
    color: var(--themeOrange);
    display: inline-block;
    position: absolute;
    left: 190px;
    top: 88px;
  }
  .ceoMsgMain {
    padding: 40px 40px;
  }
  .ceoMsgSec {
    flex-direction: column;
  }
  .ceoMsgSecLeft,
  .ceoMsgSecRight {
    width: 100%;
  }
  .ceoMsgSecLeft {
    padding-top: 30px;
  }
  .ceoMsgSecLeft ul {
    padding-left: 25px;
    font-size: 14px;
  }
  .ceoMsgSecRight {
    text-align: center;
    padding-top: 55px;
  }
  .signUpLink {
    width: 180px;
    height: 40px;
    font-size: 14px;
    line-height: 35px;
  }
  .ceoSech6 {
    font-size: 15px;
  }
  .solBox {
    padding: 30px 5px;
    min-height: 220px;
  }
  .SolutionSec {
    padding: 175px 40px 120px;
  }
  .comLearningSec {
    padding: 70px 40px;
  }
  .newsLetterSec {
    padding: 25px 40px;
  }
  .nlsRight h1 {
    font-size: 29px;
  }
  .nlsRight p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .nlsRight {
    width: 61.461%;
    padding-top: 40px;
  }
  .subInputMain .form-control {
    height: 55px;
    padding-left: 30px;
    font-size: 14px;
  }
  .subscrBtn {
    top: 14%;
    width: 95px;
    height: 40px;
    line-height: 35px;
    font-size: 15px;
  }
  .testimonialSec {
    padding: 70px 40px;
    flex-direction: column;
    align-items: center;
  }
  .testiLeft,
  .testiRight {
    width: 100%;
    text-align: center;
  }
  .tSliderSubBox {
    padding: 18px 13px;
    margin: 10px 0px;
  }
  .testiLeft p {
    line-height: 22px;
    font-size: 14px;
    margin-bottom: 22px;
  }
  .tSliderBox img {
    width: 70px;
    margin-bottom: 5px;
  }
  .testislider .slick-prev {
    width: 30px;
    height: 30px;
    left: 50% !important;
    top: unset;
    bottom: 5px;
    transform: translate(-50%, -50%);
  }

  .testislider .slick-next {
    width: 30px;
    height: 30px;
    width: 30px;
    height: 30px;
    left: 55% !important;
    top: unset;
    bottom: 5px;
    transform: translate(-50%, -50%);
  }
  .slick-prev:before {
    content: "";
    height: 22px;
    width: 22px;
    background-size: cover;
  }
  .slick-next:before {
    content: "";
    height: 22px;
    width: 22px;
    background-size: cover;
  }
  .tSliderBox p {
    font-size: 14px;
  }
  .tSliderBox {
  }
  .tSliderBox span {
    font-size: 14px;
    line-height: 18px;
  }
  .recentBlogMain {
    padding: 80px 40px;
  }
  .sliderImgMain {
    width: 100%;
    height: auto;
  }
  .sliderImgMain img:nth-of-type(1) {
    width: 100%;
    height: 190px;
  }
  .rbBoxCont {
    padding: 16px;

    margin-bottom: 20px;
  }
  .rbbcCont .h6 {
    font-size: 15px;
  }
  .recentBlogMain .h3 {
    margin-bottom: 45px;
  }
  .footerMain {
    padding: 60px 40px;
  }
  img.footerLogo {
    width: 170px;
  }
  .footerLeft p {
    padding-left: 10px;
    font-size: 14px;
  }
  .footerRight {
    width: 20%;
  }
  .footerRight a img {
    width: 35px;
  }
  .subFooter {
    padding: 15px 40px;
    height: auto;
  }
  .form-control {
    font-size: 14px;
  }
  .sclAddModal .modal-header {
    border: none !important;
    padding: 5px 15px 0px;
  }
  .sumbitBtn {
    width: 120px;
    height: 40px;
    font-size: 15px;
  }
  .sclAddModal .modal-body {
    padding-top: 0;
  }
  .sclAddModal {
    max-width: 80%;
  }
  .aboutServiceMain {
    padding: 100px 40px 60px;
  }
  .serviceBox {
    padding: 25px 15px 10px;
  }
  .iconbox {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
  }
  .aboutFirstSec {
    padding: 70px 60px;
  }
  .mvSecRLeft {
    padding: 50px 40px 20px;
  }
  .mvSecRowTwo .mvSecRLeft {
    padding: 50px 40px 20px;
  }
  .quesAnsMain {
    padding: 80px 40px 50px;
  }
  img.upAccord {
    width: 45px;
    height: 45px;
  }
  img.downAccord {
    width: 45px;
    height: 45px;
  }
  .curSubNewMain {
    /*padding: 60px 40px 20px;*/
  }
  .curSubNewMain h2 {
    height: 60px;
    line-height: 65px;
    font-size: 18px;
    margin-bottom: 40px;
  }
  .guideLineMain {
    margin: 40px 0px 0;
  }
  .sylTabSec {
    padding: 50px 40px 10px;
  }
  .curSylBox {
    padding: 30px 15px 10px;
  }
  .downloadBtn {
    width: 150px;
    height: 35px;
    font-size: 14px;
    line-height: 32px;
  }
  .curSylBox h6 {
    font-size: 14px;
  }
  .sylTabSec .nav-pills .nav-link {
    height: 50px;
    font-size: 19px;
  }
  .curcontMain {
    margin-bottom: 70px;
  }
  .searchResultMain {
    padding: 60px 40px 30px;
  }
  .dataTableMain {
    padding: 50px 40px;
  }
  .contactMain {
    padding: 60px 40px;
  }
  .contFormSec {
    padding: 0 40px 70px;
  }
  .aboutBox {
    padding: 20px 15px;
  }
  .contactUsForm .form-control {
    padding-left: 60px;
    height: 55px;
  }
  .inputIcon {
    top: 20px;
    left: 25px;
    width: 16px;
  }
  .signUpBtn {
    width: 190px;
    height: 45px;
    font-size: 16px;
  }
  .contactUsForm textarea.form-control {
    height: auto;
    padding: 15px 50px;
  }
  .aboutBox p {
    font-size: 15px;
  }
  .quizMain {
    padding: 30px 50px;
  }
  .quizHeader {
    /*text-align: start !important;*/
  }
  .quizBtn {
    width: 200px;
    height: 45px;
    line-height: 45px;
  }
  .ansSec img {
    width: 85px;
    height: 80px;
    margin: 0 10px;
  }
  .quesSec {
    margin-bottom: 45px;
  }
  .quizMainTwo {
    padding: 15px 80px 5px !important;
  }
  .instrucMain {
    margin: 30px 0 10px !important;
  }
  .instrucMain ul li {
    margin-bottom: 10px !important;
    font-size: 15px !important;
  }
  .cheatMain .mb-4,
  .my-4 {
    margin-bottom: 0.5rem !important;
  }
  .awardText {
    padding: 7px !important;
    font-size: 13px !important;
  }
  .addQuesMain {
    padding: 30px 40px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 29px;
    line-height: 33px;
  }

  .h1 {
    font-size: 27px;
    line-height: 34px;
  }

  h2 {
    font-size: 24px;
  }

  .h2 {
  }

  h3 {
    font-size: 22px;
  }

  .h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
    line-height: 30px;
  }

  .h4 {
    font-size: 16px;
  }

  h5,
  .h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 13px;
  }

  .h6 {
    font-size: 12px;
  }

  .h7 {
    font-size: 12px;
  }

  .h8 {
    font-size: 12px;
  }

  /*=============*/
  p {
    font-size: 13px;
  }
  header {
    padding: 10px 40px 0;
    height: auto;
  }
  .navLogo {
    width: 115px;
    max-height: 50px;
    padding-top: 2px;
  }

  .menuBarIcon {
    font-size: 20px;
    left: 160px;
    top: 85px;
  }

  nav {
    align-items: center;
    max-height: -webkit-fill-available;
  }

  .logInBtn {
    width: 90px;
    height: 30px;
    line-height: 30px;
  }

  .mobNav .navItems a {
    font-size: 15px;
  }

  .learnMoreBtn {
    width: 100px;
    height: 33px;
    line-height: 34px;
    font-size: 14px;
  }
  .ceoMsgMain {
    padding: 30px;
  }
  .ceoMsgSecLeft h2 {
    margin-bottom: 25px;
  }
  .ceoSech6 {
    font-size: 14px;
  }
  .SolutionSec {
    padding: 175px 30px 120px;
  }
  .solContMain {
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 40px;
  }
  .solBox {
    width: 70%;
    min-height: 180px;
    margin: 0 auto 30px;
  }
  .comLearningSec {
    padding: 50px 30px;
  }
  .newsLetterSec {
    padding: 25px 30px 20px;
    flex-direction: column;
  }
  .nlsRight h1 {
    font-size: 26px;
  }
  .nlsRight p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .nlsRight,
  .nlsLeft {
    width: 100%;
    padding-top: 20px;
  }
  .nlsLeft {
    text-align: center;
  }
  .subInputMain .form-control {
    height: 55px;
    padding-left: 30px;
    font-size: 14px;
  }
  .subscrBtn {
    top: 14%;
    width: 95px;
    height: 40px;
    line-height: 35px;
    font-size: 15px;
  }
  .testimonialSec {
    padding: 50px 30px;
    flex-direction: column;
    align-items: center;
  }
  .testiLeft,
  .testiRight {
    width: 100%;
    text-align: center;
  }
  .tSliderSubBox {
    padding: 15px 12px;
    margin: 10px 0px;
  }
  .testiLeft p {
    line-height: 22px;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .tSliderBox img {
    width: 65px;
    margin-bottom: 5px;
  }
  .testislider .slick-prev {
    width: 30px;
    height: 30px;
    left: 50% !important;
    top: unset;
    bottom: 5px;
    transform: translate(-50%, -50%);
  }

  .testislider .slick-next {
    width: 30px;
    height: 30px;
    width: 30px;
    height: 30px;
    left: 57% !important;
    top: unset;
    bottom: 5px;
    transform: translate(-50%, -50%);
  }
  .slick-prev:before {
    content: "";
    height: 22px;
    width: 22px;
  }
  .slick-next:before {
    content: "";
    height: 22px;
    width: 22px;
  }
  .tSliderBox p {
    font-size: 13px;
  }
  .tSliderBox {
  }
  .tSliderBox span {
    font-size: 13px;
    line-height: 15px;
  }
  .testiLeft h3 {
    line-height: 34px;
    margin-bottom: 10px;
  }
  .recentBlogMain {
    padding: 60px 30px;
  }
  .recentBlogMain .slick-prev:before {
    width: 27px;
    height: 27px;
  }
  .recentBlogMain .slick-prev {
    width: 27px;
    height: 27px;
  }
  .recentBlogMain .slick-next:before {
    width: 27px;
    height: 27px;
  }
  .recentBlogMain .slick-next {
    width: 27px;
    height: 27px;
  }
  .recentBlogMain .slick-prev {
    left: 49%;
  }
  .footerMain {
    padding: 50px 30px;
  }
  img.footerLogo {
    width: 150px;
  }
  .footerLeft p {
    padding-left: 5px;
    font-size: 13px;
    padding-right: 20px;
  }
  .footerLeft {
    width: 50%;
  }
  .footerRight {
    width: 20%;
  }
  .footerRight a img {
    width: 32px;
  }
  .subFooter {
    padding: 10px 30px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .aboutServiceMain {
    padding: 75px 30px;
  }
  .iconbox {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    padding-top: 14px;
  }
  .serviceBox {
    width: 48.5%;
  }
  .mvSecRowOne {
    flex-direction: column;
  }
  .mvSecRLeft,
  .mvSecRRight {
    width: 100%;
  }
  .mvSecRLeft .h3 {
    margin-bottom: 15px;
  }
  .mvSecRLeft {
    padding: 20px;
  }
  .mvSecRowTwo .mvSecRLeft {
    padding: 20px;
  }
  .quesAnsMain {
    padding: 60px 30px 30px;
  }
  img.upAccord {
    width: 40px;
    height: 40px;
  }
  img.downAccord {
    width: 40px;
    height: 40px;
  }
  .sylTabSec {
    padding: 40px 30px 10px;
  }
  .curSylBox {
    padding: 20px 10px 15px;
    margin-bottom: 10px;
  }
  .downloadBtn {
    width: 120px;
    height: 30px;
    font-size: 13px;
    line-height: 27px;
  }
  .curSylBox h6 {
    font-size: 13px;
  }
  .sylTabSec .nav-pills .nav-link {
    height: 45px;
    font-size: 17px;
  }
  .searchResultMain {
    padding: 30px 30px 30px;
  }
  .galRowThree {
    flex-direction: column;
    margin: 20px 0 !important;
  }
  .galRowTwo {
    flex-direction: column;
    align-items: center;
    margin: 20px 0 !important;
  }
  .grtBox {
    width: 100%;

    text-align: center;
    margin: 20px 0 !important;
  }
  .grtBox img {
    width: 70%;
  }
  .galRowTwoRight {
    width: 100%;
    text-align: center;
  }
  .galRowTwoRight img {
    border-radius: 10px;
    width: 70%;
  }
  .galRowTwoLeft {
    width: 70%;
    margin: 20px 0px;
  }
  .galRowTwoLeft iframe,
  .galRowTwoLeft img {
    border-radius: 10px;
    min-height: 230px;
  }
  .orderDetailSec form .form-row {
    flex-direction: column;
  }
  .orderDetailSec .form-group {
    max-width: 100% !important;
    margin-bottom: 30px !important;
  }
  img.downIconselect {
    position: absolute;
    top: 70%;
    right: 4%;
  }
  .dataTableMain {
    padding: 40px 30px;
  }
  .dataTableOne {
    padding: 15px 20px;
    overflow-x: scroll;
  }
  .dataTableOne .table thead th {
    height: 45px;
    min-width: 140px;
  }
  .dataTableOne .table {
    /* min-width: 700px; */
  }
  .formMain .curSylBox {
    padding: 20px 5px;
  }
  .contactMain {
    padding: 40px 30px;
  }
  .contFormSec {
    padding: 0 30px 50px;
  }
  .aboutBox {
    padding: 15px;
  }
  .contactUsForm .form-control {
    padding-left: 50px;
    height: 50px;
  }
  .inputIcon {
    top: 18px;
    left: 20px;
    width: 15px;
  }
  .contactUsForm textarea.form-control {
    height: auto;
    padding: 15px 50px;
  }
  section.contactMain.contactUsfirst .aboutBoxesSec {
    flex-direction: column;
  }
  section.contactMain.contactUsfirst .aboutBoxesSec .aboutBox {
    width: 100%;
    margin-bottom: 20px;
  }
  .signUpBtn {
    width: 165px;
    height: 40px;
    font-size: 15px;
  }
  .aboutBox img {
    margin-bottom: 20px;
    width: 25px;
  }
  .aboutBox p {
    font-size: 14px;
  }
  .quizMain {
    padding: 20px 15px 5px;
  }
  article {
    width: 240px !important;
    margin: 0px auto 10px !important;
    padding: 5px 5px !important;
  }
  .quizHeader img {
    width: 120px;
    padding-top: 15px;
  }
  .qNoSec {
    width: 40px;
    max-height: 42px;
  }
  .qNoSec h3.h7 {
    font-size: 14px;
    top: 50%;
    left: 50%;
  }
  .quizBtn {
    width: 175px;
    height: 40px;
    line-height: 40px;
  }
  .quizMainTwo {
    padding: 25px 40px !important;
  }
  .instrucMain {
    margin: 20px 0 10px !important;
  }
  .instrucMain ul li {
    font-size: 14px !important;
  }
  .ansSec .row {
    max-width: 100%;
    padding: 0;
  }
  .curcontMain h3 {
    margin: 30px 0px;
  }
  .addQuesMain {
    padding: 25px 30px !important;
  }
  a.logInBtn {
    width: auto;
    line-height: 20px;
}
}

@media (max-width: 575px) {
  h1 {
    font-size: 26px;
    line-height: 30px;
  }

  .h1 {
    font-size: 25px;
    line-height: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .h2 {
  }

  h3 {
    font-size: 20px;
  }

  .h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
    line-height: 25px;
  }

  .h4 {
    font-size: 14px;
  }

  h5,
  .h5 {
    font-size: 13px;
  }

  h6 {
    font-size: 12px;
  }

  .h6 {
    font-size: 12px;
  }

  .h7 {
    font-size: 12px;
  }

  .h8 {
    font-size: 12px;
  }

  /*=============*/
  p {
    font-size: 12px;
  }
  header {
    padding: 10px 20px 0;
    height: auto;
  }
  .navLogo {
    width: 110px;
    max-height: 44px;
    min-width: 70px !important;
  }

  .menuBarIcon {
    font-size: 17px;
    left: 140px;
    /* top: 30px; */
  }

  nav {
    align-items: center;
  }

  .mobNav {
    width: 200px;
  }

  .navCloseIcon {
    top: 12px;
    font-size: 20px;
  }

  .mobNav .navItems a {
    font-size: 14px;
  }

  .logInBtn {
    width: 85px;
    height: 25px;
    line-height: 24px;
    font-size: 13px !important;
  }

  .learnMoreBtn {
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .ceoMsgSecLeft ul {
    padding-left: 20px;
    font-size: 13px;
  }
  .ceoMsgMain {
    padding: 20px;
  }
  .signUpLink {
    width: 150px;
    height: 35px;
    font-size: 13px;
    line-height: 32px;
  }
  .ceoMsgSecLeft p {
    line-height: 26px;
  }
  .SolutionSec {
    padding: 160px 20px 100px;
  }
  .solContMain {
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 40px;
  }
  .solBox {
    width: 70%;
    min-height: 150px;
    margin: 0 auto 30px;
  }
  .comLearningSec {
    padding: 50px 20px;
  }
  .newsLetterSec {
    padding: 25px 20px 20px;
  }
  .nlsRight h1 {
    font-size: 23px;
  }
  .nlsRight p {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .nlsRight,
  .nlsLeft {
  }
  .nlsLeft {
    text-align: center;
  }
  .subInputMain .form-control {
    height: 50px;
    padding-left: 12px;
    font-size: 12px;
  }
  .subscrBtn {
    top: 14%;
    width: 95px;
    height: 35px;
    line-height: 30px;
    font-size: 14px;
  }
  .testimonialSec {
    padding: 40px 20px;
  }
  .testiLeft,
  .testiRight {
  }
  .tSliderSubBox {
    padding: 12px 10px;
    margin: 8px 0px;
  }
  .testiLeft p {
    line-height: 20px;
    font-size: 12px;
    margin-bottom: 17px;
  }
  .tSliderBox img {
    width: 60px;
    margin-bottom: 5px;
  }
  .testislider .slick-prev {
    width: 30px;
    height: 30px;
    left: 50% !important;
    top: unset;
    bottom: -10px;
    transform: translate(-50%, -50%);
  }

  .testislider .slick-next {
    width: 30px;
    height: 30px;
    width: 30px;
    height: 30px;
    left: 58% !important;
    top: unset;
    bottom: -10px;
    transform: translate(-50%, -50%);
  }
  .slick-prev:before {
    content: "";
    height: 22px;
    width: 22px;
  }
  .slick-next:before {
    content: "";
    height: 22px;
    width: 22px;
  }
  .recentBlogMain .slick-prev:before {
    width: 25px;
    height: 25px;
  }
  .recentBlogMain .slick-prev {
    width: 25px;
    height: 25px;
  }
  .recentBlogMain .slick-next:before {
    width: 25px;
    height: 25px;
  }
  .recentBlogMain .slick-next {
    width: 25px;
    height: 25px;
  }
  .recentBlogMain .slick-prev {
    left: 49%;
  }
  .tSliderBox p {
    font-size: 12px;
  }
  .tSliderBox {
  }
  .tSliderBox span {
    font-size: 12px;
    line-height: 15px;
  }
  .recentBlogMain {
    padding: 50px 20px;
  }
  .footerMain {
    padding: 40px 20px;
    flex-direction: column;
  }
  img.footerLogo {
    width: 120px;
  }
  .footerLeft p {
    padding-left: 0px;
    font-size: 12px;
    padding-right: 0px;
  }
  .footerLeft {
    width: 100%;
  }
  .footerRight {
    width: 100%;
  }
  .footerRight a img {
    width: 30px;
  }
  .footerCenter {
    width: 100%;
    padding-top: 25px;
  }
  .subFooter {
    padding: 10px 20px;
  }
  .subFooter div a {
    margin-left: 15px;
    font-size: 12px;
  }
  .sclAddModal {
    max-width: 82%;
    margin: 20px auto;
  }
  .sumbitBtn {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
  .form-control {
    font-size: 13px;
  }
  .aboutServiceMain {
    padding: 75px 30px;
  }
  .iconbox {
    width: 45px;
    height: 45px;
    padding-top: 12px;
  }
  .serviceBox {
    width: 49%;
  }
  .quesAnsMain {
    padding: 40px 20px 20px;
  }
  img.upAccord {
    width: 35px;
    height: 35px;
  }
  img.downAccord {
    width: 35px;
    height: 35px;
  }
  .curSubNewMain {
    /*padding: 50px 20px 20px;*/
  }
  .curSubNewMain h2 {
    height: 50px;
    line-height: 51px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .sylTabSec {
    padding: 40px 30px 10px;
  }

  .downloadBtn {
    width: 130px;
    height: 27px;
    font-size: 13px;
  }
  .sylTabSec .nav-pills .nav-link {
    height: 40px;
    font-size: 15px;
  }
  .curcontBoxSec {
    flex-direction: column;
  }
  .curSylBox {
    padding: 15px 5px 10px;
    margin-bottom: 10px;
    width: 80% !important;
    margin: 0 auto 20px;
  }
  .searchResultMain {
    padding: 40px 20px 20px;
  }
  .dataTableMain {
    padding: 30px 20px;
  }
  .orderDetailSec .form-control {
    height: 50px;
    font-size: 12px;
    padding-left: 15px;
  }
  .contactMain {
    padding: 30px 20px;
  }
  .contFormSec {
    padding: 0 20px 40px;
  }
  .aboutBox {
    padding: 12px;
  }
  .contactUsForm .form-control {
    padding-left: 45px;
    height: 45px;
  }
  .inputIcon {
    top: 15px;
    left: 15px;
    width: 15px;
  }
  .contactUsForm textarea.form-control {
    padding: 10px 40px;
  }

  .signUpBtn {
    width: 150px;
    height: 35px;
    font-size: 14px;
  }
  .aboutBox img {
    margin-bottom: 17px;
    width: 22px;
  }
  .aboutBox p {
    font-size: 13px;
  }
  .ansSec {
    margin-bottom: 20px;
  }
  .quesSecLeft {
    width: 23.3%;
  }
  .ansSec img {
    min-width: 75px;
    height: 60px;
    margin: 0 -6px;
    width: 75px;
  }
  .quizBtn {
    width: 150px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
  article {
    width: 200px !important;
    margin: 0px auto 10px !important;
    padding: 5px 5px !important;
  }
  article .count {
    padding: 2px;
  }
  .ansSec .row {
    padding: 0 0px;
    margin-bottom: 40px;
  }
  .qRightSub {
    padding: 15px 5px 5px;
    min-height: 55.77px;
  }
  .quesSecRight {
    min-height: 40.37px;
  }
  .quizMain {
    padding: 20px 8px 5px;
  }
  .quizMainTwo {
    padding: 20px 20px !important;
  }
  .quizMainTwo .myCard {
    padding: 10px 5px 5px;
    margin: 15px auto 5px;
  }
  .instrucMain h2 {
    margin-bottom: 10px !important;
  }
  .instrucMain {
    margin: 10px 0 !important;
  }
  .instrucMain ul li {
    font-size: 13px !important;
  }
  .guideLineMain {
    margin-top: 20px;
  }
  ul#pills-tab {
    flex-direction: column;
  }
  .sylTabSec li.nav-item {
    width: 70%;
    margin: 0 auto 5px;
  }
  .ceoMsgSecLeft h2 {
    margin-bottom: 20px;
    font-size: 20px;
}
a.logInBtn {
    width: auto;
    line-height: 1 !important;
}
}

@media (max-width: 400px) {
}
