@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Roboto:wght@700&display=swap');

* {

  margin: 0px;

  padding: 0px;

  box-sizing: border-box;

}

button:focus {
  outline: none;
}

html,
body {

  overflow-x: hidden;

  color: #2b2024;

}

html {

  font-size: 100%;

  font-family: 'Poppins', sans-serif;

}

.flex {
  display: flex;
}

.spce-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {

  margin: 0px;

  font-family: 'Poppins', sans-serif;

  line-height: 1;

}

ul,
li {

  list-style: none;

  padding: 0px;

  margin: 0px;

}

a {

  text-decoration: none;

  color: unset;

}

p {

  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;


}

a:hover {

  text-decoration: none;

}

.align-center {
  align-items: center;
}

.ptb {

  padding-top: 50px;

  padding-bottom: 50px;

}

.ptb-70 {

  padding-top: 70px;

  padding-bottom: 70px;

}

.ptb-100 {

  padding-top: 100px;

  padding-bottom: 100px;

}

.pt-100 {

  padding-top: 100px;

}

.dark-blue {
  color: #0d1028;
}



/* ========================================

               main-header menu section

    ======================================= */
.main-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0px 30px;
  z-index: 99999;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}


.main-header.sticky {
background: #fff;
    position: fixed;
    z-index: 999;
    margin: 0 auto;
    height: 85px;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 1px 2px 10px #ccc;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: sticky-animation;
    animation-name: sticky-animation;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}



@-webkit-keyframes sticky-animation {



  0% {



    opacity: 0;



    -webkit-transform: translateY(-100%);



  }



  100% {



    opacity: 1;



    -webkit-transform: translateY(0);



  }



}



@keyframes sticky-animation {



  0% {



    opacity: 0;



    transform: translateY(-100%);



  }



  100% {



    opacity: 1;



    transform: translateY(0);



  }



}









.open-menu {

  position: absolute;

  right: 18px;

  top: 22px;

  cursor: pointer;

  padding: 10px 35px 16px 0px;

}





.navbar .logo a {

  font-size: 30px;

  color: #ffffff;

  text-decoration: none;

  font-weight: 700;

}



/*  nav ul li a:not(:only-child):after {*/
/*    content: "\f078";*/
/*    font-family: fontawesome;*/
/*    font-size: 12px;*/
/*    position: absolute;*/
/*    right: -3px;*/
/*    top: 0px;*/
/*}*/

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  list-style: none;

  padding: 0 13px;

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;

}

nav .navbar .links li a {

  height: 100%;

  text-decoration: none;

  white-space: nowrap;

  color: #000000;

  font-size: 1rem;

  font-weight: 600;

  text-transform: uppercase;

}

.navbar .links li .sub-menu li a {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.navbar .links li .sub-menu li:hover>a {
  color: #ff6114;
}

.links li:hover .htmlcss-arrow,

.links li:hover .js-arrow {

  transform: rotate(180deg);

}



nav .navbar .links li .arrow {

  /* background: red; */

  height: 100%;

  width: 22px;

  line-height: 70px;

  text-align: center;

  display: inline-block;

  color: #222222;

  transition: all 0.3s ease;

}

nav .navbar .links li .sub-menu {

  position: absolute;

  top: 90px;

  left: 0;

  width: 270px;

  line-height: 40px;

  background-color: #fff;

  -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);

  box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);

  border-radius: 0 0 4px 4px;

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;

  z-index: 99;

}



.navbar .links li .sub-menu li {

  padding: 5px 10px;
  border-bottom: 1px solid rgb(255 96 96 / 31%);
  color: #222222 !important;
  position: relative;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  font-weight: 600;

}

.navbar .links li .sub-menu a {

  color: #222222;

  font-weight: 500;
  font-size: 15px;

}

.navbar .links li .sub-menu .more-arrow {

  line-height: 40px;

}

.navbar .links li .htmlCss-more-sub-menu {

  /* line-height: 40px; */

}

.navbar .links li .sub-menu .more-sub-menu {

  position: absolute;

  top: 0;

  left: 100%;

  border-radius: 0 4px 4px 4px;

  z-index: 1;

  display: none;

}

.links li .sub-menu .more:hover .more-sub-menu {

  display: block;

}



.navbar .nav-links .sidebar-logo {

  display: none;



}

.navbar .open-menu {

  display: none;

}




.open-menu span,

.open-menu span:before,

.open-menu span:after {

  cursor: pointer;

  border-radius: 1px;

  height: 5px;

  width: 35px;

  background: #ff5202;

  position: absolute;

  display: block;

  content: "";

  transition: all 300ms ease-in-out;

}

.open-menu span:before {

  top: -10px;

}

.open-menu span:after {

  bottom: -10px;

}

.open-menu.active span {

  background-color: transparent;

}

.open-menu.active span:before {

  transform: rotate(45deg);

}

.open-menu.active span:after {

  transform: rotate(-45deg);

}

.login-btn a {

  font-weight: 500;

  font-size: 16px;

  text-transform: uppercase;

  background: #ff6114;

  display: inline-block;

  letter-spacing: 1px;

  border-radius: 26px;

  color: #ffff;

  padding: 5px 20px;

}

/* =====================================

           banner main

           ============================ */





