@font-face {
  font-family: "poppinsthin";
  src: url("../fonts/poppins-thin-webfont.woff2") format("woff2"),
    url("../fonts/poppins-thin-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "poppinsextralight";
  src: url("../fonts/poppins-extralight-webfont.woff2") format("woff2"),
    url("../fonts/poppins-extralight-webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "poppinslight";
  src: url("../fonts/poppins-light-webfont.woff2") format("woff2"),
    url("../fonts/poppins-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "poppinsregular";
  src: url("../fonts/poppins-regular-webfont.woff2") format("woff2"),
    url("../fonts/poppins-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "poppinsmedium";
  src: url("../fonts/poppins-medium-webfont.woff2") format("woff2"),
    url("../fonts/poppins-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "poppinssemibold";
  src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2"),
    url("../fonts/poppins-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "poppinsbold";
  src: url("../fonts/poppins-bold-webfont.woff2") format("woff2"),
    url("../fonts/poppins-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "poppinsextrabold";
  src: url("../fonts/poppins-extrabold-webfont.woff2") format("woff2"),
    url("../fonts/poppins-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "poppinsblack";
  src: url("../fonts/poppins-black-webfont.woff2") format("woff2"),
    url("../fonts/poppins-black-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

/*------Base----*/
:root {
  --main-blue: #172933;
  --light-blue: #febb3a;
  --greenish: #e6f2f5;
  --main-grey: #f7f7f8;
  --my-grey: #e1e7eb;
  --sky-blue: #e4f5ff;
  --form-grey: #8D8D8D;

}

html {
  color: var(--main-blue);
}

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

h1,
.h1-lead {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 700;
  font-family: "poppinsbold";
}

.h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 700;
  font-family: "poppinsbold";
}

h2,
.h2 {
  font-size: 50px;
  font-family: "poppinsbold";
  font-weight: 700;
  line-height: 1.5;
}

h3,
.h3 {
  font-size: 44px;
  font-family: "poppinsbold";
  font-weight: 700;
  line-height: 1.23;
}

h4,
.h4 {
  font-size: 36px;
  font-family: "poppinsbold";
  font-weight: 700;
  line-height: 1.5;
}

h5,
.h5 {
  font-family: "poppinsbold";
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}

h6,
.h6 {
  font-size: 24px;
  font-family: "poppinsbold";
  font-weight: 700;
  line-height: 1.17;
}

.h6-small {
  font-size: 18px;
  font-family: "poppinsbold";
  font-weight: 700;
  line-height: 1.5;
}

.para-lead {
  font-family: "poppinsmedium";
  font-weight: 500;
  font-size: 22px;
  line-height: 1.64;
}

p {
  font-size: 16px;
  font-family: "poppinsmedium";
  font-weight: 500;
  line-height: 1.5;
}

.para-small {
  font-size: 15px;
  font-family: "poppinsmedium";
  font-weight: 500;
  line-height: 1.54;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

button.btn-blue {
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "poppinsbold";
  font-weight: 700;
  line-height: 1.1;
  background: var(--light-blue);
  border: 2px solid var(--light-blue);
  color: #000;
  padding: 18px 15px;
  min-width: 200px;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 5px;
}

button.btn-blue:hover {
  background: transparent;
}

/*--primary-nav--*/
.primary-nav-wrapper {
  background-color: var(--main-blue);
  padding: 16px 0 7px;
}

.primary-nav-wrapper .container,
.main-nav-wrapper .container {
  max-width: 1194px;
}

.p-menu ul {
  width: calc(100% + 58px);
  margin: 0 -29px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
}

.p-menu ul li {
  padding: 0 29px;
}

.p-menu ul li:nth-last-child(2) {
  padding: 0px 34px 0 22px;
}

.p-menu ul li:nth-last-child(1) {
  padding: 0px 34px 0 25px;
}


.p-menu ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "poppinssemibold";
  font-weight: 600;
  font-size: 13px;
  line-height: 1.61;
  transition: all 0.3s;
  display: block;
}

.p-menu ul li a:hover {
  text-decoration: underline;
}

.p-menu ul li.search-icon,
.search-icon-nav {
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
}

.p-menu ul li.search-icon:hover,
.search-icon-nav:hover {
  opacity: 0.8;
}

/*--search-bar-box--*/
.p-menu {
  position: relative;
}

.search-bar-btn {
  margin-top: 18px;
}

.search-bar-btn button {
  width: 100%;
  padding: 16px 10px 13px;
  text-transform: uppercase;
}

#search-bar-nav,
#search-bar-navv {
  background: #fff;
  padding: 10px 16px 27px;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.45);
  display: none;
  position: absolute;
  z-index: 2;
  right: 0;
}

#search-bar-nav {
  top: 36px;
  border-radius: 10px;
  max-width: 303px;
  width: 100%;
}

#search-bar-navv {
  right: 10px;
  top: 59px;
  z-index: 3;
}

#search-bar-nav p {
  color: #000;
}

.search-title {
  line-height: 1.75;
  font-weight: 700;
  font-family: "poppinsbold";
}

.search-des {
  font-family: "poppinsregular";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.71;
}

.search-bar-field {
  margin-top: 18px;
}

.search-bar-field input {
  width: 100%;
  padding: 17px 13px 15px;
  background: #f5f5f5;
  border: none;
  font-size: 16px;
  font-family: "poppinsregular";
  font-weight: 400;
  line-height: 1.2;
  border-top: 2px solid #B8B8B8;
  border-radius: 7px;
}

.search-bar-field input::placeholder {
  font-size: 16px;
  font-family: "poppinsregular";
  font-weight: 400;
  line-height: 1.75;
}

.search-bar-field input:focus {
  outline: none;
}

/*---main-nav--*/
.main-nav-wrapper {
  padding: 10px 0 14px;
}

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

.MN-logo {
  max-width: 192px;
  height: 75px;
  margin-top: 5px;
}

.MN-logo a {
  display: block;
}

.MN-logo img {
  max-height: 100%;
  width: 100%;
}

.MN-content {
  display: flex;
  align-items: center;
}

.MN-content ul {
  list-style-type: none;
}

.MN-content>ul {
  display: flex;
  margin: 0 -30px;
  width: calc(100% + 60px);
}

.MN-content>ul>li {
  padding: 0px 29px 0px 28px;
}

.MN-content>ul li a {
  color: var(--main-blue);
  text-decoration: none;
  font-family: "poppinssemibold";
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  transition: all 0.3s;
  position: relative;
  display: block;
}

.MN-content>ul li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--main-blue);
  bottom: -8px;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.6s;
  left: 50%;
  transform: translatex(-50%);
}

.MN-content>ul li a:hover:before {
  width: 100%;
}

.MN-content>ul li a span {
  color: var(--light-blue);
}

.MN-btn button {
  font-size: 18px;
  border-radius: 10px;
  margin: 0 0 0 60px;
  padding: 19px 15px 15px;
}

.search-icon-nav {
  display: none;
}

/*--nav-drop-down--*/

.menu-item-dropdown {
  position: absolute;
  background: var(--sky-blue);
  z-index: 2;
  display: none;
  top: 146px;
}

/*--to make space below hover --*/
.MN-content>ul a:after {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 50px;
  content: "";
  left: 0;
}

.menu-item-dropdown li {
  padding: 10px 48px;
  cursor: pointer;
}

.menu-item-dropdown li:hover {
  background: #fff;
}

.MN-content>ul li:hover .menu-item-dropdown {
  display: block;
}

.menu-item-dropdown ul,
.child-dropdown ul {
  list-style-type: none;
}

.menu-item-dropdown li {
  padding: 10px 48px;
  cursor: pointer;
}

.menu-item-dropdown a:before {
  display: none;
}

.menu-item-dropdown li:hover>a {
  text-decoration: underline;
}

/*--child-dropdown--*/
.menu-item-dropdown li {
  position: relative;
}

.child-dropdown {
  display: none;
  position: absolute;
  z-index: 30;
  background: var(--sky-blue);
  left: 100%;
  width: max-content;
  top: 0;
}

.menu-item-dropdown li:hover .child-dropdown {
  display: block;
}

/*----Hero sec----*/
.hero-sec-wrapper {
  background-color: var(--main-blue);
  position: relative;
}

.hero-sec-wrapper:before {
  position: absolute;
  content: " ";
  background-image: url("../images/heo-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  width: 50%;
  right: 0;
  height: 100%;
}

.hero-sec {
  min-height: 562px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 43px 0 50px;
}

.hero-sec-wrapper .container {
  max-width: 1590px;
}

.hero-content {
  width: 50%;
  padding-right: 30px;
}

.hero-content h1,
.hero-content p {
  color: #fff;
}

.hero-content p {
  margin-top: 6px;
}

.hero-sec .my-border {
  border-bottom: 5px solid var(--light-blue);
  display: inline-block;
  width: 80px;
  margin-top: 35px;
}

/*--dates tbl*/
.dates-tbl h6 {
  padding: 25px 15px 23px;
  text-align: center;
}

.dates-tbl-wrapper {
  padding: 102px 0 100px;
}

.dates-tbl-wrapper .container {
  max-width: 1000px;
}

.dates-tbl {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #E1E7EB;
}

.dates-tbl table {
  width: 100%;
  border-collapse: collapse;
}

.dates-tbl th {
  font-family: "poppinsbold";
  font-weight: 700;
  text-align: left;
  width: 160px;
  padding: 17px 10px 14px 30px;
}

.dates-tbl th,
.dates-tbl td {
  font-size: 16px;
  line-height: 1.75;
}

.dates-tbl td {
  font-family: "poppinsmedium";
  font-weight: 500;
  padding: 17px 10px 15px;
}

.dates-tbl tr {
  border-top: 1px solid var(--my-grey);
}

/*dates tbl ftr--*/

.dates-tbl-txt p {
  color: #fff;
  font-size: 20px;
  line-height: 1.56;
  font-family: "poppinsbold";
  font-weight: 700;
  word-spacing: 1.2px;
}

.dates-tbl-ftr {
  display: flex;
  background: var(--main-blue);
  color: #fff;
  padding: 26px 30px 21px;
  justify-content: space-between;
  align-items: center;
}

.dates-tbl-btn button {
  min-width: 239px;
  width: 100%;
}

.dates-tbl-btn button:hover {
  color: var(--light-blue);
}

.dates-tbl-txt {
  padding-right: 30px;
}

/*--tabs-slider-sec--*/

.tabs-section-wrapper {
  padding: 90px 0 78px;
}

.tabs-nav-main {
  margin-top: 58px;
  display: flex;
  padding-right: 42px;
}

.tabs-section h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tabs-nav-main li {
  margin: 0 51px;
  cursor: pointer;
  transition: all 0.3s;
}

.tabs-nav-main li a {
  text-transform: uppercase;
  font-family: "poppinssemibold";
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #8894a7;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: block;
}

.tabs-nav-main li:hover {
  opacity: 0.8;
}

.tab-slider-con .h6-small {
  margin-top: 23px;
}

.tab-slider-con p {
  margin-top: 3px;
}

.tabs-nav-main {
  position: relative;
}

.tab-arrow {
  position: absolute;
  right: 11px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-arrow:hover {
  opacity: 0.6;
}

.tab-slider-con {
  display: flex;
  flex-direction: column;
  /* height: 238px; */
}

.tab-slider-con-wrapper {
  margin: 0 16px;
  padding: 0 0 39px;
}

.tabs-slider-wrapper {
  padding: 40px 0 0px;
}

.tabs-slider-wrapper {
  position: relative;
}

.nextt_arrow,
.nextt2_arrow,
.nextt3_arrow,
.nextt4_arrow,
.nextt5_arrow,
.nextt6_arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translatey(-50px);
  border: 2px solid var(--light-blue);
  background: #fff;
  cursor: pointer;
  padding: 13px 18px;
  border-radius: 50px;
  z-index: 1;
  user-select: none;
}

.nextt_arrow :hover,
.nextt2_arrow:hover,
.nextt3_arrow:hover,
.nextt4_arrow:hover,
.nextt5_arrow:hover,
.nextt6_arrow:hover {
  opacity: 0.7;
}

.nextt_arrow img,
.nextt2_arrow img,
.nextt3_arrow img,
.nextt4_arrow img,
.nextt5_arrow img,
.nextt6_arrow img {
  vertical-align: middle;
}

.tabs-slider:before,
.tabs-slider2:before,
.tabs-slider3:before,
.tabs-slider4:before,
.tabs-slider5:before,
.tabs-slider6:before {
  position: absolute;
  height: 100%;
  width: 202px;
  content: "";
  z-index: 1;
  right: 0;
  background: linear-gradient(260deg, rgba(255, 255, 255, 1) 4%, rgba(255, 255, 255, 0) 82%);
}

/*--tab-dots--*/
.tabs-slider-wrapper .slick-dots li button {
  background: #39181c;
  padding: 0;
  height: 6px;
  width: 24px;
  opacity: 0.3;
  margin: 7px 0;
}

.tabs-slider-wrapper .slick-dots li.slick-active button {
  background: var(--light-blue);
  opacity: 1;
  width: 139px;
}

.tabs-slider-wrapper .slick-dots li button:before {
  font-size: 0;
}

.tabs-slider-wrapper .slick-dots li {
  height: auto;
  width: auto;
}

/*--tab-scroll-bar--*/

.tabs-nav-main ul {
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 0 20px;
  list-style-type: none;
  display: flex;
}

.tabs-nav-main ul::-webkit-scrollbar {
  height: 6px;
  width: 100%;
  background: #808080;
}

.tabs-nav-main ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.tabs-nav-main ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.tabs-nav-main ul::-webkit-scrollbar-thumb:horizontal {
  background: var(--light-blue);
  border-radius: 10px;
}

/*---IAT2----*/
.img-nd-txt2-wrapper {
  position: relative;
  background-color: var(--light-blue);
}

.img-nd-txt2-wrapper::before {
  position: absolute;
  content: " ";
  background-image: url(../images/image1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 50%;
  left: 0;
  height: 100%;
  z-index: 10;
}

.IAT2-img {
  display: none;
}

.IAT2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.IAT2-content {
  width: 50%;
  padding-right: 30px;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}

.IAT2-content h2 {
  color: var(--main-blue);
}

.IAT2-content p {
  color: var(--main-blue);
  margin-top: 10px;
  max-width: 554px;
  line-height: 1.63;
}

.IAT2-text {
  padding: 92px 100px 90px;
}

/*--degree-sec--*/

.degree-sec-wrapper {
  padding: 100px 0 97px;
}

.degree-sec-wrapper .container {
  max-width: 1588px;
}

.degree-sec {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -21.5px;
  width: calc(100% + 43px);
}

.degree-con-box {
  width: calc(33.33% - 43px);
  margin: 0 21.5px;
}

.degree-con-main {
  padding: 30px 28px 20px 30px;
}

.course-wrapper {
  display: flex;
  align-items: center;
  margin: 21px 0 21px;
}

.course-wrapper:last-child {
  margin-bottom: 0;
}

.course-info {
  display: flex;
  max-width: 187px;
  padding-right: 10px;
  width: 100%;
}

.course-info-icon {
  padding-right: 6px;
}

.degree-sec .course-calender {
  background: #f5f5f5;
  padding: 33px 33px;
  border-radius: 10px;
}

.course-info-head p {
  font-family: "poppinsmedium";
  font-weight: 500;
  line-height: 1.53;
  font-size: 13px;
  color: #5d6f80;
  text-transform: uppercase;
}

.course-des p {
  font-family: "poppinsmedium";
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
}

.degree-con-box.cta p {
  margin-top: 17px;
  line-height: 1.63;
}

.arrow-btn {
  margin-top: 28px;
}

.arrow-btn a {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  font-family: "poppinssemibold";
}

.arrow-btn a span {
  color: var(--main-blue);
}

.arrow-btn a img {
  padding-right: 23px;
}

.arrow-btn a:hover img {
  opacity: 0.7;
}

.arrow-btn a:hover {
  text-decoration: underline;
}

/*--IAT-doresm--*/

.IWT-deresm-wrapper,
.IWT-tiposk-wrapper {
  padding: 100px 0 96px;
}

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

.IWT-doresm-content {
  width: calc(57% - 35px);
  padding-top: 21px;
  padding-right: 30px;
}

.IWT-doresm-content p {
  line-height: 1.61;
  margin-top: 20px;
}

.IWT-doresm-content p:nth-of-type(2) {
  margin-top: 18px;
}

.IWT-doresm-img-main {
  width: 43%;
}

.IWT-doresm-img-main img {
  width: 100%;
}

.readmore-icon {
  margin-top: 27px;
  display: flex;
  align-items: center;
}

.readmore-icon button {
  margin: 0 15px 0;
  font-family: "poppinsbold";
  font-weight: 700;
  color: var(--main-blue);
  font-size: 16px;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.readmore-icon {
  cursor: pointer;
  transition: all 0.3s;
}

.readmore-icon:hover {
  opacity: 0.8;
}

.IWT-doresm-img {
  margin-bottom: 18px;
}

.IWT-doresm-img:nth-last-child(1) {
  margin-bottom: 0;
}

/*----------------*/
.IWT-tiposk-wrapper {
  background-color: var(--greenish);
  background-image: url("../images/pattern.png");
}

.IWT-tiposk-wrapper .IWT-doresm {
  flex-direction: row-reverse;
}

.IWT-doresm-img-main img {
  vertical-align: bottom;
}

.IWT-tiposk-wrapper .IWT-doresm-content {
  padding-right: 0px;
  padding-left: 30px;
}

/*--IWT--video-popup--*/
.IWT-tiposk-wrapper,
.IWT-deresm-wrapper {
  position: relative;
}

.popup,
.popupp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.open-popup,
.open-popupp {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  /* height: 100vh; */
}

.read-container iframe {
  width: 948px;
  height: 449px;
}

.popup:before,
.popupp:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  position: absolute;
}

iframe {
  position: relative;
  z-index: 100;
  border: 8px solid #fff;
}

.close-popup,
.close-popupp {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.close-popup:hover {
  opacity: 0.7;
}

/*--Faq--sec--*/
.FAQ {
  padding: 107px 0 100px;
}

.FAQ-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 46px 0 0;
}

.FAQ-wrapper .FAQ-left,
.FAQ-wrapper .FAQ-right {
  width: calc(50% - 15px);
}

/*--Accordian sec---*/
.accordian-head {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 5px;
  margin: 3px 0 0;
  padding: 12px 20px 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.accordian-para {
  overflow: hidden;
  display: none;
}

.toggle {
  display: block;
}

/*---accordian open closed styling and img---*/
.open .accordian-head {
  background-color: var(--main-blue);
  display: flex;
}

.close .accordian-head {
  display: flex;
}

.open .accordian-head h6 {
  color: #fff;
}

.accordian-head h6 {
  font-family: "poppinsmedium";
  font-weight: 500;
  margin-right: 25px;
}

.arrow-img {
  position: relative;
}

.arrow-img:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 8px;
  right: 7px;
  top: 50%;
  transform: translatey(-60%);
}

.open .arrow-img:before {
  background: url("../images/accordian.png") no-repeat;
  background-size: contain;
}

.close .arrow-img:before {
  background: url("../images/accordian-black.png") no-repeat;
  background-size: contain;
}

.accordian-para p {
  line-height: 1.75;
  padding: 26px 0 20px;
  font-weight: 400;
  font-family: "poppinsregular";
}

/*--progress-sec--*/
.progress-sec-wrapper {
  padding: 103px 0 72px;
}

.progress-sec-wrapper .container {
  max-width: 774px;
}

.progress-sec h2 {
  text-align: center;
}

.progress-content-main {
  margin-top: 55px;
}

.progress-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
}

.progress-img {
  max-width: 214px;
}

.progress-img img {
  width: auto;
}

.progress-text {
  width: calc(100% - 530px);
}

.progress-text img {
  width: 100%;
}

.progress-bar-main {
  max-width: 500px;
  width: 100%;
  height: 16px;
  background: var(--my-grey);
  border-radius: 8px;
  margin-left: 30px;
}

.progress-bar {
  background: var(--main-blue);
  height: 16px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.progress-content-main .p-1 {
  width: 190px;
}

.progress-content-main .p-2 {
  width: 64%;
}

.progress-content-main .p-3 {
  width: 66%;
}

.progress-content-main .p-4 {
  width: 70%;
}

.progress-content-main .p-5 {
  width: 72%;
}

.progress-content-main .p-6 {
  width: 80%;
}

.progress-text .h6-small {
  text-align: right;
  line-height: 1;
  letter-spacing: -0.8px;
}

/*--TWB-sec--*/
.txt-with-btn-cta {
  padding: 79px 0 29px;
  background: var(--main-blue);
  background-image: url("../images/Pattern2.png");
  color: #fff;
}

.txt-with-btn-cta .container {
  max-width: 1460px;
}

.txt-with-btn-cta .my-border {
  border-bottom: 3px solid var(--light-blue);
  display: inline-block;
  width: 60px;
  margin-top: 22px;
}

.TWB-cta-content p {
  margin-top: 20px;
}

.TWB-btns-main {
  margin: 40px -9px;
  width: calc(100% + 18px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.TWB-btns-main .btn-blue {
  min-width: 289px;
  margin: 0 9px 10px;
}

.TWB-btns-main .TWB-btn2 {
  background-color: #fff;
}

.TWB-btns-main .btn-blue:hover {
  color: var(--light-blue);
}

.TWB-btn2:hover {
  background-color: var(--main-blue);
}

.TWB-cta-content {
  text-align: center;
}

/*------last--slider sec---*/

.slider-last-wrapper .slider-img.slick-slide {
  margin: 0 10px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-last-sec {
  position: relative;
}

.slider-last-sec:before {
  position: absolute;
  content: "";
  left: 0;
  background: #000;
  width: 170px;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.slider-last-sec:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #000;
  width: 170px;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.slider-last-wrapper {
  position: relative;
}

.slider-last-wrapper .priv_arrow,
.slider-last-wrapper .next_arrow {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  z-index: 20;
  background: white;
  padding: 7px 10px 4px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-last-wrapper .next_arrow {
  right: 60px;
}

.slider-last-wrapper .priv_arrow {
  left: 60px;
}

.slider-last-wrapper .priv_arrow:hover,
.slider-last-wrapper .next_arrow:hover {
  background: var(--light-blue);
}

/*--Footer--*/
footer {
  background: var(--my-grey);
  padding: 118px 0 28px;
  border-bottom: 1px solid #9EB2BD;
}

footer .container {
  max-width: 1226px;
}

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

.ftr-left {
  width: 45%;
  padding-right: 35px;
}

.ftr-right {
  width: 55%;
}

.ftr-head {
  font-size: 15px;
  font-family: "poppinsbold";
  font-weight: 700;
  line-height: 1.86;
  margin-top: 23px;
}

.ftr-logo {
  height: 81px;
  max-width: 220px;
}

.ftr-logo img {
  width: 100%;
  max-height: 100%;
}

.address-main p,
.address-main a {
  font-size: 15px;
  font-family: "poppinsmedium";
  font-weight: 500;
  line-height: 1.6;
}

.address-main a {
  text-decoration: none;
  color: var(--main-blue);
  transition: all 0.3s;
  display: flex;
}

.address-main a span {
  padding: 0 15px 0 0;
}

.address-main a:hover {
  opacity: 0.8;
}

.address-wrapper {
  max-width: 300px;
}

.address-main {
  display: flex;
  margin-top: 7px;
}

.address-main span {
  display: inline-block;
  padding: 4px 15px 0 0;
}

/*---ftr-right--*/
.partner-logos-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -15px;
  width: calc(100% + 30px);
  margin-top: 30px;
}

.partner-logos-main {
  max-width: 87%;
  margin-left: auto;
}

.ftr-list li {
  margin: 0 0 9px 0;
}

.partner-logo {
  height: 77px;
  max-width: 74px;
  margin: 0 15px;
}

.partner-logo img {
  max-height: 100%;
  width: 100%;
}

.ftr-right-content {
  margin-top: 37px;
  display: flex;
  justify-content: space-between;
}

.ftr-list ul {
  list-style-type: none;
  padding-right: 20px;
}

.ftr-list ul a {
  text-decoration: none;
  color: var(--blue-main);
  font-size: 15px;
  font-family: "poppinsmedium";
  font-weight: 500;
  line-height: 1.54;
  transition: all 0.3s;
}

.ftr-right .para-small {
  text-align: right;
  font-size: 13px;
}

.ftr-list {
  width: 23.5%;
}

.ftr-r-address {
  width: 43%;
  padding-left: 10px;
}

.ftr-r-address .para-small {
  font-size: 15px;
  text-align: left;
  margin-top: 9px;
}

.ftr-r-address .para-small:first-child {
  margin-top: 0
}

.ftr-list a:hover {
  text-decoration: underline;
}

/*--copyright--*/
.copyright-wrapper {
  background: var(--my-grey);
  padding: 34px 0 40px;
}

.pg-link a {
  text-decoration: none;
  color: var(--blue-main);
  font-family: "poppinsmedium";
  font-weight: 500;
  font-size: 13px;
  line-height: 1.84;
  transition: all 0.3s;
  position: relative;
}

.pg-link a:hover {
  text-decoration: underline;
}

.copyright-right p {
  font-family: "poppinsmedium";
  font-weight: 500;
  font-size: 13px;
  line-height: 1.84;
}

.copyright-links {
  display: flex;
  margin: 9px -16px 0;
  width: calc(100% + 32px);
}

.pg-link {
  padding: 0 16px;
}

.copyright-left {
  display: flex;
  align-items: center;
}

.social-icon {
  padding: 0 18px 0 22px;
}

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

.pg-link a:after {
  position: absolute;
  content: "|";
  right: -17px;
}

.copyright-links .pg-link:last-child a:after {
  display: none;
}

.social-icon img {
  transition: all 0.3s;
}

.social-icon img:hover {
  opacity: 0.8;
}

.social-icon a {
  position: relative;
  display: flex;
  justify-content: center;
}

.tooltip {
  position: absolute;
  background: var(--main-blue);
  color: #fff;
  padding: 5px 10px;
  display: none;
  top: -36px;
  font-family: "poppinsmedium";
  font-weight: 500;
  font-size: 16px;
  justify-content: center;
}

.tooltip:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: #fff;
  bottom: -5px;
  transform: rotate(45deg);
  background: #000;
}

.social-icon a:hover .tooltip {
  display: flex;
  opacity: 1 !important;
}

.social-icon img {
  width: 100%;
}

/*--request-form--*/
.request-form-wrapper {
  padding: 20px 0;
}

.request-form-wrapper .container {
  max-width: 607px;
}

.request-form h4 {
  max-width: 298px;
  margin-top: 29px;
}

.request-form p {
  max-width: 408px;
  font-size: 18px;
  font-family: "poppinsregular";
  font-weight: 400;
  line-height: 1.35;
  margin-top: 9px;
}

.request-form {
  position: relative;
  z-index: 1;
}

.request-form form {
  margin-top: 60px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  width: calc(50% - 9px);
  background-color: #f5f5f5;
  margin-top: 23px;
  padding: 4px 13px 7px 13px;
  border-top: 2px solid #D2D2D2;
}

.form-field label {
  font-size: 10px;
  font-family: "poppinsregular";
  font-weight: 400;
  line-height: 1.4;
  color: var(--form-grey);
}

.form-field input,
.form-field select {
  border: none;
  background-color: transparent;
  margin-top: 6px;
  color: var(--form-grey);
}

.form-field input:focus,
.form-field select:focus {
  border: none;
  outline: none;
}


.form-field input[type=text]::placeholder {
  color: var(--main-blue);
}

.form-row.full-field .form-field {
  width: calc(100% - 0px);
}

.request-form-btn button {
  margin-top: 60px;
  padding: 16px 15px 13px;
  min-width: 183px;
  text-transform: lowercase;
}

/*--formpopup--*/

.popupf {
  top: 0;
  z-index: 20;
  width: 50%;
  right: 0;
  height: 100vh;
  position: fixed;
  width: 50%;
  background: #fff;
  display: none;
  align-items: center;
  padding: 20px 0;
}

.popupt {
  top: 0;
  z-index: 21;
  width: 50%;
  right: 0;
  height: 100vh;
  position: fixed;
  width: 50%;
  background: #fff;
  display: none;
  align-items: center;
  padding: 20px 0;

}

.popupf.active {
  display: flex;
}

.popupt.active {
  display: flex;
}

html.active body {
  overflow: hidden;
}

.close-popupf {
  position: absolute;
  right: 23px;
  cursor: pointer;
  transition: all 0.3s;
  top: 38px;
  display: flex;
  align-items: center;

}


.close-popupf span {
  padding-right: 16px;
  font-size: 16px;
  font-family: "poppinsregular";
  font-weight: 400;
}

.close-popupf:hover {
  opacity: 0.7;
}

/*--thanku msg--*/
.thanku-f-wrapper {
  padding: 30px 0;
}

.thanku-f-wrapper .container {
  max-width: 400px;
}

.thanku-form .thanku-img {
  margin-top: 75px;
}

.thanku-form h4 {
  margin-top: 26px;
}

.thanku-form p {
  font-size: 18px;
  font-family: "poppinsregular";
  font-weight: 400;
  line-height: 1.77;
  margin-top: 20px;
}

/*--thanks--popup--*/

.close-popupt {
  position: absolute;
  right: 23px;
  cursor: pointer;
  transition: all 0.3s;
  top: 38px;
  display: flex;
  align-items: center;

}

.close-popupt span {
  padding-right: 16px;
  font-size: 16px;
  font-family: "poppinsregular";
  font-weight: 400;
}

.close-popupt:hover {
  opacity: 0.7;
}

/*---MQ-------*/


@media screen and (max-width: 1600px) {
  .hero-sec-wrapper:before {
    background-position: center;
  }

  .slider-last-wrapper .next_arrow {
    right: 10px;
  }

  .slider-last-wrapper .priv_arrow {
    left: 10px;
  }

  .degree-sec {
    margin: 0;
    width: calc(100% + 0px);
  }

  /*---last-slider--*/
}

@media screen and (max-width: 1366px) {

  h2,
  .h2 {
    font-size: 45px;
  }

  h1,
  .h1-lead {
    font-size: 50px;
  }

  .p-menu ul {
    margin: 0;
    width: 100%;
  }

  .MN-content>ul>li {
    padding: 10px 25px;
  }

  .menu-item-dropdown ul li a {
    font-size: 16px;
  }

  /* .child-dropdown {
    right: -376px;
  } */

  .para-lead {
    font-size: 20px;
  }

  /*---img and text---*/
  .IAT-cta {
    width: calc(60% - 0px);
  }

  .IAT-list-wrapper {
    max-width: 100%;
    width: 40%;
  }

  /*---IAT2---*/
  .IAT2-text {
    padding: 50px 50px;
  }

  .degree-con-box {
    width: calc(33.33% - 20px);
    margin: 0 10px;
  }

  .degree-con-main {
    padding: 30px 10px 20px;
  }

  .tabs-nav-main li {
    margin: 0 40px;
  }
}

@media screen and (max-width: 1024px) {

  h1,
  .h1-lead {
    font-size: 44px;
  }

  .h1 {
    font-size: 40px;
  }

  .para-lead {
    font-size: 18px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  .p-menu ul li {
    padding: 0 15px;
  }

  .p-menu ul li:nth-last-child(2) {
    padding: 0 15px;
  }

  .p-menu ul li:nth-last-child(1) {
    padding: 0 15px;
  }


  .MN-btn button {
    min-width: 157px;
    padding: 18px 10px;
    margin: 0 0 0 10px;
  }

  .MN-content>ul {
    margin: 0;
    width: 100%;
  }

  .MN-logo {
    max-width: 155px;
    height: 60px;
  }

  .MN-content>ul>li {
    padding: 10px 9px;
  }

  .MN-content>ul>li a {
    font-size: 16px;
  }

  .menu-item-dropdown ul li a {
    font-size: 14px;
  }

  .menu-item-dropdown {
    max-width: 280px;
  }

  .menu-item-dropdown li {
    padding: 10px 10px
  }

  /* .child-dropdown {
    right: -273px;
  } */


  .hero-sec {
    padding: 50px 0 50px;
    min-height: 450px;
  }

  /*--img and txt 2--*/
  .IAT2-content p {
    max-width: 100%;
  }


  .img-nd-txt2-wrapper:before {
    display: none;
  }

  .IAT2-content {
    width: 100%;
    flex-direction: column;
    padding-right: 0
  }

  .IAT2-img {
    width: 100%;
    display: block;
  }

  .IAT2-text {
    width: 100%
  }

  /*--IWT-doresm--*/
  h3,
  .h3 {
    font-size: 36px;
  }

  .IWT-doresm-content {
    width: calc(57% - 18px);
    padding-top: 0px;
    padding-right: 18px;
  }

  .FAQ-wrapper .FAQ-left,
  .FAQ-wrapper .FAQ-right {
    width: calc(100% - 0px);
  }

  /*---degree-sec--*/

  .degree-con-box {
    width: calc(50% - 20px);
    margin: 0 10px;
  }

  .degree-sec {
    margin: 0 -10px;
    width: calc(100% + 20px);
  }

  /* 
  .tab-arrow {
    display: none;
  } */

  .dates-tbl-wrapper {
    padding: 100px 0 70px;
  }

  .tabs-section-wrapper,
  .degree-sec-wrapper,
  .IWT-deresm-wrapper,
  .IWT-tiposk-wrapper,
  .FAQ,
  .progress-sec-wrapper {
    padding: 70px 0;
  }

  footer {
    padding: 70px 0 28px;
  }

  .menu-item-dropdown {
    top: 135px;
  }
}

@media screen and (max-width: 768px) {

  h2,
  .h2 {
    font-size: 32px;
  }

  .primary-nav-wrapper {
    display: none;
  }

  .p-menu ul {
    justify-content: space-between;
  }

  .p-menu ul li a {
    font-size: 11px;
    transition: all 0.3s;
  }

  .p-menu ul li {
    padding: 0 9px;
  }

  .p-menu ul li:nth-last-child(2) {
    padding: 0 9px;
  }

  .p-menu ul li:nth-last-child(1) {
    padding: 0 9px;
  }

  .MN-content {
    display: none;
  }

  .p-menu-mbl li a:before {
    display: none;
  }

  .p-menu-mbl li a:hover {
    text-decoration: underline;
  }

  .toggler {
    display: block;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 22px;
    width: 100%;
    height: 19px;
  }

  .toggler img {
    width: 100%;
    max-height: 100%;
  }

  .toggler:hover {
    opacity: 0.6;
  }

  #toggler-icon-closer {
    display: none;
  }

  .MN-content>ul {
    flex-direction: column;
  }

  .MN-content>ul li a:before {
    display: none;
  }

  .MN-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 0;
  }

  .MN-btn button {
    margin: 0 0;
    font-size: 18px;
  }

  .MN-logo {
    max-width: 84px;
    height: 33px;
  }

  .MN-btn {
    width: 100%;
    margin-top: 15px;
  }

  .MN-content ul li a {
    font-size: 16px;
    transition: all 0.3s;
  }

  .MN-content ul li a:hover {
    text-decoration: underline;
  }

  .menu-item-dropdown li:hover .child-dropdown {
    display: none;
  }

  .main-nav-wrapper {
    padding: 13px 0 8px;
  }

  .search-icon-nav {
    display: block;
  }

  .menu-item-dropdown {
    max-width: 100%;
  }

  /*-menu-arrow--*/
  .menu-item-dropdown {
    position: static;
  }

  .MN-content>ul li .menu-item-dropdown {
    display: block;
  }

  .MN-content>ul>li {
    margin: 15px 0;
    padding: 0;
    position: relative;
  }

  .MN-content>ul>li:after {
    position: absolute;
    content: '';
    background-image: url("../images/Path.svg");
    background-repeat: no-repeat;
    top: 2%;
    right: 0;
    cursor: pointer;
    width: 20px;
    height: 10px;
    z-index: 1;
  }


  .MN-content>ul>li a,
  .p-menu-mbl li {
    padding: 0 20px;
  }

  .MN-content {
    margin: 0 -15px;
    width: calc(100% + 30px) !important;
  }

  /*--dropdown mbl--*/

  .child-dropdown {
    display: none;
  }

  .menu-item-dropdown {
    position: relative;
    top: 10px;
  }

  .menu-item-dropdown li {
    padding: 10px 25px;
  }

  /*mbl p-menu--*/

  .MN-content>ul a:after {
    display: none;
  }

  .MN-content>ul {
    border-bottom: 2px solid var(--my-grey);
  }


  .p-menu-mbl ul {
    list-style-type: none;
  }

  .p-menu-mbl a {
    text-decoration: none;
    font-family: "poppinssemibold";
    font-weight: 600;
    font-size: 18px;
    line-height: 1.61;
    transition: all 0.3s;
    color: var(--main-blue)
  }

  .p-menu-mbl li {
    margin: 22px 0
  }

  .p-menu-mbl li a {
    position: relative;
    transition: all 0.3s
  }

  .p-menu-mbl li a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--main-blue);
    bottom: -8px;
    transition: all 0.2s ease-in-out;
    transition-duration: 0.6s;
    left: 50%;
    transform: translatex(-50%);
  }

  .p-menu-mbl ul li a:hover:before {
    width: 100%;
  }

  .MN-btn button {
    width: 100%
  }


  /*hero--*/
  .hero-content {
    width: 100%;
    padding-right: 0;
  }

  .hero-sec-wrapper:before {
    width: 100%;
  }

  .hero-sec {
    min-height: 370px;
  }

  .hero-sec-wrapper::after {
    background: rgba(5, 33, 59, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    content: " ";
  }

  h1,
  .h1-lead {
    font-size: 40px;
  }

  .IAT2-text {
    padding: 50px 15px 48px;
  }

  /*--IAT-doresm--*/
  .IWT-doresm-content {
    width: calc(100% - 0px);
    padding-top: 50px;
  }

  .IWT-doresm {
    flex-direction: column-reverse;
  }

  .IWT-tiposk-wrapper .IWT-doresm {
    flex-direction: column-reverse;
  }

  .IWT-doresm-img-main {
    width: 100%;
  }

  .IWT-doresm-content,
  .IWT-tiposk-wrapper .IWT-doresm-content {
    padding: 50px 0 0;
  }

  .dates-tbl-ftr {
    flex-wrap: wrap;
  }

  .dates-tbl-btn {
    margin-top: 20px;
  }

  .dates-tbl-btn button {
    min-width: 239px;
  }

  .dates-tbl-txt {
    padding-right: 0;
  }

  .dates-tbl-wrapper {
    padding: 50px 0;
  }

  /*--progress-sec--*/
  .progress-text {
    padding: 0;
    width: calc(100% - 0px);
    margin: 15px 0 4px;
  }

  .progress-text .h6-small {
    text-align: left;
  }

  .progress-bar-main {
    max-width: 100%;
    margin: 0;
  }

  /* .progress-content {
    margin: 10px 0;
  } */

  .progress-content-main {
    margin-top: 20px;
  }

  /*--t-w-b--*/

  .para-lead {
    font-size: 16px;
  }

  .txt-with-btn-cta {
    padding: 57px 0 22px;
  }

  .TWB-btns-main {
    margin: 28px 0px;
    width: calc(100% + 0px);
    flex-direction: column;
    align-items: center;
  }

  .TWB-btns-main .btn-blue {
    margin: 0 0 17px;
  }

  .TWB-btns-main .btn-blue:last-child {
    margin: 0;
  }

  .TWB-cta-content p {
    margin-top: 14px;
  }

  /*---footer--*/
  .ftr-left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-right: 0;
  }

  .address-wrapper {
    max-width: 100%;
    text-align: center;
  }

  .address-main {
    justify-content: center;
    margin-top: 12px;
  }

  .partner-logos-main {
    max-width: 100%;
    margin: 0 auto;
  }

  .ftr-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 33px;
  }

  .ftr-list ul li {
    display: inline;
  }

  .ftr-list ul {
    padding-right: 0;
  }

  .ftr-list li {
    margin: 0 5px;
  }

  .ftr-right-content {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 17px;
  }

  .ftr-right .para-small {
    line-height: 1.7;
  }

  .ftr-list {
    width: max-content;
  }

  .ftr-r-address {
    width: 100%;
    padding-left: 0;
  }

  .ftr-r-address .para-small:first-child {
    margin-top: 10px;
  }

  .ftr-list {
    margin-top: 10px;
  }

  /* .ftr-list:first-child{
  margin-top: 0;
} */

  .partner-logo {
    height: 54px;
    max-width: 54px;
  }

  .copyright {
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
  }

  .copyright-right {
    margin-top: 20px;
    text-align: center;
  }

  .copyright-links {
    margin: 9px -10px 0;
    width: calc(100% + 10px);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .pg-link {
    padding: 0 10px;
  }

  .ftr-r-address .para-small {
    text-align: center;
  }

  .ftr-right .para-small {
    text-align: center;
  }

  .address-main img {
    display: none;
  }

  .address-main span {
    padding: 0;
  }

  .address-main a span {
    padding: 0;
  }

  .slider-last-sec:before,
  .slider-last-sec:after {
    display: none;
  }

  /*--degree-sec--*/

  .degree-con-box {
    width: calc(100% - 0px);
    margin: 0;
  }

  .degree-sec {
    margin: 0;
    width: calc(100% + 0px);
  }

  .degree-sec-wrapper {
    padding: 50px 0;
  }

  .degree-con-main {
    padding: 30px 0 20px;
  }

  .degree-con-box.cta p {
    margin-top: 17px;
    line-height: 1.62;
  }

  .arrow-btn {
    margin-top: 16px;
  }

  .degree-con-main {
    padding: 30px 0 30px;
  }

  .tabs-section-wrapper,
  .tabs-section-wrapper,
  .degree-sec-wrapper,
  .IWT-deresm-wrapper,
  .IWT-tiposk-wrapper,
  .FAQ,
  .progress-sec-wrapper {
    padding: 50px 0;
  }

  /*--form-popups--*/
  .popupf {
    width: 100%;
    z-index: 41;
  }

  .popupt {
    width: 100%;
    z-index: 42;
  }

  .request-form h4 {
    font-size: 36px;
  }
}

@media screen and (max-width: 480px) {

  h1,
  .h1-lead {
    font-size: 32px;
    line-height: 1.28;
  }

  .h1 {
    font-size: 32px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  .hero-sec {
    padding: 33px 0 32px;
    min-height: 271px;
  }

  .hero-sec .my-border {
    width: 60px;
    margin-top: 13px;
  }

  .hero-content p {
    word-spacing: -1px;
    margin-top: 16px;
    font-size: 18px;
  }

  .IAT2-img {
    height: 240px;
  }

  .IWT-doresm-content,
  .IWT-tiposk-wrapper .IWT-doresm-content {
    padding: 25px 0 0;
  }

  .readmore-icon {
    margin-top: 18px;
  }

  .IWT-doresm-img {
    margin-bottom: 14px;
  }

  .dates-tbl h6 {
    text-align: left;
    padding: 28px 30px 18px;
  }

  .dates-tbl td {
    font-size: 14px;
    padding: 20px 10px 15px;
  }

  .dates-tbl-ftr {
    padding: 26px 15px 35px;
  }

  .dates-tbl-txt p {
    font-size: 22px;
  }

  .dates-tbl-txt p {
    font-size: 22px;
    word-spacing: 0px;
    line-height: 1.36;
  }

  .dates-tbl-btn {
    margin-top: 17px;
  }

  .dates-tbl-btn button {
    padding: 17px 15px 13px;
  }

  .FAQ h4 {
    text-align: center;
  }

  .FAQ {
    padding: 2px 0 25px;
  }

  .accordian-head {
    border-radius: 10px;
    margin: 7px 0 0;
    padding: 14px 11px 13px;
  }

  .h6-small {
    font-size: 16px;
  }

  .FAQ-wrapper {
    margin: 20px 0 0;
  }

  .accordian {
    margin: 10px 0;
  }

  .accordian-para p {
    padding: 16px 0 7px;
  }

  /*--degree--*/
  .course-wrapper {
    flex-direction: column;
    margin: 30px 0;
  }

  .course-des {
    font-size: 20px;
    margin-top: 5px
  }

  .degree-sec .course-calender {
    padding: 34px 34px 55px 34px;
  }

  .course-info {
    padding-right: 15px;
    width: auto;
  }

  .tab-slider-con-wrapper {
    margin: 0;
  }

  .nextt_arrow,
  .nextt2_arrow,
  .nextt3_arrow,
  .nextt4_arrow,
  .nextt5_arrow,
  .nextt6_arrow {
    right: 0;
  }

  .ftr-list ul a,
  .ftr-r-address .para-small {
    font-size: 14px;
  }

  .tabs-slider-wrapper .slick-dots li button {
    width: 20px;
  }

  .tabs-slider-wrapper .slick-dots li.slick-active button {
    width: 20px;
  }

  .tab-slider-con .h6-small {
    font-size: 18px;
  }

  .tab-slider-con .h6-small {
    margin-top: 13px;
  }

  .tabs-section h5 {
    letter-spacing: 0.3px;
    font-size: 24px;
  }

  .tabs-nav-main {
    margin-top: 26px;
  }

  /* .progress-content {
    margin: 20px 0 22px;
  } */

  .progress-img {
    max-width: 105px;
  }

  .tabs-nav-main ul {
    padding: 0 0 10px;
  }

  .tabs-slider-wrapper {
    padding: 7px 0 0px;
  }

  .tab-slider-con-wrapper {
    padding: 0 0 10px;
  }

  .dates-tbl-wrapper {
    padding: 50px 0 25px;
  }

  .tabs-section-wrapper {
    padding: 27px 0 39px;
  }

  .degree-sec-wrapper {
    padding: 50px 0 0;
  }

  .IWT-deresm-wrapper,
  .IWT-tiposk-wrapper {
    padding: 51px 0 45px;
  }

  .progress-sec-wrapper {
    padding: 24px 0 46px;
  }

  footer {
    margin-top: 79px;
    padding: 44px 0 2px;
  }

  .TWB-btns-main .btn-blue {
    padding: 20px 15px 18px;
  }


  .tabs-slider:before,
  .tabs-slider2:before,
  .tabs-slider3:before,
  .tabs-slider4:before,
  .tabs-slider5:before,
  .tabs-slider6:before {
    display: none;
  }
}

@media screen and (min-width: 1601px) {
  .slider-last-wrapper .slick-list.draggable {
    height: 245px !important;
  }

  .slider-last-wrapper .slick-initialized .slick-slide {
    height: 245px;
    width: 370px !important;
  }
}

@media screen and (min-width: 769px) {
  #menu {
    width: auto !important;
    display: flex !important;
  }

  .toggler {
    display: none !important;
  }

  #search-bar-navv {
    display: none !important;
  }

  .p-menu-mbl {
    display: none !important;
  }
}

ul#tabs-nav li:hover a,
ul#tabs-nav li.active a {
  color: var(--main-blue)
}