:root {
	--light-grey-color: #f2f2f2;
	--main-color: #9A4BE4;
	--light-main-color: #acdce4;
}

* {
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

body {
	background: var(--light-grey-color);
}

.b-example-divider {
	height: 1rem;
	background-color: rgba(0, 0, 0, 0.1);
	border: solid rgba(0, 0, 0, 0.15);
	border-width: 1px 0;
	box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.cat-ads a {
	color: #f0f0f0;
	text-decoration: none;
}

/* BANNERS AND SEARCH FORMS */
.home-banner {
	width: 100%;
	min-height: 420px;
	background: linear-gradient(to bottom right, #9A4BE4, #acdce4);
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 65px;
	padding: 50px 0 10px;
}

.home-banner-container {
	width: 50%;
	margin: 150px auto 0;
}

.home-banner-content p {
	color: #f0f0f0;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	text-transform: capitalize;
}

.home-banner-content h2 {
	color: #fff;
	text-align: center;
	font-size: 35px;
}

.home-banner-content form {
	width: 100%;
	display: flex;
	margin-top: 40px;
}

.home-banner-content form input {
	width: 70%;
	padding: 12px 7px;
	background: aliceblue;
	border-radius: 5px 0 0 5px;
	outline: none;
}

.home-banner-content form select {
	padding: 13px 5px;
	outline: none;
	margin-right: 2px;
}

.home-banner-content form button {
	background: #33CC33;
	color: #fff;
	padding: 12px;
	margin-left: -2px;
	letter-spacing: 1.5px;
	font-weight: 500;
}

.home-banner-content form button i {
	display: none;
}

.localgov {
	display: none;
}

@media screen and (max-width: 768px) {
	.home-banner-container {
		width: 90%;
		margin: 10px auto 0;
	}

	.home-banner-content h2 {
		font-size: 28px;
	}

	.home-banner-content form {
		display: block;
	}

	.home-banner-content form input {
		width: 100%;
		border-radius: 0;
		margin-bottom: 7px;
	}

	.home-banner-content form select {
		width: 100%;
		margin-bottom: 7px;
	}

	.home-banner-content form button {
		width: 100%;
		margin: 0;
	}

	.home-banner-content form button i {
		display: inline-block;
		margin-right: 10px;
	}
}

.main-banner {
	width: 100%;
	margin-top: 65px;
	background: linear-gradient(to bottom right, #9A4BE4, #acdce4);
	padding: 50px 75px;
}

.main-banner-content {
	display: flex;
	width: 100%;
	color: #fff;
	justify-content: space-between;
}

.main-banner-content form {
	display: flex;
}

.main-banner-content form input {
	padding: 10px 7px;
	border-right: 1px solid black;
	outline: none;
}

.main-banner-content form select {
	padding: 11px 3px;
	border-right: 1px solid black;
	outline: none;
}

.main-banner-content form button {
	background: #33CC33;
	color: #fff;
	padding: 0 12px;
}

.main-banner-content form button i {
	display: inline-block;
	margin-right: 10px;
}

.main-banner-content form button span {
	display: none;
}

@media screen and (max-width: 768px) {
	.main-banner {
		padding: 40px 0 20px;
	}

	.main-banner-content {
		display: block;
		width: 90%;
		text-align: center;
		margin: auto;
	}

	.main-banner-content h2 {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.main-banner-content form {
		display: block;
		width: 100%;
	}

	.main-banner-content form input {
		width: 100%;
		border-right: none;
		margin-bottom: 7px;
	}

	.main-banner-content form select {
		width: 100%;
		border-right: none;
		margin-bottom: 7px;
	}

	.main-banner-content form button {
		width: 100%;
		padding: 12px;
	}

	.main-banner-content form button span {
		display: inline-block;
		font-weight: 500;
		letter-spacing: 1.7px;
	}
}

/* HOMEPAGE STYLINGS */
.header nav {
	padding: 5px 25px 5px 35px;
}

.navbar {
	background: #9A4BE4;
}

.navbar-brand {
	font-family: "Arial Black", sans-serif;
}

.header #navbarCollapse {
	margin-left: 300px;
}

.header #navbarCollapse .nav-item {
	margin: 0 7px;
	font-size: 14px;
}

.header #navbarCollapse .nav-item .dropdown a {
	color: #fff;
}

.header #navbarCollapse .nav-item .dropdown .dropdown-menu {
	background: #9A4BE4;
	font-size: 13px;
}

.header #navbarCollapse .nav-item .dropdown .dropdown-menu li a:hover {
	text-decoration: none;
	font-weight: 500;
}