.banner-section {

  position: relative;

  background: url(../img/banner-account.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  padding: 100px 0px;

  background-position: center;

}

.banner-section::after {

  content: "";

  position: absolute;

  background: url(../img/dots-1.png);

  right: 19px;

  top: 30px;

  width: 85px;

  height: 89px;

}

.banner-section::before {

  content: "";

  position: absolute;

  background: url(../img/dots-1.png);

  right: 32%;

  bottom: 0px;

  width: 85px;

  height: 89px;

}

.section-title h1 {

  text-transform: uppercase;


  font-size: 2.8rem;

  line-height: 1.1;

}

.section-title h1 span {
  text-align: right;
  color: #ff5202;

}

.section-title p {


  padding: 30px 0px;

}

.btn-order {

  padding-top: 30px;

}

.btn-order a {

  font-weight: 700;

  font-size: 16px;

  text-transform: uppercase;

  background: #ff6114;

  display: inline-block;

  letter-spacing: 1px;

  border-radius: 26px;

  color: #ffff;

  padding: 6px 24px;

  box-shadow: -13px -7px 15px 0px #ccd2da;

  -webkit-box-shadow: -13px -7px 15px 0px #ccd2da;

  -moz-box-shadow: -13px -7px 15px 0px #ccd2da;

}



/* =========================================================

                 section skilled

===========================================================*/



.skilled-section {

  background: #0d1028;

}



.sec-title h2 {
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.sec-title h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.sec-title span {

  color: #ff5202;

}

.sec-title p {
  color: #ffffff;
  text-align: justify;
  margin-bottom: 20px;
}

.form-section {

  position: relative;

  padding: 20px;

  background: #fe6114;

  border-radius: 21px;

  margin: 28px 0 0 20px;

}

.outerside {

  position: relative;

  z-index: 1;

}

.outerside::before {

  content: "";

  position: absolute;

  width: 97%;

  height: 100%;

  background: #ffffff;

  border-radius: 21px;

  top: -15px;

}

.form-title p {

  color: #ffffff;

}

.form-section label {

  font-weight: 600;

  color: #ffffff;

}

.form-section .form-control {

  border-radius: 40px;

}

.form-section .form-group textarea {

  border-radius: 10px;

}

.form-section .btn-send {

  color: #fff;

  background-color: #000000;

  border-color: #000000;

  padding: 5px 40px;

  border-radius: 20px;

  letter-spacing: 1px;

  font-weight: 700;

}



.input-file-container {

  position: relative;

}

.js .input-file-trigger {

  display: block;

  padding: 6px 22px;

  background: #ffffff;

  color: #000;

  font-size: 1em;

  transition: all .4s;

  border-radius: 29px;

  border: 1px solid #fe6114;

  cursor: pointer;

}

.js .input-file {

  position: absolute;

  top: 0;
  left: 0;

  width: 225px;

  opacity: 0;

  padding: 14px 0;

  cursor: pointer;

}

.js .input-file:hover+.input-file-trigger,

.js .input-file:focus+.input-file-trigger,

.js .input-file-trigger:hover,

.js .input-file-trigger:focus {

  background: #ffffff;

  color: #000;

}



.file-return {

  margin: 0;

}

.file-return:not(:empty) {

  margin: 1em 0;

  color: #ffffff;

}

.js .file-return {

  font-style: italic;

  font-size: .9em;

  font-weight: bold;

}

.js .file-return:not(:empty):before {

  content: "Selected file: ";

  font-style: normal;

  font-weight: normal;

}

.list-items.column-2 {
  column-count: 2;
}

.list-items li {
  position: relative;
  padding-left: 12px;
  margin: 5px 0px;
  color: #ffffff;
  text-align: justify;

}



.list-items li:before {

  position: absolute;

  content: "";

  left: 0;

  top: 9px;

  width: 5px;

  height: 5px;

  border-radius: 50%;

  background: #ffffff;

}



/* =========================================================

                 section_preplexed 

===========================================================*/

.account-title h2 {

  color: #ff5202;

  margin-bottom: 25px;

}

.account-title h3 {

  margin-bottom: 25px;

  line-height: 2rem;

}

.account-title h3 span {

  color: #ff5202;

}

.sec-content p {

  text-align: justify;

}

.acc-img {

  position: relative;

  display: inline-block;

  padding: 15px;

  background: #0d1028;

  border-radius: 21px;

  z-index: 1;

}

.acc-outer {

  position: relative;

  display: inline-block;

}

.acc-outer::before {

  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background: #ff5202;

  border-radius: 21px;

  top: 15px;

  left: 15px;

}



/*=========================================================

                 section-account-help

=========================================================== */



.section-account-help {

  background: #ff5202;

}



.sec-title-1 h2 {

  color: #ffffff;

  line-height: 1.4;

}

.sec-title-1 span {

  color: #0d1028;

}

.content-help p {

  color: #ffffff;

  text-align: justify;

}
.section-account-help .sec-title-1 p{
  color: #fff;
}



/*=========================================================

                 section-account-help

=========================================================== */



.sec-title-2 h2 {

  font-size: 2.6rem;

  margin-bottom: 25px;

}

.sec-title-2 h2 span {

  color: #ff5202;

}

.list-items-1 li {
  position: relative;
  padding-left: 20px;
  margin: 10px 0px;
  color: #000000;
  text-align: justify;
}



.list-items-1 li:before {

  position: absolute;

  content: "";

  left: 0;

  top: 9px;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #000000;

}



/* ====================================

                    section Imperative Aspects 

        ========================================= */



.sec-title-3 {
  text-align: center;
  margin-bottom: 60px;
}

.sec-title-3.writer {
  max-width: 718px;
}

.subtitle-content h3 {
  text-align: right;
  margin: 15px 0 8px 0;
}

.sec-title-3 h2 span,
.subtitle-content h3 span {
  color: #ff5202;
}

.box-aspects {

  padding: 26px 20px;

  margin-bottom: 25px;

  transition: 0.5s;

  box-shadow: 0 4px 29px 0 #fbece5, 0 6px 29px 0 #fbece5;

  border: 1px solid #000000;

  border-radius: 30px;

}

.box-aspects h3 {

  font-size: 1.4rem;

  margin: 8px 0px;

}

.box-aspects h4 {

  margin: 20px 0px 10px 0px;

}

.box-aspects p {

  text-align: justify;

}




/* =============================================== 
              Section  reviews slider
 ==================================================== --> */
.cleint-title {
  padding: 40px 0px;
  text-align: center;
  width: 739px;
}

.cleint-title h2 {
  text-align: center;
}

.cleint-title .fa-star {
  color: #fe6114;
  font-size: 15px;
}

.cleint-title h2 span {
  color: #fe6114;
}

.review-sliders .card {
  height: 320px;
  padding: 20px;
  border: 1px solid #ff6215;
  box-shadow: 0 1px 16px 0 rgb(255 222 206);
  border-radius: 20px;
}

.review-sliders .testimonial {
  font-size: 0.9rem;
  padding: 10px;
  line-height: 1.4rem;
  font-weight: 500;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: justify;
}

.review-date {
  text-align: center;
  padding: 22px;
  color: #ff6215;
}

.reviews-star {
  text-align: center;
  padding: 10px;
}

.reviews-star span {
  color: #ff6215;
}

.profile {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ff6215;
}

.profile .name {
  font-weight: 700;
}

.review-sliders.owl-theme .owl-nav {
  margin-top: 42px;
}

.review-sliders .owl-nav .owl-prev {
  margin-right: 40px;
}

.review-sliders.owl-theme .owl-nav [class*='owl-']:hover {
  background: unset;
  color: unset;
}

.review-sliders .owl-nav .owl-prev span,
.review-sliders .owl-nav .owl-next span {
  font-size: 1.4rem;
  color: #ff6215;
  display: inherit;
  width: 56px;
  border: 1px solid #ff6215;
  height: 56px;
  border-radius: 36px;
  line-height: 54px;
}

/*===========================================================



                section  faq  



==============================================================*/















.faq_title h2 {

  font-size: 4rem;

}



.faq_title h2 span {

  color: #ff6114;

}



.question {

  padding: 11px 20px;

  cursor: pointer;

  position: relative;

  background: #0d1028;

  border-radius: 20px;

  margin: 10px 0px 0px 0px;

}







.question h4 {

  font-size: calc(0.4rem + 0.8vw);

  margin: 0;

  color: #ffffff;

  line-height: 1.5rem;

}







.question span {

  position: absolute;

  right: 20px;

  top: 0;

  height: 100%;

  display: flex;

  align-items: center;

  color: #ffffff;

  transition: .75s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;



}







.answer {

  max-height: 0;

  overflow: hidden;

  transition: .75s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;

  background: #ffffff;

}







.answer p {

  padding: 15px;

  text-align: justify;

}







.accordion li.open .question span {

  transform: rotate(180deg);

}







.accordion li.open .answer {

  max-height: 150px;

}

/* ====================================

                    footer_section

        ========================================= */

.section_footer {

  background-color: #0d1028;

}

.footer-item h4,

.footer-contact h4 {

  font-weight: 700;

  margin-bottom: 16px;

  position: relative;

  text-transform: uppercase;

  color: #fff;

  z-index: 1;

  font-size: 20px;

}

.footer-item p,

.footer-contact p {

  color: #e4e4e4;

  text-align: justify;

  margin: 0 0 5px;

}

.footer-item li a {

  position: relative;

  color: #e4e4e4;

  font-weight: 400;

  text-transform: capitalize;

  font-family: "Open Sans", sans-serif;

}

.footer-item li {

  margin-bottom: 8px;

}

.footer-contact ul li {

  display: flex;

  align-items: center;

}

.footer-contact i {

  color: #fff;

  text-align: center;

  width: 30px;

  font-size: 20px;

}

.footer_icons a:not(:last-child) {

  margin-right: 8px;

}

.footer_icons a {

  width: 45px;

  height: 45px;

  display: block;

  background-color: #2b344e;

  color: #ffffff;

  font-size: 14px;

  overflow: hidden;

  line-height: 49px;

  position: relative;

  text-align: center;

  border-radius: 100%;

  transition: all 0.3s ease-in-out;

}



.footer_icons a i {

  left: 50%;

  position: absolute;

  transition: all 0.3s ease-in-out;

}

.footer_icons a:hover {

  background-color: #ffffff;

}



.footer_icons a i:nth-child(1) {

  top: 55%;

  transform: translate(-50%, -55%);

}

.footer_icons a:hover i:nth-child(1) {

  top: -100%;

  opacity: 0;

  transform: translateX(-50%);

}

.footer_icons a i:nth-child(2) {

  top: 100%;

  opacity: 0;

}

.footer_icons a:hover i:nth-child(2) {

  top: 55%;

  opacity: 1;

  transform: translate(-50%, -55%);

  color: #292d77;

}



.footer_icons a:nth-child(2):hover,

.footer_icons a:nth-child(3):hover,

.footer_icons a:nth-child(4):hover,

.footer_icons a:nth-child(5):hover {

  background-color: #ffffff;

}

.footer_icons a:nth-child(2):hover i {

  color: #007bb5;

}



.footer_icons a:nth-child(3):hover i {

  color: #e6001a;

}



.footer_icons a:nth-child(4):hover i {

  color: #1da1f2;

}



.footer_icons a:nth-child(5):hover i {

  color: #fb3958;

}

.footer-bottom p {

  color: #fff;

  margin: 0;

  text-transform: capitalize;

  line-height: 40px;

}

.footer-bottom {

  border-top: 1px solid rgb(255 255 255 / 30%);

  margin-top: 30px;

  padding: 5px 0;

}


/*-----------------------05-02-2022------------------------------*/
.quantity__input {
  width: 54px;
  height: 40px;
  margin: 0;
  padding: 0;
  text-align: center;
  border-color: transparent !important;
  outline: 0;
  border-radius: 10px;
}

.form-title_p {
  margin: 10px 0px;
}

.form-title_p p {
  font-size: 18px;
  color: #0d1028;
  font-weight: 700;
  text-align: center;
}

/*----------------------------08-02-2022-----------------------------*/



.section-title h1 {
  color: #002152;
}


.deadline {
  position: relative;
}

.date-icon {
  position: absolute;
  right: 7px;
  top: 8px;
}

.quantity__minus,
.quantity__plus {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
}

.number_count p {
  color: #fff;
  margin-top: 37px;
}


/* .....slider starts here/ */


.owl-carousel.owl-theme .owl-nav [class*='owl-']:hover {
  background: none !important;
  color: #ff6114;
  text-decoration: none;
}

.orng {
  color: #ff6114;
}

.glb-btn {
  background-color: #ff6114;
  color: #fff;
  width: 265px !important;
  display: inline-block;
  padding: 17px 0px;
  font-weight: 500;
  transition: 0.5s;
  border-radius: 40px;
}

.glb-btn:hover {
  background-color: #0d1028;
  color: #fff;
}

/* .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
} */
.hd-sec {
  color: #0d1028;
  font-weight: 700;
  font-size: 38px;
}

.slider {
  background-image: url('../img/slider.webp');
  width: 100%;
  float: left;
  height: 915px;
  background-size: cover;
  background-position: top;
  padding: 45px 0px;
  width: 100%;
  float: left;
}

.slider .slide-content {
  text-align: center;
  width: 100%;
  margin: auto;
  color: #0d1028;
  margin-top: 105px;
}

.slider .slide-content h1 {
  font-weight: 700;
  font-size: 41px;
  margin-bottom: 12px;
}

.slider .slide-content p {
  margin: 0%;
  padding: 5px;
  /* line-height: px !important; */
}

.slider .slide-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

.slider .slide-content .glb-btn {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 600;
}

/* below slider starts here */
.below-slider {
  background-image: url('../img/mobile.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  width: 100%;
  float: left;
  margin-top: 15px;
  padding: 30px 30px 55px 30px;

}

.below-slider h2 {
  font-size: 51px;
  font-weight: 700;
}

.below-slider h4 {
  font-size: 24px;
  font-weight: 500;
  padding: 13px;
}

.below-slider .glb-btn {
  margin-top: 15px;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  width: 240px !important;
}

/* asslignment help starts here */
.assingment-help {
  width: 100%;
  float: left;
  padding: 20px 0px 30px 0px;
  background-color: #dde1e2;
  margin-top: 60px;
}

.assingment-help h2 {
  color: #0d1028;
  font-weight: 700;
  width: 99%;
  line-height: 50px;
  font-size: 40px;
}

.assingment-help .box {
  text-align: left;
  margin-top: 35px;
  margin-bottom: 35px;
}

.assingment-help .box img {
  display: block;
  margin: auto;
  transition: all 0.5s;
  cursor: pointer;
}

.assingment-help .box img:hover {
  transform: rotate(360deg);
}

.assingment-help .box h5 {
  font-size: 16px;
  color: #ff6114;
  margin: 10px 0px;
  text-align: center;
}

.assingment-help .box p {
  font-size: 13px;
  line-height: 22px;
  text-align: justify;
}

.assingment-help .form-title_p p {
  font-size: 15px;
}

.assingment-help .form-group label {
  font-family: poppins, sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 13px;
}

.assingment-help h4 {
  margin-bottom: 20px;
  color: #0d1028;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.assingment-help .glb-btn {
  text-align: center;
  margin: auto;
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  width: 190px !important;
}

.best-assingment {
  width: 100%;
  float: left;
  padding: 70px 0px;
}

.best-assingment h2 {
  color: #0d1028;
  font-weight: 700;
  line-height: 50px;
  font-size: 38px;
}

.best-assingment .box h5 {
  font-size: 17px;
  width: 63%;
  text-align: center;
  margin: auto;
  padding-top: 6px;
  font-weight: 600;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 180px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  cursor: pointer;
}



.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-back {
  background-color: #0d1028;
  padding: 17px;
  color: white;
  transform: rotateY(180deg);
  text-align: left;
  border-radius: 10px;
}

.flip-card-back p {
  font-size: 13px;
  margin: 0px;
  line-height: 16px;
}

.best-assingment .mt-top {
  margin-top: 25px;
}

.assingment-help .box h5 {
  font-size: 16px;
  padding-top: 5px;
  font-weight: 600;
}

/* one step store css */
.one-step-store {
  width: 100%;
  float: left;
  background-color: #f6f7f9;
  padding-top: 25px;
  background-image: url('../img/one-step-back.png');
  background-repeat: no-repeat;
  background-position: left;
}

.one-step-store h2 {
  margin-bottom: 25px;
}

.one-step-store h3 {
  font-size: 34px;
  color: #ff6114;
  font-weight: 600;
  padding-bottom: 25px;
  line-height: 50px;
}

.one-step-store p {
  line-height: 32px;
  /* font-size: 19px;
  
    font-weight: 500; */
  text-align: justify;

}

.one-step-storeh2 {
  margin-bottom: 25px;
}

#one-step {
  position: relative;
}

#one-step.owl-theme .owl-dots .owl-dot span {
  background: #0d1028;
}

#one-step.owl-theme .owl-dots .owl-dot.active span {
  background: #ff6114 !important;
}

