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

@font-face {
    font-style: normal;
    font-weight: normal;
    font-family: "Material Icons";
    font-display: swap;
    src: url("https://femaleloophole.org/resource/MaterialIcons.woff2") format("woff2");
}

/* START main styles */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
ul{
  list-style:disc inside;
}
ol {
    list-style:  decimal inside;
}
body {
	background: #fff;
	font-family: 'Roboto', Arial, sans-serif;
	color: #030303;
	font-size: 16px;
	line-height: 24px;
}
.section-title.h3{
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
}
.center {
	max-width: 1010px;
	margin: 0 auto;
	padding: 0 25px;
}
/* END main styles */

/* START variables */
:root {
	--primary: #29508E;
	--primary-hover: #4778c5;
}
/* END variables */

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 10px;
  font-size: 13px;
  line-height: 1;
  border-radius: 50px;
  border: none;
  color: #fff;
  text-decoration: none;
  background-color: var(--primary);
  transition: background-color .2s linear;
      box-shadow: 0 0 40px rgba(66,103,162,.6);
}
.btn:hover {
  background-color: var(--primary-hover);
}

/* START hddr section */
.frop-hddr-section {
	position: relative;
	background: var(--primary) no-repeat center top;
	background-size: cover;
}
.hddr-image-block {
	position: relative;
}
.hddr-image {
	width: auto;
	display: block;
	position: absolute;
}
.hddr-logo-block {
	margin-bottom: 30px;
}
.logo,
.hddr-menu-logo {
	display: block;
    width: 100%;
    margin: 0 auto;
	max-width: 125px;
	height: auto;
}
.hddr-title {
	margin-bottom: 15px;
	color: #ffffff;
	font-size: 40px;
	font-weight: 700;
	line-height: 45px;
  text-transform: uppercase;
}
.hddr-text {
	margin-bottom: 15px;
	color: #ffffff;
}
.breadcrumbs-block .breadcrumbs-item {
    display: inline-block;
    margin: 5px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
    text-decoration: none;
}
.breadcrumbs-block .breadcrumbs-item a {
    display: inline-flex;
    color: #fff;
	align-items: center;
	text-decoration: none;
}
.breadcrumbs-block .breadcrumbs-item a:hover {
	text-decoration: underline;
}
.breadcrumbs-item a:after {
    content: "";
    display: inline-block;
    margin: 0 7px 1px 7px;
    padding: 3px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    vertical-align: top;
    transform: rotate(-45deg);
}
.breadcrumbs-item:last-child a:after {
	display: none;
}
/* hddr menu block */
.hddr-menu-block.is-visible {
	min-height: 100%;
	background: url("https://femaleloophole.org/resource/header-bg-mob.jpg") no-repeat center -32vw;
	background-size: cover;
}
.hddr-menu-btn {
	display: none;
}
.hddr-menu-btn span {
	display: block;
	position: relative;
	height: 2px;
	background-color: #fff;
	border-radius: 1px;
}
.hddr-menu-block.is-visible .hddr-menu-btn span {
	background-color: transparent;
}
.hddr-menu-btn span:nth-child(2)::before,
.hddr-menu-btn span:nth-child(2)::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 1px;
	transform: rotate(0deg);
	transition: .2s linear;
}
.hddr-menu-block.is-visible .hddr-menu-btn span:nth-child(2)::before,
.hddr-menu-block.is-visible .hddr-menu-btn span:nth-child(2)::after {
	background-color: #fff;
}
.hddr-menu-block.is-visible .hddr-menu-btn span:nth-child(2)::before {
	transform: rotate(-45deg);
}
.hddr-menu-block.is-visible .hddr-menu-btn span:nth-child(2)::after {
	transform: rotate(45deg);
}
.hddr-menu-logo-block {
	display: none;
	margin-bottom: 60px;
}
.hddr-menu-block.is-visible .hddr-menu-logo-block {
	display: block;
}
.hddr-menu-list {
	justify-content: flex-start;
}
.hddr-menu-block.is-visible .hddr-menu-list {
	display: flex;
}
.hddr-menu-item {
	position: relative;
	text-align: center;
}
.hddr-menu-link {
	position: relative;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	line-height: 36px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	z-index: 1;
}
.hddr-menu-link:hover {
	text-decoration: underline;
}
.hddr-menu-item.is-visible {
	z-index: 10;
}
.hddr-menu-item.hddr-menu-item-list {
	padding: 0 1px;
}
.hddr-menu-item.hddr-menu-item-list:before {
	content: "";
	display: block;
	position: absolute;
	height: 0;
	width: 0;
	top: 16px;
	right: -10px;
	margin: auto 0;
	border: 4px solid transparent;
	border-top-color: #fff;
}
.hddr-menu-inner-list {
	display: none;
}
.hddr-menu-inner-link {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
	text-decoration: none;
}
.hddr-menu-inner-link:hover {
	text-decoration: underline;
}
/* END hddr section */

