
/*------abhishek------*/
/*-----11/06/2024-----*/
/*------About-Sec------*/

.item .info h2 span {
  color: #E65100;
}
.tutors-area .single-event .info .text-content p {
    color: #666666;
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400;
    font-size: 15px;
}
.tutors-area .single-event .tzi-overvw h2 {
    font-size: 36px;
    text-transform: capitalize !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.tutors-area .single-event .tzi-overvw h3 {
  font-size: 27px;
  font-weight: 600;
}
.item .info h3 span {
  color: #E65100;
}

/*--------contact-us-page-----------*/

.container-mod {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-form {
  background-color: #e65404;
  position: relative;
}
.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #bc9f54);
  position: absolute;
}
.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}
.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}
.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #e65404;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}
.contact-form form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}
.title {
  color: #868686;
  font-weight: 500;
/*font-size: 1.5rem;*/
  line-height: 1;
  margin-bottom: 0.7rem;
  font-size: 12px;
}
.input-container {
  position: relative;
  margin: 1rem 0;
}
.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}
textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}
.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}
.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}
.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #e65404;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}
.btn:hover {
  background-color: transparent;
  color: #fff;
}
.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}
.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #e65404;
  top: 50%;
  transform: translateY(-50%);
}
.input-container span:before {
  left: 50%;
}
.input-container span:after {
  right: 50%;
}
.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}
.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}
.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}
.contact-info .title {
  color: #e65100;
}
.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}
.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}
.information i {
  color: #ea5100;
}
.icon {
  width: 28px;
  margin-right: 0.7rem;
}
.social-media {
  padding: 2rem 0 0 0;
}
.social-media p {
  color: #333;
}
.social-icons {
  display: flex;
  margin-top: 0.5rem;
}
.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #db8921, #e65404);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}
.social-icons a:hover {
  transform: scale(1.05);
}
.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #e65404;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}
.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #e26f2c, #e65100);
  bottom: 45%;
  right: 50%;
  transform: translate(-40%, 38%);
}
.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}
.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }
  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }
  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }
  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }
  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }
  .text {
    margin: 1rem 0 1.5rem 0;
  }
  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container-mod {
    padding: 1.5rem;
  }
  .contact-info:before {
    display: none;
  }
  .square,
  .big-circle {
    display: none;
  }
  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }
  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }
  .title {
    font-size: 1.15rem;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .icon {
    width: 23px;
  }
  .input {
    padding: 0.45rem 1.2rem;
  }
  .btn {
    padding: 0.45rem 1.2rem;
  }
}

/*---------FAQ-SEC----------*/