#one-step .left img {
  width: auto !important;
}

#one-step.owl-theme .owl-nav.disabled+.owl-dots {
  margin: 0%;
  position: absolute;
  left: 51%;
  top: 91%;
}

/* 
.one-step-store h2{
  margin-bottom: 35px;
  line-height: 50px;
  font-size: 38px;
}
.one-step-store h3{
  color: #ff6114;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 45px;
}
.one-step-store .box {
  text-align: justify;
  margin-left: 150px;
}
.one-step-store .box p{
  color: #0d1028;
  font-size: 18px;
    line-height: 25px;
    width: 75%;
  
}


#one-step{
  position: relative;
}
#one-step .owl-dots {
  display: inline-block;
  zoom: 1;
  display: inline;
  left: 100px;
  position: absolute;
  left: 56%;
  top: 75%;
  z-index: 99;
}

#one-step .owl-dots .owl-dot.active span, #one-step .owl-dots .owl-dot:hover span {
  background: #ff6114;
}
#one-step .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #0d1028;
  display: block;
  border-radius: 30px;
} */
/* why choose css */
.why-us {
  width: 100%;
  float: left;
  /* padding: 70px 0px; */
  padding-top: 70px;
  padding-bottom: 40px;
}

.why-us p {
  text-align: justify;
}

.why-us h2 {
  line-height: 50px;

}

.why-us .why-us-content h4 {

  margin: 10px 0px;
  font-size: 25px;
  font-weight: 500;
}

.why-us .box {
  text-align: center;

  border: 1px solid #000;
  padding: 15px;
  width: 85%;
  border-radius: 25px;
  margin: auto;
  transition: all 0.8s;
  cursor: pointer;
  height: 330px;
}

.why-us .box p {
  font-size: 15px;
  line-height: 23px;

  text-align: justify;
}

.why-us .box h5 {
  padding: 10px 0px;
  font-weight: 600;
  font-size: 17px;
}

#why-us-slide {
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px;
}

#why-us-slide button.owl-next {
  top: 125px;
  position: absolute;
  font-size: 70px;
  right: -35px;
}

#why-us-slide button.owl-prev {
  top: 125px;
  position: absolute;
  font-size: 70px;
  left: -35px;
}

#why-us-slide .item .box img {
  width: auto;
  display: block;
  margin: auto;
  transition: all 0.8s;
}

#why-us-slide .item .box:hover {
  background-color: #0d1028;
  color: #fff;
}

#why-us-slide .item .box:hover h5 {
  color: #ff5202;
}


#why-us-slide .item .box img {
  width: auto;
  display: block;
  margin: auto;
}

#why-us-slide .box:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}



/* student need */
.student-need {
  width: 100%;
  float: left;
  padding: 70px 0px;
  background-image: url('../img/student-need.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: 60px;

}

.student-need h2 {
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 50px;
}

.student-need p {
  width: 57%;
  text-align: justify;
  font-weight: 600;
  font-size: 18px;
}

.testimonials {
  width: 100%;
  float: left;
  padding: 30px 0px;
  background-image: url('../img/testimonial.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.testimonials .left img {
  border-radius: 100%;
  float: right;
}

.testimonials .box .fa {
  color: #f9cc01;
  padding-top: 10px;
  font-size: 30px;
  padding-left: 4px;
}

.testimonials .box p {
  padding: 15px 0px;
}

.testimonials .box h5 {
  font-size: 31px;
  padding: 5px;
  font-weight: 500;
}

.testimonials .box h6 {
  font-size: 18px;
}

.testimonials .box span {
  font-size: 15px;
}

.testimonials .box h4 {
  font-size: 40px;
  font-weight: 600;
}

#test-id .owl-dots .owl-dot.active span,
#test-id .owl-dots .owl-dot:hover span {
  background: #ff6114;
}

#test-id .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}


/* looking help css */

.looking-help {
  width: 100%;
  float: left;
  padding: 30px 0px;
  background-color: #dde1e2;
  border-top: 3px solid #ff6114;
  border-bottom: 3px solid #ff6614;
}

.looking-help .glb-btn {
  text-align: center;
  margin: 20px;
}

.looking-help .look-help-cont {
  text-align: center;
}

.looking-help h2.hd-sec {
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}

.looking-help .look-help-cont .fa {
  color: #ff6114;
  font-size: 30px;
  margin-left: 15px;
}

.looking-help #mainCircle {
  /* border: 2px solid black; */
  width: 100%;
  height: 500px;
}

.looking-help .mainCircle.flex-center {
  margin-top: 35px;
}

.looking-help #mainCircle .contaner {
  /* border: 2px solid black; */
  width: 80%;
  height: 100%;
  margin: auto;
}

.looking-help .contant {
  width: 50%;
  position: relative;
  background-color: #fff;
  border-radius: 35px;
  text-align: left;
  padding: 25px;
  height: 155px;
  margin-top: 35px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
  margin: 35px auto;
}

.looking-help .contant h2 {
  margin-bottom: 15px;
  color: #ff6114;
  font-weight: 500;
  text-align: center;
}

.looking-help .contant p {
  text-align: center;
  width: 95%;
}

.looking-help .card {
  background-color: transparent;
  width: 100%;
  padding: 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid #ff6114;
  border-radius: 35px;
  transition: 0.5s;
}

.looking-help .card:hover {
  background-color: #0d1028;
  color: #fff;
}

.looking-help .card:hover h3 {
  color: #fff;
  font-weight: 500;
}

.looking-help .card-content {
  position: absolute;
  opacity: 0%;
}

.looking-help .watch {
  opacity: 100%;
}

.looking-help .mainCircle h3 {
  font-weight: 500;
  font-size: 17px;
  color: #0d1028;
}

.looking-help .active-help {
  color: #fff !important;
  background-color: #0d1028;
}

.looking-help .active-help h3 {
  color: #fff !important;
}

.looking-help #help-box {
  display: none;
}

/* Faq stars here */
.faq-section {
  padding: 40px 0px;
  width: 100%;
  float: left;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 35px;
}

.fondo .img {
  width: 200px;
  position: relative;
  top: -90px;
  filter: drop-shadow(0 25px 0px #E1D6F6);
}

.fondo .titulo {
  text-align: center;
  color: hsl(238, 29%, 16%);
  font-size: 25px;
  font-weight: 700;

}

.fondo .pregunta {
  color: #fff;
  display: inline-block;
  padding: 20px 35px;
  font-size: 18px;
  font-weight: 400;
}

.fondo .parrafo {
  color: #000;
  line-height: 23px;

  position: relative;
  transition: top 1s, opacity 1s;
  z-index: 1;
  background-color: transparent;
  border-radius: 25px;
  margin-top: -20px;
  padding: 35px 25px 0px;
  /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); */
}

.fondo .parrafo .p {
  font-weight: 400;
  color: #4e4545;
}

.fondo .lista {
  list-style: none;
}

.fondo .item_header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #ff6114;
  border-radius: 35px;
  cursor: pointer;
  height: 54px;
}

.fondo .icon {
  color: hsl(14, 88%, 65%);
  transition: transform 1s;
}

.fondo li {
  height: 54px;
  overflow: hidden;
  transition: all 1s;
  margin-bottom: 30px;

}

.fondo .active>.item_header>.icon {
  transform: rotate(180deg);

}

.fondo li p {
  color: #000;
}

i.fa.fa-chevron-circle-down {
  color: #fff;
  margin-right: 25px;
}

.faq-section .faq-inner-li li {
  margin: 0;
}

.faq-section .faq-inner-li li {
  margin: 0;
  height: 30px;
}

/* .faq{
  width: 100%;
  float: left;
  padding: 70px 0px;

}
.faq h2{
  text-align: center;
  font-size: 40px;
    line-height: 50px;
}
.faq .box p{
    
    margin: 0px;
}
.faq .qes{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-1{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
 
}
.faq .qes-1 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-1{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .qes-2{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-2 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-2{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .qes-3{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-3 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-3{
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  display: none;
}
.faq .qes-4{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-4 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-4{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .qes-5{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-5 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-5{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .qes-6{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-6 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-6{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .qes-7{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-7 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-7{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .qes-8{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-8 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-8{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .qes-9{
  background-color: #fe6114;
  width: 100%;
  padding: 20px 25px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .qes-9 h4{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.faq .ans-9{
  width: 100%;
  display: none;
  border-radius: 25px;
  margin-top: -55px;
  background-color: transparent;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
  padding: 80px 40px 60px;
}
.faq .mt-top{
  margin-top: 40px;
} */
/* do you know css */
.do-you-know {
  width: 100%;
  float: left;

  background-image: url('../img/wold-map.png.jpg');
  background-size: cover;
  background-position: center;
  padding: 70px 0px;
}

.do-you-know h5 {
  display: none;
}