.header #navbarCollapse .nav-item.header_account {
	margin-left: 100px;
}

.header #navbarCollapse .nav-item a {
	color: #fff;
}

.header #navbarCollapse .nav-item a:hover {
	color: cyan;
	text-decoration: underline;
}

.header #navbarCollapse .nav-item ul li a:hover {
	color: black;
}

.header-shown-mobile nav {
	display: none;
	height: 40px;
}

.logo-hidden-desktop {
	display: none;
}

.header-shown-desktop nav #navbarCollapse {
	margin-left: 0;
}

.mobile_nav_content_mg-b-70px ul {
	margin-left: -220px;
}

.mobile_nav_content_mg-b-70px ul li a {
	color: #fff;
}

.mobile_nav_content_mg-b-70px ul li a:hover {
	border-bottom: 3px solid #fff;
}

.mobile_navigation_bar {
	display: none;
}

.header_profilephoto {
	margin-left: -100px;
}

.home-more-contents-for-home-new h2 {
	padding: 20px 45px;
	border-bottom: 3px solid lightgrey;
	margin-bottom: 20px;
}

.categories-for-home-new {
	width: 100%;
	padding: 50px 0 30px 90px;
	background: #fff;
	margin-top: -20px;
}

.categories-for-home-new-container {
	display: inline-flex;
	width: 48%;
	padding-left: 30px;
}

.categories-for-home-new-container-content {
	display: flex;
	width: 50%;
	margin: 0 15px 55px;
	text-align: center;
}

.categories-for-home-new-container-content a {
	color: #000;
	font-size: 14px;
	text-decoration: none;
}

.categories-for-home-new-container-content a p {
	margin-top: 15px;
}

.categories-for-home-new-container-content a:hover {
	text-decoration: underline;
	transform: scale(1.1);
}

.categories-for-home-new-container-content a img {
	height: 50px;
	width: 50px;
}

.more-about-swiftrole-for-home-new {
	width: 100%;
	display: flex;
}

.more-about-swiftrole-for-home-new-content {
	width: 50%;
	height: 500px;
}

.more-about-swiftrole-for-home-new-content.first img {
	width: 100%;
	height: 100%;
}

.more-about-swiftrole-for-home-new-content.second {
	padding: 70px 100px;
}

.more-about-swiftrole-for-home-new-content.second h1 {
	font-weight: 600;
	font-family: "Cooper Std Black", sans-serif;
	font-size: 30px;
}

.more-about-swiftrole-for-home-new-content.second p {
	margin: 30px 0 20px;
	font-size: 22px;
	line-height: 40px;
}

.more-about-swiftrole-for-home-new-content.second button {
	margin-top: 50px;
}

.carousel-banner-for-home-new {
	width: 100%;
	height: 350px;
	margin-top: 1px;
}

.home-banner-overlay-for-home-new {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #161443;
	opacity: 0.7;
}

.carousel-banner-for-home-new.one {
	background: url('../images/IMG_0501.PNG') no-repeat center/cover;
}

.carousel-banner-for-home-new.two {
	background: url('../images/IMG_0498.PNG') no-repeat center/cover;
}

.carousel-banner-for-home-new.three {
	background: url('../images/IMG_0497.PNG') no-repeat center/cover;
}

.carousel-banner-for-home-new .container .carousel-caption h1 {
    font-size: 55px;
    font-weight: 900;
}
.carousel-banner-for-home-new .container .carousel-caption p {
    font-size: 23px;
}

