/* CSS Index
-----------------------------------
1. NAV BAR
2. MENU
3. BANNER
4. ABOUT US
5. WHAT WE DO?
6. WHY CHOOSE US
7. TESTIMONIAL
8. CONTACT US
9- FOOTER
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Pacifico&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 24px;
  background: linear-gradient(to right, #061c50, #2f0500);
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a:hover {
  text-decoration: none !important;
  color: #fff !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

img {
  max-width: 100%;
}

.nav {
  padding: 30px 0 0 0;
}

p {
  font-size: 15px;
}

.hide {
	display: none;
}

/*-------------------------------------------------*/
/* NAV
/*-------------------------------------------------*/

.nav {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 18px 0px;

  z-index: 99;
}

.nav.act {
  box-shadow: rgb(0 0 0 / 33%) 0px 0px 20px -10px;
  z-index: 99;
  position: fixed;
  background: #fff;
}
.nav.act a {
  color: #000;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nav.act a:hover {
  color: #4647de !important;
}
.nav.act a:hover::before {
  background: #4647de !important;
}
.logo img {
  max-width: 150px;
  /*filter: invert(1);*/
}

.nav-inner .menu {
  width: 100%;
}

.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
}

.menu li {
  padding: 0px 20px;
  position: relative;
}

.menu a {
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 1;
  text-decoration: unset;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.menu a:hover {
  color: #4647de;
  text-decoration: none;
}

.menu a::before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 3px;
  left: 0;
  right: 0;
  transition: transform 0.3s ease-in-out;
  background: #fff;
  transform: scalex(0);
  transform-origin: right;
}

.menu a:hover::before {
  transform: scalex(1);
  transform-origin: left;
}

.menu ul li:first-child {
  display: none;
}

.menu span {
  display: none;
}

.nav-inner .side-bar-right {
  display: flex;
  justify-content: space-between;
}

.side-bar-right i {
  font-size: 15px;
  color: rgb(102, 102, 102);
  background: #e8e9f1;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.menu-bar {
  display: none;
}

.menu-bar i {
  color: #fff;
  background: #2250fc;
  padding: 5px 7px;
  text-align: center;
  font-size: 18px;
  border-radius: 3px;
  font-weight: 200;
  float: left;
  cursor: pointer;
}

/*-------------------------------------------------*/
/*search top
/*--------------------------------------------------*/
.top-cl-fun {
  z-index: -10;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #333;
  transition: all 0.7s ease;
  box-shadow: 0 1px 6px 0 #0a0a0a29;
  visibility: hidden;
  height: 100vh;
  padding: 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-100%);
}

.top-cl-fun.act {
  z-index: 100;
  visibility: visible;
  transform: translateY(0%);
}

.top-search {
  color: #fff;
  position: relative;
  width: 100%;
}

.top-search .sub-button {
  outline: none;
  background: no-repeat;
  position: absolute;
  bottom: 20px;
  right: 16px;
  text-align: center;
}

.top-search input {
  background: none;
  padding: 0 40px 0 40px;
  border-radius: 0;
  font-size: 14px;
  border: 0;
  font-weight: 300;
  width: 100%;
  height: 65px;
  font-size: 15px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 5px;
}

.top-search input::placeholder {
  color: #fff;
}

.top-cl-fun span {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  background: #fff;
  height: 40px;
  width: 40px;
  border: 1px solid #999;
  text-align: center;
  line-height: 37px;
  border-radius: 50%;
  cursor: pointer;
  color: #3f51b5;
}

.top-search .sub-button .se-icon {
  color: #fff;
  background: none;
  transform: none;
}
/*-------------------------------------------------*/
/* SIDE BAR
/*-------------------------------------------------*/

.side-bar {
  position: fixed;
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 90px 0 rgb(0 0 0 / 10%);
  top: 0;
  transition: all 1s ease;
  right: -500px;
  width: 400px;
  overflow: hidden;
  overflow-y: auto;
  height: 100vh;
  transition: all 0.5s ease;
  z-index: 1000;
}

.side-bar-im {
  width: 100%;
  margin-bottom: 25px;
}

.side-bar-im h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #000;
}

.side-panel-con {
  float: left;
  width: 100%;
}