.do-you-know .none {
  display: none;
}

.do-you-child p {
  text-align: justify;
}

.do-you-know .do-you-child {
  width: 95%;
  margin: auto;
}

.do-you-know h2 {
  text-align: center;
  width: 72%;
  line-height: 50px;
  margin: auto;
  margin-bottom: 175px;

}

.do-you-know .box {
  width: 25%;
}

.do-you-know .box-two {
  width: 25%;
  margin-top: -170px;
}

.do-you-know .box img {
  width: 100%;
  padding-bottom: 15px;
}

.do-you-know .box img {
  width: 100%;
  transform: scale(1.1);
}

.do-you-know .box-two img {
  width: 100%;
}

.do-you-know .box-two img {
  width: 100%;
  transform: scale(1.1);
}

.do-you-know .box {
  position: relative;
}

.do-you-know .box .chart-icon {
  top: 48px;
  z-index: 99;
  position: absolute;
  left: 42%;
}

.do-you-know .box .chart-icon img {
  width: auto !important;
  position: absolute;
  transition: 0.5s;
}

.do-you-know .box .chart-para {
  position: absolute;
  top: 32%;
  z-index: 99;
  left: 25%;
  text-align: center;
  width: 50%;
}

.do-you-know .box .chart-para h4 {
  line-height: 22px;
  font-size: 19px;
  font-weight: 500;
}


.do-you-know .box-two {
  position: relative;
}

.do-you-know .box-two .chart-icon {
  top: 212px;
  z-index: 99;
  position: absolute;
  left: 42%;
}

.do-you-know .box-two .chart-icon img {
  width: auto !important;
  position: absolute;
}

.do-you-know .box-two .chart-para {
  position: absolute;
  top: 53%;
  z-index: 99;
  left: 25%;
  text-align: center;
  width: 50%;
}

.do-you-know .box-two .chart-para h4 {
  line-height: 22px;
  font-size: 19px;
  color: #fff;
  font-weight: 500;
}

.do-you-child p:last-child {
  margin-top: 25px;
}

/* footer */
.section_footer {
  width: 100%;
  float: left;
}



/* --------------------------------3-3-2022---------------------------------------------- */

/*  */
/* .service-slider-area .carousel-indicators{
  position: static;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 0;
} */
.service-slider-area .indicator-wrap .carousel-indicators {
  position: static;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 0;
}

.service-slider-2.service-slider-list-item li {
  cursor: pointer;
  width: 100%;
  text-indent: 0;
  height: auto;
  display: inline-block;
  position: relative;
  background-color: #002147;
  border: 0;
  color: #fff;
  padding: 10px 25px;
  transition: all .4s linear 0s;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
  margin: 10px;
  text-align: center;
  opacity: 1;
}

.section-title-3 h2 {
  color: #002147;
  font-size: 38px;
  font-family: poppins;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-slider-2.service-slider-list-item.carousel-indicators {
  margin-top: 30px;
}

.service-slider-area .service-title {
  font-family: "Sniglet", Sans-serif;
  font-size: calc(0.4rem + 1vw);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.service-slider-2 .searvice-img {
  margin-left: 50px;
  margin-bottom: -170px;
}

.service-slider-2 .service-info-content {
  background-color: #002147;
  ;
}

.service-slider-2 .service-info-content {
  max-width: 614px;
  padding: 45px 50px 43px;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: justify;
}

.service-slider-2.service-slider-list-item li.active h3 {
  color: #f74e00 !important;
  font-weight: 700;
}

.half_column_content_1 .sf-heading__title {
  color: #002147;
  font-size: 32px;
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
}

.elementor-widget-wrap h2 {
  color: #002147;
  font-size: 32px;
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
}

.support_section .service-text h3 {
  color: #002147;
  padding-top: 0px;
  font-size: 20px;
  font-family: poppins, sans-serif;
  font-weight: 700;
}

.support_section .border-8 {
  border: 4px solid #f8991f3d;
  transition: all .4s linear 0s;
  margin: 40px 0px;
}

.quality-section .quality-content {
  padding-top: 20px;
}

.quality-section .quality_column_content h2 {
  font-size: 28px;
  color: #002147;
  font-family: poppins, sans-serif;
  font-weight: 600;
}

.quality-section .quality_column_content p {
  text-align: justify;
}

.section_title_1 {
  max-width: 633px;
  margin: auto;
  padding-bottom: 50px;
}

.section_title {
  max-width: 700px;
  margin: auto;
}

.section_title_1 span {
  color: #ff5202;
}

/* section features expert */
.section-content .media-body h4 {
  color: #002147;
  font-size: 21px;
  font-weight: 600;
}

.expert_section .sf-icon-box__icon .sf-icon.color_or {
  background-color: #e67e22;
  color: #fff;
}

.expert_section .sf-icon-box__icon {
  margin-right: 15px;
}

.expert_section .sf-icon-box__icon .sf-icon {
  font-size: 22px;
  height: 50px;
  width: 50px;
  padding: 14px;
  background-color: #ec6121;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  -webkit-transition: all .5s;
  transition: all .5s;
  vertical-align: top;
}

@media (min-width:268px) and (max-width:576px) {
  .entry-body {
    flex-direction: column;
  }

  .service-slider-area .service-title {
    font-size: calc(0.4rem + 2vw);
  }

  .post_view_list .entry-details {
    width: 100%;
  }

  .post_view_list .entry-thumbnail {
    width: 100%;
    margin-right: 0px;
  }

  /* coding 8/11/2021 */
  .single-featured-3.last {
    position: relative;
  }

  .carousel-indicators {
    margin-right: 0%;
    margin-left: 0%;
  }

  .service-slider-2.service-slider-list-item li {
    padding: 7px 0px;
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .post_view_list .entry-details {
    width: 100%;
  }

  .service-slider-2.service-slider-list-item li {
    padding: 7px 0px;
  }

  /* 8/11/2021 */
  .carousel-indicators {
    margin-right: 0%;
    margin-left: 0%;
  }

  .single-featured-3.last {
    position: relative;
  }

  .section_title_1 {}
}

@media (max-width:799px) {

  #main .post,
  #main .page,
  #main article.product {
    margin-top: 10%;
  }

  .headd {
    height: auto !important;
  }
}

.entry-title {
  color: #fff;
  font-size: 1.25rem;
}
.featured-section-2.section-ptb-4.semi_dark_bg{
  margin: 40px 0px;
}


/* ------------------------------------programming-assignment-help----------------------------------------------------- */
 
.steps_section .nav-tabs {
  height: 350px;
  width: 350px;
  border-left: 90px solid transparent;
  border-radius: 50%;
  position: relative;
  margin: auto;
  border-top: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 90px solid transparent;
  transform: rotate(45deg);
  border: 24px solid #2094cf;
  border-style: solid;
  border-width: 30px;
  border-left-color: #47a5d5;
  border-right-color: #ff712f;
  border-top-color: #ff9b69;


}


.steps_section .nav-tabs .nav-link {
  height: 125px;
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
  width: 125px;
  margin-right: 15px;
  position: relative;
  color: #ff712f;
  font-size: 20px;
  text-transform: uppercase;
  background: #fff;

}


.steps_section .nav-tabs .nav-item:nth-child(1) {
  margin-top: 37px;
  position: absolute;
  margin-right: auto;
  margin-left: auto;
  top: -58px;
  left: -5%;
  transform: rotate(-45deg);
}

.steps_section .nav-tabs .nav-item:nth-child(2) {
  margin-top: -15px;
  position: absolute;
  right: -68px;
  top: -8%;
  transform: rotate(-45deg);
}

.steps_section .nav-tabs .nav-item:nth-child(3) {
  margin-top: -15px;
  position: absolute;
  margin-right: auto;
  margin-left: auto;
  bottom: -30px;
  left: 62%;
  transform: rotate(-45deg);
}

.steps_section .nav-tabs .nav-item:nth-child(4) {
  margin-top: -15px;
  position: absolute;
  margin-right: auto;
  margin-left: auto;
  top: 72%;
  left: -42px;
  transform: rotate(-45deg);
}

.nav-tabs .nav-item:nth-child(1) .nav-link {
  background: #fff;
  color: #ff9b69;
  border: 2px solid;
}

.steps_section .nav-tabs .nav-item:nth-child(1) .nav-link::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  background: #ff9b69;
  width: 116%;
  height: 116%;
  animation: spin 10s linear infinite;
}

.steps_section .nav-tabs .nav-item:hover:nth-child(1) .nav-link::after,
.steps_section .nav-tabs .nav-item:hover:nth-child(2) .nav-link::after,
.steps_section .nav-tabs .nav-item:hover:nth-child(3) .nav-link::after,
.steps_section .nav-tabs .nav-item:hover:nth-child(4) .nav-link::after {
  animation: spin 10s linear infinite;
}

.nav-tabs .nav-item:nth-child(3) .nav-link {
  background: #fff;
  color: #2293cd;
  border: 2px solid #2293cd;
}

.steps_section .nav-tabs .nav-item:nth-child(3) .nav-link::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  background: #2293cd;
  width: 116%;
  height: 116%;
}

@keyframes spin {
  100% {
    transform: rotateZ(360deg);
  }
}

.steps_section .nav-tabs .nav-item:nth-child(4) .nav-link::after,
.steps_section .nav-tabs .nav-item:nth-child(2) .nav-link::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  background: #002147;
  width: 116%;
  height: 116%;

}

.steps_section .nav-tabs .nav-item:nth-child(2) .nav-link::after {
  background: #ff712f;

}

.steps_section .nav-tabs .nav-item:nth-child(4) .nav-link::after {
  background: #47a5d5;
}

.nav-tabs .nav-item:nth-child(4) .nav-link {
  background: #fff;
  color: #50a9d6;
  border: 2px solid #50a9d6;
}

