@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
  font-family: fon1;
  src: url(../fonts/ZCOOLXiaoWei-Regular.ttf);
}

:root {
  --theme-text-color: #1e1e1e;
  --theme-color: #fea8e9;
  --theme-color-second:#dda23a;
  --theme-bg-color: #000;
  --theme-heading-font: fon1;
  --theme-default-font: "Roboto", sans-serif;
  --bg: #e3e4e8;
  --fg: #17181c;
  --c1: #f42f25;
  --c2: #f49725;
  --c3: #255ff4;
  --c4: #9725f4;
  font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1280 - 320));
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: var(--theme-text-color);
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-weight: var(--theme-default-font);
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all 0.6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--theme-heading-font);
  color: inherit;
}

p {
  margin: 0;
  line-height: 26px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: var(--theme-default-font);
  font-weight: 300;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.row-below {
  margin-top: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

/* ........Scroll top......... */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #fe8a02;
  border-radius: 0px;
  text-align: center;
  border: 2px solid #fe8a02;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  z-index: 111;
  font-size: 35px;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* ........Scroll top......... */

/* ---------Moblie Call Action------------- */
.mobile-fixed-button {
  display: none;
}

/* ---------Moblie Call Action------------- */

/* ..........Button.......... */
.btn1 {
  background: inherit;
  border: 1px solid #dda23a;
  padding: 11px 0px;
  display: inline-block;
  color: #dda23a;
  width: 220px;
  font-weight: 400;
  text-align: center;
  font-family: var(--theme-default-font);
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 0px;
}

.btn1:hover {
  background: #dda23a;
  border: 1px solid #dda23a;
  color: #fff;
}

.heading h2 {
  font-size: 45px;
  font-weight: 600;
  font-family: var(--theme-heading-font);
  margin-bottom: 13px;
}

.heading h3 {
  font-size: 28px;
  font-weight: 400;
  font-family: var(--theme-heading-font);
  margin-bottom: 15px;
}

/* ---------Nav ber------------- */
.small {
  display: none;
}

.main_header {
  background-color: #1e1e1e;
  padding: 15px 0;
}

.main_header .container-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main_header .menu ul {
  margin-bottom: 0;
}

.main_header .menu ul li {
  display: inline-block;
  margin: 0 2px;
}

.main_header .menu ul li a {
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 10px;
  color: #fff;
  font-weight: 400;
  font-family: var(--theme-default-font);
  position: relative;
}
.main_header .menu ul li a::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--theme-color);
  width: 0%;
  height: 2px;
  bottom: 5px;
  transition: all 0.6s;
}
.main_header .menu ul li:hover a::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  bottom: 5px;
}

.main_header .logo img {
  width: 485px;
}

/* banner */
.banner_sec {
  background:  url('../image/banner-bg.jpg') no-repeat center;
  background-size: cover;
  padding: 190px 0;
}

.banner_heading {
  color: #fff;
}

.banner_heading h1 {
  font-size: 85px;
  color: #ffffff;
}

.banner_heading p {
  margin-bottom: 35px;
}

/* about home */
.img_sty {
  position: relative;
}

.img_sty::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border: 1px solid #dda23a;
  margin: 25px;
}

.about_sec .about_img {
  position: relative;
  margin-top: -130px;
}

.about_sec {
  background: url('../image/about-bg2.jpg') no-repeat center;
  background-size: cover;
}

.gaping {
  margin-top: 10px;
}

/* class */
.con_class_a .over_botm {
  padding: 11px 0;
}

.con_class_a .over_botm h4 {
  font-size: 22px;
  margin-bottom: 6px;
}

.con_class_a .over_botm p {
  margin-bottom: 0;
}

.con_class_a .top_img {
  overflow: hidden;
}

.con_class_a .top_img img {
  transition: all 0.6s;
}

.con_class_a .top_img:hover img {
  transform: scale(1.1);
}

.bg_color {
  background-color: #f7f7f7;
}

/* tech_sec */
.tech_sec {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../image/home-bg1.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
}

.sc_skills_info {
  text-align: center;
}