.accordion .accordion-item-mod {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item-mod button[aria-expanded='true'] {
  border-bottom: 1px solid #e65100;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #e65100;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded='true'] {
  color: #e65100;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
.tutors-area .single-event .tzi-faq h2 {
    font-size: 36px;
    text-transform: capitalize !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}


/*-------13/06/2024------*/
.course-men-pt {
  padding-top: 60px!important;
}
.course-men-pts{
  padding-top: 60px!important;
}
section.course-men-pt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 180px;
    background-color: #e65100;
    padding-left: 15px;
    border-radius: 5px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .course-men-pts {
  padding-top: 0px!important;
}
}
.tutors-area .single-event .career-pg h3 {
    font-size: 21px;
    font-weight: 600;
}
.career-head h2 {
  font-size: 35px;
  color: #E65100;
  font-weight: 600;
  padding-bottom: 15px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
 .item img {
  padding: 20px;
 }
}
.cre-para-cont p {
  font-size: 16px;
}

/*-----------*/

:root {
  --main-color: #3f51b5;
}
.containers h2 {
  /*text-align: center;
  margin-bottom: 35px;*/
  font-weight: 600;
  position: relative;
}
/*.containers h2::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 20px;
}*/
/*----------*/

/*------14/06/2024------*/
/*-------services-------*/

.ser-men-div {
  height: auto;
  width: 100%;
  display: grid;
  place-items: center;
}
.ser-row-sec {
  display: flex;
  flex-wrap: wrap;
}
.column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}
.card-mod {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #e65100 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}
.card-mod h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
}
.card-mod p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.icon-wrapper {
  background-color: #e65100;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.card-mod:hover {
  background-position: 0 100%;
}
.card-mod:hover .icon-wrapper {
  background-color: #ffffff;
  color: #e65100;
}
.card-mod:hover h3 {
  color: #ffffff;
}
.card-mod:hover p {
  color: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .ser-men-div {
    padding: 0 2em;
  }
  .column {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .ser-men-div {
    padding: 1em 3em;
  }
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
/*  box-shadow: none!important;*/
}
.form-select:focus {
    border-color: none!important;
    outline: 0;
    box-shadow: 4px 4px 4px 0px #d1d9e6 inset, -4px -4px 4px 0px #fff inset;
}
.btn-new-mod:hover {
    background-color: #ff5d06;
    color: #fff;
}
.btn-new-mod {
    padding: 0.6rem 1.3rem;
    background-color: #e65404;
    border: 1px solid #fafafa;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}
.btn-primary:focus {
    border-color: #0a58ca;
    box-shadow:none!important;
}
.container-mod-find{
  position: relative;
    width: 100%;
    /*min-height: 100vh;
    padding: 2rem;
    background-color: #fafafa; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pt-mb-mod {
  padding-top: 50px!important;
  padding-bottom: 30px!important;
}
.form-text {
    margin-top: .25rem;
    font-size: 11px;
    color: #6c757d;
}
.btn-primary:hover {
    border-color: #e85100!important;
}

/*-----29/06/2024-----*/

section.body-cont1 .wrap {
  padding: 16px;
}
section.body-cont1 .wrap h5 {
  font-size: 14px;
}
section.body-cont1 .wrap p {
  font-size: 13px;
}
header ul.user-sec li:last-child a:hover{
  background: #ffffff;
  color: #000;
  border: 2px solid #f6e5bd;
  font-size: 14px;
  font-weight: 500;
}
.tutors-area .single-event .te_profile .pro-btn li a {
    width: 100%;
    display: table;
    background: #e65100;
    padding: 7px 12px!important;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
}
.container-mod-find .event-area {
  width: 40%;
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .container-mod-find .event-area {
  width: 50%;
}
}
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .container-mod-find .event-area {
  width: 60%;
}
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .container-mod-find .event-area {
  width: 100%;
}
}

.tutors-area .container-mod-find .event-area .single-event .teacher-find {
    box-shadow: 1px 4px 20px -2px rgba(0, 0, 0, .1);
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 5px;
    background: #fff;
    padding: 20px;
}

/*----registration from----*/


.tab-nav ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.teacher-reg-btn{
    display: inline-block;
    padding: 6px 25px;
    background-color: #014fbb;
    border: 1px solid #014fbb;
    color: white;
    cursor: pointer;
    transition: all .3s ease-in-out;
    border-radius: 30px;
    font-weight: 600;
}
.teacher-reg-btn.active,
.teacher-reg-btn:hover{
    background-color: #e65100;
    border-color: #e65100;
    font-weight: 600;
}

.container-reg {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width: 576px) {
    .container-reg {
        max-width: 540px;
    }
}

@media(min-width: 768px) {
    .container-reg {
        max-width: 720px;
    }
}

@media(min-width: 992px) {
    .container-reg {
        max-width: 960px;
    }
}

@media(min-width: 1200px) {
    .container-reg {
        max-width: 1140px;
    }
}

@media(min-width: 1440px) {
    .container-reg {
        max-width: 1310px;
    }
}


.hide{
    display: none;
}

.tab-nav{
    max-width: 300px;
    margin: 0 auto;
    border: 1px solid gainsboro;
}
.tab-nav button{
    width: 100%;
}
.tab-nav ul {
    display: none;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}
.tab-nav ul.show{
    display: block;
}
@media(min-width: 992px){
    .tab-nav {
        max-width: 100%;
        border: 0;
    }
    .tab-nav ul {
        gap: 16px;
        flex-direction: row;
    }
}

.tab-content{
    padding: 15px;
    margin-top: 20px;
    background-color: white;
    border-radius: 7px;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.2), 0 0px 15px 0 rgba(0, 0, 0, 0.19);
}
.mobile-select{
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 16px;
    padding-right: 48px;
    cursor: pointer;
}
.mobile-select::after{
    content: '\F282';
    font-family: bootstrap-icons;
    display: inline-block;
    position: absolute;
    line-height: 1;
    right: 16px;
    top: 14px;
}
.mobile-select.active::after{
    transform: rotate(180deg);
}
@media(min-width: 992px){
    .mobile-select{
        display: none;
    }
    .tab-nav ul{
        display: flex;
    }
}

.form-reg{
  /*width: 500px;
  margin: 0 auto;
  margin-top: 150px;*/
  font-family: sans-serif;
/*  background: #fff*/
}
.form-item{
  position: relative;
  margin-bottom: 15px
}
.form-item input{
  display: block;
  width: 400px;
  height: 40px;
  background: transparent;
  border: solid 1px #ccc;
  transition: all .3s ease;
  padding: 0 15px
}
.form-item input:focus{
  border-color: blue
}
.form-item label{
  position: absolute;
  cursor: text;
  z-index: 2;
  top: 13px;
  left: 10px;
  font-size: 12px;
  font-weight: bold;
  background: #f3f7fa;
  padding: 0 10px;
  color: #999;
  transition: all .3s ease
}
.form-item input:focus + label,
.form-item input:valid + label{
  font-size: 11px;
  top: -5px
}
.form-item input:focus + label{
  color: blue
}
.tab-content .tab-item h3 {
  font-size: 20px!important;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e65100;
}
.form-control {
    border-radius: 2.25rem;
}
.form-select {
    border-radius: 2.25rem;
    box-shadow: 4px 4px 4px 0px #d1d9e6 inset, -4px -4px 4px 0px #fff inset;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    color: #747474;
}
.qualiti-btn .add-btn-sec {
    width: 70px;
    height: 30px;
    margin-top: 10px;
    border-radius: 20px;
    border: none;
    box-shadow: 4px 4px 4px 0px #d1d9e6 inset, -4px -4px 4px 0px #fff inset;
    color: #747474;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 400px!important;
        margin: 1.75rem auto;
    }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .sign-modal .radiolabel label span {
    font-size: 11px!important;
}
}
.sign-modal .radiolabel label span {
    display: flex;
    align-items: center;
    padding: .375em .75em .375em .775em;
    border-radius: 99em;
    transition: .25s ease;
    font-size: 12px;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .sign-modal .filelabel {
    padding: 11px 7px;
}
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .title {
    font-size: 7px !important;
}
}
.sign-modal input:not([type=submit]) {
    width: 100%;
    background: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    margin: 0 0 20px;
    color: #000;
    box-shadow: 4px 4px 4px 0px #d1d9e6 inset, -4px -4px 4px 0px #fff inset;
/*    cursor: pointer!important;*/
}
.time-sec label{
    position: absolute;
    margin-top: 14px;
    margin-left: 7px;
}
.radiolabel .slry-rsv-time {
    border: 1px solid #e0dddd;font-size: 12px;
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .sign-modal input:not([type=submit]) {
    padding: 12px 16px;
}
.radiolabel .slry-rsv-time {
    border: 1px solid #e0dddd;font-size: 10px!important;
}
}
@media only screen and (min-width: 767px) and (max-width: 991px) {
.sign-modal input:not([type=submit]) {
    margin: 0 0 0px!important;
}
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
    .time-sec label {
    position: relative;
    margin-top: 14px;
    margin-left: 7px;
}
.sign-modal input:not([type=submit]) {
    margin: 0 0 0px!important;
}
}
.qualiti-btn .add-teach-sec {
    width: 170px;
    height: 42px;
    /* margin-top: 10px; */
    border-radius: 20px;
    border: none;
    box-shadow: 4px 4px 4px 0px #d1d9e6 inset, -4px -4px 4px 0px #fff inset;
    color: #747474;
}