.steps_section .nav-tabs .nav-item:nth-child(4) .nav-link::after,
.steps_section .nav-tabs .nav-item:nth-child(3) .nav-link::after,
.steps_section .nav-tabs .nav-item:nth-child(2) .nav-link::after,
.steps_section .nav-tabs .nav-item:nth-child(1) .nav-link::after {
  clip-path: polygon(100% 50%, 99.80973% 45.64221%, calc(50% + calc(50% - 0.1875em)*0.98481) calc(50% + calc(50% - 0.1875em)*-0.17365), calc(50% + calc(50% - 0.375em)*0.99619) calc(50% + calc(50% - 0.375em)*-0.08716), calc(50% + calc(50% - 0.375em)*1) calc(50% + calc(50% - 0.375em)*0), calc(50% + calc(50% - 0.1875em)*0.99619) calc(50% + calc(50% - 0.1875em)*-0.08716), 100% 50%, 100% 50%, 99.24039% 58.68241%, 99.80973% 54.35779%, calc(50% + calc(50% - 0.1875em)*1) calc(50% + calc(50% - 0.1875em)*0), calc(50% + calc(50% - 0.375em)*0.99619) calc(50% + calc(50% - 0.375em)*0.08716), calc(50% + calc(50% - 0.375em)*0.98481) calc(50% + calc(50% - 0.375em)*0.17365), calc(50% + calc(50% - 0.1875em)*0.99619) calc(50% + calc(50% - 0.1875em)*0.08716), 99.24039% 58.68241%, 100% 50%, 96.98463% 67.10101%, 98.29629% 62.94095%, calc(50% + calc(50% - 0.1875em)*0.98481) calc(50% + calc(50% - 0.1875em)*0.17365), calc(50% + calc(50% - 0.375em)*0.96593) calc(50% + calc(50% - 0.375em)*0.25882), calc(50% + calc(50% - 0.375em)*0.93969) calc(50% + calc(50% - 0.375em)*0.34202), calc(50% + calc(50% - 0.1875em)*0.96593) calc(50% + calc(50% - 0.1875em)*0.25882), 96.98463% 67.10101%, 100% 50%, 93.30127% 75%, 95.31539% 71.13091%, calc(50% + calc(50% - 0.1875em)*0.93969) calc(50% + calc(50% - 0.1875em)*0.34202), calc(50% + calc(50% - 0.375em)*0.90631) calc(50% + calc(50% - 0.375em)*0.42262), calc(50% + calc(50% - 0.375em)*0.86603) calc(50% + calc(50% - 0.375em)*0.5), calc(50% + calc(50% - 0.1875em)*0.90631) calc(50% + calc(50% - 0.1875em)*0.42262), 93.30127% 75%, 100% 50%, 88.30222% 82.13938%, 90.9576% 78.67882%, calc(50% + calc(50% - 0.1875em)*0.86603) calc(50% + calc(50% - 0.1875em)*0.5), calc(50% + calc(50% - 0.375em)*0.81915) calc(50% + calc(50% - 0.375em)*0.57358), calc(50% + calc(50% - 0.375em)*0.76604) calc(50% + calc(50% - 0.375em)*0.64279), calc(50% + calc(50% - 0.1875em)*0.81915) calc(50% + calc(50% - 0.1875em)*0.57358), 88.30222% 82.13938%, 100% 50%, 82.13938% 88.30222%, 85.35534% 85.35534%, calc(50% + calc(50% - 0.1875em)*0.76604) calc(50% + calc(50% - 0.1875em)*0.64279), calc(50% + calc(50% - 0.375em)*0.70711) calc(50% + calc(50% - 0.375em)*0.70711), calc(50% + calc(50% - 0.375em)*0.64279) calc(50% + calc(50% - 0.375em)*0.76604), calc(50% + calc(50% - 0.1875em)*0.70711) calc(50% + calc(50% - 0.1875em)*0.70711), 82.13938% 88.30222%, 100% 50%, 75% 93.30127%, 78.67882% 90.9576%, calc(50% + calc(50% - 0.1875em)*0.64279) calc(50% + calc(50% - 0.1875em)*0.76604), calc(50% + calc(50% - 0.375em)*0.57358) calc(50% + calc(50% - 0.375em)*0.81915), calc(50% + calc(50% - 0.375em)*0.5) calc(50% + calc(50% - 0.375em)*0.86603), calc(50% + calc(50% - 0.1875em)*0.57358) calc(50% + calc(50% - 0.1875em)*0.81915), 75% 93.30127%, 100% 50%, 67.10101% 96.98463%, 71.13091% 95.31539%, calc(50% + calc(50% - 0.1875em)*0.5) calc(50% + calc(50% - 0.1875em)*0.86603), calc(50% + calc(50% - 0.375em)*0.42262) calc(50% + calc(50% - 0.375em)*0.90631), calc(50% + calc(50% - 0.375em)*0.34202) calc(50% + calc(50% - 0.375em)*0.93969), calc(50% + calc(50% - 0.1875em)*0.42262) calc(50% + calc(50% - 0.1875em)*0.90631), 67.10101% 96.98463%, 100% 50%, 58.68241% 99.24039%, 62.94095% 98.29629%, calc(50% + calc(50% - 0.1875em)*0.34202) calc(50% + calc(50% - 0.1875em)*0.93969), calc(50% + calc(50% - 0.375em)*0.25882) calc(50% + calc(50% - 0.375em)*0.96593), calc(50% + calc(50% - 0.375em)*0.17365) calc(50% + calc(50% - 0.375em)*0.98481), calc(50% + calc(50% - 0.1875em)*0.25882) calc(50% + calc(50% - 0.1875em)*0.96593), 58.68241% 99.24039%, 100% 50%, 50% 100%, 54.35779% 99.80973%, calc(50% + calc(50% - 0.1875em)*0.17365) calc(50% + calc(50% - 0.1875em)*0.98481), calc(50% + calc(50% - 0.375em)*0.08716) calc(50% + calc(50% - 0.375em)*0.99619), calc(50% + calc(50% - 0.375em)*0) calc(50% + calc(50% - 0.375em)*1), calc(50% + calc(50% - 0.1875em)*0.08716) calc(50% + calc(50% - 0.1875em)*0.99619), 50% 100%, 100% 50%, 41.31759% 99.24039%, 45.64221% 99.80973%, calc(50% + calc(50% - 0.1875em)*0) calc(50% + calc(50% - 0.1875em)*1), calc(50% + calc(50% - 0.375em)*-0.08716) calc(50% + calc(50% - 0.375em)*0.99619), calc(50% + calc(50% - 0.375em)*-0.17365) calc(50% + calc(50% - 0.375em)*0.98481), calc(50% + calc(50% - 0.1875em)*-0.08716) calc(50% + calc(50% - 0.1875em)*0.99619), 41.31759% 99.24039%, 100% 50%, 32.89899% 96.98463%, 37.05905% 98.29629%, calc(50% + calc(50% - 0.1875em)*-0.17365) calc(50% + calc(50% - 0.1875em)*0.98481), calc(50% + calc(50% - 0.375em)*-0.25882) calc(50% + calc(50% - 0.375em)*0.96593), calc(50% + calc(50% - 0.375em)*-0.34202) calc(50% + calc(50% - 0.375em)*0.93969), calc(50% + calc(50% - 0.1875em)*-0.25882) calc(50% + calc(50% - 0.1875em)*0.96593), 32.89899% 96.98463%, 100% 50%, 25% 93.30127%, 28.86909% 95.31539%, calc(50% + calc(50% - 0.1875em)*-0.34202) calc(50% + calc(50% - 0.1875em)*0.93969), calc(50% + calc(50% - 0.375em)*-0.42262) calc(50% + calc(50% - 0.375em)*0.90631), calc(50% + calc(50% - 0.375em)*-0.5) calc(50% + calc(50% - 0.375em)*0.86603), calc(50% + calc(50% - 0.1875em)*-0.42262) calc(50% + calc(50% - 0.1875em)*0.90631), 25% 93.30127%, 100% 50%, 17.86062% 88.30222%, 21.32118% 90.9576%, calc(50% + calc(50% - 0.1875em)*-0.5) calc(50% + calc(50% - 0.1875em)*0.86603), calc(50% + calc(50% - 0.375em)*-0.57358) calc(50% + calc(50% - 0.375em)*0.81915), calc(50% + calc(50% - 0.375em)*-0.64279) calc(50% + calc(50% - 0.375em)*0.76604), calc(50% + calc(50% - 0.1875em)*-0.57358) calc(50% + calc(50% - 0.1875em)*0.81915), 17.86062% 88.30222%, 100% 50%, 11.69778% 82.13938%, 14.64466% 85.35534%, calc(50% + calc(50% - 0.1875em)*-0.64279) calc(50% + calc(50% - 0.1875em)*0.76604), calc(50% + calc(50% - 0.375em)*-0.70711) calc(50% + calc(50% - 0.375em)*0.70711), calc(50% + calc(50% - 0.375em)*-0.76604) calc(50% + calc(50% - 0.375em)*0.64279), calc(50% + calc(50% - 0.1875em)*-0.70711) calc(50% + calc(50% - 0.1875em)*0.70711), 11.69778% 82.13938%, 100% 50%, 6.69873% 75%, 9.0424% 78.67882%, calc(50% + calc(50% - 0.1875em)*-0.76604) calc(50% + calc(50% - 0.1875em)*0.64279), calc(50% + calc(50% - 0.375em)*-0.81915) calc(50% + calc(50% - 0.375em)*0.57358), calc(50% + calc(50% - 0.375em)*-0.86603) calc(50% + calc(50% - 0.375em)*0.5), calc(50% + calc(50% - 0.1875em)*-0.81915) calc(50% + calc(50% - 0.1875em)*0.57358), 6.69873% 75%, 100% 50%, 3.01537% 67.10101%, 4.68461% 71.13091%, calc(50% + calc(50% - 0.1875em)*-0.86603) calc(50% + calc(50% - 0.1875em)*0.5), calc(50% + calc(50% - 0.375em)*-0.90631) calc(50% + calc(50% - 0.375em)*0.42262), calc(50% + calc(50% - 0.375em)*-0.93969) calc(50% + calc(50% - 0.375em)*0.34202), calc(50% + calc(50% - 0.1875em)*-0.90631) calc(50% + calc(50% - 0.1875em)*0.42262), 3.01537% 67.10101%, 100% 50%, 0.75961% 58.68241%, 1.70371% 62.94095%, calc(50% + calc(50% - 0.1875em)*-0.93969) calc(50% + calc(50% - 0.1875em)*0.34202), calc(50% + calc(50% - 0.375em)*-0.96593) calc(50% + calc(50% - 0.375em)*0.25882), calc(50% + calc(50% - 0.375em)*-0.98481) calc(50% + calc(50% - 0.375em)*0.17365), calc(50% + calc(50% - 0.1875em)*-0.96593) calc(50% + calc(50% - 0.1875em)*0.25882), 0.75961% 58.68241%, 100% 50%, 0% 50%, 0.19027% 54.35779%, calc(50% + calc(50% - 0.1875em)*-0.98481) calc(50% + calc(50% - 0.1875em)*0.17365), calc(50% + calc(50% - 0.375em)*-0.99619) calc(50% + calc(50% - 0.375em)*0.08716), calc(50% + calc(50% - 0.375em)*-1) calc(50% + calc(50% - 0.375em)*0), calc(50% + calc(50% - 0.1875em)*-0.99619) calc(50% + calc(50% - 0.1875em)*0.08716), 0% 50%, 100% 50%, 0.75961% 41.31759%, 0.19027% 45.64221%, calc(50% + calc(50% - 0.1875em)*-1) calc(50% + calc(50% - 0.1875em)*0), calc(50% + calc(50% - 0.375em)*-0.99619) calc(50% + calc(50% - 0.375em)*-0.08716), calc(50% + calc(50% - 0.375em)*-0.98481) calc(50% + calc(50% - 0.375em)*-0.17365), calc(50% + calc(50% - 0.1875em)*-0.99619) calc(50% + calc(50% - 0.1875em)*-0.08716), 0.75961% 41.31759%, 100% 50%, 3.01537% 32.89899%, 1.70371% 37.05905%, calc(50% + calc(50% - 0.1875em)*-0.98481) calc(50% + calc(50% - 0.1875em)*-0.17365), calc(50% + calc(50% - 0.375em)*-0.96593) calc(50% + calc(50% - 0.375em)*-0.25882), calc(50% + calc(50% - 0.375em)*-0.93969) calc(50% + calc(50% - 0.375em)*-0.34202), calc(50% + calc(50% - 0.1875em)*-0.96593) calc(50% + calc(50% - 0.1875em)*-0.25882), 3.01537% 32.89899%, 100% 50%, 6.69873% 25%, 4.68461% 28.86909%, calc(50% + calc(50% - 0.1875em)*-0.93969) calc(50% + calc(50% - 0.1875em)*-0.34202), calc(50% + calc(50% - 0.375em)*-0.90631) calc(50% + calc(50% - 0.375em)*-0.42262), calc(50% + calc(50% - 0.375em)*-0.86603) calc(50% + calc(50% - 0.375em)*-0.5), calc(50% + calc(50% - 0.1875em)*-0.90631) calc(50% + calc(50% - 0.1875em)*-0.42262), 6.69873% 25%, 100% 50%, 11.69778% 17.86062%, 9.0424% 21.32118%, calc(50% + calc(50% - 0.1875em)*-0.86603) calc(50% + calc(50% - 0.1875em)*-0.5), calc(50% + calc(50% - 0.375em)*-0.81915) calc(50% + calc(50% - 0.375em)*-0.57358), calc(50% + calc(50% - 0.375em)*-0.76604) calc(50% + calc(50% - 0.375em)*-0.64279), calc(50% + calc(50% - 0.1875em)*-0.81915) calc(50% + calc(50% - 0.1875em)*-0.57358), 11.69778% 17.86062%, 100% 50%, 17.86062% 11.69778%, 14.64466% 14.64466%, calc(50% + calc(50% - 0.1875em)*-0.76604) calc(50% + calc(50% - 0.1875em)*-0.64279), calc(50% + calc(50% - 0.375em)*-0.70711) calc(50% + calc(50% - 0.375em)*-0.70711), calc(50% + calc(50% - 0.375em)*-0.64279) calc(50% + calc(50% - 0.375em)*-0.76604), calc(50% + calc(50% - 0.1875em)*-0.70711) calc(50% + calc(50% - 0.1875em)*-0.70711), 17.86062% 11.69778%, 100% 50%, 25% 6.69873%, 21.32118% 9.0424%, calc(50% + calc(50% - 0.1875em)*-0.64279) calc(50% + calc(50% - 0.1875em)*-0.76604), calc(50% + calc(50% - 0.375em)*-0.57358) calc(50% + calc(50% - 0.375em)*-0.81915), calc(50% + calc(50% - 0.375em)*-0.5) calc(50% + calc(50% - 0.375em)*-0.86603), calc(50% + calc(50% - 0.1875em)*-0.57358) calc(50% + calc(50% - 0.1875em)*-0.81915), 25% 6.69873%, 100% 50%, 32.89899% 3.01537%, 28.86909% 4.68461%, calc(50% + calc(50% - 0.1875em)*-0.5) calc(50% + calc(50% - 0.1875em)*-0.86603), calc(50% + calc(50% - 0.375em)*-0.42262) calc(50% + calc(50% - 0.375em)*-0.90631), calc(50% + calc(50% - 0.375em)*-0.34202) calc(50% + calc(50% - 0.375em)*-0.93969), calc(50% + calc(50% - 0.1875em)*-0.42262) calc(50% + calc(50% - 0.1875em)*-0.90631), 32.89899% 3.01537%, 100% 50%, 41.31759% 0.75961%, 37.05905% 1.70371%, calc(50% + calc(50% - 0.1875em)*-0.34202) calc(50% + calc(50% - 0.1875em)*-0.93969), calc(50% + calc(50% - 0.375em)*-0.25882) calc(50% + calc(50% - 0.375em)*-0.96593), calc(50% + calc(50% - 0.375em)*-0.17365) calc(50% + calc(50% - 0.375em)*-0.98481), calc(50% + calc(50% - 0.1875em)*-0.25882) calc(50% + calc(50% - 0.1875em)*-0.96593), 41.31759% 0.75961%, 100% 50%, 50% 0%, 45.64221% 0.19027%, calc(50% + calc(50% - 0.1875em)*-0.17365) calc(50% + calc(50% - 0.1875em)*-0.98481), calc(50% + calc(50% - 0.375em)*-0.08716) calc(50% + calc(50% - 0.375em)*-0.99619), calc(50% + calc(50% - 0.375em)*0) calc(50% + calc(50% - 0.375em)*-1), calc(50% + calc(50% - 0.1875em)*-0.08716) calc(50% + calc(50% - 0.1875em)*-0.99619), 50% 0%, 100% 50%, 58.68241% 0.75961%, 54.35779% 0.19027%, calc(50% + calc(50% - 0.1875em)*0) calc(50% + calc(50% - 0.1875em)*-1), calc(50% + calc(50% - 0.375em)*0.08716) calc(50% + calc(50% - 0.375em)*-0.99619), calc(50% + calc(50% - 0.375em)*0.17365) calc(50% + calc(50% - 0.375em)*-0.98481), calc(50% + calc(50% - 0.1875em)*0.08716) calc(50% + calc(50% - 0.1875em)*-0.99619), 58.68241% 0.75961%, 100% 50%, 67.10101% 3.01537%, 62.94095% 1.70371%, calc(50% + calc(50% - 0.1875em)*0.17365) calc(50% + calc(50% - 0.1875em)*-0.98481), calc(50% + calc(50% - 0.375em)*0.25882) calc(50% + calc(50% - 0.375em)*-0.96593), calc(50% + calc(50% - 0.375em)*0.34202) calc(50% + calc(50% - 0.375em)*-0.93969), calc(50% + calc(50% - 0.1875em)*0.25882) calc(50% + calc(50% - 0.1875em)*-0.96593), 67.10101% 3.01537%, 100% 50%, 75% 6.69873%, 71.13091% 4.68461%, calc(50% + calc(50% - 0.1875em)*0.34202) calc(50% + calc(50% - 0.1875em)*-0.93969), calc(50% + calc(50% - 0.375em)*0.42262) calc(50% + calc(50% - 0.375em)*-0.90631), calc(50% + calc(50% - 0.375em)*0.5) calc(50% + calc(50% - 0.375em)*-0.86603), calc(50% + calc(50% - 0.1875em)*0.42262) calc(50% + calc(50% - 0.1875em)*-0.90631), 75% 6.69873%, 100% 50%, 82.13938% 11.69778%, 78.67882% 9.0424%, calc(50% + calc(50% - 0.1875em)*0.5) calc(50% + calc(50% - 0.1875em)*-0.86603), calc(50% + calc(50% - 0.375em)*0.57358) calc(50% + calc(50% - 0.375em)*-0.81915), calc(50% + calc(50% - 0.375em)*0.64279) calc(50% + calc(50% - 0.375em)*-0.76604), calc(50% + calc(50% - 0.1875em)*0.57358) calc(50% + calc(50% - 0.1875em)*-0.81915), 82.13938% 11.69778%, 100% 50%, 88.30222% 17.86062%, 85.35534% 14.64466%, calc(50% + calc(50% - 0.1875em)*0.64279) calc(50% + calc(50% - 0.1875em)*-0.76604), calc(50% + calc(50% - 0.375em)*0.70711) calc(50% + calc(50% - 0.375em)*-0.70711), calc(50% + calc(50% - 0.375em)*0.76604) calc(50% + calc(50% - 0.375em)*-0.64279), calc(50% + calc(50% - 0.1875em)*0.70711) calc(50% + calc(50% - 0.1875em)*-0.70711), 88.30222% 17.86062%, 100% 50%, 93.30127% 25%, 90.9576% 21.32118%, calc(50% + calc(50% - 0.1875em)*0.76604) calc(50% + calc(50% - 0.1875em)*-0.64279), calc(50% + calc(50% - 0.375em)*0.81915) calc(50% + calc(50% - 0.375em)*-0.57358), calc(50% + calc(50% - 0.375em)*0.86603) calc(50% + calc(50% - 0.375em)*-0.5), calc(50% + calc(50% - 0.1875em)*0.81915) calc(50% + calc(50% - 0.1875em)*-0.57358), 93.30127% 25%, 100% 50%, 96.98463% 32.89899%, 95.31539% 28.86909%, calc(50% + calc(50% - 0.1875em)*0.86603) calc(50% + calc(50% - 0.1875em)*-0.5), calc(50% + calc(50% - 0.375em)*0.90631) calc(50% + calc(50% - 0.375em)*-0.42262), calc(50% + calc(50% - 0.375em)*0.93969) calc(50% + calc(50% - 0.375em)*-0.34202), calc(50% + calc(50% - 0.1875em)*0.90631) calc(50% + calc(50% - 0.1875em)*-0.42262), 96.98463% 32.89899%, 100% 50%, 99.24039% 41.31759%, 98.29629% 37.05905%, calc(50% + calc(50% - 0.1875em)*0.93969) calc(50% + calc(50% - 0.1875em)*-0.34202), calc(50% + calc(50% - 0.375em)*0.96593) calc(50% + calc(50% - 0.375em)*-0.25882), calc(50% + calc(50% - 0.375em)*0.98481) calc(50% + calc(50% - 0.375em)*-0.17365), calc(50% + calc(50% - 0.1875em)*0.96593) calc(50% + calc(50% - 0.1875em)*-0.25882), 99.24039% 41.31759%, 100% 50%);
}