.sc_skills_info .top_con {
  background-color: #ffffff4d;
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.sc_skills_info .top_con::before {
  content: "";
  border: 2px solid #ffffff45;
  width: 115%;
  height: 115%;
  position: absolute;
  border-radius: 50%;
  margin: 14px;
}

.sc_skills_info .bot_con h4 {
  font-size: 30px;
  margin-bottom: 0;
}

.sc_skills_info .bot_con {
  padding: 15px 0;
}

/* homover */
.homover {
  background: url('../image/about-bg2.jpg') no-repeat center;
  background-size: cover;
}

.home_new {
  background: url('../image/home-bg2.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 80px 0 500px;
  position: relative;
}

.home_new::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -500px;
  background: url('../image/about-bg2.jpg') no-repeat center;
  background-size: cover;
  width: 100%;
  height: 500px;
}

/* contact */
.dbox {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.dbox p {
  margin-bottom: 0;
}

.dbox p span {
  font-weight: 500;
  color: #4d4d4d;
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 15px;
}

.dbox p a {
  color: #000000;
}

.dbox .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4a4a4a;
  margin: 0 auto;
  margin-bottom: 20px;
}

.dbox .icon span {
  font-size: 35px;
  color: #fff;
}

.dbox .text {
  width: 100%;
}

.contact-wrap {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 60px 42px !important;
}

.contact-wrap h3 {
  font-size: 52px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enquiry_form input {
  height: 45px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 24px;
  outline: none;
}

.enquiry_form select {
  height: 45px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 24px;
  outline: none;
}

.enquiry_form textarea {
  border-radius: 5px;
  color: #666666;
  padding: 16px;
  width: 100%;
  border: 1px solid #e2e2e2;
}

.enquiry_form button {
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 12px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.enquiry_form button:hover {
  background: initial;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.ftco-section .contact-form input {
  height: 55px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 24px;
  outline: none;
}

.ftco-section .contact-form select {
  height: 55px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 24px;
  outline: none;
}

.ftco-section .contact-form textarea {
  border-radius: 5px;
  color: #666666;
  padding: 16px;
  width: 100%;
  border: 1px solid #e2e2e2;
}

.ftco-section .contact-form button {
  background: #dda23a;
  border: 1px solid #dda23a;
  padding: 14px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 300px;
  transition: all 0.5s ease-in-out;
}

.ftco-section .contact-form button:hover {
  background: initial;
  border: 1px solid #dda23a;
  color: #dda23a;
}

.maps {
  line-height: 0;
}

.maps iframe {
  height: 450px;
}

.home_new .heading p a {
  color: #fff;
}

.margin_tip {
  position: relative;
  margin-top: -550px;
}

/* review */
.review_con {
  background: #fff;
  padding: 25px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.review_con .content h5 {
  font-size: 19px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.review_con .btom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.review_con .btom .cont_right {
  display: flex;
}

.review_con .btom .cont_right h4 {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  margin-right: 10px;
  margin-bottom: 0;
}

.review_slider .item {
  padding: 15px 0;
}

.review_slider .owl-prev span {
  font-size: 28px;
}

.review_slider .owl-next span {
  font-size: 28px;
}

.review_slider .owl-prev {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.review_slider .owl-next {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.review_con .btom .cont_right img {
  width: 35px;
}

.review_con .cont_left img {
  width: 99px;
  margin-bottom: 10px;
}

.review_con .cont_left h4 {
  font-size: 19px;
  font-weight: 300;
  color: #000;
  margin-bottom: 0;
}

.owl-carousel .owl-stage {
  display: flex;
}

.owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}

/* ...........footer............ */
footer {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../image/footer-bg.jpg') no-repeat center;
  background-size: cover;
  padding: 80px 0 40px;
  z-index: 1;
  position: relative;
}

.ft_logo img {
  width: 660px;
  margin-right: -335px;
  margin-bottom: 25px;
}

.ft_bar {
  width: 100%;
  height: 1px;
  background: #ffffff69;
  margin: 40px 0;
}

footer .ft_content .btom h5 a {
  color: #fff;
  font-family: var(--theme-default-font);
}

footer .ft_top {
  text-align: center;
}

footer .ft_content {
  text-align: center;
}

footer .ft_content .top_img img {
  width: 60px;
  margin-bottom: 15px;
}

footer .ft_content .btom h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 6px;
  word-break: break-all;
  font-family: var(--theme-default-font);
}

.ft_border {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.ft_border_right {
  border-right: 1px solid #fff;
}

footer p {
  color: #ffffff;
}

.ft_menu {
  display: inline-block;
  margin-bottom: 0;
}

.ft_menu li {
  display: inline-block;
  padding-right: 15px;
}

.ft_menu li a {
  color: #ffffff;
}

footer .ft_social ul {
  display: flex;
  align-items: center;
  justify-content: right;
}

footer .ft_social ul li a img.twiter-icon {
  width: 25px;
}

footer .ft_social ul li a img {
  width: 100px;
}

footer .ft_social ul li {
  margin-left: 13px;
}

.ft_menu_sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .copy_right ul {
  display: flex;
  align-items: center;
  justify-content: right;
}

footer .copy_right ul li a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: #fff;
  margin-left: 25px;
}

.loader {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.973);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.pl1, .pl2 {
  justify-content: space-around;
}
.pl1__a, .pl1__b, .pl1__c, .pl2__a, .pl2__b, .pl2__c {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  transform-origin: 50% 100%;
}

.pl1__a, .pl1__b, .pl1__c {
  animation: bounce1 1s linear infinite;
}

.pl2__a, .pl2__b, .pl2__c {
  animation: bounce2 2s linear infinite;
}

.pl3, .pl4 {
  justify-content: space-between;
}
.pl3__a, .pl3__b, .pl3__c, .pl3__d, .pl4__a, .pl4__b, .pl4__c, .pl4__d {
  width: 0.75em;
  height: 0.75em;
}

.pl3__a, .pl3__b, .pl3__c, .pl3__d {
  animation: bounce3 2s ease-in-out infinite;
  transform-origin: 50% 0;
}

.pl4 {
  align-items: flex-end;
}
.pl4__a, .pl4__b, .pl4__c, .pl4__d {
  animation: bounce4 2s linear infinite;
  transform-origin: 50% 100%;
}

.pl1, .pl2, .pl3, .pl4 {
  display: flex;
  margin: 1.5em;
  width: 6em;
  height: 6em;
}
.pl1__a, .pl2__a, .pl3__a, .pl4__a {
  background: var(--c1);
}
.pl1__b, .pl2__b, .pl3__b, .pl4__b {
  background: var(--c2);
  animation-delay: 0.1s;
}
.pl1__c, .pl2__c, .pl3__c, .pl4__c {
  background: var(--c3);
  animation-delay: 0.2s;
}

.pl3__d, .pl4__d {
  background: var(--c4);
  animation-delay: 0.3s;
}

/* Animations */
@keyframes bounce1 {
  from, to {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }
  45% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: linear;
  }
  50% {
    transform: translateY(5em) scale(1.5, 0.5);
    animation-timing-function: linear;
  }
  55% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce2 {
  from, to {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }
  9%, 29%, 49%, 69% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: linear;
  }
  10% {
    transform: translateY(5em) scale(1.5, 0.5);
    animation-timing-function: linear;
  }
  11%, 31%, 51%, 71%, 91% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: ease-out;
  }
  20% {
    transform: translateY(2.5em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  30% {
    transform: translateY(5em) scale(1.25, 0.75);
    animation-timing-function: linear;
  }
  40% {
    transform: translateY(3.75em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateY(5em) scale(1.125, 0.875);
    animation-timing-function: linear;
  }
  60% {
    transform: translateY(4.375em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  70% {
    transform: translateY(5em) scale(1.0625, 0.9375);
    animation-timing-function: linear;
  }
  85% {
    transform: translateY(5em) scale(1, 1);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(5em) scale(1.875, 0.125);
    animation-timing-function: ease-in-out;
  }
}
@keyframes bounce3 {
  from, 5%, 95%, to {
    transform: translateY(0) scaleY(1);
  }
  16.7% {
    transform: translateY(0) scaleY(8);
  }
  28.3%, 38.3% {
    transform: translateY(5.25em) scaleY(1);
  }
  50% {
    transform: translateY(2.625em) scaleY(4.5);
  }
  61.7%, 71.7% {
    transform: translateY(2.625em) scaleY(1);
  }
  83.3% {
    transform: translateY(0) scaleY(4.5);
  }
}
@keyframes bounce4 {
  from, 20%, 40%, 60%, 80%, to {
    transform: scaleY(1);
    animation-timing-function: ease-out;
  }
  10% {
    transform: scaleY(8);
    animation-timing-function: ease-in;
  }
  30% {
    transform: scaleY(4);
    animation-timing-function: ease-in;
  }
  50% {
    transform: scaleY(2);
    animation-timing-function: ease-in;
  }
  70% {
    transform: scaleY(1.5);
    animation-timing-function: ease-in;
  }
}


.faq-sec .get-in-touch-form {
	background-color: #333333b5;
	padding: 30px 20px;
	border-radius: 15px;
}
.get-in-touch-form .heading h4{
  color: #fff;
  font-size: 35px;
  font-weight: 300;
}
.get-in-touch-form .heading p{
  color: #fff;
}
.get-in-touch-form .sub-btn {
	padding: 13px 65px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #fff;
	border: none;
	background: #009c9d;
	width: 100%;
}
.get-in-touch-form .sub-btn:hover{
    	background-color: #333333;
}

.contact-section .contact-number li p {
	margin-bottom: 3px;
	font-weight: 600;
	color: var(--theme-color);
	font-size: 20px;
	text-transform: capitalize;
}
.contact-section .contact-number i {
  background-color: var(--theme-bg-color);
	min-width: 50px;
	height: 50px;
	padding: 0;
	border-radius: 50px;
	font-size: 26px;
	text-align: center;
	line-height: 50px;
}
.contact-section .contact-number i {
	color: #fff;
	background-color: var(--theme-color-second);
	min-width: 50px;
	height: 50px;
	padding: 0;
	border-radius: 50px;
	font-size: 26px;
	text-align: center;
	line-height: 50px;
}
.contact-section .contact-number li {
	display: flex;
	gap: 18px;
	margin-bottom: 30px;
}
.contact-section .contact-number li a {
	color: #000000;
}
.faq-sec {
  background: url('../image/bg-2.jpg') no-repeat bottom;
  background-size: cover;
}
#form-contact input {
	width: 100%;
	padding: 12px;
}
#form-contact textarea {
	width: 100%;
	padding: 12px;
}
  /* inner page */
  
  .breadcrumb-area {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0.65))), url(../images/breadcrumb-bg.png);
    background: linear-gradient(rgba(0, 0, 0, 0.65) 100%, rgba(0, 0, 0, 0.65) 100%), url(../images/breadcrumb-bg.png);
    background-size: cover;
    min-height: 455px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  
  .breadcrumb-area .breadcrumb-wrap h1 {
    font-weight: 700;
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 25px;
    color: #fff
  }
  
  .breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
  }
  
  .breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links li {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500
  }
  
  .breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links li a {
    color: #fff
  }
  
  .breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links li i {
    vertical-align: middle;
    font-size: 22px
  }
  
  .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  
  .pagination a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #262339;
    margin: 0 6px;
    text-align: center;
    line-height: 36px;
    font-weight: 500;
    font-size: 20px;
    color: #262339;
    -webkit-transition: all .2s;
    transition: all .2s
  }
  
  .pagination a.active {
    color: #fff;
    background: #056406;
    border: 1px solid #056406
  }
  
  .pagination a:hover {
    color: #fff;
    background: #056406;
    border: 1px solid #056406
  }
  
  .pagination a i {
    font-size: 28px;
    line-height: 38px
  }
  
  .breadcrumb-links {
    gap: 12px;
    display: flex;
    align-items: center;
  }
  .breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links li i {
    vertical-align: center;
    font-size: 17px;
    margin-left: 5px;
  }
  #contact_bg{
    background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('../image/contact-banner.jpg') no-repeat center;
    background-size: cover;
  }
  #faq_bg{
    background:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../image/faq-banner.jpg') no-repeat center;
    background-size: cover;
  }
    #about_bg{
    background: url('../image/about-banner.jpg') no-repeat center;
    background-size: cover;
  }
  #bandcoaching_bg{
    background:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../image/BandCoaching-banner.jpg') no-repeat center;
    background-size: cover;
  }
  #music_bg{
          background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('../image/music-banner.jpg') no-repeat center;
    background-size: cover;
  }
  #ukelele_website_bg{
            background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('../image/ukelele-website-banner.jpg') no-repeat center;
    background-size: cover;
  }

#contactForm input {
	width: 100%;
	border: 1px solid #fff;
	padding: 12px;
	background: #ffffff0d;
	color: #fff;
}
#contactForm textarea {
	width: 100%;
	border: 1px solid #fff;
	padding: 12px;
	background: #ffffff0d;
	color: #fff;
}
.faq-sec .get-in-touch-form {
	background-color: #00000096;
	padding: 30px 20px;
	border-radius: 15px;
	margin-right: 60px;
	margin-left: -50px;
}
  .music_sec {
    background: url('../image/about-bg2.jpg') no-repeat center;
    background-size: cover;
  }
  
  #home_contact #contactForm input {
	width: 100%;
border: 1px solid #dfdfdf;
	padding: 12px;
	background: #fff;
	color: #000;
}
  #home_contact #contactForm textarea {
	width: 100%;
border: 1px solid #dfdfdf;
	padding: 12px;
	background: #fff;
	color: #000;
}
#contactForm input::placeholder{
  color: #fff;
}
#contactForm textarea::placeholder{
  color: #fff;
}
  #home_contact input::placeholder{
  color: #000;
}
  #home_contact textarea::placeholder{
  color: #000;
}
.flag-class{
    text-align:center;
}
.flag-icon{
    cursor:pointer;
}