@charset "utf-8";

/*-----------------------------------
#   Fonts 
------------------------------------*/
@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Bold.eot');
  src: url('../fonts/Ubuntu-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Ubuntu-Bold.woff2') format('woff2'),
      url('../fonts/Ubuntu-Bold.woff') format('woff'),
      url('../fonts/Ubuntu-Bold.ttf') format('truetype'),
      url('../fonts/Ubuntu-Bold.svg#Ubuntu-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Medium.eot');
  src: url('../fonts/Ubuntu-Medium.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Ubuntu-Medium.woff2') format('woff2'),
      url('../fonts/Ubuntu-Medium.woff') format('woff'),
      url('../fonts/Ubuntu-Medium.ttf') format('truetype'),
      url('../fonts/Ubuntu-Medium.svg#Ubuntu-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Light.eot');
  src: url('../fonts/Ubuntu-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Ubuntu-Light.woff2') format('woff2'),
      url('../fonts/Ubuntu-Light.woff') format('woff'),
      url('../fonts/Ubuntu-Light.ttf') format('truetype'),
      url('../fonts/Ubuntu-Light.svg#Ubuntu-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Regular.eot');
  src: url('../fonts/Ubuntu-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Ubuntu-Regular.woff2') format('woff2'),
      url('../fonts/Ubuntu-Regular.woff') format('woff'),
      url('../fonts/Ubuntu-Regular.ttf') format('truetype'),
      url('../fonts/Ubuntu-Regular.svg#Ubuntu-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*-----------------------------------
#   Common Css 
------------------------------------*/

body {
  height: 100%;
  font-size: 14px;
  font-family: 'Ubuntu';
  line-height: 1;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #222;
  background-color: #FFF;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  outline: none !important;
  color: inherit;
  transition: 0.3s ease;
}

@media(hover: hover){
  a:hover{
      color: inherit;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin: 0;
}

/*---------------------------
# Selection
----------------------------*/
::selection {
  background: #8C4299;
  color: #ffffff;
}
::-webkit-selection {
  background: #8C4299;
  color: #ffffff;
}
::-moz-selection {
  background: #8C4299;
  color: #ffffff;
}
::-o-selection {
  background: #8C4299;
  color: #ffffff;
}
::-ms-selection {
  background: #8C4299;
  color: #ffffff;
}

/*---------------------------
# PlaceHolder
----------------------------*/

::-webkit-input-placeholder {
    color: #817284 !important;
    opacity: 1;
}
::-moz-placeholder {
    color: #817284 !important;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #817284 !important;
    opacity: 1;
}
:-moz-placeholder {
    color: #817284 !important;
    opacity: 1;
}

/*---------------------------
# Button CSS
----------------------------*/
.button {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-family: 'Ubuntu';
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #522659;
  border: 1px solid transparent;
  padding: 12px 25px;
  outline: none;
  border-radius: 4px;
  transition: all 500ms ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/*---------------------------
# Button Size
----------------------------*/
.button-sm {
  font-size: 16px;
  padding: 3px 15px;
}

.button-lg {
  font-size: 20px;
  padding: 9px 15px;
}

/*---------------------------
# Button Varients
----------------------------*/

.button-red {
  background-color: #BD3120;
  color: #fff;
  border-color: #BD3120;
}

/*---------------------------
# Button Hover CSS
----------------------------*/

@media(hover: hover) {
  .button.button-red:hover {
      background-color: #172127;
      color: #FFF;
      border-color: #172127;
  }
}

/*---------------------------
# Form CSS
----------------------------*/

.form-group {
  margin-bottom: 25px;
}

.form-control {
  font-size: 16px;
  font-family: 'Ubuntu';
  line-height: 20px;
  padding: 14px 16px;
  height: 48px;
  border-radius: 4px;
  border-color: #ECECEC;
  color: #100F0F;
  background-color: #FFF;
}

.form-control:focus {
  color: #100F0F;
  background-color: #fff;
  border-color: #8c4299;
  outline: 0;
  box-shadow: none;
}

.custom-select {
  background: #FFF url("../assets/images/icons/dropdown.svg") right .75rem center/8px 10px no-repeat;
  background-size: 14px;
  padding: 14px 16px;
  height: 48px;
  line-height: 0;
  font-size: 16px;
  font-family: 'Ubuntu';
  border-radius: 4px;
  border-color: #ECECEC;
  color: #100F0F;
  background-color: #FFF;
}

.custom-select:focus {
  color: #100F0F;
  background-color: #fff;
  border-color: #BD3120;
  outline: 0;
  box-shadow: none;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

/*---------------------------
# Radio Button CSS
----------------------------*/

.theme-radio [type="radio"]:checked,
.theme-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.theme-radio [type="radio"]:checked+label,
.theme-radio [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

.theme-radio [type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #8C4299;
  border-radius: 100%;
  background: #fff;
}

.theme-radio [type="radio"]:checked+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #BD3120;
  border-radius: 100%;
  background: #fff;
}

.theme-radio [type="radio"]:checked+label:after,
.theme-radio [type="radio"]:not(:checked)+label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #BD3120;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.theme-radio [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.theme-radio [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*---------------------------
#   Checkbox CSS
----------------------------*/

.theme-checkbox {
  position: relative;
}

.theme-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.theme-checkbox input[type="checkbox"]~.label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 2px;
}

.theme-checkbox input[type="checkbox"]~.label::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid #bd3120;
  border-width: 0 2.5px 2.5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 7px;
  top: 5px;
  display: none;
}

.theme-checkbox input[type="checkbox"]:checked~.label::after {
  display: inline-block;
}


/*---------------------------
# Intl Input CSS
----------------------------*/

.iti {
  width: 100%;
}

/*----------------------------------
# Validate Form Validation  CSS
-----------------------------------*/

span.is-invalid {
  display: block;
  width: 100%;
  margin-top: .25rem;
  font-size: 1em;
  color: #dc3545;
}

.form-control.is-invalid,
.form-control.is-valid {
  background-image: none !important;
}


/*-----------------------------------
# Header Css Start
-----------------------------------*/

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: transparent;
  padding: 10px 0;
}
.header .container {
  display: flex;
  align-items: center;
}
.header .top-logo {
  margin-right: auto;
}
.header .top-logo a img {
  width: 220px;
}
.header .main-navigation ul {
  display: inline-flex;
  vertical-align: middle;
}
.header .main-navigation ul li {
  padding-right: 35px;
}
.header .main-navigation ul li a {
  display: block;
  color: #fff;
  font-size: 16px;
  transition: all ease 0.4s;
  font-weight: 400;
  position: relative;
}

.header .main-navigation .close-btn {
  display: none;
  line-height: 32px;
}
.header .main-navigation .close-btn img {
  width: 20px;
}
.header-right .user-control .dropdown {
  border: 1px solid #ddd;
  padding: 2px 5px;
  border-radius: 4px;
}
.header-right .btn.dropdown-toggle {
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}
.header-right .dropdown-menu.show {
  transform: translate(-1px, 31px) !important;
}
.header-right .dropdown-menu {
  background-color: #fff;
  padding: 0;
  min-width: 96px;
}
.header-right .dropdown-menu li {
  padding: 6px 10px;
  border-bottom: 1px solid #ddd;
}
.header-right .dropdown-menu li:last-child {
  border-bottom: none;
}
.header-right .dropdown-menu li a{
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.header-right .bars-icons {
  display: none;
}
.header-right .navbar-toggler {
  padding: 0 !important;
  box-shadow: none;
  margin-left: 15px;
}
.header-right .navbar-toggler img {
  width: 24px;
  margin-top: -6px;
}
.header-right .user-control {
  display: inline-flex;
  align-items: center;
  margin: 0 -10px;
}
.header-right {
  margin-right: 10px;
}
.header::after {
  content: "";
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  transition: all 0.5s ease-in-out;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
}
body.mobile-navbar-open .header::after {
  display: block;
}
.header.header-varient-dark.sticky-header {
  background-color: #000;
}


/*-----------------------------
#  Banner Start Css
-----------------------------*/
.banner {
  background-image: url(../assets/images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 180px 0 83px;
}
.banner .banner-info h1 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.banner .banner-info p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 36px;
  padding-bottom: 25px;
  max-width: 521px;
}
.banner .banner-info .img-block a {
  margin-right: 15px;
}
.banner .img-product {
  text-align: right;
}


/*---------------------------
  # About Start Css
----------------------------*/
.about {
  padding: 112px 0;
  background: linear-gradient(94.25deg, #FEF8FF 0.77%, #FFFFFF 18.85%, rgba(250, 229, 254, 0.75) 79.03%);
}
.about .about-info h2 {
  color: #8C4299;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.about .about-info p {
  color: #341F38;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 15px;
}


/*----------------------------
# Vision-Mission Start Css
-----------------------------*/
.vision {
  background-image: url(../assets/images/vision-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 100px 0;
}
.vision .vision-info {
  background-color: #fff;
  border: 2px solid #E1B8E9;
  padding: 50px 30px 40px;
  height: 100%;
}
.vision .vision-info .img-block {
  text-align: center;
  margin-bottom: 60px;
}
.vision .vision-info h3 {
  color: #8C4299;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.vision .vision-info p {
  color: #341F38;
  font-size: 16px;
  font-weight: 400;
}
.vision .vision-info p span {
  text-transform: uppercase;
  color: #8C4299;
}


/*--------------------------
# Goal Valus Start Css
----------------------------*/

.goal-value {
  padding: 100px 0;
}
.goal-value .goal-info h2 {
  font-size: 30px;
  color: #8C4299;
  font-weight: bold;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.goal-value .goal-info p {
  font-size: 16px;
  color: rgba(52, 31, 56, 1);
  font-weight: 400;
  max-width: 415px;
}
.goal-value .goal-info ul {
  margin-left: 15px;
}
.goal-value .goal-info ul li {
  color: rgba(52, 31, 56, 1);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 20px;
  list-style: disc;
}


/*-------------------------
  # Our Companies Start Css
---------------------------*/

.our-companies {
  background: linear-gradient(93.94deg, rgba(243, 212, 249, 0.76) -3.53%, #FEF8FF 8.3%, #FEF9FF 93.37%, #FADEFF 115.91%);
  padding: 50px 0 30px;
}
.our-companies .our-info h2 {
  color: #8C4299;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 50px;
  text-transform: uppercase;
}
.our-companies .our-info ul {
  padding-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
.our-companies .our-info ul li {
  display: inline-block;
  width: 20%;
  z-index: 1;
  position: relative;
}
.our-companies .our-info ul li:nth-child(2n) {
  padding-top: 100px;
}
.our-companies .our-info .img-block, .img-block2 {
  margin-bottom: 30px;
}
.our-companies .our-info .img-block img {
  position: absolute;
  transform: rotate(21deg);
  bottom: 58%;
  right: -66px;
  z-index: -1;
}
.our-companies .our-info .img-block2 img {
  position: absolute;
  transform: rotate(-26deg);
  bottom: 55%;
  right: -53px;
  z-index: -1;
}
.our-companies .our-info ul li p {
  color: #341F38;
  font-size: 16px;
  font-weight: 400;
  width: 200px;
  line-height: 24px;
}
.our-boxs .col-lg-4 {
  margin-bottom: 25px;
}
.our-boxs .our-contant {
  background: #FFFFFF;
  box-shadow: 0px 0px 6px rgba(132, 132, 132, 0.25);
  padding: 20px;
  height: 100%;
}
.our-boxs .our-contant h4 {
  color: #8C4299;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
}
.our-boxs .our-contant p {
  color: #817284;
  font-size: 16px;  
  font-weight: 400;
}



/*---------------------------
  # Our Partners Start Css
---------------------------*/

.our-partners {
  background-image: url(../assets/images/our-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 50px 0 20px;
}
.our-partners .section-title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding-bottom: 35px;
}
.our-partners .img-block {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  height: 200px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}



/*--------------------------
  # Our Projects Statr Css
----------------------------*/

.our-products {
  padding: 80px 0 0px;
}
.our-products .section-title h2 {
  font-size: 30px;
  color: #8C4299;
  font-weight: bold;
  padding-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
}
.our-products .img-block {
  background-color: #fff;
  border-radius: 60px 0 60px;
  text-align: center; 
  object-fit: cover;
  border: 1px solid #EAEAEA;
  margin: 0 auto 25px;
}
.our-products .img-block img {
  border-radius: 60px 0 60px;
  width: 100%;
}


/*-------------------------
# Contact Us Start Css
----------------------------*/

.contact {
  padding: 70px 0 80px;
}
.contact .contact-info h2 {
  color: #8C4299;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.contact .contact-info p {
  font-size: 18px;
  color: #341F38;
  line-height: 26px;
  padding-bottom: 15px;
}
.contact .contact-info ul li {
  font-size: 18px;
  color: #817284;
  font-weight: 300;
  line-height: 26px;
  padding-bottom: 30px;
}
.contact .contact-info ul li a {
  display: flex;
  justify-content: left;
  align-items: baseline;
  position: relative;
  padding-left: 35px;
}
.contact .contact-info ul li a img {
  position: absolute;
  top: 6px;
  left: 0;
}
.contact .contact-form {
  background: linear-gradient(179.96deg, #C188CC 0.04%, #D39FDD 101.81%, #894096 101.82%);
  padding: 25px;
}
.contact .contact-form h2 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 30px;
}
.contact .contact-form .btn-block {
  text-align: right;
}


/*--------------------------
  # Footer Start Csss
---------------------------*/

.footer {
  background-image: url(../assets/images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 60px;
}
.footer h2 {
  color: #8C4299;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.footer p {
  color: #2E384C;
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 25px;
}
.footer .img-block a img {
  margin-right: 15px;
}
.footer .mobile-img {
  text-align: right;
}


/*--------------------------
  # Copyright Css
----------------------------*/
.copyright {
  background-color: #F8DBFE;
  padding: 15px 0;
}
.copyright p {
  color: #2E384C;
  font-size: 14px;
  font-weight: 300;
}
.copyright ul {
  text-align: right;
}
.copyright ul li {
  display: inline-block;
  margin-left: 10px;
}
.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* RTL Css */

html[dir="rtl"] .header .top-logo {
  margin-left: auto;
  margin-right: 0;
}
html[dir="rtl"] .header .main-navigation ul li {
  padding-right: 0;
  padding-left: 55px;
}
html[dir="rtl"] .header .main-navigation ul li a {
  font-size: 16px;
}
html[dir="rtl"] .contact .contact-info ul li a {
  display: flex;
  justify-content: right;
  align-items: baseline;
  position: relative;
  padding-right: 35px;
}
html[dir="rtl"] .contact .contact-info ul li a img {
  position: absolute;
  top: 6px;
  right: 0;
}
html[dir="rtl"] .footer .mobile-img {
  text-align: left;
}
html[dir="rtl"]  .our-companies .our-info .img-block2 img {
  position: absolute;
  transform: rotate(-36deg);
  bottom: 43%;
  right: -139px;
  z-index: -1;
}
html[dir="rtl"] .our-companies .our-info .img-block img {
  position: absolute;
  transform: rotate(21deg);
  bottom: 57%;
  right: 379px;
  z-index: -1;
}
html[dir="rtl"] .dropdown-toggle::after {
  margin-right: 0.256em;
}
#contact_us_form div .error{
  color: #FF0000 !important;
}

html[dir="rtl"] .banner .img-product {
  text-align: left;
}
html[dir="rtl"] .goal-value .goal-info ul {
  margin-right: 15px;
}
html[dir="rtl"] .header-right {
  margin-left: 10px;
}

		
/* Privacy policy */	
.our-info h2 {	
  padding-bottom: 20px;	
  font-size: 32px;	
  font-weight: 500;	
  color: #8C4299;	
}	
.our-info h4 {	
  font-size: 20px;	
  font-weight: 500;	
  color: #000;	
  margin-bottom: 10px;	
}	
.our-info h5 {	
  font-size: 20px;	
  font-weight: 500;	
  color: #000;	
  padding-bottom: 15px;	
}	
.our-info p {	
  color: #341F38;	
  font-size: 18px;	
  font-weight: 300;	
  line-height: 30px;	
  margin-bottom: 15px;	
}	
.our-info ul {	
  margin-left: 35px;	
}	
.our-info ul li {	
  list-style: disc;	
  margin-bottom: 15px;	
  color: #341F38;	
  font-size: 18px;	
  line-height: 30px;	
}	
.our-info strong {	
  font-size: 20px;	
  font-weight: 500;	
  color: #000;	
}	
#privacypolicys {	
  padding: 80px 0;	
}