.steps_section .tab-content {
  background: #fff;
  padding: 20px;
  border-top: 2px solid #ff712f;
  border-bottom: 2px solid #ff712f;
  position: relative;
}

.steps_section .tab-content:after,
.steps_section .tab-content::before {
  content: '';
  background: linear-gradient(to top, #ffffff00, #ff9800, #ff9800, #0d1f4200);
  background: -ms-linear-gradient(top, #ffffff00, #ff9800, #ff9800, #0d1f4200);
  background: -o-linear-gradient(top, #ffffff00, #ff9800, #ff9800, #0d1f4200);
  background: -webkit-linear-gradient(top, #ffffff00, #ff9800, #ff9800, #0d1f4200);
  background: -moz-linear-gradient(top, #ffffff00, #ff9800, #ff9800, #0d1f4200);
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.steps_section .tab-content::before {
  left: 0;
}

.steps_section .tab-content .tab-pane h3 {
  color: #002147;
  padding: 15px 0;
  transition: all .4s linear 0s;
}

.steps_section .tab-content .icons {
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #ff5202;
  color: #ff5202;
  background-color: #fff;
  transition: all .4s linear 0s;
}

.steps_section .tab-content .icons:hover {
  text-decoration: none;
  background-color: #ff5202;
  color: #fff;
  cursor: pointer;
}

.steps_section .tab-content .icons:hover i {
  color: #fff;
}

.steps_section .tab-content i {
  font-size: 48px;
  color: #ff712f;
  font-weight: 700;
  transition: all .4s linear 0s;
}
/* .section-topic {
  background-image: url(../assets/images/topic_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
} */











/* mission codiing  */

.mission_wrapper .box-title h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: -8px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  color: #222;
  transition: all .4s linear 0s;
}

.mission_wrapper .box-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #F9780F;
  border-radius: 30px;
}

.mission_wrapper .box-title h3:hover {
  text-decoration: none;
  color: #ff5202;
}

/* why choose section programing */

.section-topic.why-section .section-title h2 {
  color: #002147;
  font-size: 37px;
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.section-topic.why-section .section-title h2 span {
  color: #f9780f;
}

.section-topic.why-section .section-title h2::after {
  position: absolute;
  content: '';
  top: 114%;
  left: 8px;
  width: 48px;
  height: 4px;
  z-index: -1;
  background: #f9780f;
}

.section-topic.why-section .dream-item {
  overflow: hidden;
}

.section-topic.why-section .dream-item h3 {
  transition: all .4s linear 0s;
}

.section-topic.why-section .dream-item:hover h3 a {
  text-decoration: none;
  color: #F9780F;
}

.section-topic.why-section .dream-item:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: 0;
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #F9780F;
}

.section-topic.why-section .dream-item .choose-item {
  position: absolute;
  bottom: 11px;
  left: 41%;
}

.section-topic.why-section .dream-item:hover:after {
  width: 100%;
}

.section-topic.why-section .dream-item:hover .sub-span i {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.section-topic.why-section .dream-item .sub-span {
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 35px;
  color: #fff;
  background-color: #f9780f;
  border-radius: 50%;
  position: absolute;
  right: 12px;
  top: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;

}

.section-topic.why-section .dream-item .sub-span i {
  font-size: 23px;
  transition: all linear .3s;
}



.subject-works.row {
  display: flex;
}

.subject-works.row .col-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}

.subject-works h5 {
  position: relative;
  display: inline-block;
}

.subject-works h5::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 5px;
  top: 2px;
  border-top: 13px solid transparent;
  border-right: 15px solid #ff5202;
  transform: rotate(10deg);
}

.subject-works .circle {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 50%;
  background-color: #ff5202;
  color: #fff;
  max-height: 50px;
  z-index: 2;
}

.subject-works .circle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #e9efff40;
  width: 92%;
  height: 100%;
  clip-path: circle(50% at 40% 86%);
  z-index: -1;
}

.subject-works h5::after {
  content: "";
  position: absolute;
  border: 0 solid transparent;
  border-top-color: transparent;
  border-top-style: solid;
  border-top-width: 0px;
  border-top: 3px solid #ff5202;
  border-radius: 20px 0 0 0;
  top: 0;
  left: -5px;
  width: 19px;
  height: 19px;
  transform: rotate(45deg);
}


.subject-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}

.subject-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #ff5202;
  z-index: 1;
}