.main-banner-for-new {
	width: 100%;
	padding: 70px 10px;
	text-align: center;
	color: #fff;
	background: url('../images/IMG_0496.PNG') no-repeat bottom/cover;
	font-weight: 500;
	margin-top: 1px;
}

.offer {
	width: 100%;
	padding: 60px 6px;
}

.offer-header {
	text-align: center;
}

.offer-texts {
	width: 50%;
	display: inline-block;
}

.offer-texts h2 {
	margin-top: 70px;
}

.offer-texts p {
	margin: 50px 0;
}

.offer-texts a {
	padding: 12px 20px;
	text-decoration: none;
}

.offer-image {
	width: 30%;
	display: inline-block;
	margin-left: 70px;
}

.offer-image img {
	width: 500px;
	height: 400px;
	margin-top: -250px;
}

.offer-image.left {
	margin: 80px 50px 50px 0;
}

.offer-texts.right {
	margin: 80px 0 50px 150px;
}

@media screen and (max-width: 1200px) {
	.header #navbarCollapse {
		margin-left: 50px;
	}

	.header #navbarCollapse .nav-item {
		margin: 0 5px;
	}

	.header #navbarCollapse .nav-item a:hover {
		background: none;
		color: #fff;
	}

	.offer-image.left {
		width: 25%;
	}

	.offer-texts.right {
		width: 50%;
		left: 100px;
	}
}

@media screen and (max-width: 768px) {
	.header nav {
		padding: 13px 10px;
		z-index: 100;
	}

	.header #navbarCollapse {
		margin-left: 0;
	}

	.header #navbarCollapse .nav-item {
		margin: 5px 0;
	}

	.offer-header {
		margin-bottom: -30px;
	}

	.offer-texts {
		width: 45%;
	}

	.offer-texts p {
		margin: 30px 0;
	}

	.offer-image {
		margin: 0 0 0 10px;
	}

	.offer-image img {
		width: 350px;
		height: 300px;
	}

	.offer-image.left {
		margin: 0;
		width: 25%;
	}

	.offer-image.left img {
		width: 300px;
		height: 200px;
	}

	.offer-texts.right {
		width: 80%;
		left: 10px;
		margin-left: 100px;
	}

	.offer-texts.right h2,
	.offer-texts.right p,
	.offer-texts.right a {
		margin-left: 70px;
		width: 100%;
	}

	.more-about-swiftrole-for-home-new-content.second h1 {
		font-size: 35px;
	}

	.more-about-swiftrole-for-home-new-content.second p {
		margin: 10px 0;
		font-size: 19px;
	}

	.more-about-swiftrole-for-home-new-content.second button {
		margin-top: 40px;
	}

	.categories-for-home-new {
		padding-left: 0;
	}
}

@media screen and (max-width: 1000px) {
	.offer-texts {
		width: 50%;
	}

	.offer-image img {
		width: 300px;
		height: 250px;
	}

	.offer-texts.right {
		width: 50%;
		margin-left: 100px;
	}

	.header #navbarCollapse .nav-item.header_account {
		margin-left: 0;
	}
}

@media screen and (max-width: 900px) {
	.more-about-swiftrole-for-home-new-content.second h1 {
		font-size: 35px;
	}

	.more-about-swiftrole-for-home-new-content.second p {
		margin: 10px 0;
		font-size: 19px;
	}

	.more-about-swiftrole-for-home-new-content.second button {
		margin-top: 40px;
	}

	.categories-for-home-new {
		padding-left: 0;
	}
}