/* START content section */
.frop-content-section {
	padding: 50px 0;
	background-image: url("https://femaleloophole.org/resource/bcg.svg");
	background-repeat: no-repeat;
	background-position: center 0;
}
.section-row {
	margin-bottom: 50px;
}
.frop-main-block .section-row:last-child {
	margin-bottom: 0;
}
.section-main-title {
	margin-bottom: 15px;
	color: #080808;
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
	text-align: center;
}
.section-title {
	margin-bottom: 15px;
	color: #000000;
	font-size: 26px;
	font-weight: 500;
	line-height: 36px;
	text-align: center;
}
.section-sub-title {
	margin-bottom: 15px;
	color: #000000;
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
	text-align: center;
}


.costs-block {
	padding: 14px 10px 12px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 40px rgba(66, 103, 162, 0.6);
}
.costs-block table {
	width: 100%;
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}
.costs-block thead tr {
	border-bottom: 1px solid var(--primary);
}
.costs-block th,
.costs-block td {
	text-align: left;
}
.costs-block th:nth-child(2),
.costs-block td:nth-child(2) {
	text-align: center;
}
.costs-block th:last-child,
.costs-block td:last-child {
	text-align: right;
}
.costs-block td:last-child {
	text-align: right;
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
}
.costs-block th {
	padding: 0 10px 5px;
	color: var(--primary);
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
}
.costs-block td {
  width: 33%;
	padding: 15px 10px;
	color: #080808;
}
.costs-block td span {
	color: #858585;
}
.frop-aside-block .visit-btn-block {
  margin-bottom: 40px;
}
.frop-aside-block .visit-btn-block .btn {
  font-size: 24px;
  height: 80px;
  border: 2px solid #fff;
}
.aside-menu-block {
	margin-bottom: 50px;
	padding: 40px 30px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 40px rgba(66, 103, 162, 0.6);
}
.aside-menu-block a {
	text-decoration: none;
}
.aside-menu-title {
	padding: 5px;
	background-color: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
	border-radius: 5px;
	margin-bottom: 0;
	font-size: 26px;
	font-weight: 500;
	line-height: 36px;
	text-align: center;
	cursor: pointer;
}
.aside-menu-block.is-visible .aside-menu-title {
    margin-bottom: 30px;
    color: #080808;
    background-color: transparent;
    border-color: transparent;
}
.aside-menu-list {
	display: none;
}
.aside-menu-block.is-visible .aside-menu-list {
	display: block;
}
.aside-menu-item {
	position: relative;
	margin-bottom: 15px;
	padding-left: 21px;
}
.aside-menu-item:last-child {
	margin-bottom: 0;
}
.aside-menu-inner-list {
	display: none;
}
.aside-menu-item.is-visible .aside-menu-inner-list {
	display: block;
}
.aside-menu-inner-item {
	position: relative;
	margin-bottom: 4px;
	padding-left: 31px;
}
.aside-menu-inner-item:last-child {
	margin-bottom: 0;
}
.aside-menu-number {
	position: absolute;
	top: 0;
	left: 0;
	color: #080808;
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
}
.aside-menu-inner-item .aside-menu-number {
	color: #858585;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.aside-menu-text {
	color: #080808;
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
	cursor: pointer;
}
.aside-menu-inner-item .aside-menu-text {
	color: #858585;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.artcl-text {
	margin-bottom: 10px;
}
.artcl-text:last-child {
	margin-bottom: 0;
}


