/*======================
   01. Theme Base CSS
=========================*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans&family=Ubuntu:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans&family=Ubuntu:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans&family=Ubuntu:wght@400;500&display=swap");
html,
body {
  width: 100%;
  height: 100%;
}

section {
  padding: 100px 0;
}

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

.container-fluid {
  padding: 0px;
  height: 100%;
}

.container {
  max-width: 1190px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 24px;
  color: #6b6f7f;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "Ubuntu", sans-serif;
  color: #494848;
  font-weight: 600;
}

a {
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
  margin: 0px;
  text-transform: capitalize;
  font-weight: 500;
}

.my-btn {
  display: flex;
  padding: 12px 25px;
  color: white;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  background-color: #4a7ef6;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.my-btn::after {
  position: absolute;
  content: "";
  height: 55px;
  width: 100px;
  top: 0px;
  left: -100%;
  background: white;
  opacity: 0.2;
  transform: rotate(306deg);
  transition: all 0.3s ease-in-out;
}
.my-btn h3 {
  font-size: 15px;
  color: white;
  margin: 0;
}
.my-btn:hover {
  color: white;
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}
.my-btn:hover::after {
  left: 100%;
  transition: all 0.3s ease-in-out;
}

section {
  position: relative;
  padding: 100px 0;
}

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

li {
  list-style-type: none;
}

.sticky-wrapper.is-sticky .menu {
  box-shadow: 0px 5px 15px 0px rgba(45, 19, 106, 0.2);
  transition: all ease-in-out 0.3s;
}

.menu {
  background: #e7f0fe;
  box-shadow: 0px 0px 0px 0px;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 999;
}
.menu .navbar {
  padding: 10px 0;
}
.menu .navbar .container-fluid .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}
.menu .navbar .container-fluid .navbar-brand {
  width: 180px;
}
.menu .navbar .container-fluid .navbar-brand img {
  width: 100%;
  object-fit: cover;
}
.menu .navbar .container-fluid .navbar-nav .nav-item {
  padding: 0px 15px;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.menu .navbar .container-fluid .navbar-nav .nav-item:hover .nav-link-box {
  transform: translateY(40px);
  visibility: visible;
  width: 230px;
  opacity: 10;
  transition: all ease-in-out 0.3s;
}
.menu .navbar .container-fluid .navbar-nav .nav-item .nav-link {
  color: #012122;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  letter-spacing: 1px;
}
.menu .navbar .container-fluid .navbar-nav .nav-item .nav-link:hover {
  color: #4a7ef6;
  transition: all ease-in-out 0.3s;
}

.header-bg {
  background: url("../images/bg.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: top center;
  padding-bottom: 100px;
  overflow: hidden;
}
.header-bg .titel {
  position: relative;
  margin-top: 150px;
}
.header-bg .titel h1 {
  color: #021738;
  font-size: 50px;
  line-height: 70px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.header-bg .titel h1 span {
  display: block;
}
.header-bg .titel P {
  margin: 20px 0px 30px;
}
.header-bg .titel .titel-btn {
  display: block;
}
.header-bg .titel .titel-btn .my-btn {
  display: inline-flex;
  padding: 15px 30px;
  font-weight: 500;
  font-size: 18px;
  color: white;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #4a7ef6;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.header-bg .titel .titel-btn .my-btn::after {
  position: absolute;
  content: "";
  height: 55px;
  width: 100px;
  top: 0px;
  left: -100%;
  background: white;
  opacity: 0.2;
  transform: rotate(306deg);
  transition: all 0.3s ease-in-out;
}
.header-bg .titel .titel-btn .my-btn span {
  rotate: 45deg;
  margin: 0px 0px;
}
.header-bg .titel .titel-btn .my-btn span h3 {
  margin-left: 10px;
  margin-bottom: 8px;
}
.header-bg .titel .titel-btn .my-btn:hover {
  color: white;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
.header-bg .titel .titel-btn .my-btn:hover::after {
  left: 100%;
  transition: all 0.3s ease-in-out;
}
.header-bg .titel .titel-btn .watch {
  margin-left: 40px;
  display: flex;
  align-items: center;
}
.header-bg .titel .titel-btn .watch a {
  font-size: 1rem;
  font-weight: 500;
  color: #021738;
  height: 45px;
  font-weight: 600;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito Sans", sans-serif;
  position: relative;
  transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header-bg .titel .titel-btn .watch a span {
  margin-right: 10px;
  font-size: 45px;
}
.header-bg .titel .titel-btn .watch a:hover {
  color: #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.header-bg .titel .follow {
  margin-top: 80px;
}
.header-bg .titel .follow p {
  color: #021738;
  font-size: 1.125rem;
  margin-bottom: 25px;
}
.header-bg .titel .follow ul {
  display: flex;
}
.header-bg .titel .follow ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: 0.3px solid #585757;
  border-radius: 50%;
  color: #585757;
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
  transition: all ease-in-out 0.3s;
}
.header-bg .titel .follow ul li a:hover {
  background: #4a7ef6;
  border: 1px solid #4a7ef6;
  color: rgb(255, 255, 255);
  transition: all ease-in-out 0.3s;
}
.header-bg .titel .follow ul li .active {
  background: #4a7ef6;
  color: rgb(255, 255, 255);
  border: 1px solid #4a7ef6;
}
.header-bg .titel-box {
  height: auto;
  width: 800px;
  background: white;
  border-radius: 100px;
  border: 1px dashed #4a7ef6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  rotate: -6deg;
  transform: translateX(50px);
  margin-top: -125px;
}
.header-bg .titel-box .t-box-img {
  height: 100%;
  width: 100%;
}
.header-bg .titel-box .t-box-img img {
  height: 100%;
  width: 100%;
  border-radius: 80px;
}

.patnar {
  background-image: linear-gradient(to top, #f5f8fc, #f5f8fc, #f5f8fc, #fdfdfe, #ffffff);
  padding: 20px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
  overflow: hidden;
}
.patnar .brands {
  background: #121111;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
}
.patnar .brands ul {
  display: flex;
}
.patnar .brands ul li {
  flex: 1;
  text-align: center;
}
.patnar .line {
  position: absolute;
  height: 100px;
  width: 103%;
  background-image: linear-gradient(to right, #4a7ef6, #4a7ef6, #ff89b0, #ffb1e0, #f8d6fa, #f8d6fa, #f8d6fa, #f8d6fa, #ffb1e0, #ff89b0, #4a7ef6, #4a7ef6);
  z-index: -6;
  rotate: 1deg;
}

.about-Company {
  background: #f5f8fc;
}
.about-Company .company-img {
  margin-top: 100px;
  position: relative;
  margin-right: 20px;
}
.about-Company .company-img img {
  border-radius: 10px;
}
.about-Company .company-img .position {
  position: absolute;
  top: -80px;
  left: 40px;
  min-height: 100px;
  width: auto;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: -40px 24px 60px rgba(5, 30, 54, 0.04);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 25px 30px;
}
.about-Company .company-img .position h3 {
  font-size: 30px;
  font-weight: bold;
  color: #4a7ef6;
}
.about-Company .company-img .position p {
  font-size: 20px;
}
.about-Company .company-img .position2 {
  position: absolute;
  bottom: -50px;
  right: 80px;
  min-height: 100px;
  width: auto;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: -40px 24px 60px rgba(5, 30, 54, 0.04);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 25px 30px;
}
.about-Company .company-img .position2 h3 {
  font-size: 30px;
  font-weight: bold;
  color: #4a7ef6;
}
.about-Company .company-img .position2 p {
  font-size: 20px;
}
.about-Company .about-titel {
  margin-top: 100px;
}
.about-Company .about-titel h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 55px;
}
.about-Company .about-titel h2 span {
  display: block;
  color: #4a7ef6;
}
.about-Company .about-titel.abpage h2 span {
  display: inline-block;
}
.about-Company .about-titel p {
  margin: 20px 0;
}
.about-Company .about-titel .my-btn {
  margin-top: 40px;
  height: 48px;
  width: 160px;
}
.about-Company .about-titel .my-btn:hover::after {
  left: 165px;
}

.consultancy {
  background: rgb(255, 255, 255);
  position: relative;
}
.consultancy .con-titel {
  margin-top: 50px;
}
.consultancy .con-titel h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 50px;
}
.consultancy .con-titel h2 span {
  color: #4a7ef6;
}
.consultancy .con-titel .values .box-text {
  margin-left: 0;
}
.consultancy .con-titel .values .value_image {
  width: 50%;
}
.consultancy .con-titel .values .value_image img {
  border-radius: 10px;
}
.consultancy .con-titel .values ul li {
  padding-left: 20px;
  margin-right: 15px;
  padding-bottom: 5px;
  font-size: 20px;
  display: block;
  font-weight: 500;
  color: #6b6f7f;
  position: relative;
  text-transform: capitalize;
}
.consultancy .con-titel .values ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #6b6f7f;
  border-radius: 50px;
  left: 0;
  top: 12px;
}
.consultancy .con-titel .box-1 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  margin: 10px 0;
}
.consultancy .con-titel .box-1 .image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #ffefeb;
}
.consultancy .con-titel .box-1 .box-text {
  margin-left: 30px;
  flex: 1;
}
.consultancy .con-titel .box-1 .box-text h3 {
  font-size: 20px;
  font-weight: bold;
}
.consultancy .con-titel .box-1 .box-text p span {
  display: block;
}
.consultancy .con-img {
  margin-top: 50px;
  position: relative;
}
.consultancy .con-img .position {
  position: absolute;
  top: -80px;
  right: 20px;
  min-height: 100px;
  width: auto;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: -40px 24px 60px rgba(5, 30, 54, 0.04);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 25px 30px;
}
.consultancy .con-img .position h3 {
  font-size: 30px;
  font-weight: bold;
  color: #4a7ef6;
}
.consultancy .con-img .position p {
  font-size: 20px;
}

.service {
  background: #f5f8fc;
}
.service .service-titel {
  text-align: center;
}
.service .service-titel h2 {
  font-size: 40px;
  font-weight: 700;
}
.service .service-titel h2 span {
  color: #4a7ef6;
}
.service a .service-box {
  min-height: 350px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  margin-top: 50px;
  box-shadow: 0 0 0 0;
  padding: 20px;
  transition: all ease-in-out 0.3s;
}
.service a .service-box .imgs {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service a .service-box .imgs .pic {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background: #f5f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service a .service-box .imgs .pic img {
  width: 56px;
}
.service a .service-box .service-text {
  padding: 10px;
  text-align: center;
}
.service a .service-box .service-text h3 {
  font-size: 25px;
  margin-bottom: 15px;
  transition: all ease-in-out 0.3s;
}
.service a .service-box .service-text p {
  font-size: 14px;
}
.service a .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px 0px rgba(45, 19, 106, 0.2);
  transition: all ease-in-out 0.3s;
}
.service a .service-box:hover h3 {
  color: #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.service .appoinment_btn {
  text-align: center;
  margin-top: 50px;
}
.service .appoinment_btn a {
  display: inline-block;
  background: #4a7ef6;
  color: rgb(255, 255, 255);
  padding: 12px 40px;
  border-radius: 5px;
}

.slider-section {
  background: #f5f8fc;
}
.slider-section .slider-titel h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 800;
}
.slider-section .slider-titel h2 span {
  color: #4a7ef6;
}
.slider-section .slider {
  margin-top: 50px;
  padding: 20px 0;
}
.slider-section .slider .slider-item {
  min-height: 300px;
  width: auto;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 50px 40px;
  cursor: -webkit-grab;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider .slider-item p {
  line-height: 26px;
}
.slider-section .slider .slider-item .line {
  height: 2px;
  width: 100%;
  background: #f5f8fc;
  margin: 35px 0;
}
.slider-section .slider .slider-item .smal-box {
  min-height: 60px;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-section .slider .slider-item .smal-box .name-ds {
  height: 55px;
  min-width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-section .slider .slider-item .smal-box .name-ds .s-imgs {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
}
.slider-section .slider .slider-item .smal-box .name-ds .name {
  margin-left: 20px;
  height: 100%;
  min-width: 180px;
  padding: 5px 0;
}
.slider-section .slider .slider-item .smal-box .name-ds .name h4 {
  text-transform: capitalize;
  font-size: 18px;
  margin-bottom: 0;
}
.slider-section .slider .slider-item .smal-box .pointer h3 {
  color: #4a7ef6;
  font-size: 50px;
  opacity: 0.6;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider .slider-item:hover {
  transition: all ease-in-out 0.3s;
}
.slider-section .slider .slider-item:hover .pointer h3 {
  opacity: 10;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-prev {
  position: absolute;
  top: -100px;
  right: 70px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  border: 1px dashed #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-prev span {
  font-size: 30px;
  color: #4a7ef6;
  margin-bottom: 5px;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-prev:hover {
  background: #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-prev:hover span {
  color: rgb(255, 255, 255);
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-next {
  position: absolute;
  top: -100px;
  right: 0px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-next span {
  font-size: 30px;
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-next:hover {
  background: #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.slider-section .slider button.owl-next:hover span {
  color: rgb(255, 255, 255);
  transition: all ease-in-out 0.3s;
}

.frequently {
  background: rgb(255, 255, 255);
}
.frequently .frq-titel {
  text-align: center;
}
.frequently .frq-titel h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.frequently .frq-titel h2 span {
  color: #4a7ef6;
}
.frequently .accordion {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.frequently .accordion h2#flush-headingOne {
  display: flex;
  align-items: center;
}
.frequently .accordion .accordion-body {
  padding: 0px 20px 20px 20px;
}
.frequently .accordion .accordion-body p {
  font-size: 15px;
}
.frequently .accordion .accordion-body p span {
  margin-top: 20px;
  display: block;
}
.frequently .accordion button.accordion-button {
  background: none;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  height: 65px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}
.frequently .accordion button.accordion-button:hover {
  color: #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.frequently .accordion button.accordion-button:not(.collapsed) {
  color: #4a7ef6 !important;
}
.frequently .accordion-button:not(.collapsed)::after {
  background: none;
  height: auto;
  width: auto;
  content: "-";
  color: #4a7ef6;
  transform: rotate(0deg) !important;
}
.frequently .accordion-button::after {
  background: none;
  content: "+";
  font-size: 25px;
  height: auto;
  width: auto;
  color: black;
  transition: all ease-in-out 0.3s;
  transform: rotate(0deg) !important;
}
.frequently .frq-img {
  margin-top: 50px;
}

.subscribe {
  background: #f5f8fc;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.subscribe .sub-img {
  height: 450px;
  overflow: hidden;
}
.subscribe .sub-img img {
  object-fit: cover;
  height: 100%;
  border-radius: 15px;
}
.subscribe .sub-box {
  width: 100%;
  padding: 50px;
  background: rgb(255, 255, 255);
  border: 2px solid #4a7ef6;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.subscribe .sub-box h2 {
  font-size: 40px;
  font-weight: 800;
}
.subscribe .sub-box h2 span {
  color: #4a7ef6;
}
.subscribe .sub-box ul {
  margin-top: 30px;
}
.subscribe .sub-box ul li {
  padding: 10px 0;
}
.subscribe .sub-box ul li a {
  color: #012122;
  font-size: 20px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
}
.subscribe .sub-box ul li i {
  background: #4a7ef6;
  color: #f5f8fc;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  vertical-align: middle;
  border-radius: 50px;
  margin-right: 12px;
}

.footer {
  background: #121111;
  padding-top: 100px;
}
.footer .end-part-one {
  position: relative;
}
.footer .end-part-one p {
  margin: 20px 0;
}
.footer .end-part-one p span {
  display: block;
}
.footer .end-part-one a {
  width: 150px;
  display: inline-block;
}
.footer .end-part-two {
  position: relative;
}
.footer .end-part-two h3 {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer .end-part-two ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.footer .end-part-two ul li::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 10px;
  left: 2px;
  opacity: 0;
  background: #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.footer .end-part-two ul li a {
  color: rgba(255, 255, 255, 0.671);
  transition: all ease-in-out 0.3s;
}
.footer .end-part-two ul li:hover {
  transition: all ease-in-out 0.3s;
}
.footer .end-part-two ul li:hover::before {
  opacity: 10;
  left: 0px;
}
.footer .end-part-two ul li:hover a {
  transform: translateX(13px);
  color: #4a7ef6;
}
.footer .end-box {
  height: 100px;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.footer .end-box .all-right p a {
  color: #4a7ef6;
  font-weight: 600;
}
.footer .end-box .end-social ul {
  display: flex;
}
.footer .end-box .end-social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.1215686275);
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
  transition: all ease-in-out 0.3s;
}
.footer .end-box .end-social ul li a:hover {
  background: #4a7ef6;
  color: rgb(255, 255, 255);
  transition: all ease-in-out 0.3s;
}

.about-us {
  background: #121111;
  position: relative;
}
.about-us .a-us-titel h2 {
  font-size: 40px;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}
.about-us .a-us-titel p {
  font-size: 18px;
  color: #4a7ef6;
}
.about-us .a-us-titel p a {
  color: #4a7ef6;
}
.about-us .a-us-titel p span {
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.video {
  background: rgb(255, 255, 255);
}
.video .video-box {
  height: 400px;
  width: 100%;
  background: url("../images/video-bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
.video .video-box a {
  color: rgb(255, 255, 255);
  font-size: 50px;
  transition: all ease-in-out 0.3s;
}
.video .video-box a:hover {
  color: #4a7ef6;
  transition: all ease-in-out 0.3s;
}

.our-mission {
  background: rgb(255, 255, 255);
}
.our-mission .our-m-titel {
  text-align: center;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  padding: 30px 50px;
  border-radius: 10px;
  margin-top: 20px;
}
.our-mission .our-m-titel h3 {
  color: #4a7ef6;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.our-mission .our-m-titel h5 {
  font-size: 24px;
}
.our-mission .our-m-titel h5 span {
  color: #4a7ef6;
}
.our-mission .our-m-titel p {
  padding: 0px;
}
.our-mission .our_values {
  margin-top: 30px;
}
.our-mission .our_values h3 {
  color: #4a7ef6;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.our-mission .our_values ul li {
  display: inline-block;
  margin-right: 15px;
  color: rgb(255, 255, 255);
  background: #012122;
  padding: 10px 14px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  border-radius: 5px;
}
.our-mission .om-box .om-txt {
  height: 120px;
  width: 100%;
  background-image: linear-gradient(to right, #4a7ef6, #fd4f1a, #ffaed7, #fcf4fd, #ffffff);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
}
.our-mission .om-box h3 {
  color: #021738;
  margin-bottom: 0;
  font-size: 38px;
}
.our-mission .om-box h3 span {
  margin-top: 5px;
  color: #021738;
  display: block;
  font-size: 18px;
  font-weight: 400;
}
.our-mission .mission-img {
  height: 450px;
}
.our-mission .mission-img img {
  height: 100%;
}

.service-us {
  background: #121111;
  position: relative;
  
}
.service-us .s-us-titel h2 {
  font-size: 40px;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}
.service-us .s-us-titel p {
  font-size: 18px;
  color: #4a7ef6;
}
.service-us .s-us-titel p a {
  color: #4a7ef6;
}
.service-us .s-us-titel p span {
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.contact-us {
  background: #121111;
  position: relative;
}
.contact-us .contact-us-titel h2 {
  font-size: 40px;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}
.contact-us .contact-us-titel p {
  font-size: 18px;
  color: #4a7ef6;
}
.contact-us .contact-us-titel p a {
  color: #4a7ef6;
}
.contact-us .contact-us-titel p span {
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.contact {
  overflow: hidden;
  background: rgb(255, 255, 255);
}
.contact .contact-text {
  margin-top: 30px;
  position: relative;
}
.contact .contact-text h2 {
  margin-bottom: 30px;
  font-size: 40px;
}
.contact .contact-text h2 span {
  color: #4a7ef6;
}
.contact .contact-social {
  margin-top: 20px;
  margin-bottom: 40px;
}
.contact .contact-social ul {
  display: inline-flex;
}
.contact .contact-social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: 0.3px solid #585757;
  border-radius: 50%;
  color: #585757;
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
  transition: all ease-in-out 0.3s;
}
.contact .contact-social ul li a:hover {
  background: #4a7ef6;
  border: 1px solid #4a7ef6;
  color: rgb(255, 255, 255);
  transition: all ease-in-out 0.3s;
}
.contact .detals-box {
  min-height: 60px;
  min-width: 100px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.contact .detals-box .round {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background: #ffaed7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .detals-box .round span {
  color: #4a7ef6;
  font-size: 18px;
}
.contact .detals-box p {
  margin-left: 20px;
  flex: 1;
  font-size: 18px;
  color: #03204f;
  line-height: 30px;
  font-weight: 500;
}
.contact .detals-box p span {
  display: block;
}
.contact .hi-bg {
  position: relative;
  z-index: 3;
}
.contact .hi-bg::before {
  position: absolute;
  content: "";
  height: 110%;
  width: 120%;
  top: -20px;
  left: -20px;
  background: linear-gradient(188.07deg, rgba(237, 242, 248, 0) 31.91%, #EDF2F8 98.96%);
  rotate: -5deg;
  border-radius: 75px;
  z-index: -3;
}
.contact .main-contact {
  min-height: 500px;
  width: auto;
  padding: 50px;
}
.contact .main-contact .nm {
  margin-bottom: 25px;
}
.contact .main-contact .nm p {
  font-size: 20px;
  font-weight: 600;
  color: rgba(2, 23, 56, 0.7450980392);
  margin-bottom: 10px;
}
.contact .main-contact .nm input {
  height: 65px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
  outline: none;
  border: none;
  background: #f5f8fc;
  border: 1px solid grey;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
}
.contact .main-contact .nm input:focus {
  border: 1px solid #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.contact .main-contact .nm input::placeholder {
  font-family: "Nunito Sans", sans-serif;
}
.contact .main-contact .nm textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
  outline: none;
  border: none;
  background: #f5f8fc;
  border: 1px solid grey;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
}
.contact .main-contact .nm textarea:focus {
  border: 1px solid #4a7ef6;
  transition: all ease-in-out 0.3s;
}
.contact .main-contact .done button {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-weight: 500;
  outline: none;
  border: none;
  background: #4a7ef6;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.contact .main-contact .done button::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 50px;
  left: -100px;
  background: white;
  opacity: 0.2;
  transform: rotate(27deg);
  transition: all 0.3s ease-in-out;
}
.contact .main-contact .done button::placeholder {
  font-family: "Nunito Sans", sans-serif;
}
.contact .main-contact .done button:hover {
  transform: translateY(-5px);
  transition: all 0.5s ease-in-out;
}
.contact .main-contact .done button:hover::before {
  left: 105%;
  transition: all 0.5s ease-in-out;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgb(255, 255, 255);
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #4a7ef6;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #012122;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #093479;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.scrolltop {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 80px;
  transform: rotate(90deg);
  z-index: 99;
}
.scrolltop p {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #4a7ef6;
}
.scrolltop p i {
  font-size: 18px;
  right: 10px;
  color: #012122;
  position: relative;
  vertical-align: middle;
  animation: scrolltop 1.5s forwards infinite;
}
@keyframes scrolltop {
  0% {
    right: 5px;
    opacity: 1;
  }
  100% {
    right: 20px;
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */