@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Ubuntu', sans-serif;
}
:root {
	--main-color: #372689;
}
html
{
	scroll-behavior: smooth;
}
body
{
	position: relative;
}
.main_wrapper
{
	position: relative;
	overflow: hidden;
}
/* width */
::-webkit-scrollbar {
	width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}
.animate__animated.animate__bounce {
	--animate-duration: 5s;
}
.black_screen
{
	position: fixed;
	left: -300%;
	top: 0px;
	width: 55%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	transition: 0.4s all linear;
}
.header
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0% 5%;
	height: 10vh;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	background: #f8f7fd;
	transition: background-color 0.3s, color 0.3s;
	z-index: 11;
	transition: 0.2s all linear;
}
#progress-container {
	height: 2px;
	width: 100%;
	background: transparent;
	position: fixed;
	top: 10vh;
	left: 0;
	z-index: 5;
}

#progress-bar {
	height: 100%;
	width: 0;
	background: var(--main-color);
}
.logo
{
	font-size: 30px;
	font-weight: 600;
}
.logo a
{
	text-decoration: none;
	color: var(--main-color);
}
.menu_opener,.menu_closer
{
	display: none;
}
.menu
{
	width: 35rem;
}
.menu ul
{
	list-style: none;
	margin-bottom: 0px !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu ul li a
{
	text-decoration: none;
	color: #000;
	font-size: 20px;
	font-weight: 500;
	display: block;
	position: relative;
	width: 100%;
	transition: 0.2s all linear;
}
.menu ul li a:hover
{
	color: var(--main-color);
}
.menu ul li a:before
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	border-radius: 5px;
	background: var(--main-color);
	transition: 0.2s all linear;
}
.menu ul li a:hover:before
{
	width: 100%;
}
.active
{
	color: var(--main-color) !important;
	position: relative !important;
	transition: 0.2s all linear !important;
}
.active:before
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100% !important;
	height: 2px;
	border-radius: 5px;
	background: var(--main-color);
	transition: 0.2s all linear;
	z-index: 2;
}
.hero_section
{
	padding: 0% 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100vh;
	position: relative;
	margin-top: 10vh;
	overflow: hidden;
	background: #f8f7fd;
	transition: 0.2s all linear;
}
.left_side,.right_side
{
	width: 50%;
}
.right_side img
{
	width: 100%;
}
.left_side h1
{
	font-size: 80px;
}
.left_side h1 #solution
{
	background: var(--main-color) !important;
	border-radius: 5px;
	border: none;
	color: ghostwhite !important;
	box-sizing: border-box;
	overflow: hidden;
	padding: 5px;
}
.left_side p
{
	font-size: 20px;
	line-height: 38px;
	font-weight: 600;
	margin-bottom: 15px;
}
.left_side button
{
	color: white;
	background: var(--main-color);
	border: none;
	outline: none;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 20px;
	cursor: pointer;
	font-weight: 600;
	transition: 0.2s all linear;
}
.left_side button:hover
{
	background: transparent;
	color: var(--main-color);
	font-weight:600;
}
.story_section_container
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
/* 	padding: 0% 5%; */
}
.story_left_side,.story_right_side
{
	width: 50%;
}
.story_left_side
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.story_right_side
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 75%;
	background: var(--main-color);
	border-top-left-radius: 360px;
	border-bottom-left-radius: 360px;
	box-shadow: 0px 6px 20px #000000bf;
}
.story_left_side h1
{
	color: var(--main-color);
	font-size: 100px;
	position: relative;
	left: 8%;
}
.story_left_side h1:before
{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--main-color);
	height: 3px;
	border-radius: 10px;
	width: 0%;
	transition: 0.2s all linear;
	animation: mymove 5s linear infinite;
}
@keyframes mymove {
	0%, 100% {
		width: 0;
	}
	50% {
		width: 100%;
	}
}
.story_right_side #heading
{
	font-size: 24px;
	font-weight: 600;
	color: ghostwhite;
	margin-bottom: 10px;
	display: block;
	width: 60%;
}
.story_right_side #we{
	width: 60%;
	font-size: 18px;
	line-height: 30px;
	margin-top: 10px;
	display: block;
	color: ghostwhite;
}
.service_section
{
	background: var(--main-color);
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15%;
}
.service_section_container
{
	width: 100%;
}
.services_container
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
/* 	margin-top: 10%; */
}
.service_section .heading
{
	text-align: center;
	color: ghostwhite;
}
.service_section .heading h1
{
	font-size: 60px;
	color: ghostwhite;
}
.service
{
    background: ghostwhite;
    width: 20%;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 20px 20px #0000008a;
    padding: 25px;
    height: 30rem;
}
.service_image img
{
	width: 30%;
}
.service_heading 
{
	margin-top: 25px;
	color: var(--main-color);
}
.service_detail ul
{
	list-style: none;
	margin-top: 25px;
}
.service_detail ul li
{
	display: block;
	margin-bottom: 15px;
	font-size: 20px;
}
.service_detail p
{
	font-size: 20px;
	margin-top: 25px;
}
.note
{
	text-align: center;
}
.note p
{
	font-size: 20px;
	color: ghostwhite;
}
.contact_section
{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3% 5%;
}
.contact_left_section,.contact_right_section
{
	width: 50%;
}
.contact_right_section
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_form
{
	width: 55%;
	margin: 0px 0px 0px auto;
}
.form_container	
{
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.container {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.text-one a
{
	text-decoration: none;
	color: #afafb6;
}
.container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details {
  margin: 14px;
  text-align: center;
}
.content .left-side .details i {
  font-size: 30px;
  color: #3e2093;
  margin-bottom: 10px;
}
.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.container .content .right-side {
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
}
.right-side .input-box {
  height: 55px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box {
  min-height: 110px;
}
.right-side .input-box textarea {
  padding-top: 6px;
}
.right-side .button {
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="submit"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #3e2093;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="submit"]:hover {
  background: #5029bc;
}
@media (max-width: 950px) {
  .container {
    width: 90%;
    padding: 30px 40px 40px 35px;
  }
  .container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {
  .container {
    margin: 40px 0;
  }
  .container .content {
/*    flex-direction: column-reverse;*/
  }
  .container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .container .content .left-side::before {
/*    display: none;*/
  }
  .container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

/* /// */

/* form
{
	width: 100%;
	padding: 10%;
}
input
{
	width: 100%;
	display: block;
	margin-bottom: 30px;
	padding: 10px 20px;
	height: 3rem;
	border: 1px solid white;
	font-size: 16px;
	background: lightgray;
	color: #4f4f4f;
	outline: none;
	border-radius: 50px;
	font-weight: 500;
}
input::placeholder,textarea::placeholder
{
	color: gray;
	letter-spacing: 2px;
}
textarea
{
	width: 100%;
	display: block;
	margin-bottom: 30px;
	padding: 10px 20px;
	border: 1px solid white;
	font-size: 16px;
	border-radius: 15px;
	background: lightgray;
	color: #4f4f4f;
	font-weight: 500;
	outline: none;
} */
#submit
{
	background: var(--main-color);
	color: ghostwhite;
	cursor: pointer;
	border: none;
	transition: 0.2s all linear;
	box-shadow: none;
}
#submit:hover
{
	box-shadow: 0px 5px 15px var(--main-color);
}
#small
{
	font-size: 18px;
	text-transform: uppercase;
	color: var(--main-color);
	font-weight: 500;
	margin-bottom: 15px;
}
.contact_left_section h1
{
	font-size: 50px;
	margin-bottom: 15px;
}
address
{
	font-size: 20px;
	margin-bottom: 5px;
	font-weight: 500;
}
.contact_left_section a
{
	text-decoration: none;
	color: var(--main-color);
	font-size: 20px;
	font-weight: 500;
}
#number
{
	font-size: 20px;
	font-weight: 500;
	margin-top: 5px;
}
.social
{
	width: 90%;
}
.social ul
{
	list-style: none;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 15px;
}