/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #E2D423;
  --secondary-color:              #242766;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #f65129;
  --social-icon-link-bg-color:    #7f73eb;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --body-font-family:             'Work Sans', sans-serif;

  --h1-font-size:                 96px;
  --h2-font-size:                 64px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         30px;
  --border-radius-small:          10px;

  --font-weight-thin:             100;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.5px;
}

h1,
h2 {
  letter-spacing: -1.5px;
}

h1 {
  font-size: 96px;
  line-height: 95px;
  font-weight: 600;
  letter-spacing: -6px;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--custom-btn-bg-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.85);
  background: var(--custom-btn-bg-color);
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay + .container {
  position: relative;
}

.back-top-icon {
  background: var(--secondary-color);
  width: 65px;
  color: var(--white-color);
  font-size: var(--h4-font-size);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transition: all 0.5s;
}

.back-top-icon:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.custom-block {
  background: var(--primary-color);
  border-top: 20px solid var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
}

.custom-icon {
  color: var(--primary-color);
}

.instagram-block {
  position: relative;
  height: 100%;
}

.instagram-block-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

nav[aria-label="breadcrumb"] {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 7px 16px 3px 16px;
}

.breadcrumb {
  margin-bottom: 0;
}




/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  padding-left: 10px;
}

.input-group-text {
  background: transparent;
  border: 0;
  padding-right: 0;
}

.custom-form label {
  margin-bottom: 5px;
}

.custom-form .form-control {
  background-color: var(--white-color);
  border: 1px solid #cccccc;
  box-shadow: none;
  color: var(--p-color);
  padding-top: 12px;
  padding-bottom: 12px;
  outline: none;
  border-radius: var(--border-radius-medium);
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: none;
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s;
  margin-bottom: 24px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--secondary-color);
  border-color: transparent;
}


/*---------------------------------------
  CUSTOM TEXT BLOCK               
-----------------------------------------*/
.custom-text-block {
  background: var(--primary-color);
  padding: 80px 60px;
  height: 100%;
}

.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--dark-color);
  font-size: var(--h1-font-size);
  line-height: normal;
}

.custom-text-block .counter-number,
.custom-text-block .counter-number-text {
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--primary-color);
}