.page-review-user-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.page-review-user-block .offer-rat-item:before {
  font-size: 14px;
}
.page-review-title {
	margin-bottom: 50px;
	color: #080808;
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
	text-align: center;
}
.page-review-user-photo-block {
	width: 106px;
	margin-right: 10px;
	border-radius: 10px;
	overflow: hidden;
}
.page-review-user-photo {
	display: block;
	height: auto;
    width: 100%;
}
.page-review-user-title {
	margin-bottom: 4px;
	color: #080808;
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
}
.page-review-rating-block {
	margin: 0 -20px;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	    box-shadow: 0 0 40px rgba(66,103,162,.6);
}
.page-review-user-rating-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}
.page-review-user-rating-item:last-child {
	margin-bottom: 0;
}
.page-review-user-rating-text {
    display: flex;
    flex: 1;
    padding-right: 10px;
    color: #000;
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    word-break: break-all;
}
.page-review-rating-block .offer-rat-item {
    height: 21px;
    width: 20px;
}
.page-review-user-block .page-review-btn {
    flex-wrap: nowrap;
    width: 175px;
    height: 50px;
    margin: 20px auto 0;

}
.page-review-user-block .page-review-btn .btn {
  height: 50px;
}
.exp-item {
	margin-bottom: 30px;
}
.exp-item:last-child {
	margin-bottom: 0;
}
.exp-item:nth-child(even) .exp-image-block:before {
  transform: scale(-1, 1);
}
.exp-title {
	margin-bottom: 10px;
	color: #000000;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	text-align: center;
}
.exp-image-block {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 317px;
	margin-bottom: 30px;
}
.exp-image-block:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url("https://femaleloophole.org/resource/exp-image-1.svg") no-repeat center center;
	background-size: contain;
}
.exp-image {
	display: block;
	position: relative;
	height: auto;
	width: auto;
	max-height: 100%;
	max-width: 100%;
}

.prgrph-block {
	padding: 25px;
	background-color: var(--primary);
	color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 40px rgba(66,103,162,.6);
}
.prgrph-block .section-title {
	color: #ffffff;
}