@media screen and (max-width: 600px) {
	.header-hidden-mobile {
		display: none;
	}

	.header-shown-mobile nav {
		display: block;
		position: fixed;
		top: 0;
		width: 100%;
		height: auto;
		padding: 15px 0 15px 10px;
	}

	.header #navbarCollapse .nav-item,
	.header #navbarCollapse .nav-item .dropdown .dropdown-menu {
		font-size: 15px;
	}

	.logo-hidden-desktop {
		display: inline-block;
	}

	.mobile_navigation_bar {
		display: flex;
		position: fixed;
		bottom: 0;
		background: #fff;
		color: #9A4BE4;
		z-index: 10000;
		justify-content: space-between;
		width: 100%;
		padding: 10px 0;
	}

	.mobile_navigation_bar ul {
		list-style-type: none;
		width: 100%;
		margin: auto 0;
		padding: 0;
	}

	.mobile_navigation_bar ul li {
		float: left;
		width: 25%;
		text-align: center;
	}

	.mobile_navigation_bar ul li span a {
		text-decoration: none;
		color: #9A4BE4;
		opacity: 0.8;
	}

	.mobile_navigation_bar ul li span a:hover {
		opacity: 1;
	}

	.mobile_navigation_bar ul li span a i {
		margin-left: 4px;
	}

	.mobile_navigation_bar ul li span a .mobile_navigation_bar_link_text {
		font-weight: 500;
		font-size: 13px;
	}

	.mobile_nav_content_mg-b-70px {
		margin-bottom: -70px;
	}

	.mobile_nav_content_mg-b-70px ul {
		margin-left: 0;
	}
	

	.carousel-banner-for-home-new {
		margin-top: 0;
		height: 350px;
	}
	.carousel-banner-for-home-new .container .carousel-caption h1 {
        font-size: 30px;
        font-weight: 700;
    }
    .carousel-banner-for-home-new .container .carousel-caption p {
        font-size: 16px;
        margin: 35px auto;
    }
    /*.home-banner-overlay-for-home-new {*/
    /*    border-bottom-left-radius: 50px;*/
    /*    border-bottom-right-radius: 50px;*/
    /*}*/

	.home-more-contents-for-home-new h2 {
		padding: 30px 15px;
		font-size: 25px;
	}

	.categories-for-home-new {
		padding: 50px 0 30px;
	}

	.categories-for-home-new-container {
		width: 100%;
	}

	.categories-for-home-new-container-content {
		padding-left: 30px;
	}

	.more-about-swiftrole-for-home-new {
		display: block;
	}

	.more-about-swiftrole-for-home-new-content {
		width: 100%;
		height: 350px;
	}
	

	.more-about-swiftrole-for-home-new-content.second {
		padding: 50px 15px 0 25px;
		height: 410px;
	}

	.more-about-swiftrole-for-home-new-content.second h1 {
		font-size: 30px;
	}

	.more-about-swiftrole-for-home-new-content.second p {
		margin: 20px auto;
		font-size: 18px;
	}

	.more-about-swiftrole-for-home-new-content.second button {
		margin-top: 20px;
	}

	.main-banner-for-new {
		margin-top: -17px;
	}
}

@media screen and (max-width: 500px) {
	.categories-for-home-new-container-content {
		margin: 0 15px 55px 10px;
	}

	footer.app {
		margin-bottom: 70px;
	}

	.offer-texts {
		width: 100%;
		display: block;
		padding: 10px;
	}

	.offer-texts h2 {
		margin: 45px 0 -20px;
	}

	.offer-image {
		width: 100%;
		margin: 0;
		padding: 10px;
	}

	.offer-image img {
		width: 100%;
		height: 350px;
		margin: 15px 0 0;
	}

	.offer-image.left {
		width: 100%;
		margin: -5px 0 0;
	}

	.offer-image.left img {
		width: 100%;
		height: 350px;
	}

	.offer-texts.right {
		width: 100%;
		margin: -50px 0 0;
	}

	.offer-texts.right h2,
	.offer-texts.right p,
	.offer-texts.right a {
		margin-left: 0;
		width: 100%;
	}
}

@media screen and (max-width: 400px) {
	.categories-for-home-new-container-content {
		padding-left: 10px;
	}

	.more-about-swiftrole-for-home-new-content {
		height: 300px;
	}

	.more-about-swiftrole-for-home-new-content.second h1 {
		font-size: 30px;
	}

	.more-about-swiftrole-for-home-new-content.second p {
		margin: 17px 0 15px;
		font-size: 20px;
		line-height: 30px;
	}

	.more-about-swiftrole-for-home-new-content.second button {
		margin-top: 30px;
	}

	.offer-image img {
		height: 250px;
	}
}