.subject_subtitle div {
  padding: 0;
  height: 40px;
}

.subject_subtitle .col-2 {
  display: flex;
  overflow: hidden;
}

.subject_subtitle hr {
  border-top: 3px solid #ff5202;
  margin: 0;
  top: 17px;
  position: relative;
}

.subject_subtitle .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}

.subject-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}

.subject_subtitle .top-left {
  left: -50%;
  top: -50%;
}

.subject_subtitle .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}

.subject-works.row .col-2.top::after {
  height: 100%;
  left: 50%;
  top: 0;
}

.subject_subtitle .corner {
  border: 3px solid #ff5202;
  width: 100%;
  position: relative;
  border-radius: 15px;
}

.subject_subtitle .top-right {
  left: 50%;
  top: -50%;
}

.subject-works.row .col-2.last::after {
  height: 50%;
  left: calc(50% - 3px);
  top: 0;
}

.subject-works h5 {
  color: #002147;
  padding: 15px 0;
  transition: all .4s linear 0s;
}

.subject_title h2 {
  color: #002147;
  font-size: calc(1.2rem + 1vw);
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.subject_title h2 span {
  color: #f9780f;
}

.subject_title h2::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0px;
  width: 75px;
  height: 4px;
  z-index: -1;
  background: #f9780f;
}

.subject-works h5:hover {
  text-decoration: none;
  color: #ff5202;
}

.subject-works p {
  font-family: rubik, sans-serif;
  color: #666;
  font-size: 16px;
}

/* ========================================
               why section
      ================================================ */
.why_section .why-content h2 {
  color: #002147;
  font-size: calc(0.8rem + 1vw);
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
}

.why_section .why-content h2 span {
  color: #ff5202;
  font-family: Lobster;
  line-height: 1.35;
}

.why-content .theme-list ul li {
  display: flex;
  align-items: center;
}

/* ========================================
               wBenefits Of Academic  section
      ================================================ */

.benefit_title h2 span {
  color: #f9780f;
}

.benefit_title h2::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0px;
  width: 75px;
  height: 4px;
  z-index: -1;
  background: #f9780f;
}

.featured-2-wrapper .equal_width_1 {
  flex-basis: 42%;
}

.featured-2-wrapper .equal_width {
  flex-basis: 65%;
}

/* benefit section */
.work-content.benefit .section-title_4 h2,
.benefit_title h2 {
  font-size: 35px;
  line-height: 46px;
  font-weight: 700;
  color: #102B3E;
  margin-bottom: 15px;
  padding-right: 24px;
  position: relative;
}

.work-content.benefit .section-title_4 h2 span {
  color: #f9780f;
}

/* ========================================
               No More Late Submissions!  section
      ================================================ */

.main-home {
  position: relative;
  padding: 73px 0;
}

.main-home .partition-bg-wrap:before {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  bottom: 0;
  background: url("./assets/images/main-program.webp");
  background-size: cover;
  background-repeat: no-repeat;
  right: 0;
}

.main-home .partition-bg-wrap::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  bottom: 0;
  background: url("./assets/images/main-program2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  z-index: -1;
}

.sec-title3 h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.sec-title3 .sec-content {
  color: #ffffff;
  text-align: justify;
}

.category .section-title h2 {
  color: #002147;
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
  font-size: calc(1rem + 1vw);
}

.single-featured-3 {
  margin: 20px 0px;
  transition: all .4s linear 0s;
}
.featured-2-icon {
  margin-right: 30px;
}
.featured-2-wrapper .equal_width_1 {
  flex-basis: 42%;
}
.featured-2-text h5 {
  color: #002147;
  font-size: 20px;
  font-family: poppins,sans-serif;
  font-weight: 600;
}
.section-why-area .work-content ul li h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #302c51;
  font-family: quicksand,sans-serif;
}
.section-why-area .work-content ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 30px;
}
.section-why-area .work-content ul li h3 span {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: #302c51;
  background-color: #e5e6ff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
  margin-right: 10px;
}
.section-why-area .work-img img:nth-child(1) {
  max-width: 405px;
}
.section-why-area .work-img img:nth-child(2) {
  max-width: 410px;
  margin-top: -150px;
  margin-right: 225px;
}

/***
==================================================================
  programing website  Section End 26/7/ 2021
==================================================================
***/
.section-ptb {
  padding-top: 50px;
  padding-bottom: 50px;
}
.theme-list ul li:before {
  content: "\f058";
  font-family: FontAwesome;
  font-weight: 900;
  padding-right: 5px;
  color: #ff5202;
}









/* -----------------------------------------------------nursing-assignment-help----------------------------------------------------------- */

.perk-content.para p{
  color: #fff;
}
/* why choose section programing */

.section-topic.why-section .section-title h2 {
  color: #002147;
  font-size: 37px;
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.section-topic.why-section .section-title h2 span {
  color: #f9780f;
}

.section-topic.why-section .section-title h2::after {
  position: absolute;
  content: '';
  top: 114%;
  left: 8px;
  width: 48px;
  height: 4px;
  z-index: -1;
  background: #f9780f;
}

.section-topic.why-section .dream-item {
  overflow: hidden;
}

.section-topic.why-section .dream-item h3 {
  transition: all .4s linear 0s;
}

.section-topic.why-section .dream-item:hover h3 a {
  text-decoration: none;
  color: #F9780F;
}

.section-topic.why-section .dream-item:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: 0;
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #F9780F;
}

.section-topic.why-section .dream-item .choose-item {
  position: absolute;
  bottom: 11px;
  left: 41%;
}