.custom-link:hover::after {
  background: var(--custom-btn-bg-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: #E2D423;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 14px 30px !important;
}

.custom-btn-1 {
  border: 2px solid #242766;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 14px 30px !important;
  margin-right: 10px !important;
}

.custom-btn-hero {
  color: #242766;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin: 0px;
  padding: 0px;
}

.custom-btn-hero img {
  margin-left: 5px;
}
.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-border-btn-wrap .custom-border-btn {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-border-btn-wrap .custom-border-btn:hover,
.cta-section .custom-border-btn:hover {
  background: var(--white-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn-wrap .custom-link {
  color: var(--white-color);
}

.custom-border-btn-wrap .custom-link:hover::after {
  background: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  padding: 12px 22px;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.logo-image {
  display: block;
  margin-right: 15px;
}

.logo-text {
  color: var(--primary-color);
  font-size: var(--h4-font-size);
  display: block;
  line-height: normal;
}

.logo-slogan {
  color: var(--custom-btn-bg-color);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 15px;
}

.ms-lg-5 {
  margin-left: 0px !important;
}

.navbar-expand-lg .navbar-nav {
  width: 100%;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #242766;
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  padding: 0;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: transparent;
  color: var(--custom-btn-bg-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}
.dropdown-menu-lang {
  max-width: 100px;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url('../images/site-header/close-up-young-business-team-working.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.site-header .section-overlay {
  background: var(--primary-color);
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero-banner-row {
  width: 1372px !important;
}
.hero-banner-row .col-lg-7 {
  width: 55% !important;
}
.hero-banner-row .col-lg-5 {
  width: 45% !important;
}
.hero-section {
  background-color: #F0F3E8;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.landing-page {
  background: url(file:///Users/qcrtechnologies/Downloads/2134_gotto_job/images/fe2de3a591d52cc43cf0a4f3fa5a451d4d264044.jpg) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: bottom;
}
.landing-page .hero-cal-sec{
  background: #242766CC !important;
}
.landing-page .hero-vector-2 {
    position: absolute !important;
    margin-top: -27px;
    margin-left: -120px;
}
.hero-cal-sec {
  background-color: #242766;
  border-radius: var(--border-radius-small);
  padding: 180px 80px 180px 120px;
}
.hero-vector-1 {
  position: absolute !important;
  margin-top: -180px;
  margin-left: 295px;
  width: 200px;
}
.hero-vector-2 {
  position: absolute !important;
  margin-top: -28px;
  margin-left: -130px;
}
.hero-bottom-img {
  position: absolute;
  margin-top: 472px;
}
.hero-col-l {
  padding: 150px 15px 180px;
  align-self: center;
}

.hero-section .section-overlay {
  background: transparent;
}
.hero-txt {
  max-width: 446px;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 150%;
}

.hero-section .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.hero-section .custom-border-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.hero-form {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 40px 30px 30px;
}

.hero-form .form-control {
  padding-bottom: 10px;
}

.hero-form button[type="submit"] {
  padding-top: 10px;
  padding-bottom: 8px;
}

.hero-form .input-group-text i {
  position: relative;
  top: 2px;
}

.hero-section .badge {
  background: transparent;
  color: var(--white-color);
}

.hero-section .badge:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.badge {
  background: var(--section-bg-color);
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  color: var(--primary-color);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  margin-right: 5px;
  margin-left: 5px;
  padding: 8px 12px;
  padding-bottom: 6px;
}

.badge-level {
  background: var(--primary-color);
  color: var(--white-color);
}

.badge:hover {
  background: var(--custom-btn-bg-color);
  color: var(--white-color);
}


/*---------------------------------------
  MOBILE APP              
-----------------------------------------*/
.mobile-app-sec {
  text-align: center;
  padding-bottom: 0px !important ;
}

.mobile-app-sec p {
  margin-bottom: 20px;
}

.mobile-app-sec h2 {
  line-height: 66px;
}
.hm-sec-two img {
  width: auto;
  max-width: 100%;
}

/*---------------------------------------
  CATEGORY SECTION              
-----------------------------------------*/


.categories-section {
  text-align: center;
  padding-bottom: 0px !important ;
}

.categories-section p {
  margin-bottom: 20px;
}

.categories-section h2 {
  line-height: 66px;
}

.link-gp {
  margin-right: 15px;
}

.app-txt {
  max-width: 685px;
  text-align: center;
  margin: auto;
}

/*---------------------------------------
  BLOG             
-----------------------------------------*/
.blog-section {
  text-align: center;
  padding-bottom: 0px !important ;
}

.blog-section p {
  margin-bottom: 20px;
}

.blog-section h2 {
  line-height: 66px;
}

.blog-section {
  padding: 80px 0px 20px;
}
.blog-section h1 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0px;
  margin-bottom: 0px;
  max-width: 846px;
  margin: 0px auto 20px;
  text-align: center;
}
.blog-main-sec {
  background-color: #ffffff;
  padding: 20px 0px 40px;
}
.blog-main-sec h2 {
  line-height: 1.2;
  font-size: 18px;
  color: var(--secondary-color);
}

.blog-title-link {
  line-height: 1.4;
  font-size: 18px;
  color: var(--secondary-color);
  letter-spacing: 0px;
}
.blog-body {
  padding: 20px;
}
.blog-body p {
  font-size: 18px;
}
.blog-col {
  background: #FFF8F7;
  border-radius: 20px;
  padding: 20px;
  margin: 10px 0px;
  align-self: stretch;
}
.blog-image-box-wrap-info {
  margin-top: 10px;
}

/*---------------------------------------
  ARTICLE             
-----------------------------------------*/
.article-section1 {
  text-align: center;
  padding-bottom: 0px !important ;
}

.article-section1 p {
  margin-bottom: 20px;
  max-width: 928px;
  margin: 0px auto;
}

.article-section1 h2 {
  line-height: 66px;
}

.article-section1 {
  padding: 80px 0px 20px;
}
.article-section1 h1 {
  font-size: 64px;
  letter-spacing: 0px;
  margin-bottom: 0px;
  line-height: 1.1;
  max-width: 1189px;
  margin: 0px auto 20px;
}

.pre-nxt-btn {
    width: 50%;
    margin: auto;
}
.prev-btn img {
    width: 50px;
    height: 50px;
    border-radius: 20px;
}


.article-sec2 {
  background-color: #FFF8F7;
  padding: 120px 0px;
}

.article-sec2 h2 {
  line-height: 66px;
}

.article-sec2 {
  background: #ffffff;
  padding: 20px 0px 60px;
}
.article-sec2 span {
  font-size: 20px;
  font-weight: 600;
}

.article-txt-col {
  padding: 10px 30px;
}
.article-txt-col h2 {
  color: #242766;
  font-size: 24px;
}





/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-link {
  border-color: var(--border-color);
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--copyright-font-size);
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.page-item.active .page-link,
.page-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border: 0;
  border-radius: var(--border-radius-large);
}

.page-item:not(:first-child) .page-link {
  margin-left: 5px;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #FFF8F7;
  padding: 120px 10px;
}

.about-section h2 {
  line-height: 66px;
}

.about-col-l { 
  padding: 15px;
  align-self: center;
}

.two-col-img img{
  width: 100%;
}

.btm-img {
  margin-top: 20px;
}

.about-page .about-section {
  padding-top: 100px;
  padding-bottom: 0;
}

.about-section .custom-text-block {
  background: var(--secondary-color);
}

.about-image-wrap,
.video-thumb {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-info {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  border-top: 30px solid var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 20px;
  padding: 20px;
}

.about-info-text h4 {
  font-weight: var(--font-weight-normal);
}

.about-image-border-radius {
  border-radius: var(--border-radius-medium);
}

.about-image {
  display: block;
  object-fit: cover;
  height: 100%;
}

.custom-border-radius-start {
  border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
}

.custom-border-radius-end {
  border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
}

.video-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.youtube-icon {
  background: var(--custom-btn-bg-color);
  font-size: var(--h2-font-size);
  color: var(--white-color);
  border-radius: var(--border-radius-large);
  width: 90px;
  height: 90px;
  line-height: 110px;
  text-align: center;
  display: block;
  animation: pulse-animation 2s infinite;
  transition: all 0.5s;
}

.youtube-icon:hover {
  color: var(--white-color);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}


/*---------------------------------------
  ABOUT PAGE             
-----------------------------------------*/
.about-us-sec1 {
  padding: 80px 0px 20px;
}
.about-us-sec1 h1 {
  font-size: 64px;
  letter-spacing: 0px;
  margin-bottom: 20px;
  line-height: 1;
}
.about-us-sec2 {
  background: #ffffff;
  padding: 20px 0px 120px;
}
.about-us-sec2 span {
  font-size: 20px;
  font-weight: 600;
}
.country-vector-img-about {
  position: absolute;
  margin-top: 10px;
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services-block {
  border-top: 25px solid transparent;
  border-radius: var(--border-radius-medium);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  padding: 40px;
}

.services-block:hover,
.services-section .services-block-wrap:nth-of-type(odd) .services-block {
  background: var(--section-bg-color);
  border-top-color: var(--secondary-color);
}

.services-block-icon {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: var(--border-radius-large);
  display: block;
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  line-height: normal;
  width: 120px;
  height: 120px;
  line-height: 135px;
  margin: auto;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}

.services-block-body p {
  margin-bottom: 0;
}


/*---------------------------------------
  CATEGORIES              
-----------------------------------------*/
.categories-block {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  border: 8px solid var(--social-icon-link-bg-color);
  width: 150px;
  height: 150px;
  margin: auto;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}

.categories-block:hover {
  border-color: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.categories-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
  line-height: normal;
  margin-bottom: 5px;
}

.categories-block-title {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.categories-block-number {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
}

.categories-block-number-text {
  color: var(--white-color);
  display: block;
  height: 45%;
  position: relative;
  left: 2px;
}



/*---------------------------------------
  WHY - ICONS            
-----------------------------------------*/
.why-section {
  background-color: #242766;
  padding: 120px 0px;
}
.why-vector-img {
  position: absolute;
  margin-top: -120px;
}

.why-col {
  background: #24242466;
  padding: 30px;
  border-radius: 20px;
}


/*---------------------------------------
  FAQS           
-----------------------------------------*/
.faqs-sec {
  padding: 120px 0px 30px;
}

.faqs-hd h2 {
  line-height: 1.0;
  max-width: 846px;
  margin: 20px auto;
}

.faqs-hd p {
  max-width: 685px;
  margin: 20px auto 30px;
}

.faq-toggle {
  margin: 0px auto;
}

.faq-toggle h2 {
  font-size: 18px !important;
  color: #242766;
}
.faq-toggle p {
  font-size: 16px !important;
}
.faq-toggle li {
  font-size: 16px !important;
}
.faq-toggle a {
  font-size: 16px !important;
  color: #242766;
  margin-bottom: 20px;
}

.accordion-button:not(.collapsed) {
  color: #242766;
  background-color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
.accordion-button {
  font-size: 18px;
  color: #242766;
  font-weight: 600;
}
.accordion-body {
    padding: 1rem 1.25rem 1.5em;
}
.accordion-item {
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #E0E0E0;
}


/*---------------------------------------
  Call           
-----------------------------------------*/
.call-sec {
  padding: 40px 0px 60px;
}

.call-sec h2 {
  line-height: 1.0;
  max-width: 846px;
  margin: 20px auto;
  font-size: 40px;
}
.call-col {
  width: 30%;
  margin: auto;
}
.call-box {
  background: var(--primary-color) !important;
  text-align: left;
}
.call-box p {
  margin-left: 10px;
}




/*---------------------------------------
  JOB              
-----------------------------------------*/
.country-vector-img {
  position: absolute;
}
.country-vector-img-r {
  position: absolute;
}
.country-hd h2 {
  line-height: 1.0;
  max-width: 846px;
  margin: 20px auto;
}

.country-hd p {
  max-width: 685px;
  margin: 20px auto 30px;
}

.country-list-img img {
  width: 100%;
  border-radius: 20px;
}

.recent-jobs-bottom .custom-btn {
  font-size: var(--h5-font-size);
  padding: 25px 50px;
}

.job-listings-page .hero-form .badge:hover {
  background: var(--primary-color);
}

.job-thumb {
  background-color: #FFF8F7;
  border-radius: var(--border-radius-small);
  margin-bottom: 15px;
  padding: 15px 15px 15px;
  transition: all 0.5s ease;
}

.job-thumb:hover,
.job-thumb:nth-of-type(even) {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.job-title-link {
  color: var(--dark-color);
}

.job-thumb p {
  font-size: 18px;
  margin-bottom: 0px;
}

.job-thumb .badge {
  border: 0;
}

.job-thumb-box {
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  max-width: 400px;
  margin-bottom: 48px;
  padding: 0;
}

.job-thumb-box .job-body {
  padding: 25px;
}

.job-thumb-box .job-body .job-image-wrap {
  width: 50px;
  min-width: 50px;
  height: 50px;
}

.job-thumb-box .job-body .job-image {
  padding: 10px;
}

.job-thumb-box .job-location, 
.job-thumb-box .job-date {
  min-width: inherit;
}

.job-thumb-box .job-date {
  margin-right: 0;
}

.job-image-box-wrap {
  position: relative;
}

.job-image-box-wrap .job-image {
  padding: 0;
}

.job-image-box-wrap .badge-level {
  border-color: transparent;
}

.job-image-box-wrap .badge-level:hover,
.job-image-box-wrap .badge:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
}

.job-image-box-wrap-info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px 25px;
}

.job-image-wrap {
  border-radius: var(--border-radius-large);
  width: 80px;
  min-width: 80px;
  height: 80px;
}

.job-image {
  display: block;
  margin: auto;
  padding: 20px;
}

.job-body {
  flex: auto;
}

.job-location {
  min-width: 175px;
}

.job-location,
.job-date {
  margin-right: 20px;
}

.job-date {
  min-width: 155px;
}

.job-price {
  min-width: 120px;
  margin-right: 10px;
  margin-left: 10px;
}

.job-thumb-detail,
.job-thumb-detail:hover {
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.job-thumb-detail-box {
  padding: 40px;
}

.job-detail-share {
  margin-left: auto;
}

.dropdown-sorting .dropdown-menu {
  border-radius: var(--border-radius-small);
  border-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dropdown-sorting .dropdown-item {
  font-size: var(--copyright-font-size);
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#dropdownSortingButton {
  background: transparent;
  color: var(--dark-color);
  border: 0;
  padding: 0;
}

.sorting-icon {
  color: var(--p-color);
}

.sorting-icon.active {
  color: var(--primary-color);
}

.job-section-btn-wrap {
  margin-left: auto;
  margin-top: -5px;
}


/*---------------------------------------
  SEND MONEY               
-----------------------------------------*/
.country-thumb {
  background-color: #FFF8F7;
  border-radius: var(--border-radius-small);
  margin-bottom: 15px;
  padding: 15px 15px 15px;
  transition: all 0.5s ease;
}

.country-thumb:hover,
.country-thumb:nth-of-type(even) {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.job-title-link {
  color: var(--dark-color);
}

.country-thumb p {
  font-size: 18px;
  margin-bottom: 0px;
}

.country-thumb .badge {
  border: 0;
}
.send-money-sec-btn-wrap {
  margin-left: auto;
  margin-top: -5px;
}




/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-form-col {
  background: #242766;
  border-radius: 40px;
  padding: 40px;
}
.contact-form-col h2 {
  font-size: 18px;
  font-weight: 400;
}

.contact-form-col .form-control {
  border-radius: 0x !important;
}

.contact-form-col .contact-btn {
  border-radius: 40px !important;
}

.contact-form-col label {
  font-size: 13px;
  color: #9E9E9E;
}


.contact-info-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-info {
  padding: 20px 30px;
}

.contact-info:nth-of-type(even) {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
}

.contact-info .custom-icon {
  font-size: var(--h2-font-size);
  margin-right: 20px;
}

.contact-info-small-title {
  color: var(--secondary-color);
  display: block;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
}

.contact-form {
  margin-top: 20px;
}

.contact-form .form-control {
  background-color: var(--section-bg-color);
  margin-bottom: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
}

.contact-form .form-control:hover {
  background-color: var(--white-color);
  border-color: var(--primary-color);
}

.contact-form button[type="submit"] {
  margin-bottom: 0;
}

.google-map {
  display: block;
  border-radius: var(--border-radius-medium);
  filter: grayscale(100%);
}
.map {
  margin-bottom: -10px;
}


/*---------------------------------------
  LANDING PAGE             
-----------------------------------------*/
.landing-sec-two {
  background-color: #ffffff;
  padding: 120px 0px;
}

.about-section h2 {
  line-height: 66px;
}

.landing-sec-two p {
  font-size: 18px;
}

.sec-three-r-col {
  align-self: center;
}

.sec-three-icon-col {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  margin: 10px;
  align-self: stretch;
}
.landing-sec-five-icons {
  background: #24242466;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.landing-sec-five-icons img {
  margin-bottom: 10px;
}
.landing-sec-five-icons h3 {
  font-size: 32px;
  font-weight: 400;
}
.landing-sec-five-icons p {
  font-size: 16px;
  font-weight: 400;
}
.right-vector {
  justify-content: flex-end;
  display: flex;
}
.country-vector-img-r {
  position: absolute;
  margin-top: -100px;
}
.dark-icon-box {
  align-self: stretch;
}
.icon-btn {
  justify-content: flex-end;
  display: flex;
}
.about-col-l { 
  padding: 15px;
  align-self: center;
}

.two-col-img img{
  width: 100%;
}

.btm-img {
  margin-top: 20px;
}

.about-page .about-section {
  padding-top: 100px;
  padding-bottom: 0;
}

.about-section .custom-text-block {
  background: var(--secondary-color);
}

.about-image-wrap,
.video-thumb {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-info {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  border-top: 30px solid var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 20px;
  padding: 20px;
}

.about-info-text h4 {
  font-weight: var(--font-weight-normal);
}

.about-image-border-radius {
  border-radius: var(--border-radius-medium);
}

.about-image {
  display: block;
  object-fit: cover;
  height: 100%;
}


@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}


/*---------------------------------------
  HOW IT WORKS PAGE             
-----------------------------------------*/
.how-l-col {
  align-self: normal;
}
.how-l-col p {
  font-size: 18px;
}

.how-it-word-process {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 30px 20px;
  margin: 0px 10px 20px;
  align-self: stretch;
}
.how-it-word-process h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}
.how-it-word-process p {
  font-size: 18px;
}


/*---------------------------------------
  PRIVACY POILICY             
-----------------------------------------*/

.privacy-policy-col-l {
  background: #FFF8F7;
  border-radius: 20px;
  padding: 24px 10px;
  height: 100%;
}
.privacy-policy-col-l ul {
  display: block;
  list-style: none;
}
.privacy-policy-col-l li a {
  color: #242766;
  font-size: 16px;
}

.privacy-policy-col-l li a:hover {
  color: var(--primary-color);
}

.privacy-policy-col {
  padding: 10px 30px;
}
.privacy-policy-col h2 {
  color: #242766;
  font-size: 24px;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: #242424;
  padding-top: 100px;
  padding-bottom: 0;
}
.footer-cont {
  font-size: 12px;
  color: #A6A6A6;
}
.site-footer-link {
  color: var(--p-color);
}

.site-footer-bottom {
  background: #242424;
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.site-footer-bottom .container {
  border-top: 1px solid #000000;
  padding-top: 20px;
}

.site-footer-bottom .footer-menu-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  margin-right: 5px;
  margin-left: 5px;
}

.site-footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.site-footer-bottom p,
.copyright-text {
  color: #A6A6A6;
  font-size: var(--copyright-font-size);
  margin-bottom: 0;
  margin: 0px auto;
}

.copyright-text {
  margin-right: 20px;
}

.sponsored-link {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  justify-content: end;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  color: #A6A6A6;
  font-weight: 400;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}
.footer-menu-link:hover {
  color: var(--primary-color);
}

.gp-footer {
  margin-bottom: 10px;
  margin-top: 10px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 25px;
  height: 35px;
  line-height: 40px;
  transition: all 0.5s;
}

.social-icon-link:hover {
  color: var(--primary-color);
  transform: scale(1.15);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1025px) {
  .send-money-sec .job-thumb {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
  }
  
}

@media screen and (min-width: 991px) {
  .google-map {
    height: 100%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
    line-height: 47px;
    font-weight: 600;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 36px;
    line-height: 1.2 !important;
  }

  h3 {
    font-size: 32px;
    line-height: 1;
  }

  h4 {
    font-size: 28px;
    line-height: 1;
  }

  h5 {
    font-size: 20px;
    line-height: 1;
  }

  h6 {
    font-size: 18px;
    line-height: 1;
  }

  .hero-banner-row {
    width: 100% !important;
}

.hero-banner-row .col-lg-7 {
    width: 100% !important;
}

.hero-banner-row .col-lg-5 {
    width: 100% !important;
}

.hero-col-l {
    padding: 0px 15px 50px;
}


  .section-padding,
  .cta-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-page .about-section {
    padding-top: 50px;
  }

  .custom-btn {
    padding: 12px 20px;
  }

  .navbar-collapse {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    margin-top: 10px;
  }

  .page-link {
    font-size: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .custom-text-block {
    padding: 50px 30px;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .badge {
    margin-top: 5px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .custom-border-radius-start {
    border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
  }

  .custom-border-radius-end {
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  }

  .job-body p {
    font-size: var(--btn-font-size);
  }

  .job-location {
    min-width: 140px;
  }

  .job-price {
    min-width: inherit;
    margin-top: 5px;
    margin-left: 0;
  }

  .hero-form button[type="submit"] {
    margin-bottom: 0;
  }

  .site-footer {
    padding-top: 50px;
  }

  .site-footer-bottom {
    margin-top: 50px;
  }

  .call-col {
    width: 100%;
  }
  .pre-nxt-btn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
    line-height: 39px;
    font-weight: 600;
    letter-spacing: 0px;
  }

  h2 {
    font-size: 28px;
    line-height: 1;
  }

  h3 {
    font-size: 26px;
    line-height: 1;
  }

  h4 {
    font-size: 22px;
    line-height: 1;
  }

  h5 {
    font-size: 20px;
    line-height: 1;
  }

  .hero-cal-sec {
    padding: 50px 20px 70px 20px;
    margin-left: 20px;
    margin-right: 10px;
  }

  .hero-banner-row {
    width: 100% !important;
}

.hero-banner-row .col-lg-7 {
    width: 100% !important;
}

.hero-banner-row .col-lg-5 {
    width: 100% !important;
}

.hero-vector-1{
  display: none;
}

.hero-bottom-img{
  display: none;
}


  .badge {
    margin: 10px 10px 5px 0;
  }

  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .counter-thumb {
    margin: 10px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h3-font-size);
  }

  .job-date {
    margin-top: 5px;
  }

  .job-detail-share {
    margin: 20px auto 0 auto;
  }

  .call-col {
    width: 100%;
  }

  .blog-section h1 {
    font-size: 40px;
  }

  .article-section1 h1 {
    font-size: 40px;
  }

  .pre-nxt-btn {
    width: 100%;
  }
}



.location-form select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 20px;
    background-color: #ffffff;
    margin-right: 10px;
    width: 100%;
}



/* Custom Dropdown Styles */
.location-cal {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 40px 40px;
}
.custom-dropdown {
    position: relative;
    display: block;
    border-bottom: 1px solid #E0E0E0 ;
    margin-bottom: 10px;
}

.dropdown-btn {
    padding: 12px 20px;
    font-size: 16px;
    background-color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #000000;
    display: block;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}

.dropdown-btn:hover {
    background-color: #f2f2f2;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #cccccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
    z-index: 1;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: #f2f2f2;
}

.flag-img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-top: 0px;
    border-radius: 10px;
}

.custom-dropdown.active .dropdown-content {
    display: block;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .banner-heading {
        font-size: 24px;
    }

    .dropdown-btn {
        width: 100%;
    }

    .submit-btn {
        padding: 10px 25px;
    }
}