/* CONTACT PAGE */
.con {
	padding: 40px 0 200px;
}

.con_container {
	display: flex;
	justify-content: space-between;
}

.con_header {
	font-size: 30px;
	font-weight: 600;
	margin: 45px 0;
	width: 100%;
	text-transform: capitalize;
	text-align: center;
}

.con_content {
	background: #fff;
	box-shadow: 0 0.125em 0.9em rgba(0, 0, 0, 0.15);
	text-align: center;
	width: 30%;
	min-height: 90px;
	border-radius: 10px;
	padding: 70px 0;
	font-size: 18px;
	font-weight: 500;
}

.con_content:hover {
	box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
	transform: scale(1.02);
}

.con_content a {
	text-decoration: none;
}

.con_content a div i {
	font-size: 20px;
	border: 2px solid purple;
	padding: 12px;
	border-radius: 50px;
	margin-bottom: 20px;
}

.con_days ul {
	width: 70%;
	padding: 40px 100px;
	border-radius: 10px;
	margin: auto;
	line-height: 38px;
	font-size: 20px;
	font-weight: 500;
	box-shadow: 0 0.125em 0.9em rgba(0, 0, 0, 0.15);
	background: #fff;
}

.con_days ul li span:last-child {
	float: right;
}

.con_form form {
	width: 70%;
	padding: 40px;
	margin: auto;
	box-shadow: 0 0.125em 0.9em rgba(0, 0, 0, 0.15);
	background: #fff;
	border-radius: 10px;
}

.con_form form input {
	margin-bottom: 15px;
	background: aliceblue;
	color: #9A4BE4;
	padding: 15px 10px;
	font-weight: 500;
}

.con_form form textarea {
	height: 170px;
	background: aliceblue;
	font-weight: 500;
}

@media screen and (max-width: 560px) {
	.con_container {
		display: block;
		width: 100%;
		margin-top: -50px;
	}

	.con_content {
		width: 100%;
		margin: 0 auto 15px;
		padding: 30px 0;
	}

	.con_days ul {
		width: 100%;
		padding: 40px 15px 40px 40px;
		font-size: 18px;
	}

	.con_form form {
		width: 100%;
		padding: 15px;
	}
}

/* ABOUT PAGE */
.about_page {
	width: 100%;
}

.about_message {
	width: 95%;
	margin: 40px auto 80px;
	background: #fff;
	box-shadow: 0 0.125em 0.9em rgba(0, 0, 0, 0.15);
	padding: 30px 40px;
}

.abt_team {
	width: 75%;
	margin: 40px auto 15px;
	background: #fff;
	box-shadow: 0 0.125em 0.9em rgba(0, 0, 0, 0.15);
	padding: 15px 15px 1px;
}

.abt_mes_con {
	display: flex;
}

.abt_mes_con h4 {
	width: 30%;
}

.abt_mes_con p {
	width: 70%;
}

@media screen and (max-width: 560px) {
	.about_message,
	.abt_team {
		width: 100%;
		background: transparent;
		box-shadow: none;
		padding: 0;
		margin: 25px auto 80px;
	}

	.abt_mes_con {
		display: block;
	}

	.abt_mes_con h4,
	.abt_mes_con p {
		width: 100%;
	}
}

.writing {
	margin-top: 50px;
}

.writing-note {
	margin: 0 35px;
}

.writing-note h3 {
	font-size: 20px;
}

@media screen and (max-width: 1000px) {
	.writing-note {
		margin: 0;
	}
}

@media screen and (max-width: 900px) {
	.writing-note {
		margin: 0 70px;
	}
}

@media screen and (max-width: 800px) {
	.writing-note {
		margin: 0 30px;
	}
}

@media screen and (max-width: 700px) {
	.writing-note,
	.writing-sidebar {
		width: 100%;
		margin: 0 0 30px;
		padding: 0;
	}
}