.side-panel-con h3 {
  margin-bottom: 20px;
  font-size: 21px;
  color: #000;
}

.side-bar-im img {
  width: 150px;
  height: auto;
  display: inline-block;
  margin-bottom: 25px;
}

.side-panel-con a {
  background: none;
  text-decoration: none;
}

.side-bar-im p {
  font-size: 13px;
  line-height: 22px;
  float: left;
  padding-bottom: 30px;
  margin: 0;
  color: #000;
}

.side-panel-con li {
  float: left;
  list-style-type: none;
  display: block;
  padding: 0px 0 15px 0;
  width: 100%;
}

.side-panel-con i {
  color: rgb(240 64 55 / 86%);
  margin-right: 15px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  height: 35px;
  width: 35px;
  background: rgba(240, 64, 55, 0.1);
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
}

.side-bar-im i {
  position: absolute;
  right: 40px;
  top: 40px;
  text-align: center;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  line-height: 30px;
  transition: all 0.6s ease;
  background: red;
}

.side-bar-im i:hover {
  transition: all 0.6s ease;
  background: #055dfd;
  color: #fff;
}

.side-panel-con li:nth-child(4) i,
.contact-info-lhs ul li:nth-child(2) i {
  background: #ece8fd;
  color: #8067f0;
}

.contact-info-lhs ul li:nth-child(1) i {
  background: #f4dfdd;
  color: #ee4a62;
}

.side-bar.act {
  right: 0;
}

.text-changes span {
  color: #000 !important;
}

/*-------------------------------------------------*/
/* banner
/*-------------------------------------------------*/

.banner {
  float: left;
  width: 100%;
  padding: 180px 0 100px 0;
  overflow: hidden;
}

.banner-content {
  float: left;
  width: 100%;
  transition: all 0.5s ease;
  transform: scaleX(-1);
  opacity: 0;
}

.banner-content.a1 {
  transform: scaleX(1);
  opacity: 1;
  transition: all 0.5s ease;
  transition-delay: 0.2s;
}

.banner-content img {
  width: 156px;
  margin-left: 30px;
}

.sub-heading span {
  background: #000;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  color: #fff;
  font-weight: 600;
}

.banner-content h1 {
  font-size: 55px;
  line-height: 72px;
  padding: 30px 0 30px 0;
}

.banner-content p {
  padding-bottom: 39px;
}

.them-btn a {
  background: #2c74fe;
  color: #fff;
  font-weight: 500;
  padding: 23px 52px;
  border-radius: 50px;
  position: relative;
  float: left;
  z-index: 3;
  text-decoration: none;
  overflow: hidden;
}
.them-btn a::before,
.commen-heading a::before {
  position: absolute;
  content: "";
  top: 0;
  transition: transform 0.3s ease-in-out;
  background: #4647de;
  transform: scalex(0);
  left: 0;
  bottom: 0;
  transform-origin: right;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
  border: 2px solid #fff;
}

.them-btn a:hover:before,
.commen-heading a:hover::before {
  transform: scalex(1);
  transform-origin: left;
}

.them-btn {
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
}

.banner-img {
  float: left;
  width: 100%;
  margin-left: 20px;
  transition: all 0.5s ease;
  position: relative;
  transition: all 0.5s ease;
  transform: scaleY(-1);
  opacity: 0;
}

.banner-img.a2 {
  transition: all 0.5s ease;
  transform: scaleY(1);
  transition-delay: 0.6s;
  opacity: 1;
}

.banner::before {
  position: absolute;
  content: "";
}

.banner-img img {
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
}

.banner-content b {
  position: relative;
  color: #2c74fe;
  z-index: 1;
  font-weight: 500;
  display: inline-block;
}

.banner-content b::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: url(../img/shapes/1.png);
  right: 0;
  background-size: cover;
  width: 100%;
  height: 27px;
}

/*-------------------------------------------------*/
/* brands
/*-------------------------------------------------*/
.brand {
  float: left;
  width: 100%;
}