.faq-item {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  word-break: break-word;
  cursor: pointer;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-title {
  position: relative;
  padding: 0 30px 5px 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #080808;
}

.faq-title:before {
  display: block;
  position: absolute;
  top: 1px;
  right: 10px;
  font-size: 19px;
  font-weight: normal;
  line-height: 1;
  font-family: "Material Icons";
  vertical-align: top;
  content: "\e993";
  color: #080808;
}

.faq-content {
  display: none;
  margin-top: 10px;
  font-size: 14px;
}

.faq-content p {
  margin-bottom: 10px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-item.is-visible .faq-content {
  display: block;
  animation: fadeIn 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

.faq-item.is-visible .faq-title:before {
    content: "";
    width: 16px;
    top: 8px;
    height: 2px;
    font-size: 0;
    background: #080808;
}
.comparison-block {
	width: 100%;
}
.comparison-list {
	margin-bottom: 15px;
}
.comparison-list:last-child {
	margin-bottom: 0;
}
.comparison-item {
	position: relative;
	margin-bottom: 15px;
	padding: 0 10px 0 24px;
	color: #030303;
}
.comparison-item:last-child {
	margin-bottom: 0;
}
.comparison-item.item-success:before,
.comparison-item.item-failure:before {
  position: absolute;
  font-size: 15px;
  font-family: "Material Icons";
  vertical-align: top;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  left: 0;
}
.comparison-item.item-success:before {
  content: "\e925";
	background-color: #3AC074;
}
.comparison-item.item-failure:before {
  content: "\e933";
	background-color: #E85D76;
}


.rat-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	position: relative;
	margin-bottom: 15px;
	padding: 10px 8px 8px;
	background-color: #fff;
	box-shadow: 0px 0px 40px rgba(66, 103, 162, 0.6);
	border-radius: 10px;
	overflow: hidden;
}
.rat-item:last-child {
	margin-bottom: 0;
}
.rat-item .offer-rat-item:before {
  font-size: 12px;
}
.rat-badge {
  position: absolute;
  top: 0;
  left: 0;
      padding: 4px 20px 10px 8px;
  background-size: contain;
  color: var(--primary);
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
  background: url(https://femaleloophole.org/resource/badge.svg) left top no-repeat;
  background-size: contain;
  
}
.rat-badge.is-active {
  color: #fff;
  background: url(https://femaleloophole.org/resource/badge-1.svg) left top no-repeat;
  background-size: contain;
}
.rat-badge span {
	position: relative;
}
.rat-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
	z-index: 1;
}
.rat-logo-block {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	margin-top: -10px;
}
.rat-logo {
	display: block;
	height: 35px;
    width: auto;
	max-width: 100%;
}
.rat-text {
	margin-bottom: 4px;
	color: #080808;
	font-size: 12px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
}
.rat-btns {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	width: 100px;
	z-index: 1;
}
.rat-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 10px;
	font-size: 13px;
	line-height: 24px;
	transition: background-color .2s linear;
}
.rat-btn.btn-yes {
	height: 30px;
	margin-bottom: 4px;
	background-color: #fff;
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 15px;
	text-decoration: none;
}
.rat-btn.btn-yes:hover {
	background-color: #c0f4ff;
}
.rat-btn.btn-yes.is-active {
	background-color: var(--primary);
	color: #fff;
}
.rat-btn.btn-yes.is-active:hover {
	background-color: var(--primary-hover);
}
.rat-btn.btn-no {
	height: 24px;
	color: var(--primary);
	text-decoration: underline;
}
.rat-btn.btn-no:hover {
	text-decoration: none;
}

.offer-rat-block {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}
.offer-rat-item {
  margin-right: 8px;
}
.offer-rat-item:before {
  display: block;
  font-size: 21px;
  line-height: 1;
  font-family: "Material Icons";
  vertical-align: top;
  content: "\e94b";
  color: var(--primary);
}
.offer-rat-item:last-child {
	margin-right: 0;
}
.offer-rat-item.offer-rat-item-active:before {
  content: "\e94a";
}
/* END content section */

/* START frop section */
.frop-frop-section {
	padding: 70px 0;
	background: no-repeat center top;
	background-size: cover;
}
.frop-logo-block {
	margin-bottom: 50px;
}
.frop-links-list {
	margin-bottom: 58px;
}
.frop-links-list:last-child {
	margin-bottom: 0;
}
.frop-links-item {
	margin-bottom: 15px;
	text-align: center;
}
.frop-links-item:last-child {
	margin-bottom: 0;
}
.frop-links-link {
	color: #ffffff;
	font-size: 18px;
	line-height: 120%;
	text-decoration: none;
}
.frop-links-link:hover {
	text-decoration: underline;
}
.copyright-block {
	margin-top: 30px;
	color: #ffffff;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
}
.copyright-block a {
	color: #ffffff;
}
/* END frop section */

/*new style for review 
*/

.ofrs-item {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 40px rgb(154 237 255 / 60%);
    border-radius: 10px;
    overflow: hidden;
}
.ofrs-number {
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px 12px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
}
.ofrs-photo-block {
    position: relative;
    flex-shrink: 0;
    margin-bottom: 15px;
}
.ofrs-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
}
.ofrs-btns-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}
.ofrs-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 175px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 25px;
    transition: background-color .2s linear;
    cursor: pointer;
}
.ofrs-photo-block:before {
    content: "";
    position: absolute;
    height: 134%;
    width: 100%;
    bottom: -6px;
    left: 0;
    background: url(https://femaleloophole.org/resource/ofrs-photo-cover.svg) no-repeat right center;
    background-size: auto 100%;
    transform: rotate(
90deg);
}
@media screen and (max-width: 860px) {
	.frop-hddr-section {
		min-height: 100vh;
		padding: 40px 0 8px;
		background-image: url("https://femaleloophole.org/resource/header-bg-mob.jpg");
		overflow: hidden;
    }
	.hddr-menu-item.hddr-menu-item-list:before {
		right: 10px;
	}
	.hddr-menu-item.is-visible .hddr-menu-inner-list {
		display: block;
	}
	.hddr-image-block {
		margin: -32vw -42px 35px;
		height: 78vw;
		left: 0!important;
		width: auto!important;
	}
	.hddr-image {
		width: 108%;
		left: -5%;
		top: 0;
	}
	.hddr-menu-block {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		padding: 55px 30px 10px;
		z-index: 1;
	}
	.hddr-menu-btn {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
		position: absolute;
		height: 12px;
		width: 18px;
		top: 16px;
		right: 11px;
		z-index: 1;
	}
	.hddr-menu-list {
		display: none;
		flex-direction: column;
		align-items: stretch;
	}
	.hddr-menu-item {
		margin-bottom: 40px;
	}
	.hddr-menu-inner-link {
		text-align: center;
	}

	.frop-content-section {
		    background-size: 230% auto;
    background-repeat: repeat-y;
	}
	.frop-content-section .center {
		display: grid;
		grid-gap: 50px;
	}
	.section-column {
		margin-bottom: 50px;
	}
	.section-column:last-child {
		margin-bottom: 0;
	}

	.frop-frop-section {
		background-image: url("https://femaleloophole.org/resource/footer-bg-mob.jpg");
	}
}

@media screen and (min-width: 861px) {
    	.logo,
  .hddr-menu-logo {
  	display: block;
      width: 100%;
      margin: 0 auto;
  	max-width: 160px;
  }
	.frop-aside-block[data-side="top"] {
		width: 280px;
		grid-area: side-top;
		position: sticky;
		top: 0;
	}
	.frop-main-block {
		grid-area: main;
	}
	.frop-hddr-section {
		padding: 40px 0;
		background-image: url("https://femaleloophole.org/resource/header-bg-web.webp");
	}
	.frop-hddr-section .logo {
		margin: 0;
	}
	.hddr-image-block {
		position: absolute;
		height: 480px;
		width: 50%;
		top: 0;
		left: 50%;
		overflow: hidden;
	}
	.hddr-title {
		margin-bottom: 40px;
	}
	.hddr-text {
		min-height: 146px;
	}
	.hddr-menu-list {
		display: flex;
		flex-direction: row;
		flex-direction: row;
		align-items: flex-start;
		margin-bottom: 30px;
	}
	.hddr-menu-item {
		margin-left: 40px;
	}
	.hddr-menu-item:hover {
		z-index: 10;
	}
	.hddr-menu-inner-list {
		position: absolute;
		width: 190px;
		top: 0;
		left: -20px;
		padding: 40px 17px 16px;
		background-color: var(--primary);
		border-radius: 10px;
		box-shadow: 0 0 40px rgba(66,103,162,.6);
	}
	.hddr-menu-item:hover .hddr-menu-inner-list {
		display: block;
	}
	.hddr-menu-inner-item {
		margin-bottom: 9px;
		text-align: left;
	}
	.hddr-menu-inner-item:last-child {
		margin-bottom: 0;
	}
	.hddr-menu-item:first-child {
		margin-left: 0;
	}
	.hddr-info {
		max-width: 470px;
	}
	.section-row.flex-row {
		display: flex;
		flex-direction: row;
		justify-content: stretch;
		align-items: flex-start;
	}
	.section-column {
		width: 50%;
	}
	.section-column:first-child {
		margin-right: 40px;
	}
	.frop-hddr-section .section-column:first-child {
		display: flex;
		flex: 1;
		margin: 0 0 0 20px;
	}
	.frop-hddr-section .section-column:last-child {
		width: 575px;
	}
	.frop-frop-section {
		background-image: url("https://femaleloophole.org/resource/header-bg-web.webp");
	}
	.frop-content-section .center {
		display: grid;
		grid-gap: 40px;
		grid-template-areas: 'main main side-top''main main .';
	}
	.comparison-list-wrapper {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.comparison-list {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		flex: 1;
		margin: 0 20px 0 0;
	}
	.comparison-list:last-child {
		margin-right: 0;
	}

	.page-review-user-block {
		flex: 1;
		margin: 20px 10px 0 0;
	}
	.page-review-inner {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.page-review-rating-block {
		display: flex;
		margin: 0;
	}

	.exp-item {
		margin-bottom: 70px;
	}
	.exp-title {
		font-size: 18px;
		line-height: 27px;
	}

	.prgrph-block {
		padding: 50px 65px;
	}

	.costs-block {
		padding: 30px 40px 20px;
	}
	.costs-block th {
		padding-bottom: 25px;
	}
	.costs-block tbody tr:first-child td {
		padding-top: 25px;
	}
	.frop-links-block {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.frop-links-list {
		margin: 0 20px 0 0;
	}
	.frop-links-list:last-child {
		margin-right: 0;
	}
	.frop-links-item {
		text-align: left;
	}
	.frop-logo-block {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	.frop-content-section {
		background-size: auto;
	}
}
@media screen and (max-width: 1040px) {
	.hddr-image-block {
		left: 440px;
		width: calc(100% - 440px);
	}
}
.list-category {
    display: inline-flex;
    padding: 5px 10px;
    background: rgba(0,0,0,.05);
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--body-color);
    margin-top: 23px;
    margin-right:10px;
    margin-left:10px;
}
.list-category:hover {
  background: var(--primary);
  color: #fff;
}
.arrow-down {
    margin: 30px;
     padding-left: 85px;
}
.arrow-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid #337AB7;
    border-right: 5px solid #337AB7;
    transform: rotate(45deg);
    margin: -16px;
    animation: arrow-down 2s infinite;
   
}
.arrow-down span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow-down span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes arrow-down {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}
.is-visible .arrow-down{
  display:none;
}
	.category .hddr-menu-inner-list{
	  width: 500px;
	  	column-count:2;
	}
/*
     FILE ARCHIVED ON 14:43:49 Feb 15, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 18:36:23 Mar 08, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.532
  exclusion.robots: 0.043
  exclusion.robots.policy: 0.033
  esindex: 0.01
  cdx.remote: 42.793
  LoadShardBlock: 49.708 (3)
  PetaboxLoader3.datanode: 51.976 (4)
  load_resource: 69.286
  PetaboxLoader3.resolve: 60.816
*/