@media screen and (max-width: 500px) {
	.writing-note,
	.writing-sidebar {
		padding: 0 15px;
	}
}

/* LISTINGS */
.pricadd {
	list-style: none;
	display: block;
	margin-left: -32px;
}

.pricadd li {
	float: left;
}

.pricadd li:last-child {
	font-size: 16px;
}

.pricadd li div,
.catstate div {
	display: inline-block;
	margin: auto 6px;
	height: 5px;
	width: 5px;
	background: #595959;
	border-radius: 50%;
}

.catstate small {
	font-size: 15px;
	font-weight: 600;
}

.catstate {
	margin: -5px 0 -9px;
}

.listfooter {
	width: 100%;
	margin: 15px 0 -18px;
}

.listfooter a {
	width: 50%;
	display: inline-block;
	border: 1px solid #f0f0f0;
	border-bottom: none;
	text-align: center;
	text-decoration: none;
	padding: 8px 0;
}

.listfooter a:hover {
	background: #f0f0f0;
}

.listfooter a i {
	font-size: 12px;
	margin-right: 15px;
}

.listing-img {
	width: 240px;
	height: 160px;
	background: aliceblue;
}

.listing-img img {
	width: 100%;
	height: 100%;
}

.listing-img i {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #9A4BE4;
	background: #acdce4;
	padding: 7px;
	font-size: 18px;
	border-radius: 3px;
	transition: 0.5s ease;
}

.listing-img i:hover {
	background: #9A4BE4;
	color: #acdce4;
}

@media screen and (max-width: 1200px) {
	.listing-img {
		width: 200px;
	}
}

@media screen and (max-width: 800px) {
	.listing-img {
		width: 100%;
		height: 280px;
	}
}

@media screen and (max-width: 400px) {
	.pricadd li:nth-child(2) {
		display: none;
	}

	.pricadd li {
		list-style-type: disc;
		float: none;
		margin: 5px 0 5px 15px;
	}

	.pricadd li a {
		margin-left: -7px;
	}

	.pricadd li div {
		display: none;
	}

	.listing-body h5,
	.catstate {
		margin: 8px 0 8px -6px;
	}

	.listfooter a {
		margin-top: -50px;
	}
}

/* PROFILE PAGE */
.profile {
	width: 100%;
	background: #fff;
	border-radius: 8px;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.profile .cover-photo {
	width: 100%;
	height: 125px;
	background: #fff;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.7;
}

.profile .display-photo {
	width: 200px;
	height: 200px;
	margin: 0 auto -90px;
	position: relative;
	bottom: 100px;
}

.profile .display-photo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.profile-header-text {
	text-align: center;
}

.profile-header-text h4 {
	color: #595959;
	text-transform: capitalize;
}

.contact-link {
	margin-bottom: 0;
}

.contact-link a:first-child {
	margin-right: 15px;
}

.contact-link a {
	text-decoration: none;
}

.contact-link a i {
	margin-right: 7px;
}

.link a {
	border-radius: 50px;
	padding: 4px 14px 8px;
	text-decoration: none;
	border: 1.5px solid gold;
	color: gold;
}

.link a:hover {
	background: gold;
	color: #fff;
}

.tab-links {
	padding-top: 15px;
}

.tab-links .active {
	color: gold;
	background: none;
}

.tab-links ul {
	list-style-type: none;
	text-align: center;
}

.tab-links li {
	width: 30%;
	float: left;
}

.tab-links li a {
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: 600;
}

.tab-links li a i {
	margin-right: 8px;
}

.tab-links li a:hover {
	color: gold;
}

.info-box {
	padding: 8px 14px;
}

.info-box h5 {
	color: grey;
	text-transform: uppercase;
	font-size: 15px;
	margin-top: 14px;
}

.info-box p {
	font-size: 15px;
}

.info-box ul {
	margin-top: -10px;
	margin-left: -13px;
}

.info-box a {
	text-decoration: none;
}

.info-box a i {
	margin-right: 8px;
}

.info-box #myInput {
	border: 1px solid #595959;
	border-radius: 3px;
	width: 70%;
	padding: 4px 8px;
	margin-right: -5px;
	color: #595959;
}

