/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

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

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
  color: #3cf;
}

a:hover {
  color: #fc3;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
span {
  margin-top: 0px;
  margin-bottom: 0px;
  color: rgb(89, 69, 31);
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 25px;
  color: rgb(89, 69, 31) !important;
}

img {
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

::selection {
  background: #f5a425;
  color: #fff;
}

::-moz-selection {
  background: #f5a425;
  color: #fff;
}

@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-button-red a,
.btn-one {
  font-size: 13px;
  color: #fff;
  background-color: #f5a425;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
}

.main-button-red a:hover {
  opacity: 0.9;
}

.main-button-yellow a {
  font-size: 13px;
  color: #fff;
  background-color: #f5a425;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
}

.main-button-yellow a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  /* line-height: 40px; */
  margin-top: 0px;
  /* margin-bottom: 50px; */
  /* padding-bottom: 20px; */
  border-bottom: 1px solid rgba(250, 250, 250, 0.15);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* =====================================
Page Loader css starts 
======================================== */
/* Styles for Loader */
/* 20. preloader */
.preloader {
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  margin: 0 auto;
}

.preloader .preloader-circle {
  width: 150px;
  height: 150px;
  position: relative;
  border-style: solid;
  border-width: 1px;
  /* border-top-color:$theme-color; */
  border-top-color: var(--maincolor);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: #fff;
  -webkit-animation: zoom 2000ms infinite ease;
  animation: zoom 2000ms infinite ease;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.preloader .preloader-circle2 {
  border-top-color: #f5a425;
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.preloader .preloader-img img {
  max-width: 95%;
}

.preloader .pere-text strong {
  font-weight: 800;
  color: #f5a425;
  text-transform: uppercase;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
}

/* =====================================
Page Loader css starts 
======================================== */
/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.left-content span,
.left-content a {
  color: #fff;
}

.left-content {
  display: flex;
  align-items: center;
  padding-top: 8px;
}

.left-content span {
  margin-right: 35px;
}
.sub-header {
  background-color: #59451f;
  position: relative;
  z-index: 1111;
}

.sub-header .left-content p {
  color: #fff;
  padding: 8px 0px;
  font-size: 13px;
}

.sub-header .right-icons {
  text-align: right;
  padding: 8px 0px;
}

.sub-header .right-icons ul li {
  display: inline-block;
  margin-left: 15px;
}

.sub-header .right-icons ul li a {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}

.sub-header .right-icons ul li a:hover {
  color: #f5a425;
}

.sub-header .left-content p em {
  font-style: normal;
  color: #f5a425;
}

.background-header {
  background-color: #fff !important;
  position: fixed !important;
  top: 0px !important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .main-nav .nav li a {
  color: rgb(89, 69, 31) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: rgb(89, 69, 31) !important;
}

.background-header .main-nav .nav li:hover a {
  color: #fb5849 !important;
}

.background-header .nav li a.active {
  color: #fb5849 !important;
}

.header-area {
  background-color: rgba(250, 250, 250, 0.15);
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 75px;
}

.background-header .nav {
  /* margin-top: 20px !important; */
}

.header-area .main-nav .nav {
  float: right;
  /* margin-top: 30px; */
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
  /* padding-left: 2rem; */
}

.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #f5a425 !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #f5a425 !important;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 12px;
}

.background-header .main-nav .nav li.has-sub:after {
  color: #1e1e1e;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: #f5a425 !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
  background: transparent;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
  background: transparent;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  /* min-height: 80px; */
}

.header-area.header-sticky .nav li a.active {
  color: #f5a425;
}
nav.main-nav .logo img {
  object-fit: contain;
  display: block;
  width: auto;
  height: 80px;
  /* padding: 1rem 0; */
}
@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #f5a425 !important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
    width: 100%;
    position: fixed;
    top: 40px;
    left: 0;
    bottom: 0;
    background: rgb(247 247 247);
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
    text-align: left;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
    padding-left: 12px !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #f5a425 !important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3b566e;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
  .header-area.header-sticky.background-header .nav{
    top: 0;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  /* background-color: rgb(31 39 43 / 30%); */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.main-banner .caption p {
  color: #fff;
  font-size: 14px;
  max-width: 570px;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }
}

/*
---------------------------------------------
services
---------------------------------------------
*/

.services {
  margin-top: -6rem;
  position: absolute;
  width: 100%;
}

section.services .owl-dots {
  display: none;
}

.services .item {
  background-image: url(../images/service-item-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  padding: 40px;
  height: 200px;
}

.services .item .icon {
  max-width: 60px;
  margin: 0 auto;
}

.services .item h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.services .item p {
  color: #fff !important;
  font-size: 13px;
}

.services .owl-nav {
  display: inline-block !important;
  text-align: center;
  position: absolute;
  width: 100%;
  top: calc(50% - 29px);
}

.services .owl-nav .owl-prev {
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.services .owl-nav .owl-prev span,
.services .owl-nav .owl-next span {
  opacity: 0;
}

.services .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: "FontAwesome";
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f104";
  background-color: #dd9626;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.services .owl-nav .owl-prev {
  opacity: 1;
  transition: all 0.5s;
}

.services .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next {
  opacity: 1;
  transition: all 0.5s;
}

.services .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next {
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.services .owl-nav .owl-next:before {
  display: inline-block;
  font-family: "FontAwesome";
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f105";
  background-color: #dd9626;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

/*
---------------------------------------------
upcoming meetings
---------------------------------------------
*/

section.upcoming-meetings {
  /* background-image: url(../images/meetings-bg.jpg); */
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 80px;
}

section.upcoming-meetings .section-heading {
  text-align: center;
}

section.upcoming-meetings .categories {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-right: 45px;
}

section.upcoming-meetings .categories h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f272b;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

section.upcoming-meetings .categories ul li {
  display: inline-block;
  margin-bottom: 15px;
}

section.upcoming-meetings .categories ul li a {
  font-size: 15px;
  color: #1f272b;
  font-weight: 500;
  transition: all 0.3s;
}

section.upcoming-meetings .categories ul li a:hover {
  color: #59451f;
}

section.upcoming-meetings .categories .main-button-red {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 15px;
}

section.upcoming-meetings .categories .main-button-red a {
  width: 100%;
  text-align: center;
}

.meeting-item {
  margin-bottom: 30px;
}

.meeting-item .thumb {
  position: relative;
}

.meeting-item .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.meeting-item .thumb .price {
  position: absolute;
  left: 20px;
  top: 20px;
}

.meeting-item .thumb .price span {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  background-color: rgba(250, 250, 250, 0.9);
  padding: 7px 12px;
  border-radius: 10px;
}

.meeting-item .down-content {
  background-color: #fff;
  padding: 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.meeting-item .down-content .date {
  float: left;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.meeting-item .down-content .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #59451f;
}

.meeting-item .down-content .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.meeting-item .down-content h4 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-item .down-content p {
  margin-left: 50px;
  color: #1f272b;
  font-size: 14px;
}

/*
---------------------------------------------
apply now
---------------------------------------------
*/

section.apply-now {
  background-image: url(../images/bg1.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px;
}

section.apply-now .item,
.ads-banner.services-box-ads .item {
  background-color: rgb(139 106 32 / 93%);
  padding: 40px;
  margin-bottom: 30px;
  /* background-image: url(../images/meetings-bg.jpg); */
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

section.apply-now .item h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

section.apply-now .item p {
  color: #fff;
  margin-bottom: 20px;
}

.accordions {
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  margin-left: 45px;
}
.accordions .accordion {
  border-bottom: 1px solid #eee;
}
.accordions .last-accordion {
  border-bottom: none;
}
.accordion-head {
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  color: rgb(89, 69, 31);
  cursor: pointer;
  transition: color 200ms ease-in-out;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .accordion-head {
    padding: 1rem;
    font-size: 15px;
    padding-right: 0;
  }
}
.accordion-head .icon {
  float: right;
  transition: transform 200ms ease-in-out;
}
.accordion-head.is-open {
  color: #f5a425;
  border-bottom: none;
}
.accordion-head.is-open .icon {
  transform: rotate(45deg);
}
.accordion-body {
  overflow: hidden;
  height: 0;
  transition: height 300ms ease-in-out;
  border-bottom: 1px solid #fff;
  padding: 0;
}
.accordion-body > .content {
  padding: 20px;
  padding-top: 0;
}

/* 
---------------------------------------------
courses
--------------------------------------------- 
*/

section.our-courses {
  background-image: url(../images/meetings-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 130px;
}

.our-courses .item .down-content {
  background-color: #fff;
}

.our-courses .item .down-content h4 {
  padding: 25px;
  font-size: 18px;
  color: #1f272b;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.our-courses .item .down-content .info {
  padding: 25px;
}

.our-courses .item .down-content .info ul li {
  display: inline-block;
  margin-right: 1px;
}

.our-courses .item .down-content .info ul li i {
  color: #f5a425;
  font-size: 14px;
}

.our-courses .item .down-content .info span {
  color: #59451f;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  display: inline-block;
  width: 100%;
}

.our-courses .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-45px);
}

.our-courses .owl-dots {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}

.our-courses .owl-dots .owl-dot {
  transition: all 0.5s;
  width: 7px;
  height: 7px;
  background-color: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  outline: none;
}

.our-courses .owl-dots .active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
}

.our-courses .owl-nav .owl-prev {
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.our-courses .owl-nav .owl-prev span,
.our-courses .owl-nav .owl-next span {
  opacity: 0;
}

.our-courses .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: "FontAwesome";
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f104";
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.our-courses .owl-nav .owl-prev {
  opacity: 1;
  transition: all 0.5s;
}

.our-courses .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next {
  opacity: 1;
  transition: all 0.5s;
}

.our-courses .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.our-courses .owl-nav .owl-next {
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.our-courses .owl-nav .owl-next:before {
  display: inline-block;
  font-family: "FontAwesome";
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: "\f105";
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

/*
---------------------------------------------
our facts
---------------------------------------------
*/

section.our-facts {
  background-image: url(../images/facts-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 125px 0px;
}

section.our-facts h2,
.web-hh {
  font-size: 38px;
  color: rgb(89, 69, 31);
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.count-area-content {
  text-align: center;
  background-color: rgba(250, 250, 250, 0.15);
  border-radius: 20px;
  padding: 25px 30px 35px 30px;
  margin: 15px 0px;
}

.percentage .count-digit:after {
  content: "%";
  margin-left: 3px;
}

.count-digit {
  margin: 5px 0px;
  color: #f5a425;
  font-weight: 700;
  font-size: 36px;
}
.count-title {
  font-size: 18px;
  font-weight: 500;
  /* color: #fff; */
  letter-spacing: 0.5px;
}

.new-students {
  margin-top: 45px;
}

section.our-facts .video {
  text-align: center;
  margin-left: 70px;
  background-image: url(../images/video-item-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}

section.our-facts .video img {
  padding: 170px 0px;
  max-width: 56px;
}

/* 
---------------------------------------------
contact us
--------------------------------------------- 
*/

section.contact-us {
  background-image: url(../images/meetings-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4.5rem 0;
}

section.contact-us #contact {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}

section.contact-us #contact h2 {
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

section.contact-us #contact input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 30px;
  border: 1px solid #7a7a7a57;
}

section.contact-us #contact textarea {
  width: 100%;
  min-height: 140px;
  max-height: 180px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 15px;
  margin-bottom: 30px;
  border: 1px solid #7a7a7a57;
}

section.contact-us #contact button {
  font-size: 13px;
  color: #fff;
  background-color: #59451f;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  outline: none;
}

section.contact-us #contact button:hover {
  opacity: 0.9;
}

section.contact-us .right-info {
  background-color: #59451f;
  border-radius: 20px;
  padding: 40px;
}

section.contact-us .right-info ul li {
  display: inline-block;
  border-bottom: 1px solid rgba(250, 250, 250, 0.15);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

section.contact-us .right-info ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

section.contact-us .right-info ul li h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

section.contact-us .right-info ul li span {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  word-break: break-all;
}

.footer {
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid rgba(250, 250, 250, 0.15);
  padding: 10px 0px;
  position: relative;
}
.footer p {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

.footer p a {
  color: #f5a425;
}
.footer img {
  width: 100px;
  height: 30px;
}

/*
---------------------------------------------
heading page
---------------------------------------------
*/

section.heading-page {
  background-image: url(../images/heading-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/*
---------------------------------------------
upcoming meetings page
---------------------------------------------
*/

section.meetings-page {
  background-image: url(../images/meetings-page-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 0px;
}

section.meetings-page .filters {
  text-align: center;
  margin-bottom: 60px;
}

section.meetings-page .filters li {
  font-size: 13px;
  color: #59451f;
  background-color: #fff;
  padding: 11px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0px 3px;
}

section.meetings-page .filters ul li.active,
section.meetings-page .filters ul li:hover {
  background-color: #59451f;
  color: #fff;
}

section.meetings-page .pagination {
  text-align: center;
  width: 100%;
  margin-top: 30px;
  display: inline-block;
}

section.meetings-page .pagination ul li {
  display: inline-block;
}

section.meetings-page .pagination ul li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  color: #1f272b;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

section.meetings-page .main-button-red {
  text-align: center;
}

section.meetings-page .main-button-red a {
  padding: 12px 60px;
  text-align: center;
  margin-top: 30px;
}

section.meetings-page .pagination ul li.active a,
section.meetings-page .pagination ul li a:hover {
  background-color: #59451f;
  color: #fff;
}

.meeting-single-item .thumb {
  position: relative;
}

.meeting-single-item .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.meeting-single-item .thumb .price {
  position: absolute;
  left: 20px;
  top: 20px;
}

.meeting-single-item .thumb .price span {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  background-color: rgba(250, 250, 250, 0.9);
  padding: 7px 12px;
  border-radius: 10px;
}

.meeting-single-item .down-content {
  background-color: #fff;
  padding: 40px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.meeting-single-item .thumb .date {
  position: absolute;
  background-color: rgba(250, 250, 250, 0.9);
  width: 80px;
  height: 80px;
  text-align: center;
  padding: 15px 0px;
  border-radius: 10px;
  right: 20px;
  top: 20px;
}

.meeting-single-item .thumb .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #59451f;
}

.meeting-single-item .thumb .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.meeting-single-item .down-content h4 {
  font-size: 22px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content h5 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content p {
  color: #1f272b;
  font-size: 14px;
}

.meeting-single-item .down-content p.description {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.meeting-single-item .down-content .share {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.meeting-single-item .down-content .share h5 {
  float: left;
  margin-right: 10px;
  margin-bottom: 0px;
}

.meeting-single-item .down-content .share ul li {
  display: inline;
}

.meeting-single-item .down-content .share ul li a {
  font-size: 14px;
  color: #1f272b;
  transition: all 0.3s;
}

.meeting-single-item .down-content .share ul li a:hover {
  color: #f5a425;
}

/* Meeting item column */
.templatemo-item-col {
  width: 31%;
}

@media (max-width: 992px) {
  .templatemo-item-col {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .templatemo-item-col {
    width: 100%;
  }
}

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1300px) {
  .services .owl-nav .owl-next {
    right: -30px;
  }
  .services .owl-nav .owl-prev {
    left: -25px;
  }
  .our-courses .owl-nav .owl-next {
    right: -30px;
  }
  .our-courses .owl-nav .owl-prev {
    left: -25px;
  }
}

@media (max-width: 1200px) {
  .services .owl-nav .owl-next {
    right: -70px;
  }
  .services .owl-nav .owl-prev {
    left: -65px;
  }
  .our-courses .owl-nav .owl-next {
    right: -70px;
  }
  .our-courses .owl-nav .owl-prev {
    left: -65px;
  }
}

@media (max-width: 1085px) {
  .services .owl-nav .owl-next {
    right: -30px;
  }
  .services .owl-nav .owl-prev {
    left: -25px;
  }
  .our-courses .owl-nav .owl-next {
    right: -30px;
  }
  .our-courses .owl-nav .owl-prev {
    left: -25px;
  }
}

@media (max-width: 1005px) {
  .services .owl-nav .owl-next {
    display: none;
  }
  .services .owl-nav .owl-prev {
    display: none;
  }
  .our-courses .owl-nav .owl-next {
    display: none;
  }
  .our-courses .owl-nav .owl-prev {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner .caption {
    top: 60%;
  }

  .main-banner .caption h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .main-banner .caption .main-button-red {
    margin-top: 15px;
  }

  .services {
    margin-top: 60px;
  }

  section.upcoming-meetings {
    padding-top: 320px;
    padding-bottom: 50px;
  }

  section.upcoming-meetings .categories {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .accordions {
    margin-left: 0px;
    padding: 10px;
  }

  .new-students {
    margin-top: 15px;
  }

  section.our-facts .video {
    margin-left: 0px;
    margin-top: 15px;
  }

  section.contact-us #contact {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .sub-header .left-content p {
    display: none;
  }

  .sub-header .right-icons {
    text-align: center;
  }

  .main-nav .nav .sub-menu {
    display: none;
  }

  .header-area .main-nav .nav li ul.sub-menu li a {
    color: #1f272b;
  }
}

/* =====================================================================
ABOUT US CSS STARTS 
======================================================================= */
.about__one-right-title span {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  padding-left: 55px;
  display: inline-block;
  margin-bottom: 14px;
  color: transparent; /* Set text color to transparent */
  background-image: linear-gradient(
    135deg,
    #ffd700,
    #ffa500
  ); /* Linear gradient from gold to orange */
  -webkit-background-clip: text; /* Clip the background to the text */
  background-clip: text; /* Clip the background to the text */
}

span.subtitle-one::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 40px;
  height: 2px;
  background-image: linear-gradient(135deg, #ffd700, #ffa500);
}

span.subtitle-one::after {
  position: absolute;
  content: "";
  bottom: 6px;
  left: 0;
  width: 40px;
  height: 2px;
  background-image: linear-gradient(135deg, #ffd700, #ffa500);
}
.about__one-right-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  /* gap: 50px; */
  justify-content: space-between;
}

.about__one-right-bottom-list p {
  color: #fff;
  display: flex;
  font-weight: 600;
  /* font-family: var(--heading-font); */
  margin-bottom: 10px;
}
.about__one-right-bottom-list i {
  /* display: flex; */
  color: #f5a425;
  font-size: 20px;
  margin-right: 10px;
  /* display: flex; */
  /* align-items: center; */
  margin-top: 4px;
}

.abt-us-img {
  display: inline-flex;
  height: 100%;
}

img.img-abt-1 {
  padding: 0 10px;
}

.two-img-wrap {
  width: 50%;
  height: 100%;
}

img.img-abt-2 {
  height: 70%;
}
.exp-yr .count-area-content,
.about__one-right-bottom-experience .count-area-content {
  background: #f5a4255c;
}
.accordions.is-first-expanded .web-hh {
  padding: 0;
  margin: 0;
}
.down-content button {
  background: transparent;
  border: none;
  color: #dd9626;
}

/* ================================================================
OUR SERVICES CSS STARTS 
================================================================== */
.why-us-box {
  width: 100%;
  transition: 0.3s ease;
}
.img-ser img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transform: scale(1);
  transition: all 500ms ease-in-out;
}
.img-ser-content {
  background-color: #f7f7f7;
  padding: 30px;
}
.img-ser-content a {
  color: #59451f;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 20px;
  display: inline-block;
  border: 2px solid #59451f;
  margin-top: 10px;
}
.img-ser-content strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom: 10px;
  display: block;
}
.why-us-box:hover .img-ser img {
  transform: scale(1.2);
}
.img-ser {
  overflow: hidden;
}
button.myBtn {
  border: 0;
  background: transparent;
  color: #dd9626;
}

/* ========================================
testimonial css starts here
========================================== */
.testimonial-box-wrap {
  margin: 2rem 0;
}

.testimonial-boxes {
  position: relative;
  width: 100%;
  padding: 2rem;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  text-align: left;
  border: 1px solid #ffffff;
  transition: 0.3s ease;
  margin: 2rem 0;
  background: #fff;
  border: 1px solid #eee;
}

.testimonial-boxes:hover {
  border: 1px solid #f5a425;
  transform: translate(0, -2ex);
  /* box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1); */
}

.testimonial-left {
  text-align: left;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-id i {
  font-size: 30px;
  color: #fff;
  border: 1px solid;
  padding: 12px 14px;
  border-radius: 50%;
  margin-right: 4px;
  background: #5b441c;
}

.user-id {
  margin: 4px 0;
}

/* .testimonial-boxes p::before {
  color: rgb(180 203 129 / 35%);
  content: "\f10e";
  font-family: "Font Awesome 4 Free";
  font-size: 6rem;
  font-weight: 700;
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
} */

.web-a-wrap {
  margin-top: 1rem;
  text-align: right !important;
  display: flex;
  justify-content: start;
}

.end-wlcm-wrap {
  padding: 0.5rem 0;
}
section.testimonial.our-courses {
  background: none;
  padding: 2rem 0;
}

section.testimonial.our-courses .owl-nav .owl-prev:before,
section.testimonial.our-courses .owl-nav .owl-next:before {
  background: #dd9626;
}
.review-btn {
  display: inline-flex;
  gap: 25px;
  text-align: center;
  justify-content: center;
}

section.testimonial.our-courses .owl-dots .owl-dot {
  background-color: #f5a425a1;
}

section.testimonial.our-courses .owl-dots {
  margin: 0;
  margin-bottom: 25px;
}
/* ========================================
testimonial css end here
========================================== */

/* =======================================
footer css 
=========================================== */
footer.main-footer {
  background: #59451f;
  padding-top: 0rem;
  /* background-image: url(../images/dubai.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover; */
  position: relative;
}

.footer-up {
  padding: 1.5rem 0;
  position: relative;
}

.footer-logo img {
  width: 114px;
}

.footer-box p {
  color: #fff;
  padding: 12px 0;
}

ul.imp-link li a,
ul.footer-contact li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  transition: 0.2s all ease;
  font-size: 14px;
}

ul.imp-link li,
ul.footer-contact li {
  list-style: none;
  padding: 6px 0;
}

ul.footer-contact li i {
  color: #fff;
}

ul.footer-contact li {
  display: flex;
  padding: 6px 0;
}

.footer-h {
  color: #fff;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 500;
}

ul.imp-link,
ul.footer-contact,
ul.footer-social-links {
  margin: 0;
  padding: 0;
  padding-top: 10px;
}

ul.footer-social-links li i {
  color: #fff;
  font-size: 25px;
  margin: 6px;
  transition: 0.2s all ease;
}

ul.footer-social-links {
  display: flex;
  padding-bottom: 12px;
  height: 65px;
}

ul.footer-social-links li {
  list-style: none;
  margin-right: 6px;
}

ul.footer-contact li i {
  font-size: 16px;
  margin-right: 10px;
  padding-top: 4px;
}

ul.footer-contact li p a {
  display: block;
}

ul.footer-contact li strong {
  font-size: 16px;
  letter-spacing: 1px;
}

.footer-newletter input[type="text"] {
  padding: 6px;
  border: none;
  margin-bottom: 10px;
}

.footer-newletter {
  margin-top: 10px;
}

.news-btn input {
  padding: 8px 56px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s all ease;
  color: #fff;
  background: #fc3;
  border: 1px solid #fc3;
}

.news-btn input:hover {
  background: transparent;
}

ul.imp-link li i {
  margin-right: 10px;
}

ul.imp-link li a:hover,
ul.footer-contact li a:hover {
  color: #fc3;
}

ul.footer-social-links li i:hover {
  background: #fc3;
  border-radius: 50%;
  padding: 6px;
}

.footer-down {
  padding: 1rem 0;
  border-top: 1px solid #ffffff91;
}

.footer-down p {
  color: #fff;
}

.footer-down-policy {
  padding: 12px 0;
}

.footer-down-copyr span {
  color: #fc3;
  font-weight: 700;
}

.footer-down p {
  font-size: 14px;
}
/* =======================================
footer css 
=========================================== */
.services .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  border: 1px solid #dd9626;
  padding: 6px;
  border-radius: 100%;
}
section.brand-name .owl-nav,
section.brand-name .owl-dots {
  display: none;
}

.img-brand {
  display: flex;
  align-items: center;
  /* height: 180px; */
}

.img-brand img {
  width: 100%;
}

/* ====================================
web banner  breadcrumb
======================================= */

/* ===web banner css===== */
.page-header {
  background: linear-gradient(
      to right,
      rgb(0 0 0 / 50%) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/single-meeting.jpg);
  height: 500px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  letter-spacing: 4px;
  font-size: 22px;
  font-weight: 600;
  padding: 4rem;
  display: flex;
  align-items: center;
}
ol.breadcrumb.justify-content-center.text-uppercase a {
  color: #fff;
  text-decoration: none;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.3em;
  letter-spacing: 3px;
  margin-top: 3px;
}
.web-banner-wrapper {
  padding: 2rem 0;
  background: #f0f8ff54;
  width: 50%;
  /* margin: 0 5rem; */
  backdrop-filter: blur(5px);
}
strong.typing-text.headlight-h {
  font-size: 38px;
  color: #fff;
  letter-spacing: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

/* ====================================
web banner css breadcrumb
======================================= */

/* ====================get started page css started here ================== */
section.what-happen {
  padding-bottom: 2rem;
}
section#contact {
  background: #fff;
}

.getstarted-cont-box {
  display: flex;
}

.getstarted-cont-box span {
  padding: 9px 15px;
  background: #f5a425;
  border-radius: 100%;
  color: #fff;
  font-size: 14px;
  margin-right: 8px;
}

.getstarted-list {
  margin-top: 8px;
}

.getstarted-cont-box {
  margin-top: 20px;
}

.get-started-img,
.get-started-img img {
  width: 100%;
  height: 100%;
}
.get-started-img img {
  border-radius: 20px;
}
.get-started-img {
  padding-left: 40px;
}

/* ===========our policies page css started here =================== */
.policies-box {
  margin: 10px;
  height: 250px;
}

.policies-box img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
section.our-policies .accordions.is-first-expanded::before {
  content: "";
  /* border: 4px solid #f5cf4a; */
  width: 50%;
  height: 85%;
  position: absolute;
  top: 6rem;
  left: 24rem;
  border-radius: 25px;
  z-index: -1;
  background: #f5cf4a61;
}

section.our-policies {
  position: relative;
  z-index: 1;
}
section.our-policies.our-courses {
  background: #fff;
}
section.legal-disclaimer {
  padding-bottom: 2rem;
}
section.legal-disclaimer .getstarted-cont-box span {
  padding: 10px 13px;
  margin-right: 15px;
}

/* ============================================
transition and integration
============================================== */
section.trans-integra,
section.abt-us,
section.main-services {
  padding: 3rem 0;
}
.image.services-inner-img {
  border: 6px solid #ffffff;
  /* -webkit-box-shadow: 1px 1px 5px 2px rgb(129 129 129 / 37%); */
  /* box-shadow: 1px 1px 5px 2px rgb(129 129 129 / 37%); */
  overflow: hidden;
  transform: scale(1.1);
}

.image.services-inner-img img {
  transition: all 0.3s ease-in 0s;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.service-inner-content.left {
  margin-left: 0rem;
  margin-right: -8rem;
}

.service-inner-content {
  position: relative;
  margin-left: -8rem;
  z-index: 1;
  background: #fff;
  padding: 2rem;
  -webkit-box-shadow: 1px 1px 5px 2px rgb(129 129 129 / 37%);
  box-shadow: 1px 1px 5px 2px rgb(129 129 129 / 37%);
}

.service-inner-content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #f5a425;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service-inner-content:hover:before {
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
  height: -webkit-calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  opacity: 1;
}

.service-inner-content strong {
  font-size: 20px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .order-md-2 {
    order: 2 !important;
  }
}

.service-con-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 768px) {
  .order-md-1 {
    order: 1 !important;
  }
}

@media only screen and (max-width: 767px) {
  .service-inner-sec {
    padding-top: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .service-inner-content,
  .service-inner-content.left {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
  }
}

.zoom-hover {
  transition: transform 0.3s ease-in-out;
}

.zoom-hover:hover {
  transform: scale(1);
}

.dotRemove li {
  list-style-type: none;
}
/* ==========read more and read less================ */
.more-content {
  display: none;
}
.read-more-btn {
  cursor: pointer;
  color: #59451f;
  text-decoration: underline;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
}
span.more-content {
  background: transparent;
  color: #2a2a2a;
  padding: 0;
  margin: 0;
}
/* ==========read more and read less================ */

/* ==================our story page css started here================ */
.abt-box strong {
  font-size: 22px;
}
.profits p,
section.abt-us .about__one-right-title p {
  padding-bottom: 10px;
}
.story-img img {
  height: 46%;
}
.ads-banner {
  background: linear-gradient(
      to right,
      rgb(0 0 0 / 50%) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/ads-banner-story.webp);
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  letter-spacing: 4px;
  font-size: 22px;
  font-weight: 600;
  padding: 3rem;
  display: flex;
  align-items: center;
  color: #fff;
}
/* ==================our story page css ends here================ */

/* ===================oue services css starts here ===================== */
/*Area Serve sec*/
.serve-box {
  background: #ffffff;
  border: 0.7rem solid #ffffff;
  border-radius: 3px;
  /* max-height: 335px; */
  /* height: 230px; */
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #222;
  align-items: center;
  /* padding: 10px; */
  margin: 1rem 0;
  -webkit-box-shadow: 2px 2px 5px 2px rgb(129 129 129 / 37%);
  box-shadow: 2px 2px 5px 2px rgb(129 129 129 / 37%);
}
.serve-box .image {
  /* max-height: 335px; */
  height: 120px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.serve-box .image img {
  width: 100%;
  min-width: 335px;
}
.serve-box h3 {
  font-size: 2rem;
  font-weight: 700;
}
.serve-box p {
  font-size: 14px;
  line-height: 2.2rem;
}
.serve-box .image img {
  transition: all 0.3s ease-in 0s;
}
.serve-box:hover .image img {
  transform: scale(1.1);
  object-fit: cover;
}

.nav-arrow span {
  padding: 20px;
  background-color: #212529;
  height: 55px;
}
.content i {
  color: #f5a425;
  margin-right: 10px;
}
.area-serv {
  padding: 0 2rem;
}

/* =====================our sercices page css starts================= */
.icon_bg_rotate {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

.choose_box.type_two .icon_box {
  position: relative;
  line-height: 110px;
  border: 1px solid rgb(129 129 129 / 37%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  left: 0px;
  right: 0;
  top: -10px;
  margin: 0 auto 15px;
  display: block;
  padding: 12px;
  transition: all 0.6s ease-in-out;
  z-index: 10;
}

.choose_box.type_two .icon_box .icon_image {
  position: relative;
  display: block;
  line-height: 90px;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  background: #f0f3f9;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.6s ease-in-out;
}

.choose_box.type_two .icon_box img {
  width: 50px;
}

.content_box {
  text-align: center;
}

.our-process {
  padding: 2rem 0;
}

/*----------------rotate-hover-----------------*/
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.icon_bg_rotate::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 50%;
  top: 14px;
  right: 8px;
  background: #f5a425;
  transition: all 0.6s ease-in-out;
}

.icon_bg_rotate {
  animation-name: rotateme;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 4s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 4s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 4s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.ads-banner.services-box-ads {
  background: url(../images/serv-ads.jpg);
  background-attachment: fixed;
}

.services-box-ads .item p,
.services-box-ads .item h3 {
  letter-spacing: 1px;
  text-align: left;
}

/* =========nav and tab section================= */
.list-serv {
  padding: 1rem;
}

.scroll-spy {
  padding: 3rem 0;
}

.scroll-spy .list-group-item {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 4px;
}

.scroll-spy .list-group-item.active {
  background: transparent;
  border: 0;
  color: #f5a425;
  border-right: 4px solid;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  font-weight: 600;
  transition: 0.3 all ease;
}
.ielts-partner img {
  width: 200px;
}

.pt150 {
  padding-top: 150px;
}
.ielts-img {
  display: flex;
  margin-top: 2rem;
}

.accordion-body > .content strong {
  display: block;
  padding-top: 10px;
}
img.man_with_tab {
  padding: 1.5rem 0;
}

/* ==========zoom in and out css starts here =========== */

.zoom-container {
  overflow: hidden;
}

.zoom-image {
  width: 100%;
  animation: zoomInOut 8s infinite;
  position: absolute;
  top: 0;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1); /* Start at normal size */
  }
  50% {
    transform: scale(1.1); /* Scale up to 120% */
  }
  100% {
    transform: scale(1); /* Scale back to normal size */
  }
}

.footer-layer {
  position: absolute;
  top: 0;
  background: rgb(0 0 0 / 35%);
  height: 100%;
  width: 100%;
}

/* ====================================
 Basic styles for the pop-up 
 =======================================*/
#popup {
  display: none; /* Initially hidden */
  /* width: 90%; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #ddbd4a;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 80%; /* Set maximum height for the popup */
  overflow-y: auto; /* Enable vertical scrolling */
  border-radius: 10px; /* Add some rounded corners */
}
#popup-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
div#popup p {
  padding: 1rem 0;
}

.wrap-up-box {
  position: relative;
  width: 100%;
}

button.close-button {
  position: absolute;
  top: -20px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  margin: 0;
  padding: 0;
}

footer.main-footer.zoom-container #bg-footer-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.footer-logo {
  padding-left: 1.5rem;
}
/* 
.contact-us.get-started-form form#contact {
  margin: 0 8rem;
} */

.contact-img, .contact-img img {
  width: 100%;
  height: 100%;
}
.down-content h4 {
  color: #fff !important;
}
.text-brwn {
  color: rgb(89, 69, 31) !important;
}

/* ================responsive navbar here css */


.header li {
  list-style: none;
}

a {
  text-decoration: none;
}

.header {
  border-bottom: 1px solid #e2e8f0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 10px;
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 400;
  color: #475569;
}

.nav-link:hover {
  color: #482ff7;
}

.nav-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: #482ff7;
}

@media only screen and (max-width: 900px) {
  ul.nav-menu.active a {
    color: #fff;
  }
  .nav-menu {
    display: block;
    position: fixed;
    left: -100%;
    top: 6.5rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 99999;
  }

  .nav-menu.active {
    left: 0%;
    background: #59451f;
    border-radius: 0;
    color: #fff;
    z-index: 99999;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.logo img.img.img-fluid {
  object-fit: contain;
  display: block;
  width: auto;
  height: 80px;
}
ul.nav-menu li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  /* color: #fff; */
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.no-scroll {
  overflow: hidden !important;
  height: 100%; /* This ensures the body won't scroll */
}
