@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  background-color: white;
  line-height: 1;
  color: black;
  font-size: 14px;
}

ul {
  list-style: none;
}

.container {
  min-width: auto;
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.mt-30 {
  margin-top: 30px;
}
@media screen and (max-width: 500px) {
  .mt-30 {
    margin-top: 15px;
  }
}

.mt-40 {
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .mt-40 {
    margin-top: 20px;
  }
}

.header-outer {
  background: #940047;
}
.header-outer .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
@media screen and (max-width: 750px) {
  .header-outer .top-header {
    flex-direction: column;
    gap: 20px;
  }
}
.header-outer .top-header .left {
  display: flex;
  width: 50%;
  align-items: center;
  gap: 17px;
}
@media screen and (max-width: 750px) {
  .header-outer .top-header .left {
    width: 100%;
    justify-content: center;
  }
}
.header-outer .top-header .left h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
}
.header-outer .top-header .left svg {
  width: 76px;
  border-right: 1px solid #d6d4d4;
  padding-right: 17px;
}
.header-outer .top-header .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 50%;
}
@media screen and (max-width: 750px) {
  .header-outer .top-header .right {
    width: 100%;
    justify-content: center;
  }
}
.header-outer .top-header .right .inputWithIcon input {
  padding-left: 45px;
  background: none;
  outline: none;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: black;
  font-size: 16px;
}
.header-outer .top-header .right .inputWithIcon input::-moz-placeholder {
  color: black;
}
.header-outer .top-header .right .inputWithIcon input::placeholder {
  color: black;
}
.header-outer .top-header .right .inputWithIcon {
  position: relative;
  height: 50px;
  border-radius: 11px;
  background: white;
  display: flex;
  min-width: 408px;
}
@media screen and (max-width: 750px) {
  .header-outer .top-header .right .inputWithIcon {
    min-width: 100%;
  }
}
.header-outer .top-header .right .inputWithIcon .search {
  position: absolute;
  left: 0;
  top: 0px;
  padding: 7px 7px 7px 13px;
  width: 41px;
  height: 50px;
}
.header-outer .top-header .right .inputWithIcon .cancel {
  position: absolute;
  right: 0;
  top: 0px;
  padding: 7px 13px 7px 7px;
  width: 33px;
  height: 50px;
}

.content-outer {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.content-outer .content-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 26px;
  border: 2px solid rgba(68, 68, 68, 0.0901960784);
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(199, 199, 199, 0.4117647059);
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
}
.content-outer .content-box:last-child {
  border-bottom: 0;
}
.content-outer .content-box a {
  word-wrap: break-word;
  max-width: 300px;
  font-weight: 400;
  font-size: 15px;
}
.content-outer .content-box .title {
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}
.content-outer .content-box .title h2 {
  font-size: 25px;
}
@media screen and (max-width: 500px) {
  .content-outer .content-box .title h2 {
    font-size: 20px;
    line-height: 32px;
  }
}
.content-outer .content-box .title h4 {
  font-size: 15px;
  line-height: 26px;
  color: #4f2237;
}
@media screen and (max-width: 500px) {
  .content-outer .content-box .title h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.content-outer .content-box p {
  line-height: 23px;
}
@media screen and (max-width: 500px) {
  .content-outer .content-box p {
    font-size: 14px;
  }
}
.content-outer .content-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}
.content-outer .content-box ul li {
  font-size: 14px;
  list-style: disc;
  line-height: 21px;
}
@media screen and (max-width: 500px) {
  .content-outer .content-box ul li {
    font-size: 14px;
  }
}
.content-outer.not-found {
  justify-content: center;
  text-align: center;
  height: calc(100vh - 162px);
}

.highlight {
  background-color: #940047;
  color: #fff;
  border-radius: 2px;
  display: inline-block;
}

footer {
  width: 100%;
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  background: #ededed;
}/*# sourceMappingURL=style.css.map */

/* menu */


.menu__list {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position:sticky;
  width: 100%;
  z-index: 3;
  height: 46px;
  top: 0;
}
@media screen  and (max-width:768px){
  .menu__list {
    height: 100%;
  } 
  .menu__list li a{
    border-right: 0 !important;
  }

}
.menu__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}
.menu__list li:last-child a{
  border-right: 0;
}
.menu__list li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
  color: #000;
}

.menu__list li a:hover,
.menu__list .menu-btn:hover {
  background-color: #f4f4f4;
}

.menu__list .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}



.menu__list .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.menu__list .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.menu__list .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.menu__list .menu-icon .navicon:before,
.menu__list .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.menu__list .menu-icon .navicon:before {
  top: 5px;
}

.menu__list .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.menu__list .menu-btn {
  display: none;
}

.menu__list .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.menu__list .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.menu__list .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu__list .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu__list .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu__list .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .menu__list li {
    float: left;
  }
  .menu__list li a {
    padding: 15px 30px;
  }
  .menu__list .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .menu__list .menu-icon {
    display: none;
  }
}

.menu li{
  border-bottom: 2px solid white;
}
.menu .current-menu-item{
  background: #ffeef6;
  border-bottom: 2px solid #940047 !important;
}

.menu .current-menu-item a:hover{
  background: #ffeef6;
  
}

.menu__list li a:hover {
  background-color: #ffffff;
  color: #940047;
  border-bottom: 2px solid #940047 !important;
}


@media screen  and (max-width:768px){
  .menu .current-menu-item{
    border-bottom:none !important;
  }
  

  
  .menu__list li a:hover {
    border-bottom:none !important;
  }
  
}



/* .wp-block-table {
  font-size: 14px !important;
  line-height: 18px  !important;
} */