.info-box .copybtn {
	background: #1876f2;
	color: #fff;
	padding: 6px 7px;
	cursor: copy;
}

.info-box .copybtn:hover {
	background: blue;
}

.info-box .images-carousel .cell {
	position: absolute;
	display: block;
	width: 30%;
	height: 100px;
}

.info-box .images-carousel .cell img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 400px) {
	.tab-links li a i {
		display: none;
	}
}

.review_form .two_input {
	width: 100%;
	display: flex;
	margin-bottom: 10px;
}

.review_form .two_input input {
	width: 50%;
	border: 0.7px solid grey;
	outline: none;
	padding: 5px 10px;
	border-radius: 4px;
}

.review_form .two_input input:nth-child(1) {
	margin-right: 5px;
}

.review_form .two_input input:nth-child(2) {
	margin-left: 5px;
}

.review_form textarea {
	border-radius: 4px;
	width: 100%;
	border: 0.7px solid grey;
	height: 85px;
	resize: none;
	outline: none;
	padding: 5px 10px;
}

.review_form button {
	padding: 10px 30px;
	font-weight: bold;
	color: #fff;
	background: #33CC33;
	border-radius: 4px;
}

@media screen and (max-width: 400px) {
	.review_form .two_input {
		display: block;
	}

	.review_form .two_input input {
		width: 100%;
	}

	.review_form .two_input input:nth-child(1),
	.review_form .two_input input:nth-child(2) {
		margin: 5px 0;
	}

	.review_form textarea {
		margin: 5px 0;
	}

	.review_form button {
		width: 100%;
		margin-bottom: 10px;
	}
}

/* PRICING PAGE */
.pricing_container {
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 700px) {
	.pricing_container {
		width: 95%;
	}
}

/* CAROUSEL */
.images-carousel .carousel-item img {
	width: 100%;
	height: 400px;
}

.images-carousel .carousel-control-prev:hover,
.images-carousel .carousel-control-next:hover {
	background: grey;
	color: #fff;
}

@media screen and (max-width: 700px) {
	.images-carousel .carousel-item img {
		height: 250px;
	}
}

/* FOOTER */
.footer {
	background: #9A4BE4;
	margin-top: 40px;
	width: 100%;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	left: 0;
	top: 100px;
	height: 1px;
	width: 100%;
	background: #AFAFB6;
}

.footer .footer_content {
	max-width: 1450px;
	margin: auto;
	padding: 30px 40px 40px;
}

.footer .footer_content .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer_content .top .logo-details {
	color: #fff;
	font-size: 30px;
}

.footer_content .top .media-icons {
	display: flex;
}

.footer_content .top .media-icons a {
	height: 40px;
	width: 40px;
	margin: 0 8px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: #fff;
	font-size: 17px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.footer_content .top .media-icons a:nth-child(1) {
	background: #4267B2;
}

.footer_content .top .media-icons a:nth-child(1):hover {
	color: #4267B2;
	background: #fff;
}

.footer_content .top .media-icons a:nth-child(2) {
	background: #1DA1F2;
}

.footer_content .top .media-icons a:nth-child(2):hover {
	color: #1DA1F2;
	background: #fff;
}

.footer_content .top .media-icons a:nth-child(3) {
	background: #E1306C;
}

.footer_content .top .media-icons a:nth-child(3):hover {
	color: #E1306C;
	background: #fff;
}

.footer_content .top .media-icons a:nth-child(4) {
	background: #33CC33;
}

.footer_content .top .media-icons a:nth-child(4):hover {
	color: #33CC33;
	background: #fff;
}

.footer_content .top .media-icons a:nth-child(5) {
	background: #0077B5;
}

.footer_content .top .media-icons a:nth-child(5):hover {
	color: #0077B5;
	background: #fff;
}

.footer_content .top .media-icons a:nth-child(6) {
	background: #FF0000;
}

.footer_content .top .media-icons a:nth-child(6):hover {
	color: #FF0000;
	background: #fff;
}

.footer .footer_content .link-boxes {
	width: 100%;
	margin-left: -30px;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.footer .footer_content .link-boxes .box {
	width: calc(100% / 5 - 10px);
}

.footer .footer_content .link-boxes .box .link_name {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	position: relative;
}

.footer .footer_content .link-boxes .box .link_name::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 35px;
	background: #fff;
}

.footer .footer_content .link-boxes .box li {
	margin: 6px 0;
	list-style: none;
}

.footer .footer_content .link-boxes .box li a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.4s ease;
	line-height: 25px;
}