.section-topic.why-section .dream-item:hover:after {
  width: 100%;
}

.section-topic.why-section .dream-item:hover .sub-span i {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.section-topic.why-section .dream-item .sub-span {
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 35px;
  color: #fff;
  background-color: #f9780f;
  border-radius: 50%;
  position: absolute;
  right: 12px;
  top: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;

}

.section-topic.why-section .dream-item .sub-span i {
  font-size: 23px;
  transition: all linear .3s;
}



.subject-works.row {
  display: flex;
}

.subject-works.row .col-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}

.subject-works h5 {
  position: relative;
  display: inline-block;
}

.subject-works h5::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 5px;
  top: 2px;
  border-top: 13px solid transparent;
  border-right: 15px solid #ff5202;
  transform: rotate(10deg);
}

.subject-works .circle {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 50%;
  background-color: #ff5202;
  color: #fff;
  max-height: 50px;
  z-index: 2;
}

.subject-works .circle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #e9efff40;
  width: 92%;
  height: 100%;
  clip-path: circle(50% at 40% 86%);
  z-index: -1;
}

.subject-works h5::after {
  content: "";
  position: absolute;
  border: 0 solid transparent;
  border-top-color: transparent;
  border-top-style: solid;
  border-top-width: 0px;
  border-top: 3px solid #ff5202;
  border-radius: 20px 0 0 0;
  top: 0;
  left: -5px;
  width: 19px;
  height: 19px;
  transform: rotate(45deg);
}


.subject-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}

.subject-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #ff5202;
  z-index: 1;
}

.subject_subtitle div {
  padding: 0;
  height: 40px;
}

.subject_subtitle .col-2 {
  display: flex;
  overflow: hidden;
}

.subject_subtitle hr {
  border-top: 3px solid #ff5202;
  margin: 0;
  top: 17px;
  position: relative;
}

.subject_subtitle .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}

.subject-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}

.subject_subtitle .top-left {
  left: -50%;
  top: -50%;
}

.subject_subtitle .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}

.subject-works.row .col-2.top::after {
  height: 100%;
  left: 50%;
  top: 0;
}

.subject_subtitle .corner {
  border: 3px solid #ff5202;
  width: 100%;
  position: relative;
  border-radius: 15px;
}

.subject_subtitle .top-right {
  left: 50%;
  top: -50%;
}

.subject-works.row .col-2.last::after {
  height: 50%;
  left: calc(50% - 3px);
  top: 0;
}

.subject-works h5 {
  color: #002147;
  padding: 15px 0;
  transition: all .4s linear 0s;
}

.subject_title h2 {
  color: #002147;
  font-size: calc(1.2rem + 1vw);
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.subject_title h2 span {
  color: #f9780f;
}

.subject_title h2::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0px;
  width: 75px;
  height: 4px;
  z-index: -1;
  background: #f9780f;
}

.subject-works h5:hover {
  text-decoration: none;
  color: #ff5202;
}

.subject-works p {
  font-family: rubik, sans-serif;
  color: #666;
  font-size: 16px;
}

/* student section started */
.section_student .student-content .title {
  font-size: 35px;
  line-height: 46px;
  font-weight: 700;
  color: #102B3E;
  margin-bottom: 15px;
  padding-right: 24px;
}

.section_student ul.rs-features-list li {
  margin: 10px 0px;
  font-size: 15px;
}

.section_student ul.rs-features-list li i {
  color: #fff;
  background-color: transparent;
  background-image: linear-gradient(180deg, #dd4c23 0%, #f27c1e 100%);
  padding: 8px 8px 8px 8px;
  margin: 0px 7px 0px 0px;
  border-radius: 50px 50px 50px 50px;
}

.section_student .student-content .title span {
  color: #F9780F;
}












/*---------------------------------------4-3-2022-----nursing-assignment-help---------------------------------------------------------- */

.half_column_content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.half_column_content p {
  line-height: 28px;
}
.theme-list {
  display: inline-block;
}

/* mutitliples topics */
.section-topic {
  background-image: url('../assets/images/topic_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.section-topic .section-title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -5px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}

.section-topic .section-title h2 {
  color: #002147;
  font-size: 37px;
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
}

.section-topic .section-title .sub-title {
  display: inline-block;
  color: #ff6015;
  font-size: 18px;
  margin-bottom: 10px;
}

.section-topic .dream-item {
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 20px 0 #dddddd8c;
  box-shadow: 0 0 20px 0 #dddddd8c;
  border-radius: 30px 30px 0 30px;
  padding: 30px 25px 40px;
  position: relative;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  background-color: #fff;
}

.section-topic .dream-item .sub-span {
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #302c51;
  background-color: #eee;
  border-radius: 50%;
  position: absolute;
  right: 12px;
  top: 28px;
  font-weight: 600;
}

.section-topic .dream-item h3 {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #302c51;
  font-family: quicksand, sans-serif;
}

.section-topic .dream-item p {
  text-align: justify;
}

.section-topic .dream-item:hover {
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
  border-radius: 0;
}
.half_column_content_2 h2 {
  font-size: 36px;
  color: #002147;
  padding-bottom: 15px;
  font-weight: 600;
  text-transform: capitalize;
}
.half_column_content_2 p {
  text-align: justify;
}
/* -----------------------------------------------------Homework-help----------------------------------------------------------- */
.single_blog .event-image img {
  transition: all .4s linear 0s;
}
.event-image {
  position: relative;
  overflow: hidden;
}
.event-content h2 a {
  color: #002147;
  transition: all .4s linear 0s;
}
.single_blog .event-image img {
  transition: all .4s linear 0s;
}
.events-info-2 {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  padding: 15px 20px;
  width: 80%;
  left: 10%;
  border-radius: 30px;
  font-size: 14px;
  color: #56566a;
}
.section-title h2 {
  color: #002147;
  font-size: 38px;
  margin-bottom: 25px;
  font-family: poppins;
  font-weight: 600;
}
.featured-2-icon i {
  color: #ff5202;
  font-size: 25px;
  width: 60px;
  height: 60px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #ff5202;
}
.half_column_content h3 {
  font-size: 35px;
  color: #002147;
  font-weight: 600;
  font-family: poppins,sans-serif;
}
.half_columnn_image img {
  width: 100%;
}
.default_bg {
  background-color: #0d1028;
}
.single-countdown span {
  color: #ff5202;
  font-size: 26px;
  font-weight: 600;
}
.single-countdown p {
  color: #fff;
  font-weight: 600;
  font-style: italic;
  text-align: justify;
}

/*------------------------------------- 5-3-22-----  about us page-------------------------------------------------  */
.box-cccc {
  position: relative;
  border: 1px solid #ff611478;
}
.box-cccc {
  background: #fff;
  box-shadow: 1px 2px 10px #ccc;
  padding: 20px;
  text-align: justify;
  margin-bottom: 20px;
}
.box-cccc h3 {
  font-size: 25px;
  font-weight: 700;
  color: #ff6114;
}



.box-cccc ::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 75px;
  background-color: #ff6114;
  border-radius: 170px 0 0 0;
  opacity: .1;
  -webkit-transition: .7s;
  transition: .7s;
  z-index: 999;
}

.box-cccc::before {

  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background-color: #ff6114;
  border-radius: 272px 0 0 0;
  opacity: .1;
  -webkit-transition: .7s;
  transition: .7s;
  z-index: 999;
}

.box-cccc:hover::before {
  width: 100%;
  height: 100%;
 
}
.box-cc {
  background: #fff;
  box-shadow: 1px 2px 10px #ccc;
  padding: 20px;
  text-align: justify;
  height: 350px;
}
.vision {
  background: #007bff;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  color: #fff;
  line-height: 125px;
  font-size: 18px;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
}
.mission {
  background: #00b516;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  color: #fff;
  line-height: 125px;
  font-size: 18px;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
}
.values {
  background: #fba200;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  color: #fff;
  line-height: 125px;
  font-size: 18px;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
}
.hero-section {
  position: relative;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
.height-470 {
  height: 470px;
}
.hero-section h1 {
  font-weight: 500;
  margin-top: 100px;
}
.section-pt {
  padding-top: 130px;
}
/* contact- us  */

#mu-contact .contact-address-section .contact-info {
  /* display: flex; */
  text-align: justify;
  align-items: center;
  padding: 30px 20px;
  /* border-radius: 5px; */
  position: relative;
  box-shadow: 0px 0px 16px rgb(4 59 80 / 10%);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid #ff5202;
  box-shadow: rgb(129 129 134 / 20%) 0px 7px 14px 0px;
}
#mu-contact .contact-address-section .contact-info:hover {
  transform: translateY(-5px);
}
.contact-from-wrapper-2 {
  overflow: hidden;
}
.section-heading {
  position: relative;
  font-size: 35px;
  color: #002147;
  font-family: poppins;
  font-weight: 600;
}
.section-heading:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 50%;
  left: 40%;
  background-color: #ff5202;
}
.hover_bg {
  background-color: #ff5202;
}
.highlights-section ul li {
  display: inline-block;
  padding: 5px;
}
.highlights-section .social-links ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(255,255,255,.19);
  transition: all .4s linear 0s;
  text-align: center;
}
.contact-from-wrapper-2 input {
  border-radius: 0;
  height: 50px;
  background-color: #f9f9ff;
  position: relative;
}
.contact-from-wrapper-2 textarea {
  background-color: #f9f9ff;
  border-radius: 0;
  position: relative;
}
.contact-from-wrapper-2 button[type=submit] {
  padding: 15px 25px;
  background-color: #ff5202;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
}
.video_popup_content h2{
    color:#fff;
}

.video_popup_content p{
    color:#fff;
}


/* 11/august/23 */

.highlights-section ul li i {
  font-family: 'FontAwesome';
  margin-right: 8px;
  margin-top: 4px;
}

.my-form-neww {
  padding: 85px 0;
}

.my-form-neww h4 {
  margin-bottom: 15px;
}

.my-mt {
  margin-top: 17px;
}

.contact-from-wrapper-2 button[type=submit]{
  margin-top: 15px;
}

.highlights-section ul li {
  font-weight: 500;
  display: flex;
}
.content-part h5 {
  padding-bottom: 6px;
}
.content-part i {
  font-size: 46px;
  color: #ff5202;
  padding-bottom: 19px;
}
#mu-contact .contact-address-section .contact-info {
  margin-bottom: 30px;
}