/*------page head text------*/
.head-sec-txt .head-txt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 180px;
    background-color: #e65100;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 5px;
}
.head-sec-txt .contact-head-txt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 215px;
    background-color: #e65100;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 5px;
}
.head-sec-txt .faq-head-txt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 90px;
    background-color: #e65100;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 5px;
}
.head-sec-txt .help-head-txt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 230px;
    background-color: #e65100;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 5px;
}
.head-sec-txt .career-head-txt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 145px;
    background-color: #e65100;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 5px;
}
.head-sec-txt .service-head-txt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 150px;
    background-color: #e65100;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 5px;
}
.head-sec-txt .privacy-head-txt h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 270px;
    background-color: #e65100;
    padding-left: 10px;
    padding-right: 15px;
    border-radius: 5px;
}
.head-sec-txt .condition-head-txt h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 49px;
    margin: 0 0 20px;
    color: #ffffff;
    width: 300px;
    background-color: #e65100;
    padding-left: 8px;
    padding-right: 15px;
    border-radius: 5px;
}

/*---------*/
/*------Notice-page------*/

.notice {
    padding: 35px 0;
}
.event_date {
    width: 82px;
    background: #665c7c;
    float: left;
    text-align: center;
    border-radius: 2px;
}
.event-date-wrap {
    border: 1px dashed #8d84a0;
    margin: 8px;
    padding: 4px 0;
}
.event-date-wrap p {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.event-date-wrap span {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.date-description {
    margin-left: 115px;
}
.date-description h3 {
    margin-top: 0;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}
.date-description h3:after {
    height: 2px;
    width: 21px;
    background: #cbb58b;
    content: "";
    position: absolute;
    left: 0;
    top: 115%;
}
.event_line {
    margin: 40px 0;
}

/*-----*/

.day-select .day-box h6{
/*  border: 2px solid #e65100;*/
  text-align: center;
  padding: 10px;
/*  border-radius: 5px;*/
  box-shadow: 4px 4px 4px 0px #d1d9e6 inset, -4px -4px 4px 0px #fff inset;
}
.day-box {
  cursor: pointer;
  padding: 10px;
  text-align: center;
}
.day-box.selected h6{
  background-color: #e65100;
  color: white;
}
.day-box h6 {
  margin: 0;
}