.footer .footer_content .link-boxes .box li a:hover {
	opacity: 1;
	text-decoration: underline;
}

.footer_content .link-boxes .input-box {
	margin-right: 55px;
}

.link-boxes .input-box input {
	height: 40px;
	width: calc(100% + 55px);
	outline: none;
	border: 2px solid #AFAFB6;
	background: #9A4BE4;
	border-radius: 4px;
	padding: 0 15px;
	font-size: 15px;
	color: #fff;
}

.link-boxes .input-box input::placeholder {
	color: #AFAFB6;
	font-size: 16px;
}

.link-boxes .input-box input[type="submit"] {
	background: #fff;
	color: #9A4BE4;
	border: none;
	font-size: 18px;
	font-weight: 500;
	margin: 4px 0;
	opacity: 0.8;
	cursor: pointer;
	transition: all 0.4s ease;
}

.link-boxes .input-box input[type="submit"]:hover {
	opacity: 1;
}

.footer .bottom-details {
	width: 100%;
	background: #0F0844;
}

.footer .bottom-details .bottom_text {
	max-width: 1000px;
	margin: auto;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	opacity: 0.8;
	text-decoration: none;
}

.bottom-details .bottom_text a:hover {
	opacity: 1;
	text-decoration: underline;
}

.bottom-details .bottom_text a {
	margin-right: 10px;
}

@media screen and (max-width: 900px) {
	.footer .footer_content .link-boxes {
		flex-wrap: wrap;
	}

	.footer_content .link-boxes .input-box {
		width: 40%;
		margin-top: 10px;
	}
}

@media screen and (max-width: 700px) {
	.footer_content .top .logo-details {
		font-size: 26px;
	}

	.footer_content .top .media-icons a {
		height: 35px;
		width: 35px;
		font-size: 14px;
		line-height: 35px;
	}

	.footer .footer_content .link-boxes .box {
		width: calc(100% / 3 - 10px);
	}

	.footer .footer_content .link-boxes .input-box {
		width: 80%;
	}
}

@media screen and (max-width: 520px) {
	.footer::before {
		top: 145px;
	}

	.footer .footer_content .top {
		flex-direction: column;
	}

	.footer .footer_content .link-boxes {
		margin-left: -15px;
	}

	.footer_content .top .media-icons {
		margin-top: 16px;
	}

	.footer .footer_content .link-boxes .box {
		width: calc(100% / 2 - 10px);
	}

	.footer .footer_content .link-boxes .input-box {
		width: 100%;
	}

	.bottom-details .bottom_text {
		flex-direction: column;
		text-align: center;
	}

	.bottom-details .bottom_text span:nth-child(2) {
		margin-top: 10px;
	}
}

@media screen and (max-width: 360px) {
	.footer .footer_content .link-boxes .box {
		width: calc(100% / 1 - 10px);
	}

	.footer .footer_content .link-boxes .input-box {
		width: 100%;
	}
}

/* ACCOUNT ACTIVATION */
.edit-quick_links.verification ul li {
	padding-top: 0;
}

.verification li:first-child {
	margin-top: 20px;
}

.verification li .ver-step {
	text-transform: none;
	color: grey;
	font-weight: 600;
	margin-bottom: 5px;
}

.verification li .ver-msg {
	text-transform: lowercase;
	font-size: 14px;
	color: #ff0000;
}

.verification li .ver-msg.done {
	color: #33CC33;
}