@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Intro
7. Services
8. Pricing
9. Why Choose Us
10. CTA
11. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900');

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 1.8666;
	font-weight: 400;
	color: #656566;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: rgba(27,239,197,0.75);
	color: #FFFFFF;
}
p::selection
{
	
}
h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Raleway', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f1d22;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.parallax_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.background_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 92%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.background_printer {
	position: absolute;
    z-index: 99;
    width: 450px;
    background-size: inherit;
    right: 0px;
    background-position: bottom right;
    left: inherit;}
.nopadding
{
	padding: 0px !important;
}
.section_title h2
{
	color: #0c3354;
	line-height: 0.75;
	font-size:40px;
}

/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	background: transparent;
	z-index: 100;
}
.header.scrolled
{
	background: #200e35;
	padding: 10px 0px;
}

.header_content
{
	width: 100%;
	height: 124px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.header.scrolled .header_content
{
	height: 80px;
}
.logo
{
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.logo a
{
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: #FFFFFF;
}
.logo a span
{
	color: #1befc5;
}
.main_nav ul li:not(:last-child)
{
	margin-right: 48px;
}
.main_nav ul li a
{
	font-size: 17px;
	font-weight: 600;
	color: #FFFFFF;
}
.main_nav ul li.active a,
.main_nav ul li a:hover
{
	color: #1befc5;
}
.log_reg
{
	position: absolute;
	top: 50%;
	right: 0;
	z-index:9999;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.log_reg_text a
{
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
}
.log_reg_text a:hover
{
	color: #1befc5;
}
.log_reg_content > div:not(:last-child)::after
{
	display: inline-block;
	content: '/';
	font-size: 16px;
	font-weight: 600;
	color: #FFFFFF;
	margin-left: 4px;
	margin-right: 4px;
}
.hamburger
{
	display: none;
	cursor: pointer;
	border: solid 1px transparent;
	border-radius: 7px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.hamburger:hover
{
	border: solid 1px rgba(255,255,255,0.15);
}
.hamburger i
{
	font-size: 20px;
	color: #FFFFFF;
	padding: 5px;
}

/*********************************
4. Menu
*********************************/

.menu
{
	position: fixed;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100vh;
	background: #200e35;
	z-index: 102;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 50px;
}
.menu.active
{
	right: 0;
}
.menu_overlay
{
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255,255,255,0.55);
	z-index: 101;
	visibility: hidden;
	opacity: 0;
}
.menu_overlay.active
{
	visibility: visible;
	opacity: 1;
}
.menu_close_container
{
	position: absolute;
    top: 41px;
    left: 28px;
    width: 18px;
    height: 18px;
    transform-origin: center center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
    z-index: 999999;
}
.menu_close
{
    width: 100%;
    height: 100%;
    transform-style: preserve-3D;
}
.menu_close div
{
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    top: 8px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.menu_close div:last-of-type
{
    -webkit-transform: rotate(90deg) translateX(-2px);
    -moz-transform: rotate(90deg) translateX(-2px);
    -ms-transform: rotate(90deg) translateX(-2px);
    -o-transform: rotate(90deg) translateX(-2px);
    transform: rotate(90deg) translateX(-2px);
    transform-origin: center;
}
.menu_close:hover div
{
    background: #1befc5;
}
.menu .log_reg
{
	display: block;
	position: relative;
	top: auto;
	right: auto;
	text-align: right;
}
.menu_nav
{
	margin-top: 50px;
}
.menu_nav ul li:not(:last-child)
{
	margin-bottom: 3px;
}
.menu_nav ul li a
{
	font-size: 24px;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
}
.menu_nav ul li a:hover
{
	color: #1befc5;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	height: 821px;
}
.home_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 92%;
	background-color: #4d1d85;
    background-image: linear-gradient(to bottom, #200e35, #4d1d85);
    background: #4d1d85;
    background: linear-gradient(to bottom, #200e35, #4d1d85);
    z-index: 1;
}
.background_city
{
	z-index: 3;
	opacity:0.3;
}
.cloud
{
	position: absolute;
	width: 138px;
	height: 57px;
	z-index: 4;
}
.cloud img
{
	max-width: 100%;
}
.cloud_1
{
	top: 147px;
	left: -138px;
	-webkit-animation: cloud_anim 60s -39s linear infinite;
	animation: cloud_anim 60s -39s linear infinite;
}
.cloud_2
{
	top: 204px;
	left: -138px;
	-webkit-animation: cloud_anim 60s -6s linear infinite;
	animation: cloud_anim 60s -6s linear infinite;
}
.cloud_3
{
	top: 332px;
	left: -138px;
	-webkit-animation: cloud_anim 60s -45s linear infinite;
	animation: cloud_anim 60s -45s linear infinite;
}
.cloud_4
{
	top: 353px;
	left: -138px;
	-webkit-animation: cloud_anim 60s -15s linear infinite;
	animation: cloud_anim 60s -15s linear infinite;
	z-index: 2;
}
@-webkit-keyframes cloud_anim
{
	0%
	{
		left: -138px;
	}
	100%
	{
		left: calc(100vw + 138px);
	}
}
@keyframes cloud_anim
{
	0%
	{
		left: -138px;
	}
	100%
	{
		left: calc(100vw + 138px);
	}
}
.home_container
{
	position: absolute;
	left: 0;
	top: 31.9%;
	width: 100%;
	z-index: 5;
}
.home_content
{

}
.home_title
{
	font-size: 40px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1.5;
}
.home_text
{	max-width: 850px;
	font-size: 22px;
	color: #FFFFFF;
	line-height: 2.14;
	font-weight:600;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	padding-bottom:25px;
}
.home_text a {background:#1befc5; border-radius:8px; padding:15px 30px; color:#2f1152; font-size:18px; font-weight:700;}
.home_text a:hover {background:#fff; color:#000;}
.trouble_sec {display:block; padding-bottom:100px;}
.trouble_sec h2 {font-size: 40px; text-align: center; padding: 30px; color:#0c3354;}
.trouble_sec span { color:#1befc5; text-transform:uppercase; font-weight:700;}
ul.color_box { padding-left: 10px; margin-top: 10px;}
ul.color_box li { background: url(../images/right-arrow.png)0px 2px no-repeat; padding-left: 30px; font-size: 16px; font-weight:600; margin-bottom: 12px; color:#666;}


/* GRID */
.box-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    transition:0.6s;
}

/* BOX */
.box{
    border-radius:12px;
    padding:40px 10px 10px;
    text-align:center;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    perspective:1000px;
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
    transition:0.6s;
}

/* HIDE GRID */
.box-grid.hide{
    opacity:0;
    transform:scale(0.85);
    pointer-events:none;
    height:0;
    overflow:hidden;
}

/* COLORS */
.c1{background:#34C58C;}
.c2{background:#f39928;}
.c3{background:#29A9F5}
.c4{background:#644CED;}
.c5{background:#e100ff;}
.c6{background:#ff512f;}
.c7{background:#70cf85;}
.c8{background:#b968e3;}

/* FLIP */
.box-inner{
    transition:transform 0.6s;
    transform-style:preserve-3d;
}

.box:hover .box-inner{
    transform:rotateY(180deg);
}

.front,.back{
    backface-visibility:hidden;
	font-size:24px;
	font-weight:700;
}

.back{
    transform:rotateY(180deg);
	position:relative;
	top:-30px;
}

/* ICON */
.icon{
    font-size:38px;
    margin-bottom:12px;
}

/* LOGO PANEL */
.logo-panel{
    display:none;
}

.logo-panel.active{
    display:block;
    animation:fadeUp 0.6s ease;
}

@keyframes fadeUp{
    from{opacity:0;transform:translateY(40px);}
    to{opacity:1;transform:translateY(0);}
}

/* LOGO BOX */
.logo-box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 20px 40px rgba(0,0,0,0.20);
    position:relative;
}

/* BACK BUTTON */
.back-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border-radius:30px;
    background:#111;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:15px;
    margin-bottom:30px;
}

.back-btn:hover{
    background:#ff3b3b;
}

/* LOGOS */
.logo-grid{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.logo-grid img{
    width:120px;
    filter:grayscale(100%);
    transition:0.3s;
	margin: 5px 15px;
}

.logo-grid img:hover{
    filter:grayscale(0%);
    transform:scale(1.15);
}

/* RESPONSIVE */
@media(max-width:992px){
    .box-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:576px){
    .box-grid{grid-template-columns:1fr;}
}

ul.independent {padding:0px;}
ul.independent li { font-size:17px; color:#444;padding:5px 0px; background:url('../images/right-arrow.png')0px 8px no-repeat; padding-left:30px;}
ul.independent li span {display:block; font-weight:700;}
.about_sec {background:#edf6f5; padding:80px 0px;}
.about_cont {display:block;}
.about_cont h3 {font-size:40px; padding:10px 0px; color:#0c3354;}
.about_cont p {font-size:19px;}
.picimg {width:100%; border-radius:12px;}

.modal {
    position: fixed;
    z-index: 1;
    padding-top: 0px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, .7);
    z-index: 999999;
}

.modal-body {padding:0px !important;}
.modal-content {position:relative; border-radius:10px !important; width:45% !important; margin:5% auto; border:1px solid #161785 !important}

.modal-header {
	position: absolute;
    top: 5px;
    right: 0px;
}
.send_messageForm{padding:20px;}
.modal-content p {
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px 15px;
    background: #1c9993;
    color: #fff;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	font-size:22px;
}

.send_messageForm .inp {
  width: 100%;
  border: 0px;
  border-radius: 5px;
  margin-bottom: 20px;
  height: 45px;
  padding: 10px;
  font-size: 16px;
  border: 1px #8f9ab7 solid;
  background: #fff;
  color: #333;
}

.send_messageForm select {
  width: 100%;
  border: 0px;
  border-radius: 5px;
  margin-bottom: 20px;
  height: 45px;
  padding: 10px;
  font-size: 16px;
  outline: none;
  background: url(../img/contact-drop-icon.png) right center no-repeat #fff;
  background-position-x: 95%;
  -webkit-appearance: none;
  border: 1px #8f9ab7 solid;
  background: #fff;
  color: #666;
}

.send_messageForm .inp2 {
  width: 100%;
  border: 0px;
  border-radius: 5px;
  margin-bottom: 20px;
  height: 100px;
  padding: 10px;
  font-size: 16px;
  border: 1px #8f9ab7 solid;
}
.close {
    color: #fff !important;
    opacity: 1 !important;
    z-index: 99999;
    font-size: 35px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}
.take_support button.popUpBtn {
    border: none;
    background: none;
}
input.sendBtn {
  background: #1bab80;
  border: 0px;
  color: #fff;
  padding: 15px 30px !important;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  border-radius: 6px;
  margin-left: 12px;
  cursor: pointer;
}

input.sendBtn:hover {
  background: #32b06f;
  color: #fff;
}
.error {
  color: red;
  font-size: 13px;
  display: block;
  margin-top: 0px;
  position: relative;
  top: -15px;
}

.ft_cont {display:block; border-top:1px #4b237a dashed; padding-top:20px;}
.ft_cont p {font-size:15px; color:#a593bb; line-height:24px;}
.ft_cont span {font-size:20px; font-weight:600; display:block; margin-bottom:10px;}

/*********************************
6. Intro
*********************************/

.intro
{
	width: 100%;
	background: #FFFFFF;
	padding-top: 96px;
	padding-bottom: 97px;
}
.intro_row
{
	margin-top: 98px;
}
.intro_dots
{
	position: absolute;
    top: -137px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
}
.intro_icon_container
{
	width: 143px;
	height: 143px;
	border-radius: 50%;
	background: #d5dfe3;
}
.intro_col:nth-child(3) .intro_icon_container
{
	background: #1befc5;
}
.intro_icon_container::before
{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 188px;
	height: 188px;
	border-radius: 50%;
	z-index: 0;
	background: rgba(213,223,227,0.25);
	content: '';
}
.intro_col:nth-child(3) .intro_icon_container::before
{
	background: rgba(27,239,197,0.25);
}
.intro_icon
{
	width: 56px;
	height: 56px;
}
.intro_icon img
{
	max-width: 100%;
}
.intro_item_content
{
	padding-top: 66px;
}
.intro_item_title
{
	font-size: 24px;
	font-weight: 700;
	color: #1f1d22;
	line-height: 1.2;
}
.intro_item_text
{
	margin-top: 27px;
}
.intro_button
{
	width: 257px;
	height: 63px;
	border-radius: 12px;
	background: #715691;
	margin-top: 86px;
}
.intro_button:hover
{
	background: #1befc5;
}
.intro_button a
{
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
 	line-height: 63px;
}
ul.client_logo {display:flex; flex-wrap:wrap;}
ul.client_logo li {width:20%; margin:12px 0px;}
ul.client_logo li img {border-radius:6px;}
.policy-section {
  display: flex;
  gap: 50px;
  padding: 80px 40px;
  background: #f4f7fb;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-box {
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
  border-radius: 16px;
  padding: 30px;
  width: 35%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.policy-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.policy-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.policy-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1f2937;
  font-weight:700;
}

.policy-box p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 14px;
}

.policy-box ul {
  padding-left: 18px;
  margin: 0;
}

.policy-box ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 7px;
  font-weight:600;
  list-style-type:circle;
}

/*********************************
7. Services
*********************************/

.services
{
	width: 100%;
	padding-top: 96px;
	padding-bottom: 127px;
}
.services .section_title h2
{
	color: #FFFFFF;
	font-size:50px;
}
.services .section_title p {
	font-size:22px;
	color:#fff;
}
.services_row
{
	margin-top: 40px;
}
.service
{
	width: 100%;
	background: #FFFFFF;
	border-radius: 12px;
	padding: 40px 20px;
	border: solid 2px transparent;
}
.service:hover
{
	background: #26f5cc;
}
.service_icon
{
	width: 120px;
	height: 120px;
}
.service_icon img
{
	max-width: 100%;
}
.service_icon svg
{
	max-width: 100%;
	height: auto;
}
.svg path,
.svg rect,
.svg polygon
{
	fill: #778990;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.service:hover .svg path,
.service:hover .svg rect,
.service:hover .svg polygon
{
	fill: #1befc5;
}
.service_title
{
	margin-top: 20px;
}
.service_text
{
	margin-top: 19px;
	color:#333;
}
.service_text p
{
	font-size:16px;
	color:#222;
}
.service_button
{
	position: absolute;
	bottom: -32px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 157px;
	height: 63px;
	background: #f4f7f8;
	border-radius: 12px;
}
.service_button:hover
{
	background: #1befc5;
}
.service_button a
{
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #656566;
	line-height: 63px;
}
.service_button:hover a
{
	color: #1f1d22;
}

/*********************************
8. Pricing
*********************************/

.pricing
{
	width: 100%;
	background: #FFFFFF;
	padding-top: 94px;
	padding-bottom: 98px;
}
.pricing_container
{
	width: 100%;
	border-radius: 12px;
	border: solid 2px #d5dfe3;
	overflow: hidden;
}
.pricing_item
{
	width: 25%;
}
.pricing_item:not(:last-child)
{
	border-right: solid 2px #d5dfe3;
}
.pricing_title
{
	height: 129px;
	background: #4d1d85;
	font-size: 30px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 129px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.pricing_item:hover .pricing_title
{
	color: #1befc5;
}
.pricing_content
{
	padding-top: 50px;
	padding-bottom: 37px;
}
.package_price
{
	font-size: 36px;
	font-weight: 700;
	color: #715691;
}
.package_price span
{
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: #1f1d22;
	-webkit-transform: translate(-5px, 12px);
	-moz-transform: translate(-5px, 12px);
	-ms-transform: translate(-5px, 12px);
	-o-transform: translate(-5px, 12px);
	transform: translate(-5px, 12px);
}
.pricing_list
{
	margin-top: 89px;
}
.pricing_list ul li:not(:last-child)
{
	margin-bottom: 26px;
}
.pricing_list ul li span
{
	font-size: 16px;
	font-weight: 500;
	color: #656566;
	margin-left: 10px;
}
.pack_ok span
{
	color: #1f1d22 !important;
	font-weight: 600 !important;
}
.pricing_button
{
	width: 132px;
	height: 53px;
	margin-top: 75px;
	background: #1befc5;
	border-radius: 12px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.pricing_button a
{
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #35214d;
	line-height: 53px;
}
.pricing_button:hover
{
	background: #7836c6;
}
.pricing_button:hover a
{
	color: #FFFFFF;
}

/*********************************
9. Why Choose Us
*********************************/

.choice
{
	width: 100%;
	background: #f6f8fb;
}
.choice_image
{
	position: absolute;
	bottom: 0;
	left: 25px;
}
.choice_content
{
	padding-top: 100px;
	padding-bottom: 100px;
}
.choice_text
{
	margin-top: 35px;
}
.choice_text p
{
	font-weight: 500;
}
.choice_list
{
	margin-top: 52px;
}
.choice_icon
{
	width: 64px;
	height: 64px;
}
.choice_icon img
{
	max-width: 100%;
}
.choice_title
{
	font-size: 18px;
	font-weight: 500;
	color: #1f1d22;
	margin-top: 20px;
}

/*********************************
10. CTA
*********************************/

.cta
{
	width: 100%;
	background: #715691;
}
.cta_content
{
	width: 100%;
	height: 135px;
	padding-left: 5px;
}
.cta_title
{
	display: inline-block;
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
}
.cta_price
{
	font-size: 48px;
	color: #1befc5;
	font-weight: 700;
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	transform: translateY(-8px);
}
.cta_price span
{
	font-size: 16px;
}
.cta_price span:first-child
{
	margin-right: 5px;
}
.cta_button
{
	width: 180px;
	height: 62px;
	border-radius: 12px;
	background: #1befc5;
	text-align: center;
	-webkit-transform: translateY(4px);
	-moz-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
	transform: translateY(4px);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.cta_button a
{
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #35214d;
	padding: 20px;
}
.cta_button:hover
{
	background: #26064c;
}
.cta_button:hover a
{
	color: #FFFFFF;
}

/*********************************
11. Footer
*********************************/

.footer
{
	width: 100%;
	background: #26064c;
	padding-top: 70px;
	padding-bottom: 30px;
}
.footer_logo
{
	font-size: 47px;
	color: #FFFFFF;
	font-weight: 600;
	line-height: 0.75;
}
.footer_logo span
{
	color: #1befc5;
}
.copyright
{
	font-size: 11px;
	font-weight: 400;
	color: #715691;
	margin-top: 17px;
}
.footer_text
{
	margin-top: 33px;
}
.footer_text p
{
	color: #FFFFFF;
}
.contact_container
{
	margin-top: 38px;
}
.contact_form > div:not(:last-of-type)
{
	margin-bottom: 21px;
}
.contact_input
{
	width: 100%;
	height: 49px;
	border: none;
	outline: none;
	border-radius: 12px;
	background: #715691;
	padding-left: 29px;
	color: #FFFFFF;
}
.contact_textarea
{
	height: 142px;
	padding-top: 15px;
}
.contact_input::-webkit-input-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}
.contact_input:-moz-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}
.contact_input::-moz-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
} 
.contact_input:-ms-input-placeholder
{ 
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}
.contact_input::input-placeholder
{
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}
.contact_button
{
	width: 108px;
	height: 52px;
	background: #1befc5;
	border: none;
	outline: none;
	border-radius: 12px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	color: #35214d;
	margin-top: 23px;
}
.footer_links
{
	padding-top: 13px;
}
.footer_list_col:not(:nth-child(n+3))
{
	margin-bottom: 45px;
}
.footer_list_title
{
	font-size: 20px;
	font-weight: 700;
	color: #1befc5;
}
.footer_list
{
	margin-top: 36px;
}
.footer_list li:not(:last-of-type)
{
	margin-bottom: 14px;
}
.footer_list li a
{
	font-size: 15px;
	font-weight: 400;
	color: #FFFFFF;
}
.footer_list li a:hover
{
	color: #1befc5;
}