.commen-heading {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.commen-heading h2 {
  line-height: 40px;
}
.commen-heading a {
  position: absolute;
  right: 21px;
  top: 43%;
  border: 1px solid #fff;
  padding: 10px 40px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 15px;
}
.commen-heading a:hover {
  border: 0;
  transition: all 0.5s ease;
}
.brand-inner {
  overflow: hidden;
  float: left;
  width: 100%;
}

.brand-inner li {
  display: inline-block;
}

.brand-inner li .brand-img {
  width: 120px;
}
.brand-inner li .brand-img img {
  filter: invert(1);
}
.brand-inner button {
  display: none !important;
}

/*-------------------------------------------------*/
/* what we offer
/*-------------------------------------------------*/
.offer {
  float: left;
  width: 100%;
  overflow: hidden;
}
.ofer-img {
  position: relative;
  width: 100%;
  margin-left: -50px;
}
.ofer-img img {
  width: 100%;
  transition: all 0.5s ease;
}
.ofer-img img:hover {
  transition: all 0.5s ease;
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff)
    drop-shadow(-3px -3px 0 #fff) drop-shadow(0px 0px 0 #fff)
    drop-shadow(-10px 0px 0 #fff) drop-shadow(-0px -0px 0 #fff);
}
.offer-main {
  float: left;
  width: 50%;
  padding: 10px;
}
.ofer-iner {
  background: #261752;
  border-radius: 15px;
  padding: 20px;
  z-index: 1;
  position: relative;
}
.ofer-iner::before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.3s ease-in-out;
  background: #4647de;
  transform: scaley(0);
  transform-origin: right;
  width: 100%;
  z-index: -1;
  border-radius: 15px;
}
.ofer-iner:hover:before {
  transform: scaley(1);
  transform-origin: left;
}
.ofer-iner:hover {
  transition: all 0.5s ease;
}
.ofer-iner1 {
  background: #2c74fe;
  border: 1px solid #753d42;
}
.ofer-iner i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border-radius: 50px;
}
.ofer-iner h3 {
  font-size: 22px;
  margin: 20px 0;
}

.top-img {
  position: relative;
  width: 100%;
}

/*-------------------------------------------------*/
/* projects
/*-------------------------------------------------*/
.project {
  float: left;
  width: 100%;
}
.project-img {
  float: left;
  width: 100%;
  margin-bottom: 35px;
}
.project-img img {
  border: 1px solid #6e5310;
  transition: all 0.5s ease;
  padding: 10px;
  border-radius: 7px;
  margin-bottom: 17px;
}
.project-img:hover img {
  border-radius: 500px;
}
.project-img h4 {
  font-size: 22px;
  padding-left: 10px;
}
.project-img a {
  padding-left: 10px;
  transition: all 0.5s ease;
}


/*-------------------------------------------------*/
/* pricing plan
/*-------------------------------------------------*/
.pricing-plan{float: left;width: 100%;}

