/* ------------------------ *
- Page: Index.html
--------------------------- */

/* Header */
.main-header {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	background-image: url(https://cdn.zedhosting.gg/assets/img/pages/index/bg-d.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
  }
  .light-theme .main-header {
	background-color: #e6f4f8;
	background-image: url(https://cdn.zedhosting.gg/assets/img/pages/index/bg.png);
  }
  
  /* title-1 & para-1 */
  .main-header .title-1 {
	font-size: 62px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.2;
	max-width: 600px;
  }
  .light-theme .main-header .title-1 {
	color: #fff;
  }
  .main-header .para-1 {
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	max-width: 600px;
  }
  @media only screen and (max-width: 991.98px) {
	.main-header .title-1 {
	  font-size: 54px;
	}
  }
  @media only screen and (max-width: 767px) {
	.main-header {
	  padding: 100px 0 60px;
	}
	.main-header .title-1 {
	  font-size: 44px;
	}
	.main-header .para-1 {
	  font-size: 14px;
	}
  }
  
  /* notify */
  .main-header .notify {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	border: 1px solid #0B0C1B;
	background-color: #0B0C1B;
	border-radius: 50px;
	cursor: default;
  }
  .light-theme .main-header .notify {
	border: 1px solid var(--border);
	background-color: #FFFFFF;
  }
  .main-header .notify .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 50px;
	width: 54px;
	min-width: 54px;
	height: 54px;
  }
  .main-header .notify .icon img {
	width: 20px;
	transform: rotate(45deg);
  }
  .light-theme .main-header .notify .icon {
	background-color: var(--light);
  }
  .main-header .notify .text {
	padding: 0 25px 0 20px;
	font-size: 14px;
	color: #ffffff;
	font-weight: 500;
  }
  .light-theme .main-header .notify .text {
	color: var(--darkGray);
  }
  @media only screen and (max-width: 767px) {
	.main-header .notify .icon {
	  display: none;
	}
	.main-header .notify .text {
	  padding: 15px 30px;
	  font-size: 14px;
	}
  }
  
  /* header-form */
  .main-header .header-form {
	position: relative;
	background-color: #0B0C1B;
	border: 1px solid #0B0C1B;
	padding: 60px 40px 40px;
	text-align: center;
	border-radius: 8px;
	max-width: 440px;
  }
  .light-theme .main-header .header-form {
	background-color: #fff;
	border: 1px solid var(--border);
  }
  
  /* form-title */
  .main-header .form-title {
	font-size: 22px;
	line-height: 1.4;
	color: #ffffff;
	font-weight: 700;
	font-family: var(--secondary-font);
  }
  .light-theme .main-header .form-title {
	color: var(--dark);
  }
  
  /* form-label */
  .main-header .form-label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
  }
  .main-header .form-label:not(:last-child) {
	margin-bottom: 15px;
  }
  .main-header .form-label input {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 52px;
	padding: 0 20px;
	background-color: #282a3f;
	border: 1px solid rgba(255,255,255,.1);
	overflow: hidden;
	width: 100%;
	border-radius: 8px;
	font-size: 14px;
	color: #ffffff;
	font-family: var(--primary-font);
	font-weight: 500;
	outline: none;
	transition: background-color .2s ease;
  }
  .light-theme .main-header .form-label input {
	color: var(--darkBlue);
	background-color: var(--light);
	border-color: var(--border);
  }
  .main-header .form-label input:hover {
	background-color: #2f3146;
  }
  .light-theme .main-header .form-label input:hover {
	background-color: #eaedef;
	border-color: var(--border);
  }
  .main-header .form-label input::placeholder {
	color: rgba(255, 255, 255, 0.3);
	font-weight: 400;
  }
  .light-theme .main-header .form-label input::placeholder {
	color: rgba(0, 0, 0, 0.3);
  }
  
  /* hr */
  .main-header .hr {
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .main-header .hr::before,
  .main-header .hr::after {
	position: absolute;
	content: '';
	left: 0;
	height: 1px;
	width: 100px;
	background-color: rgba(255, 255, 255, 0.2);
	z-index: 1;
	margin-top: 1px;
  }
  .light-theme .main-header .hr::before,
  .light-theme .main-header .hr::after {
	background-color: rgba(0, 0, 0, 0.2);
  }
  .main-header .hr::after {
	left: unset;
	right: 0;
  }
  .main-header .hr span {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
	z-index: 2;
  }
  
  /* form-comment */
  .main-header .form-comment {
	font-size: 12px;
	font-weight: 500;
	color: var(--darkGray);
  }
  .main-header .form-comment a {
	color: var(--primary);
  }
  .main-header .form-comment a:hover {
	text-decoration: underline;
  }
  @media only screen and (max-width: 767px) {
	.main-header .form-title {
	  font-size: 17px;
	}
  }
  /*-------------------------------------*/
  
  /* Section I */
  .se-i {
	  padding-top: 80px;
	padding-bottom: 80px;
	background-color: #0e0f1f;
  }
  .light-theme .se-i {
	background-color: #cbe2ec;
  }
  
  /* box */
  .se-i .box {
	padding: 35px 30px;
	background-color: var(--semi-dark);
	border-radius: 8px;
  }
  .light-theme .se-i .box {
	background-color: #fff;
  }
  .se-i .box-icon {
	width: 48px;
	margin-bottom: 20px;
  }
  .light-theme .se-i .box-icon {
	filter: invert(1);
  }
  .se-i .box-title {
	font-size: 20px;
	font-family: var(--third-font);
	font-weight: 600;
	color: #ffffff;
  }
  .light-theme .se-i .box-title {
	color: var(--darkBlue);
  }
  @media only screen and (max-width: 767px) {
	.se-i .box-icon {
	  width: 38px;
	}
	.se-i .box-title {
	  font-size: 14px;
	}
  }
  /*-------------------------------------*/
  
  /* Section II */
  .se-ii {
	padding: 60px 0;
  }
  
  /* title-1 */
  .se-ii .title-1 {
	font-size: 46px;
	font-family: var(--third-font);
	font-weight: 700;
	color: #FFF;
	line-height: 1;
  }
  .light-theme .se-ii .title-1 {
	color: var(--dark);
  }
  .se-ii .title-1 span {
	line-height: 1;
	display: inline-block;
	font-family: var(--third-font);
  }
  
  /* para-1 */
  .se-ii .para-1 {
	font-size: 14px;
	font-weight: 600;
	color: var(--darkGray);
  }
  
  /* item */
  .se-ii .item {
	background-color: var(--semi-dark-2);
	padding: 20px 15px 20px 15px;
	border-radius: 8px;
	transition: background-color .25s ease;
  }
  .light-theme .se-ii .item {
	background-color: var(--light);
	border: 1px solid var(--border);
  }
  .se-ii .item img {
	width: 50px;
	margin-bottom: 20px;
  }
  .se-ii .item .text {
	font-size: 14px;
	font-weight: 600;
	font-family: var(--secondary-font);
	color: #9193a8;
  }
  .light-theme .se-ii .item .text {
	font-weight: 500;
	color: var(--darkGray);
  }
  @media only screen and (max-width: 1199.98px) {
	.se-ii {
	  padding: 60px 0 30px;
	}
	.se-ii .title-1,
	.se-ii .title-1 span,
	.se-ii .title-1 span.primary-color {
	  font-size: 36px;
	  line-height: 1.4;
	}
	.se-ii .item {
	  margin-bottom: 30px;
	}
  }
  @media only screen and (max-width: 767px) {
	.se-ii .title-1,
	.se-ii .title-1 span,
	.se-ii .title-1 span.primary-color {
	  font-size: 26px;
	  line-height: 1.2;
	}
  }
  /*-------------------------------------*/
  
  /* Section III */
  
  /* plans */
  .se-iii .plans {
	border-radius: 8px;
  }
  .light-theme .se-iii .plans {
	background-color: #fff;
  }
  @media only screen and (max-width: 1199.98px) {
	.se-iii .plans {
	  border-radius: unset;
	  border: unset;
	  background-color: unset !important;
	}
  }
  
  /* plan */
  .se-iii .plans .plan {
	position: relative;
	padding: 50px 40px 40px;
	background-color: var(--semi-dark-3);
	height: 100%;
	z-index: 2
  }
  .light-theme .se-iii .plans .plan {
	background-color: #fff;
  }
  .se-iii .plans .row > div:nth-child(1) .plan {
	border-radius: 8px;
  }
  .se-iii .plans .row > div:nth-child(4) .plan {
	border-radius: 8px;
  }
  .se-iii .plans .row > div:not(:last-of-type) .plan {
	border-right: 1px solid var(--border);
  }
  @media only screen and (max-width: 1199.98px) {
	.se-iii .plans {
	  background-color: unset;
	}
	.se-iii .plans .row > div .plan {
	  border-radius: 8px !important;
	  border-right: unset !important
	}
  }
  
  /* plan-head */
  .se-iii .plans .plan-head {
	padding-bottom: 20px;
  }
  .se-iii .plans .plan-name {
	font-size: 20px;
	font-family: var(--primary-font);
	font-weight: 600;
	color: #fff;
	margin-bottom: 6px;
  }
  .light-theme .se-iii .plans .plan-name {
	color: var(--darkBlue);
  }
  .se-iii .plans .plan-para {
	font-size: 14px;
	color: var(--darkGray);
	min-height: 50px
  }
  
  /* plan-price */
  .se-iii .plans .plan-price {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 20px
  }
  .se-iii .plans .plan-price .price {
	font-size: 30px;
	font-family: var(--secondary-font);
	font-weight: 900;
	color: #fff;
  }
  .light-theme .se-iii .plans .plan-price .price {
	color: var(--darkBlue);
  }
  .se-iii .plans .plan-price .price-comment {
	font-size: 14px;
	color: var(--darkGray);
  }
  
  /* actions */
  .se-iii .plans .actions {
	padding-bottom: 10px
  }
  
  /* group */
  .se-iii .plans .group {
	margin-top: 45px;
  }
  .se-iii .plans .group .title-4 {
	font-size: 16px;
	font-family: var(--secondary-font);
	color: #fff;
	margin-bottom: 20px
  }
  .light-theme .se-iii .plans .group .title-4 {
	color: var(--darkBlue);
  }
  .se-iii .plans .group .list li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 14px;
	color: var(--darkGray);
	padding-right: 26px;
  }
  .se-iii .plans .group .list li:not(last-of-type) {
	margin-bottom: 10px
  }
  .se-iii .plans .group .list li img {
	margin-right: 10px;
	width: 16px
  }
  
  /* float-box */
  .se-iii .plans .group .list li .float-box {
	position: absolute;
	top: 2px;
	right: 0;
	width: 18px;
	height: 18px;
  }
  .se-iii .plans .group .list li .float-box::before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	content: '?';
	right: 0;
	top: 0;
	width: 18px;
	height: 18px;
	background-color: var(--semi-dark-2);
	border-radius: 50%;
	font-size: 12px;
	font-family: var(--secondary-font);
	font-weight: 600;
	line-height: 1;
	transition: all .15s ease-in-out;
  }
  .light-theme .se-iii .plans .group .list li .float-box::before {
	background-color: var(--light);
  }
  .se-iii .plans .group .list li .float-box:hover::before {
	background-color: rgba(0, 0, 0, .2);
  }
  .se-iii .plans .group .list li .float-box::after {
	position: absolute;
	content: attr(data-text);
	top: 50%;
	right: 26px;
	transform: translateY(-50%);
	width: 280px;
	background-color: var(--semi-dark);
	box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
	white-space: normal;
	padding: 10px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--darkGray);
	border: 1px solid var(--border);
	border-radius: 8px;
	z-index: 3;
	visibility: hidden;
	opacity: 0;
	transition: all .15s ease-in-out;
  }
  .light-theme .se-iii .plans .group .list li .float-box::after {
	background-color: #fff;
	box-shadow: 0 2px 15px #dde5eb;
  }
  .se-iii .plans .group .list li .float-box:hover::after {
	visibility: visible;
	opacity: 1;
  }
  
  /* se-footer */
  .se-iii .se-footer .line {
	margin: 6px 12px;
  }
  .se-iii .se-footer .line .icon {
	min-width: 16px;
	width: 16px;
	margin-right: 10px;
  }
  .se-iii .se-footer .line .text {
	font-size: 14px;
	color: var(--darkGray);
  }
  /*-------------------------------------*/
  
  /* Section IV */
  
  /* box */
  .se-iv .box {
	background-color: var(--semi-dark);
	border-radius: 8px;
	padding: 35px 30px 10px;
	border: 1px solid var(--semi-dark);
	transition: all .20s ease;
  }
  .light-theme .se-iv .box {
	background-color: #fff;
  }
  .se-iv .box:hover {
	background-color: var(--semi-dark);
  }
  .light-theme .se-iv .box:hover {
	background-color: var(--semi-dark);
  }
  
  /* box-link */
  .se-iv .box-link {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
  }
  
  /* icon */
  .se-iv .box .icon {
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
  }
  .se-iv .box .icon::before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--primary);
	opacity: .1;
  }
  .se-iv .box.color-1 .icon::before {
	background-color: #26C6DA;
  }
  .se-iv .box.color-2 .icon::before {
	background-color: #FC573B;
  }
  .se-iv .box.color-3 .icon::before {
	background-color: #FFD200;
  }
  .se-iv .box.color-4 .icon::before {
	background-color: #BD63F9;
  }
  .se-iv .box.color-5 .icon::before {
	background-color: #00FFB7;
  }
  .se-iv .box.color-6 .icon::before {
	background-color: #FE9801;
  }
  .se-iv .box .icon img {
	width: 34px;
  }
  
  /* box-title */
  .se-iv .box-title {
	color: #FFFFFF;
	font-size: 20px;
	font-family: var(--secondary-font);
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.2;
  }
  .light-theme .se-iv .box-title {
	color: var(--darkBlue);
  }
  
  /* box-para */
  .se-iv .box-para {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
	line-height: 1.7;
	max-height: 70px;
	height: 70px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 25px;
  }
  
  /* arrow */
  .se-iv .arrow {
	margin-top: 20px;
  }
  .se-iv .arrow img {
	width: 24px;
	filter: contrast(0);
	transition: all .15s ease;
  }

  /*-------------------------------------*/
  
  /* Section V */
  
  /* filter-nav */
  .se-v .filter-nav {
	margin-bottom: 30px;
  }
  @media only screen and (max-width: 1199.98px) {
	.se-v .filter-nav {
	  display: none;
	}
  }
  
  /* tab */
  .se-v .filter-nav .tab {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--darkGray);
	font-size: 14px;
	border: 1px solid var(--border);
	padding: 14px 28px;
	border-radius: 8px;
	cursor: pointer;
	transition: all .2s ease;
  }
  .light-theme .se-v .filter-nav .tab {
	background-color: #fff;
  }
  .dark-theme .se-v .filter-nav .tab:not(.active):hover {
	background-color: var(--semi-dark);
  }
  .light-theme .se-v .filter-nav .tab:not(.active):hover {
	border-color: var(--primary);
  }
  .se-v .filter-nav .tab.active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #FFFFFF;
  }
  
  /* compare-table */
  .se-v .compare-table {
	position: relative;
	width: 100%;
	border-collapse: collapse;
  }
  .se-v .compare-table::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 1px solid var(--border);
	border-radius: 8px;
	z-index: -1;
  }
  .light-theme .se-v .compare-table::before {
	background-color: #fff;
  }
  
  /* custom-thead */
  .se-v .custom-thead {
	background-color: var(--darkBlue);
	position: sticky;
	top: 0;
	border: 1px solid var(--border);
	margin-bottom: 30px;
	z-index: 3;
  }
  .light-theme .se-v .custom-thead {
	background-color: #fff;
  }
  
  /* tabs */
  .se-v .custom-thead .tabs {
	border-bottom: 1px solid var(--border);
  }
  .se-v .custom-thead .tabs .tab {
	padding: 15px 30px;
	color: var(--darkGray);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all .2s ease;
  }
  .se-v .custom-thead .tabs .tab:nth-child(1) {
	border-right: 1px solid var(--border);
  }
  .se-v .custom-thead .tabs .tab.active {
	background-color: var(--semi-dark);
	color: #FFFFFF;
  }
  .light-theme .se-v .custom-thead .tabs .tab.active {
	background-color: var(--primary);
  }
  @media only screen and (min-width: 1200px) {
	.se-v .custom-thead {
	  display: none;
	}
  }
  
  /* tab-content */
  .se-v .custom-thead .tab-content {
	padding: 30px;
  }
  .se-v .custom-thead .tab-content.content-hide {
	display: none;
  }
  
  /* table-title-4 */
  .se-v .custom-thead .tab-content .table-title-4 {
	font-size: 14px;
	color: var(--darkGray);
  }
  
  /* table-title-1 */
  .se-v .custom-thead .tab-content .table-title-1 {
	display: block;
	font-size: 32px;
	color: #FFFFFF;
	font-weight: bold;
	font-family: var(--third-font);
  }
  .light-theme .se-v .custom-thead .tab-content .table-title-1 {
	color: var(--darkBlue);
  }
  .se-v .custom-thead .tab-content .table-title-1 .coin {
	position: relative;
	font-size: 24px;
	font-family: var(--third-font);
	vertical-align: top;
	margin-right: 5px;
  }
  .se-v .custom-thead .tab-content .table-title-1 .sm-text {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	margin-left: 5px;
	font-family: var(--third-font);
	color: var(--darkGray);
  }
  
  /* thead */
  .se-v .compare-table thead th {
	padding: 30px 30px 40px;
  }
  .se-v .compare-table thead tr:first-child th:first-child {
	border-top-left-radius: 12px;
  }
  .se-v .compare-table thead th:not(:last-child) {
	border-right: 1px solid var(--border);
  }
  @media only screen and (max-width: 1199.98px) {
	.se-v .compare-table thead {
	  display: none;
	}
  }
  
  /* top-left-corner */
  .se-v .compare-table thead th.top-left-corner {
	min-width: 470px;
	width: 470px;
	text-align: left;
	vertical-align: top;
  }
  .se-v .compare-table thead th.top-left-corner .table-title-head {
	display: block;
	font-size: 32px;
	color: #FFFFFF;
	opacity: .2;
	line-height: 1.2;
  }
  .light-theme .se-v .compare-table thead th.top-left-corner .table-title-head {
	color: var(--darkBlue);
  }
  .se-v .compare-table thead th.top-left-corner .table-title-head span {
	letter-spacing: -9px;
  }
  
  /* top-right-corner */
  .se-v .compare-table thead th.top-right-corner {
	min-width: 380px;
	width: 380px;
  }
  
  /* table-title-3 */
  .se-v .compare-table thead th.top-right-corner .table-title-3 {
	display: block;
	color: #FFFFFF;
	font-size: 17px;
	margin-bottom: 35px;
  }
  .light-theme .se-v .compare-table thead th.top-right-corner .table-title-3 {
	color: var(--dark);
  }
  
  /* table-title-4 */
  .se-v .compare-table thead th.top-right-corner .table-title-4 {
	font-size: 14px;
	color: var(--darkGray);
  }
  
  /* table-title-1 */
  .se-v .compare-table thead th.top-right-corner .table-title-1 {
	display: block;
	font-size: 46px;
	color: #FFFFFF;
	font-weight: bold;
	font-family: var(--third-font);
	margin-bottom: 15px;
  }
  .light-theme .se-v .compare-table thead th.top-right-corner .table-title-1 {
	color: var(--darkBlue);
  }
  .se-v .compare-table thead th.top-right-corner .table-title-1 .coin {
	position: relative;
	font-size: 24px;
	vertical-align: top;
	top: 10px;
	font-family: var(--third-font);
	margin-right: 5px;
  }
  .se-v .compare-table thead th.top-right-corner .table-title-1 .sm-text {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	margin-left: 5px;
	font-family: var(--third-font);
	color: var(--darkGray);
  }
  
  /* hovered */
  .se-v .compare-table tbody tr.hovered {
	background-color: var(--semi-dark);
  }
  .light-theme .se-v .compare-table tbody tr.hovered {
	background-color: var(--light);
  }
  .se-v .compare-table tbody tr.hovered td {
	border-bottom: 0;
	border-right: 1px solid var(--border) !important;
  }
  .se-v .compare-table tbody tr.hovered td:last-child {
	border-right: 0 !important;
  }
  
  /* t-space */
  .se-v .compare-table tbody tr.t-space {
	border: 0 !important;
  }
  .se-v .compare-table tbody tr.t-space td {
	border: 0 !important;
  }
  
  /* tr-hide */
  @media only screen and (min-width: 1200px) {
	.se-v .compare-table tbody tr.tr-hide {
	  display: none;
	}
  }
  
  /* tbody > tr */
  .se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
	background-color: var(--border);
  }
  .light-theme .se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
	background-color: var(--light);
  }
  
  /* tbody > tr > td */
  .se-v .compare-table tbody tr td {
	position: relative;
	padding: 20px 30px;
	color: var(--darkGray);
	font-size: 15px;
	border-bottom: 1px solid var(--border);
  }
  .se-v .compare-table tbody tr td:not(:last-child) {
	border-right: 1px solid var(--border);
  }
  
  /* hide td[data-for="full"] */
  @media only screen and (max-width: 1199.98px) {
	.se-v .compare-table tbody tr td.td-hide {
	  display: none;
	}
  }
  
  /* left-corner */
  .se-v .compare-table tbody .left-corner {
	min-width: 470px;
	width: 470px;
	text-align: right;
	font-weight: 600;
  }
  @media only screen and (max-width: 1199.98px) {
	.se-v .compare-table tbody .left-corner {
	  min-width: 60%;
	  width: 60%;
	}
  }
  
  /* right-corner */
  .se-v .compare-table tbody .right-corner {
	min-width: 380px;
	width: 380px;
	text-align: center;
  }
  @media only screen and (max-width: 1199.98px) {
	.se-v .compare-table tbody .right-corner {
	  min-width: 40%;
	  width: 40%;
	}
  }
  
  /* se-footer > line */
  .se-v .se-footer .line {
	margin: 6px 12px;
  }
  .se-v .se-footer .line .icon {
	min-width: 16px;
	width: 16px;
	margin-right: 10px;
  }
  .se-v .se-footer .line .text {
	font-size: 14px;
	color: var(--darkGray);
	line-height: 1;
  }
  /*-------------------------------------*/
  
  /* Section VI */
  
  /* box */
  .se-vi .box {
	background-color: var(--semi-dark);
	border-radius: 8px;
	padding: 30px 30px;
	margin-bottom: 30px;
	transition: all .20s ease;
  }
  .light-theme .se-vi .box {
	background-color: var(--light);
	border: 1px solid var(--border);
  }
  
  /* user-info */
  .se-vi .box .user-info {
	margin-bottom: 25px;
  }
  .se-vi .box .user-info .avatar {
	min-width: 54px;
	width: 54px;
	min-height: 54px;
	height: 54px;
	border-radius: 50%;
	margin-bottom: 10px;
  }
  .se-vi .box .user-info .name {
	color: #FFFFFF;
	font-size: 17px;
	font-weight: bold;
  }
  .light-theme .se-vi .box .user-info .name {
	color: var(--darkBlue);
  }
  .se-vi .box .user-info .job {
	font-size: 13px;
	color: var(--darkGray);
  }
  
  /* quotes */
  .se-vi .box .quotes {
	font-size: 17px;
	font-weight: 600;
	font-style: italic;
	font-family: var(--third-font);
	color: var(--darkGray);
  }
  .se-vi .box .quotes::before {
	position: relative;
	content: '"';
	left: 0;
	top: 0;
	margin-right: 2px;
  }
  .se-vi .box .quotes::after {
	position: relative;
	content: '"';
	right: 0;
	top: 0;
	margin-left: 2px;
  }
  /*-------------------------------------*/
  