.pricing-plan-iner {
  text-align: center;
  padding: 40px;
  border: 1px solid #fff;
  transition: all 0.5s ease;
}
.pricing-plan-iner.act {
  background: #2c74fe;
}
.pricing-plan-iner.act a {
  background: #000;
  color: #fff;
  border: 0;
}
.pricing-tittle {
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.pricing-amount {
  padding-top: 30px;
}
.pricing-amount span {
  font-size: 15px;
}
.pricing-amount i {
  font-size: 36px;
  font-weight: 600;
}
.pricing-amount a {
  display: block;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #fff;
  margin: 30px 0 30px 0;
  text-decoration: none;
}

.iner-content li {
  padding-bottom: 10px;
}
.iner-content i {
  margin-right: 10px;
}
.iner-content {
  text-align: left;
  padding-left: 9px;
}

/*-------------------------------------------------*/
/*team mates
/*-------------------------------------------------*/
.team-mates{float: left;width: 100%;}

.team-img {
  float: left;
}
.team-img:hover img {
  transition: all 0.5s ease;
  transform: translateY(-10px);
  border-radius: 20px;
}

.team-img img {
  transition: all 0.5s ease;
}

.team-name {
  width: 100%;
  padding: 18px 0 0 0;
  position: relative;
  float: left;
  text-align: center;
}

.team-name h5 {
  margin-bottom: 0;
  font-size: 18px;
}

.team-name span {
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  margin: 0 0 17px 0;
}

.followers {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.followers ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.followers li {
  padding: 0 20px;
  border-right: 1px solid #ddd;
}

.followers i {
  color: #fff;
}

.followers ul li:last-child {
  border-right: 0;
}

/*-------------------------------------------------*/
/* why choose us
/*-------------------------------------------------*/
.why-choose {
	float: left;
	width: 100%;
}



.why-choose-list {
	float: left;
	width: 100%;
}


.why-choose-list li {
	list-style: none;
	margin-bottom: 20px;
}

.list-inner {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: center;
	transform: all 0.5s ease;
}

.list-inner:hover {
	background: #5956e9;
	transform: all 0.5s ease;
}

.list-inner .why-content h5 {
	color: #000;
}

.list-inner:hover .why-content h5 {
	color: #fff;
	transform: all 0.5s ease;
}

.list-inner .why-content p {
	color: #000;
}

.list-inner:hover .why-content p {
	color: #fff;
	transform: all 0.5s ease;
}

.why-icons {
	width: 120px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.why-content {
	padding-left: 30px;
	float: left;
}

.why-content h5 {
	font-size: 20px;
}

.why-choose-list .act {
	background: #5956e9;
}

.why-choose-list .act .why-content h5, .why-choose-list .act .why-content p {
	color: #fff;
}

.services {
	float: left;
	width: 100%;
	padding: 0 0 170px 0;
	position: relative;
}

.services:before {
	position: absolute;
	content: "";
	bottom: 80px;
	left: 120px;
	background: url(../images/icons/10.png);
	background-size: cover;
	width: 100px;
	height: 83px;
	animation: rotate 5.8s infinite linear;
}

.ser-inner {
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding-right: 20px;
	display: flex;
}

.services .ser-inner a {
    
	font-size: 15px;

	color: #3c3ddc;
	text-decoration: underline;
}

.ser-inner h2 {
	display: inline-block;
	margin: 10px 0 10px 0;
	font-size: 38px;
	letter-spacing: -1px;
}

.ser-inner p {
	padding-bottom: 10px;
}

.services-rhs {
	width: 100%;
	position: relative;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-det:before {
	position: absolute;
	content: "";
	right: 0;
	bottom: 0px;
	width: 100%;
	height: 1px;
	background: #e8e9f1cf;
	height: 100%;
	left: 0;
	transform: scalex(-1);
	transform-origin: right;
	transition: all 0.5s ease;
}

.services-det:hover::before {
	transform: scalex(1);
	transform-origin: left;
}

@keyframes rotate {

	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.services-rhs ul {
	margin: 0;
	padding: 0;
}

.services-rhs li {
	width: 50%;
	float: left;
	padding: 20px;
}

.services-det {
   
	position: relative;
	width: 100%;
	border-radius: 15px;
	float: left;
	padding: 30px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #0062cc;
}

.services-det img {
	width: 75px;
	height: 75px;
    /* object-fit: cover; */
	position: relative;
}

.services-det h4 {
	margin: 0;
	display: block;
	padding: 10px 0 10px 0;
	position: relative;
	color: #222;
	font-size: 24px;
	font-weight: 500 !important;
}

.services-det p {
	color: #222;
	font-size: 14px;
	position: relative;
}

/******************** Service 2 *********************************/

.services2 {
	float: left;
	width: 100%;
}

.services2 .commen-heading {
	padding: 0 14%;
}

.services2-inner {
	background: #fff;
	float: left;
	width: 100%;
	position: relative;
	border-radius: 20px;
	padding: 41px;
	margin-bottom: 30px;
}

.services2-inner:hover h3 {
	color: #fff;
	transition: all 0.5s ease;
}

.services2-inner:hover p {
	color: #fff;
	transition: all 0.5s ease;
}

.services2-inner::before {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: #4647de;
	transition: all 0.5s ease;
	content: "";
	border-radius: 20px;
}

.services2-inner:hover::before {
	transition: all 0.5s ease;
	left: auto;
	right: 0;
	width: 100%;
}

.services2 i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
	font-size: 24px;
    justify-content: center;
    background: #eee;
    color: #000;
    border-radius: 5px;
}

.services2-inner img {
	padding: 18px;
	border-radius: 5px;
	position: relative;
}

.services2-inner h3 {
	font-size: 20px;
	margin: 10px 0;
	position: relative;
	color: #000;
}

.services2-inner p {
	position: relative;
	color: #222;
}

.ser-box {
	background: #5956e9;
}

.ser-box h3, .ser-box p {
	color: #fff;
}

.ser-box a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.ser-box i {
	color: #5956e9;
	font-size: 50px;
	background: #fff;
	padding: 10px;
	border-radius: 50px;
	transform: rotate(-45deg);
}


.about-content {
	padding: 10px 30px;
}

.about-content h3 {
	color: #000;
	padding-bottom: 15px;
}

.about-content p {
	color: #222;
	padding-bottom: 15px;
}

.abt-student {
	display: flex;
	margin-top: 25px;
}

.abt-student a {
	color: #2c74fe;
	font-weight: 500;
}

.abt-student h5 {
	color: #000;
}

.abt-student p{
	color: #000;
	padding-bottom: 5px;
}

.contact-det li {
	cursor: pointer;
}

/*-------------------------------------------------*/
/*  contact
/*-------------------------------------------------*/

.contact-us {
  position: relative;

  padding: 120px 0 0 0;
  background: #f5f5f5;
  overflow: hidden;
}

.con-det {
  width: 100%;
  float: left;
  padding-right: 30px;
}

.con-det h2,
.contact-det h3 {
  font-size: 40px;
  letter-spacing: -2px;
  color: #000;
}

.con-det p {
  margin: 20px 0 25px 0;
  color: #000;
}

.contact-form {
  float: left;
  width: 100%;
}
.contact-form .sub {
  background: #2c74fe;
  color: #fff;
  text-transform: uppercase;
}
.contact-form ul {
  padding: 0;
  margin: 0;
}

.contact-form li {
  margin: 0 0 25px 0;
  float: left;
  width: 100%;
}

.contact-form ul li:last-child {
  border: 0;
}

.contact-form input, .contact-form textarea {
  float: left;
  width: 100%;
  border: 1px solid #eee;
  padding: 15px 15px 15px 15px;
  border-radius: 5px;
  background: #e8e9f1;
}

.contact-form .sub-btn {
  text-transform: uppercase;
  padding: 15px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-top: 15px;
  border: 1px solid #eee;
  background: #eeee;
}

.contact-det {
  position: relative;
  width: 100%;
  padding: 100px 0 0 0;
}

.contact-det ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact-us::after {
  position: absolute;
  content: "";
  top: -91px;
  right: 0;
  bottom: 0;
  width: 26%;
  height: 113%;
  background: #f9f9f9;
  z-index: -1;
}

.contact-det li {
  padding: 20px 0 20px 0;
  background: #fff;
  padding: 28px;
  margin: 0 10px;
  width: 350px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  border-top: 3px solid gold;
}

.contact-det a {
  text-decoration: none !important;
}

.contact-det i {
  font-size: 20px;
  width: 60px;
  height: 60px;
  color: rgb(240 64 55 / 86%);
  background: rgba(240, 64, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
  margin-bottom: 24px;
}

.contact-det ul li:nth-child(2) i {
  color: rgb(82 211 253);
  background: rgba(82, 211, 253, 0.1);
}

.contact-det ul li:nth-child(3) i {
  color: rgb(23 194 152);
  background: rgba(23, 194, 152, 0.1);
}

.contact-det span {
  font-size: 16px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #000;
}

.shapes-group {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  overflow: hidden;
  z-index: -1;
}

.shapes-group .sh1 {
  position: absolute;
  bottom: 79px;
  left: 0;
  background: url(../images/background/3.png);
  background-size: cover;
  width: 400px;
  height: 207px;
  z-index: 0;
  opacity: 0.4;
}

.contact-following {
  top: 28%;
  position: absolute;
}

.contact-map {
  position: relative;
  float: left;
  width: 100%;
}

.contact-map::before {
  position: absolute;
  content: "";
  right: -25px;
  top: -25px;
  border-style: solid;
  border-width: 200px 0 0 200px;
  border-color: transparent transparent transparent #c5e7f2;

  transform: scale(-1);
}

.contact-map iframe {
  width: 100%;
  height: 513px;
  position: relative;
  pointer-events: none;
  margin-bottom: -7px;
}

.contact-map iframe.clicked {
  pointer-events: auto;
  z-index: 1;
}

.followingul li: .following ul {
  padding: 0;
  margin: 0;
}

.following li {
  margin: 0 0 10px 6px;
}

.following a {
  background: none;
  color: #000;
}

.following i {
  color: #1559c2;
}

.following ul li:nth-child(2) i {
  color: #1ea9e9;
}

.following ul li:nth-child(3) i {
  color: #e13138;
}

.following ul li:nth-child(4) i {
  color: #fb3958;
}

.following ul li:nth-child(5) i {
  color: #43ce13;
}

.follow-text {
	color: #000;
}

/*-------------------------------------------------*/
/*  FOOTER
/*-------------------------------------------------*/
.footer {
  float: left;
  width: 100%;
  padding: 210px 0 120px 0;
  background: linear-gradient(91deg, #0b1d4c, #1b0500);
  position: relative;
  margin-top: -85px;
}

.footer-1:before {
  position: absolute;
  content: "";
  bottom: -100px;
  width: 103px;
  height: 94px;
  right: 0;
  background: url(../images/icons/rocket.png);
  background-size: cover;
  filter: contrast(0.5);
  animation: animationFramesThree 11s infinite linear alternate;
}

.footer-logo {
  float: left;
  padding-right: 18px;
}

.footer-logo img {
  width: 180px;
  object-fit: cover;
  float: left;
  /* filter: invert(1);*/
}

.footer-logo p {
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  float: left;
  margin: 34px 0 34px 0;
  font-weight: 400;
  color: #fff;
}

.footer-logo .fm {
  float: left;
  width: 100%;
  padding: 0 30px 0 0;
  display: flex;
}

.footer-logo input {
  border: 1px solid #999;
  color: #000;
  padding: 10px 10px 10px 30px;
  border-radius: 5px 0 0 5px;
  float: left;
  font-size: 14px;
  height: 55px;
  width: 100%;
}

.footer-logo .sb-btn {
  outline: none;
  background: #3c3ddc;
  transition: all 0.4s ease;
  height: 55px;
  border-radius: 0 5px 5px 0;
  text-align: center;
  transition: all 0.4s ease;
  width: 26%;
  border: 0;
}

.footer-logo .sb-btn:hover {
  background: #fd7e14;
  transition: all 0.4s ease;
}

.footer-logo i {
  font-size: 16px;
  color: #fff;
  margin-top: 4px;
}

.foo-deati h2 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.foo-deati a {
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 0 0 15px 0;
  position: relative;
  background: none;
  color: #f6f2f2;
  transition: all 0.4s ease;
}

.foo-deati a:hover {
  padding-left: 24px;
  transition: all 0.4s ease;
  padding-left: 12px;
}

.foo-deati a:before {
  position: absolute;
  content: "";
  left: -4px;
  top: 13px;
  transition: all 0.4s ease;
  height: 1px;
  width: 10px;
  background: #a4a5f8;
  opacity: 0;
}

.foo-deati a:hover:before {
  opacity: 1;
  color: #3c3ddc;
  transition: all 0.4s ease;
}
.foo-deati1 a::before {
  position: absolute;
  content: "";
  display: none;
}
.add-deati {
  float: left;
}

.follow-us {
  position: absolute;
  right: 35px;
  bottom: 65px;
  opacity: 0;
}

.follow-us a {
  display: inline-block;
  background: none;
}

/*-------------------------------------------------*/
/*  COPY RIGHT
/*-------------------------------------------------*/

.cpy-right-top {
  width: 100%;
  float: left;
  background: linear-gradient(91deg, #0b1d4c, #1b0500);
}

.cpy-right {
  float: left;
  width: 100%;
  border-top: 1px solid #453668;
  padding: 40px 0 20px 0;
}

.cpy-right h3 {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}

.cpy-right .c-arrow {
  font-size: 16px;
  font-style: normal;
  display: inline-block;
  position: relative;
  top: 1px;
}

.cpy-right a {
  margin: 0 2px;
  text-decoration: none;
  font-size: 13px;
  background: none;
  color: #fff;
  font-weight: 300;
}

.cpy-right ul li:last-child {
  width: 25%;
}

.privacy {
  float: right;
}

.privacy a {
  text-decoration: none;
  font-size: 13px;
  margin-right: 10px;
}

.footer-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
  position: relative;
  top: 4px;
}

.footer-follow li {
  float: left;
  width: auto;
  padding: 0 7px;
}

.footer-follow i {
  float: left;
  font-size: 13px;
  border: 1px solid #b9b9b9;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.footer-follow i:hover {
  background: #3c3ddc;
  transition: all 0.4s ease;
  color: #fff;
  border: 1px solid #3c3ddc;
}

.cpy {
  float: left;
  padding: 0 6px;
}

.side-panel-con li:nth-child(2) i,
.abt-why-booking ul li:nth-child(2) i {
  color: rgb(82 211 253);
  background: rgba(82, 211, 253, 0.1);
}

.side-panel-con li:nth-child(3) i,
.abt-why-booking ul li:nth-child(3) i {
  color: rgb(23 194 152);
  background: rgba(23, 194, 152, 0.1);
}

.side-panel-con span {
  font-size: 14px;
  text-transform: initial;
  padding-top: 4px;
  color: #fff;
}

.side-panel-con i {
  color: rgb(240 64 55 / 86%);
  margin-right: 15px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  height: 35px;
  width: 35px;
  background: rgba(240, 64, 55, 0.1);
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
}
.footer-follow1 {
  display: block;
  float: left;
  padding-left: 0;
}
.footer-follow1 ul {
  margin-top: 7px !important;
}

/*-------------------------------------------------*/
/* testimonial
/*-------------------------------------------------*/

.testimonial {
  float: left;
  position: relative;
  width: 100%;
}

.testimonial1 button {
  display: none !important;
}

.testimonial1 {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  padding-top: 25px;
}

.testimonial1 ul {
  padding: 0;
  margin: 0;
}

.testimonial1 li {
  float: left;
  padding: 0 10px;
}

.testimonial1-main {
  position: relative;
  float: left;
  width: 100%;
}

.testimonial-img p {
  font-size: 17px;
  padding: 30px 0 30px 0;
  line-height: 30px;
  color: #333;
  margin: 0;
}

.testimonial-img {
  float: left;
  width: 100%;
  border: 1px solid #fbf9f9;
  padding: 45px;
  box-shadow: 0px 4px 4px rgb(64 83 177 / 18%);
  background: #fff;
}

.star {
  float: right;
}

.star i {
  color: #ffd807;
  margin: 8px 0 0 0;
  display: inline-block;
  font-size: 20px;
}

.clint-img {
  display: flex;
}

.clint-img img {
  object-fit: contain;
}

.clint-img h4 {
  font-size: 20px;
  margin: 0;
  padding: 9px 0 0 11px;
  display: inline-block;
  color: #000;
}

.clint-img span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
}

/*-------------------------------------------------*/
/* ANIMATION CSS
/*-------------------------------------------------*/

.anim_line {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	opacity: .4;
	}
  
  .anim_line span {
	position: absolute;
	z-index: 99999;
	top: -275px;
	animation: star_down_one 6s infinite linear;
	opacity: 0;
  }
  
  .anim_line.dark_bg {
   max-width: 100%;
  }
  
  .anim_line.dark_bg span {
	transform: rotate(180deg);
  }
  
  .anim_line span:first-child {
	left: -17%;
	animation-delay: 3s;
  }
  
  .anim_line span:nth-child(2) {
	left: 0%;
	animation-delay: 5s;
  }
  
  .anim_line span:nth-child(3) {
	left: 17%;
	animation-delay: 1s;
  }
  
  .anim_line span:nth-child(4) {
	left: 34%;
	animation-delay: 4s;
  }
  
  .anim_line span:nth-child(5) {
	left: 51%;
	animation-delay: 7s;
  }
  
  .anim_line span:nth-child(6) {
	left: 68%;
  }
  
  .anim_line span:nth-child(7) {
	left: 85%;
	animation-delay: 3s;
  }
  
  .anim_line span:nth-child(8) {
	left: 99%;
	animation-delay: 2s;
  }
  
  .anim_line span:nth-child(9) {
	left: 117%;
	animation-delay: 5s;
  }
  
  
  
  @keyframes star_down_one {
	0% {
	  opacity: 0;
	  top: -250px;
	}
  
	10% {
	  opacity: 1;
	}
  
	90% {
	  opacity: 1;
	}
  
	100% {
	  top: 100%;
	  opacity: 0;
	}
  }