 /* Css For GoAbroad */

 /************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header/style-one/style-two
5. Main Slider/style-one/style-two
6. Intro Section
7. Welcome Section
9. Cta Section
8. Research Fields
10. Testimonial Section
11. Researches Section
12. Team Section
14. Video
15. Fact Counter
16. News Section
19. Clients Section
20. Main Footer
21. Footer Bottom
22. Research Style Two
23. Innovative Solution
24. Discover Section
25. Testimonial Section
26. Chooseus Section
27. News Style Two
28. Page Title
29. Research Page Section
30. Research Details
31. Professor Page Section
32. Professor Details
33. About Section
34. Error Section
35. Blog Page Section
36. Blog Details
37. Blog Sidebar
38. Contact Section
39. Google Map


**********************************************/



 /*** 

====================================================================
  Reset
====================================================================

 ***/
 * {
   margin: 0px;
   padding: 0px;
   border: none;
   outline: none;
 }


 /*** 

====================================================================
  Global Settings
====================================================================

 ***/


 :root {
   --main-color: #032B66;
   --secondary-color: #5E789C;
   --text-color: #888888;
   --title-color: #032B66;
   --white-color: #ffffff;
   --heebo: 'Heebo', sans-serif;
   --maven: 'Maven Pro', sans-serif;
 }


 body {
   font-size: 16px;
   color: var(--text-color);
   line-height: 29px;
   font-weight: 400;
   background: #ffffff;
   font-family: var(--heebo);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center top;
   -webkit-font-smoothing: antialiased;
 }

 @media (min-width:1200px) {
   .container {
     max-width: 1200px;
     padding: 0px 15px;
   }
 }

 .large-container {
   max-width: 1550px;
   padding: 0px 15px;
   margin: 0 auto;
 }

 .container-fluid {
   padding: 0px;
 }

 .auto-container {
   position: static;
   max-width: 1450px;
   padding: 0px 15px;
   margin: 0 auto;
 }

 @media (min-width: 992px) {
   .auto-container {
     padding: 0px 55px;
   }
 }

 .small-container {
   max-width: 680px;
   margin: 0 auto;
 }

 .boxed_wrapper {
   position: relative;
   margin: 0 auto;
   overflow: hidden !important;
   width: 100%;
   min-width: 300px;
 }


 a {
   text-decoration: none;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 a:hover {
   text-decoration: none;
   outline: none;
 }

 input,
 button,
 select,
 textarea {
   font-family: var(--heebo);
   font-weight: 400;
   font-size: 16px;
   background: transparent;
 }

 ::-webkit-input-placeholder {
   color: inherit;
 }

 ::-moz-input-placeholder {
   color: inherit;
 }

 ::-ms-input-placeholder {
   color: inherit;
 }

 ul,
 li {
   list-style: none;
   padding: 0px;
   margin: 0px;
 }

 input {
   transition: all 500ms ease;
 }

 button:focus,
 input:focus,
 textarea:focus {
   outline: none;
   box-shadow: none;
   transition: all 500ms ease;
 }

 p {
   position: relative;
   font-family: var(--heebo);
   color: var(--text-color);
   font-weight: 400;
   margin: 0px;
   transition: all 500ms ease;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   position: relative;
   font-family: var(--maven);
   font-weight: 400;
   color: var(--title-color);
   margin: 0px;
   transition: all 500ms ease;
 }

 /* Preloader */

 .handle-preloader {
   align-items: center;
   -webkit-align-items: center;
   display: flex;
   display: -ms-flexbox;
   height: 100%;
   justify-content: center;
   -webkit-justify-content: center;
   position: fixed;
   background: var(--main-color);
   left: 0;
   top: 0;
   width: 100%;
   z-index: 9999999;
 }

 .preloader-close {
   position: fixed;
   z-index: 99999999;
   font-size: 26px;
   background: var(--white-color);
   color: var(--main-color);
   width: 40px;
   height: 40px;
   line-height: 36px;
   text-align: center;
   border-radius: 50%;
   cursor: pointer;
   right: 30px;
   top: 30px;
 }

 .handle-preloader .animation-preloader {
   position: absolute;
   z-index: 100;
 }

 .handle-preloader .animation-preloader .spinner {
   animation: spinner 1s infinite linear;
   border-radius: 50%;
   height: 150px;
   margin: 0 auto 45px auto;
   width: 150px;
 }

 .handle-preloader .animation-preloader .txt-loading {
   text-align: center;
   user-select: none;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
   animation: letters-loading 4s infinite;
   content: attr(data-text-preloader);
   left: 0;
   opacity: 0;
   top: 0;
   position: absolute;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading {
   font-family: var(--maven);
   font-weight: 500;
   letter-spacing: 15px;
   display: inline-block;
   position: relative;
   font-size: 70px;
   line-height: 70px;
   text-transform: uppercase;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
   animation-delay: 0.2s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
   animation-delay: 0.4s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
   animation-delay: 0.6s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
   animation-delay: 0.8s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
   animation-delay: 1s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
   animation-delay: 1.2s;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
   animation-delay: 1.4s;
 }

 .handle-preloader .loader-section {
   background-color: #ffffff;
   height: 100%;
   position: fixed;
   top: 0;
   width: calc(50% + 1px);
 }

 .preloader .loaded .animation-preloader {
   opacity: 0;
   transition: 0.3s ease-out;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading {
   color: #ffffff;
 }

 .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
   color: #ffffff;
 }

 .handle-preloader .animation-preloader .spinner {
   border: 3px solid #ffffff;
   border-top-color: rgba(255, 255, 255, 0.5);
 }

 /* AnimaciÃ³n del preloader */
 @keyframes spinner {
   to {
     transform: rotateZ(360deg);
   }
 }

 @keyframes letters-loading {

   0%,
   75%,
   100% {
     opacity: 0;
     transform: rotateY(-90deg);
   }

   25%,
   50% {
     opacity: 1;
     transform: rotateY(0deg);
   }
 }

 @media screen and (max-width: 767px) {
   .handle-preloader .animation-preloader .spinner {
     height: 8em;
     width: 8em;
   }
 }

 @media screen and (max-width: 500px) {
   .handle-preloader .animation-preloader .spinner {
     height: 7em;
     width: 7em;
   }

   .handle-preloader .animation-preloader .txt-loading .letters-loading {
     font-size: 40px;
     letter-spacing: 0px;
   }
 }


 .centred {
   text-align: center;
 }

 .pull-left {
   float: left;
 }

 .pull-right {
   float: right;
 }


 figure {
   margin: 0px;
 }

 img {
   display: inline-block;
   max-width: 100%;
   height: auto;
   transition-delay: .1s;
   transition-timing-function: ease-in-out;
   transition-duration: .7s;
   transition-property: all;
 }

 /** button **/


 .theme-btn {
   position: relative;
   display: inline-block;
   overflow: hidden;
   vertical-align: middle;
   font-size: 18px;
   line-height: 28px;
   font-weight: 500;
   text-align: center;
   padding: 20.5px 57px;
   text-transform: capitalize;
   font-family: var(--heebo);
   color: var(--white-color) !important;
   background: var(--secondary-color);
   z-index: 1;
   transition: all 500ms ease;
 }

 .theme-btn span {
   position: relative;
   padding-right: 20px;
 }

 .theme-btn span:before {
   position: absolute;
   content: '\e908';
   font-family: 'icomoon';
   font-size: 14px;
   top: 0px;
   right: 0px;
 }

 .theme-btn:hover {
   box-shadow: inset 0 0 0 2em var(--main-color);
 }

 .theme-btn.btn-two {
   background: var(--main-color);
 }

 .theme-btn.btn-two:hover {
   box-shadow: inset 0 0 0 2em var(--secondary-color);
 }



 .row {
   --bs-gutter-x: 30px;
 }

 .pagination {
   position: relative;
   display: block;
 }

 .pagination li {
   position: relative;
   display: inline-block;
   margin-right: 7px;
 }

 .pagination li:last-child {
   margin: 0px !important;
 }

 .pagination li a {
   position: relative;
   display: inline-block;
   font-size: 16px;
   font-weight: 700;
   height: 50px;
   width: 50px;
   line-height: 50px;
   background: #ffffff;
   font-family: var(--heebo);
   border: 1px solid #004274;
   text-align: center;
   color: var(--main-color);
   z-index: 1;
   transition: all 500ms ease;
 }

 .pagination li a:hover,
 .pagination li a.current {
   color: var(--white-color);
   background: var(--main-color);
   border-color: var(--main-color);
 }

 .sec-pad {
   padding: 145px 0px 150px 0px;
 }

 .mr-0 {
   margin: 0px !important;
 }

 /** scroll-to-top **/

 .scroll-to-top {
   position: fixed;
   right: 0px;
   bottom: 100px;
   transform: rotate(90deg);
   z-index: 99;
 }

 .scroll-to-top .visible {
   visibility: visible !important;
   opacity: 1 !important;
 }

 .scroll-to-top .scroll-top-inner {
   opacity: 0;
   visibility: hidden;
 }

 .scroll-to-top .scroll-top-inner {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
   -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
   transition: all cubic-bezier(.4, 0, .2, 1) .4s;
 }

 .scroll-to-top .scroll-bar {
   width: 50px;
   height: 2px;
   margin-right: 10px;
   position: relative;
 }

 .scroll-to-top .scroll-bar:before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   background: red;
 }

 .scroll-to-top .scroll-bar .bar-inner {
   position: absolute;
   top: 0;
   right: 0;
   height: 100%;
   background-color: black;
 }

 .scroll-to-top .scroll-bar-text {
   font-size: 14px;
   font-weight: 600;
   cursor: pointer;
   color: red;
   transition: all 500ms ease;
 }

 .scroll-to-top .scroll-bar-text:hover {
   transform: scale(1.1);
 }



 @-webkit-keyframes ripple {
   70% {
     -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
   }

   100% {
     -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
   }
 }

 @keyframes ripple {
   70% {
     -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
   }

   100% {
     -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
   }
 }

 @-webkit-keyframes diagonal-slide {
   from {
     top: 0;
     left: 0;
     animation-timing-function: linear;
   }

   20% {
     top: -5px;
     left: -5px;
     animation-timing-function: linear;
   }

   40% {
     top: 5px;
     left: -5px;
     animation-timing-function: linear;
   }

   60% {
     top: 5px;
     left: 5px;
     animation-timing-function: linear;
   }

   80% {
     top: -5px;
     left: 5px;
     animation-timing-function: linear;
   }

   to {
     top: 0;
     left: 0;
     animation-timing-function: linear;
   }
 }

 .owl-dots-none .owl-dots,
 .owl-nav-none .owl-nav {
   display: none !important;
 }


 /** sec-title **/

 .sec-title {
   position: relative;
   display: block;
 }

 .sec-title .sub-title {
   position: relative;
   display: inline-block;
   font-size: 16px;
   line-height: 26px;
   color: #07407D;
   font-weight: 600;
   padding-bottom: 25px;
   margin-bottom: 20px;
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .sec-title .sub-title:before {
   display: none;
 }

 .sec-title .sub-title:after {
   content: '\e90e';
   font-family: 'icomoon';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   font-size: 14px;
   color: #07407D;
   width: 100px;
   height: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(to right, #07407D 35%, transparent 35%, transparent 65%, #07407D 65%);
   background-size: 100% 1px;
   background-position: center;
   background-repeat: no-repeat;
 }

 .sec-title.centred .sub-title:after {
   left: 50%;
   transform: translateX(-50%);
 }



 .sec-title h2 {
   display: block;
   font-size: 40px;
   line-height: 50px;
   font-weight: 700;
 }

 .sec-title.light .sub-title,
 .sec-title.light h2 {
   color: #fff;
 }

 .home_one .sec-title .sub-title:after {
   color: var(--main-color);
 }

 .home_one .sec-title .sub-title:before {
   background: var(--secondary-color);
 }





 /*** 

====================================================================
                        Home-Page-One
====================================================================

***/


 /** main-header **/

 .main-header {
   position: relative;
   left: 0px;
   top: 0px;
   right: 0px;
   z-index: 999;
   width: 100%;
   box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.03);
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .sticky-header {
   position: fixed;
   opacity: 0;
   visibility: hidden;
   left: 0px;
   top: 0px;
   width: 100%;
   z-index: 0;
   background-color: var(--white-color);
   border-bottom: 1px solid rgba(0, 0, 0, 0.10);
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .fixed-header .sticky-header {
   z-index: 999;
   opacity: 1;
   visibility: visible;
   -ms-animation-name: fadeInDown;
   -moz-animation-name: fadeInDown;
   -op-animation-name: fadeInDown;
   -webkit-animation-name: fadeInDown;
   animation-name: fadeInDown;
   -ms-animation-duration: 500ms;
   -moz-animation-duration: 500ms;
   -op-animation-duration: 500ms;
   -webkit-animation-duration: 500ms;
   animation-duration: 500ms;
   -ms-animation-timing-function: linear;
   -moz-animation-timing-function: linear;
   -op-animation-timing-function: linear;
   -webkit-animation-timing-function: linear;
   animation-timing-function: linear;
   -ms-animation-iteration-count: 1;
   -moz-animation-iteration-count: 1;
   -op-animation-iteration-count: 1;
   -webkit-animation-iteration-count: 1;
   animation-iteration-count: 1;
 }


 /** header-top **/

 .header-top {
   position: relative;
   width: 100%;
   background: #07407D;
 }

 .header-top .outer-container {
   padding: 0px 55px;
 }

 .header-top .top-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .header-top .top-left .info li {
   position: relative;
   display: inline-block;
   float: left;
   font-size: 14px;
   color: var(--white-color);
   padding-left: 23px;
   margin-right: 60px;
 }

 .header-top .top-left .info li:last-child {
   margin: 0px;
 }

 .header-top .top-left .info li i {
   position: absolute;
   left: 0px;
   top: 8px;
   font-size: 15px;
   color: #B4C4D9;
 }

 .header-top .top-left .info li a {
   color: var(--white-color);
 }

 .header-top .top-left .info li a:hover {
   text-decoration: underline;
 }

 .header-top .top-left .info li:before {
   position: absolute;
   content: '';
   background: rgba(255, 255, 255, 0.2);
   width: 1px;
   height: 55px;
   top: -13px;
   right: -30px;
 }

 .header-top .top-left .info li:last-child:before {
   display: none;
 }

 .header-top .top-right {
   position: relative;
   display: flex;
   align-items: center;
 }

 .header-top .social-links li {
   position: relative;
   display: inline-block;
   margin-right: 20px;
 }

 .header-top .social-links li:last-child {
   margin: 0px;
 }

 .header-top .social-links li a {
   position: relative;
   display: inline-block;
   font-size: 16px;
   color: var(--white-color);
 }

 .header-top .social-links {
   position: relative;
   padding-right: 30px;
 }

 .header-top .social-links:before {
   position: absolute;
   content: '';
   background: rgba(255, 255, 255, 0.2);
   width: 1px;
   height: 55px;
   top: -13px;
   right: 0px;
 }

 .header-top .search-form {
   position: relative;
   margin-right: 55px;
 }

 .header-top .search-form .form-group {
   position: relative;
   width: 210px;
   margin: 0px;
 }

 .header-top .search-form .form-group input[type="search"] {
   position: relative;
   display: block;
   width: 100%;
   height: 55px;
   padding: 10px 50px 10px 25px;
   font-size: 14px;
   color: #fff;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 30px;
   transition: all 400ms ease;
 }

 .header-top .search-form .form-group input[type="search"]::placeholder {
   color: rgba(255, 255, 255, 0.7);
 }

 .header-top .search-form .form-group input:focus {
   color: var(--white-color);
   border-color: #ffffff;
   box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
   outline: none;
 }

 .header-top .search-form .form-group button {
   position: absolute;
   top: 15px;
   right: 15px;
   font-size: 18px;
   color: #fff;
   background: transparent;
   border: none;
   cursor: pointer;
   transition: all 500ms ease;
 }

 .header-top .search-form .form-group input:focus+button,
 .header-top .search-form .form-group button:hover {
   color: #fff;
 }

 .header-top .btn-box a {
   position: relative;
   display: inline-block;
   font-size: 16px;
   line-height: 26px;
   color: var(--white-color);
   padding: 14.5px 32px;
   text-align: center;
   background: #5E789C;
   z-index: 1;
 }

 .header-top .btn-box a span {
   position: relative;
   display: inline-flex;
   align-items: center;
   padding-right: 16px;
 }

 .header-top .btn-box a span:before {
   position: absolute;
   content: '\e908';
   font-family: 'icomoon';
   font-size: 12px;
   top: 50%;
   transform: translateY(-50%);
   right: 0px;
 }

 .header-top .btn-box a:hover {
   color: var(--main-color);
 }

 .header-top .btn-box a:before {
   position: absolute;
   content: '';
   background: var(--white-color);
   width: 0%;
   height: 100%;
   left: 0px;
   top: 0px;
   z-index: -1;
   transition: all 500ms ease;
 }

 .header-top .btn-box a:hover:before {
   width: 100%;
 }

 /* --- Custom Top Header Flexbox Layout --- */
 .header-top .top-inner {
   display: flex !important;
   justify-content: space-between !important;
   align-items: center !important;
   flex-wrap: nowrap !important;
   gap: 15px;
 }

 .header-top .top-left {
   display: flex !important;
   align-items: center !important;
   gap: 15px;
   flex-wrap: nowrap !important;
   margin-bottom: 0 !important;
   flex: 1;
 }

 .header-top .top-left .info {
   display: flex !important;
   align-items: center !important;
   gap: 15px;
   margin: 0 !important;
   white-space: nowrap;
 }

 .header-top .top-left .info li {
   margin: 0 !important;
   padding-left: 23px !important;
   float: none !important;
 }

 .header-top .top-left .info li:before {
   display: none !important;
 }

 .header-top .social-links {
   display: flex !important;
   align-items: center !important;
   gap: 10px;
   padding: 0 !important;
   margin: 0 !important;
   white-space: nowrap;
 }

 .header-top .social-links:before {
   display: none !important;
 }

 .header-top .social-links li {
   margin: 0 !important;
 }

 .header-top .top-center {
   display: flex !important;
   justify-content: center !important;
   flex: 0 0 auto !important;
 }

 .header-top .search-form {
   margin: 0 !important;
 }

 .header-top .top-right {
   display: flex !important;
   align-items: center !important;
   gap: 15px;
   margin-left: auto !important;
   flex-wrap: nowrap !important;
   justify-content: flex-end !important;
   flex: 1;
 }

 .header-top .top-right .info {
   display: flex !important;
   align-items: center !important;
   margin: 0 !important;
   white-space: nowrap;
 }

 .header-top .top-right .info li {
   margin: 0 !important;
   padding-left: 23px !important;
   float: none !important;
   color: var(--white-color) !important;
 }

 .header-top .top-right .info li:before {
   display: none !important;
 }

 @media (max-width: 991px) {
   .header-top .top-inner {
     flex-direction: column !important;
     justify-content: center !important;
   }

   .header-top .top-left,
   .header-top .top-right {
     justify-content: center !important;
     width: 100% !important;
     margin-left: 0 !important;
   }

   .header-top .top-center {
     width: 100% !important;
     margin: 10px 0 !important;
   }
 }

 /* ---------------------------------------- */

 /** header-lower **/

 .header-lower {
   position: relative;
   width: 100%;
   background: #F5F3F3;
 }

 .header-lower .logo-box {
   position: relative;
   float: left;
   margin-right: 90px;
   padding-top: 28px;
   padding-bottom: 33px;
 }

 .brand-logo {
   position: relative;
   display: inline-flex;
   align-items: center;
   max-width: 100%;
   font-family: var(--title-font);
   font-size: 34px;
   line-height: 1;
   font-weight: 900;
   color: #005198;
   letter-spacing: 0;
   white-space: nowrap;
   text-decoration: none;
 }

 .brand-logo:hover {
   color: #005198;
 }

 .brand-logo--mobile,
 .brand-logo--footer {
   color: var(--white-color);
 }

 .brand-logo--mobile:hover,
 .brand-logo--footer:hover {
   color: var(--white-color);
 }

 .brand-logo--footer {
   font-size: 32px;
 }

 .header-lower .outer-box {
   padding: 0px;
 }

 .header-lower .nav-outer {
   position: relative;
   float: right;
   width: calc(100% - 260px);
   padding-right: 30px;
   padding-left: 30px;
   background: var(--white-color);
   border-bottom-left-radius: 20px;
   border-bottom-right-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .main-header .support-box {
   position: relative;
   display: block;
   padding: 11px 0px 2px 82px;
 }

 .main-header .support-box .image-box {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 62px;
   height: 62px;
   border-radius: 50%;
 }

 .main-header .support-box .image-box img {
   width: 100%;
   border-radius: 50%;
 }

 .main-header .support-box span {
   position: relative;
   display: block;
   font-size: 16px;
   line-height: 20px;
   font-weight: 700;
   text-transform: uppercase;
   color: #5E789C;
 }

 .main-header .support-box a {
   position: relative;
   display: inline-block;
   font-size: 16px;
   line-height: 20px;
   color: var(--main-color);
 }

 .main-header .support-box a:hover {
   text-decoration: underline;
 }

 .sticky-header .outer-box {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0;
 }

 @media (max-width: 991px) {
   .sticky-header .outer-box {
     padding: 0 15px;
   }
 }

 .sticky-header .outer-box .logo-box {
   max-width: 170px;
 }

 .placeholder-images-section .row {
   display: flex;
   flex-wrap: wrap;
   margin: 0 -15px;
 }

 .placeholder-images-section .image-block {
   padding: 0 15px;
   margin-bottom: 30px;
   display: flex;
 }

 .placeholder-images-section .image-box {
   width: 100%;
   min-height: 240px;
   max-height: 240px;
   overflow: hidden;
   border-radius: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .placeholder-images-section .image-box img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.35s ease;
 }

 .placeholder-images-section .image-box a {
   display: block;
   width: 100%;
   height: 100%;
 }

 .placeholder-images-section .image-box:hover img {
   transform: scale(1.03);
 }

 /** main-menu **/

 .main-menu {
   float: left;
 }

 .main-menu .navbar-collapse {
   padding: 0px;
   display: block !important;
 }

 .main-menu .navigation {
   margin: 0px;
 }

 .main-menu .navigation>li {
   position: inherit;
   float: left;
   z-index: 2;
   margin: 0px 25px;
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }

 .main-menu .navigation>li:last-child {
   margin-right: 0px !important;
 }

 .main-menu .navigation>li:first-child {
   margin-left: 0px !important;
 }

 .main-menu .navigation>li>a {
   position: relative;
   display: block;
   text-align: center;
   font-size: 16px;
   line-height: 30px;
   padding: 26px 0px;
   font-weight: 500;
   font-family: var(--heebo);
   opacity: 1;
   color: var(--main-color);
   z-index: 1;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .main-menu .navigation>li.current>a,
 .main-menu .navigation>li:hover>a {}

 .main-menu .navigation>li>ul,
 .main-menu .navigation>li>.megamenu {
   position: absolute;
   left: inherit;
   top: 100%;
   width: 230px;
   margin-top: 15px;
   padding: 10px 0px;
   z-index: 100;
   background: var(--main-color);
   display: none;
   opacity: 0;
   visibility: hidden;
   border-radius: 0px;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>.megamenu a {
   display: inline-block !important;
 }

 .main-menu .navigation>li>ul.from-right {
   left: auto;
   right: 0px;
 }

 .main-menu .navigation>li>ul>li {
   position: relative;
   width: 100%;
 }

 .main-menu .navigation>li>ul>li>a,
 .main-menu .navigation>li>.megamenu li>a {
   position: relative;
   display: block;
   padding: 10px 30px;
   line-height: 24px;
   font-weight: 500;
   font-size: 16px;
   text-transform: capitalize;
   font-family: var(--heebo);
   color: var(--white-color);
   text-align: left;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>ul>li>a {
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .main-menu .navigation>li>.megamenu li>a {
   padding-left: 0px;
   padding-right: 0px;
 }

 .main-menu .navigation>li>.megamenu h4 {
   display: block;
   font-size: 20px;
   line-height: 30px;
   color: var(--white-color);
 }

 .main-menu .navigation>li>ul>li>a:hover,
 .main-menu .navigation>li>.megamenu li>a:hover {
   color: rgba(255, 255, 255, 0.50);
 }

 .main-menu .navigation>li>ul>li:last-child>a,
 .main-menu .navigation>li>.megamenu li:last-child>a {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li.dropdown>a:after {
   font-family: 'Font Awesome 5 Pro';
   content: "\f105";
   position: absolute;
   right: 20px;
   top: 10px;
   display: block;
   line-height: 24px;
   font-size: 16px;
   font-weight: 800;
   text-align: center;
   z-index: 5;
 }

 .main-menu .navigation>li>ul>li>ul {
   position: absolute;
   left: 100%;
   top: 0%;
   margin-top: 15px;
   width: 230px;
   z-index: 100;
   display: none;
   border-radius: 0px;
   padding: 10px 0px;
   background: #032B66;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>ul>li>ul.from-right {
   left: auto;
   right: 0px;
 }

 .main-menu .navigation>li>ul>li>ul>li {
   position: relative;
   width: 100%;
 }

 .main-menu .navigation>li>ul>li>ul>li:last-child {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>ul>li>a {
   position: relative;
   display: block;
   padding: 10px 30px;
   line-height: 24px;
   font-weight: 500;
   font-size: 16px;
   text-transform: capitalize;
   font-family: var(--white-color);
   color: var(--white-color);
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   text-align: left;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>ul>li>ul>li:last-child>a {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>ul>li>a:hover {
   color: rgba(255, 255, 255, 0.50);
 }

 .main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
   font-family: 'Font Awesome 5 Pro';
   content: "\f105";
   position: absolute;
   right: 20px;
   top: 12px;
   display: block;
   line-height: 24px;
   font-size: 16px;
   font-weight: 900;
   z-index: 5;
 }

 .main-menu .navigation>li.dropdown:hover>ul,
 .main-menu .navigation>li.dropdown:hover>.megamenu {
   visibility: visible;
   opacity: 1;
   margin-top: 0px;
   top: 100%;
 }

 .main-menu .navigation li>ul>li.dropdown:hover>ul {
   visibility: visible;
   opacity: 1;
   top: 0%;
   margin-top: 0px;
 }

 .main-menu .navigation li.dropdown .dropdown-btn {
   position: absolute;
   right: -32px;
   top: 66px;
   width: 34px;
   height: 30px;
   text-align: center;
   font-size: 18px;
   line-height: 26px;
   color: #3b3b3b;
   cursor: pointer;
   display: none;
   z-index: 5;
   transition: all 500ms ease;
 }

 .main-menu .navigation li.current.dropdown .dropdown-btn,
 .main-menu .navigation li:hover .dropdown-btn {}

 .main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
   display: none;
 }

 .menu-area .mobile-nav-toggler {
   position: relative;
   float: right;
   font-size: 40px;
   line-height: 50px;
   cursor: pointer;
   background: var(--main-color);
   display: none;
 }

 .menu-area .mobile-nav-toggler .icon-bar {
   position: relative;
   height: 2px;
   width: 30px;
   display: block;
   margin-bottom: 5px;
   background-color: var(--white-color);
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }

 .menu-area .mobile-nav-toggler .icon-bar:last-child {
   margin-bottom: 0px;
 }


 /** megamenu-style **/

 .main-menu .navigation>li.dropdown>.megamenu {
   position: absolute;
   width: 100%;
   padding: 30px 50px;
   left: 0px;
 }

 .main-menu .navigation li.dropdown .megamenu li h4 {
   margin-bottom: 10px;
 }


 /** mobile-menu **/

 .nav-outer .mobile-nav-toggler {
   position: relative;
   float: right;
   font-size: 40px;
   line-height: 50px;
   cursor: pointer;
   background: var(--main-color);
   display: none;
 }

 .mobile-menu {
   position: fixed;
   right: 0;
   top: 0;
   width: 300px;
   padding-right: 30px;
   max-width: 100%;
   height: 100%;
   opacity: 0;
   visibility: hidden;
   z-index: 999999;
   transition: all 900ms ease;
 }

 .mobile-menu .navbar-collapse {
   display: block !important;
 }

 .mobile-menu .nav-logo {
   position: relative;
   padding: 50px 25px;
   text-align: left;
   padding-bottom: 100px;
 }

 .mobile-menu-visible {
   overflow: hidden;
 }

 .mobile-menu-visible .mobile-menu {
   opacity: 1;
   visibility: visible;
 }

 .mobile-menu .menu-backdrop {
   position: fixed;
   left: 0%;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   transition: all 900ms ease;
   background-color: #000;
 }

 .mobile-menu-visible .mobile-menu .menu-backdrop {
   opacity: 0.70;
   visibility: visible;
   right: 100%;
   -webkit-transition: all .8s ease-out 0s;
   -o-transition: all .8s ease-out 0s
 }

 .mobile-menu .menu-box {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   max-height: 100%;
   overflow-y: auto;
   background: #141417;
   padding: 0px 0px;
   z-index: 5;
   opacity: 0;
   visibility: hidden;
   border-radius: 0px;
   -webkit-transform: translateX(100%);
   -ms-transform: translateX(100%);
   transform: translateX(100%);
   transition: all 900ms ease !important;
 }

 .mobile-menu-visible .mobile-menu .menu-box {
   opacity: 1;
   visibility: visible;
   -webkit-transition: all 0.7s ease;
   -o-transition: all 0.7s ease;
   transition: all 0.7s ease;
   -webkit-transform: translateX(0%);
   -ms-transform: translateX(0%);
   transform: translateX(0%);
 }

 .mobile-menu .close-btn {
   position: absolute;
   right: 25px;
   top: 10px;
   line-height: 30px;
   width: 24px;
   text-align: center;
   font-size: 16px;
   color: #ffffff;
   cursor: pointer;
   z-index: 10;
   -webkit-transition: all 0.9s ease;
   -moz-transition: all 0.9s ease;
   -ms-transition: all 0.9s ease;
   -o-transition: all 0.9s ease;
   transition: all 0.9s ease;
 }

 .mobile-menu-visible .mobile-menu .close-btn {
   -webkit-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
   transform: rotate(360deg);
 }

 .mobile-menu .close-btn:hover {
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
 }

 .mobile-menu .navigation {
   position: relative;
   display: block;
   width: 100%;
   float: none;
 }

 .mobile-menu .navigation li {
   position: relative;
   display: block;
   border-top: 1px solid rgba(255, 255, 255, 0.10);
 }

 .mobile-menu .navigation:last-child {
   border-bottom: 1px solid rgba(255, 255, 255, 0.10);
 }

 .mobile-menu .navigation li>ul>li:first-child {
   border-top: 1px solid rgba(255, 255, 255, 0.10);
 }

 .mobile-menu .navigation li>a {
   position: relative;
   display: block;
   line-height: 24px;
   padding: 10px 25px;
   font-size: 15px;
   font-weight: 500;
   color: #ffffff;
   text-transform: uppercase;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .mobile-menu .navigation li ul li>a {
   font-size: 16px;
   margin-left: 20px;
   text-transform: capitalize;
 }

 .mobile-menu .navigation li>a:before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   height: 0;
   border-left: 5px solid #fff;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .mobile-menu .navigation li.current>a:before {
   height: 100%;
 }

 .mobile-menu .navigation li.dropdown .dropdown-btn {
   position: absolute;
   right: 6px;
   top: 6px;
   width: 32px;
   height: 32px;
   text-align: center;
   font-size: 16px;
   line-height: 32px;
   color: #ffffff;
   background: rgba(255, 255, 255, 0.10);
   cursor: pointer;
   border-radius: 2px;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
   z-index: 5;
 }

 .mobile-menu .navigation li.dropdown .dropdown-btn.open {
   color: #ffffff;
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
 }

 .mobile-menu .navigation li>ul,
 .mobile-menu .navigation li>ul>li>ul,
 .mobile-menu .navigation>li.dropdown>.megamenu {
   display: none;
 }

 .mobile-menu .social-links {
   position: relative;
   padding: 0px 25px;
 }

 .mobile-menu .social-links li {
   position: relative;
   display: inline-block;
   margin: 0px 10px 10px;
 }

 .mobile-menu .social-links li a {
   position: relative;
   line-height: 32px;
   font-size: 16px;
   color: #ffffff;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .mobile-menu .social-links li a:hover {}

 div#mCSB_1_container {
   top: 0px !important;
 }

 .mobile-menu .contact-info {
   position: relative;
   padding: 120px 30px 20px 30px;
 }

 .mobile-menu .contact-info h4 {
   position: relative;
   font-size: 20px;
   color: #ffffff;
   font-weight: 700;
   margin-bottom: 20px;
 }

 .mobile-menu .contact-info ul li {
   position: relative;
   display: block;
   font-size: 15px;
   color: rgba(255, 255, 255, 0.80);
   margin-bottom: 3px;
 }

 .mobile-menu .contact-info ul li a {
   color: rgba(255, 255, 255, 0.80);
 }

 .mobile-menu .contact-info ul li a:hover {}

 .mobile-menu .contact-info ul li:last-child {
   margin-bottom: 0px;
 }

 .main-header .outer-box {
   position: relative;
 }

 .nice-select {
   position: relative;
   background: transparent;
   border: none;
   font-size: 16px;
   font-weight: 400;
   height: 50px;
   line-height: 50px;
   padding: 0px 20px !important;
   color: #6E6E6E;
   height: auto;
 }

 .nice-select:after {
   width: 8px;
   height: 8px;
   right: 20px;
   border-bottom: 2px solid #C4C4C4;
   border-right: 2px solid #C4C4C4;
 }

 .tabs-box .tab {
   position: relative;
   display: none;
   transition: all 900ms ease;
   -moz-transition: all 900ms ease;
   -webkit-transition: all 900ms ease;
   -ms-transition: all 900ms ease;
   -o-transition: all 900ms ease;
 }

 .tabs-box .tab.active-tab {
   display: block;
 }

 .tabs-box .tab {
   transform: scale(0.9, 0.9) translateY(0px);
 }

 .tabs-box .tab.active-tab {
   transform: scale(1) translateY(0px);
 }



 .plane-fly-section {
   position: relative;

   height: 100vh;
   background-color: #e2ded8;
   z-index: 20;
   overflow: visible;
   /* यह सुनिश्चित करेगा कि कंटेंट बाहर न कटे */
   margin-bottom: 0;
 }

 .sticky-plane-wrapper {
   position: sticky;
   top: 0;
   height: 100vh;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 8%;
 }

 .split-left,
 .split-right {
   width: 35%;
   z-index: 10;
   margin: 0 !important;
 }

 .huge-title {
   font-size: 8vw;
   line-height: 1;
   margin: 0;
 }

 .sub-text-left {
   font-size: 1.4vw;
   line-height: 1.2;
   color: #23211e;
   font-weight: 500;
 }



 .right-info-block {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-top: 30px;
 }

 .visa-labels {
   display: flex;
   justify-content: space-between;
   font-size: 0.8vw;
   font-weight: 700;
   letter-spacing: 1px;
   border-bottom: 1px solid #c0bcb5;
   padding-bottom: 10px;
 }

 .visa-desc {
   font-size: 16px;
   line-height: 1.6;
   color: #23211e;
   opacity: 0.9;
 }

 .plane-center-container {
   position: absolute;
   left: 50%;
   top: 50%;
   width: 140vw;
   z-index: 5;
   transform: translate(-50%, -50%);
   will-change: transform;
 }

 .plane-center-container img {
   width: 100%;
   height: auto;
   filter: drop-shadow(0px 30px 40px rgba(0, 0, 0, 0.3));
 }








 .list-style-one li {
   position: relative;
   display: block;
   font-size: 16px;
   padding-left: 35px;
   margin-bottom: 8px;
 }

 .list-style-one li:last-child {
   margin-bottom: 0px;
 }

 .list-style-one li:before {
   position: absolute;
   content: '\e90f';
   font-family: 'icomoon';
   font-size: 20px;
   left: 0px;
   top: 0px;
   color: #888;
 }

 .link-btn a {
   position: relative;
   display: inline-block;
   font-size: 16px;
   line-height: 26px;
   font-weight: 500;
   color: #0F181D;
 }

 .link-btn a:hover {
   color: var(--secondary-color);
 }

 .link-btn a span {
   position: relative;
   padding-right: 20px;
 }

 .link-btn a span:before {
   position: absolute;
   content: '\e908';
   font-family: 'icomoon';
   font-size: 14px;
   top: -1px;
   right: 0px;
 }

 .nav-style-one button {
   position: relative;
   display: inline-block;
   width: 50px;
   height: 50px;
   line-height: 52px;
   font-size: 12px;
   text-align: center;
   color: var(--white-color);
   background: var(--main-color);
   border-radius: 50%;
   transition: all 500ms ease;
 }

 .nav-style-one button:hover {
   background: var(--secondary-color);
 }

 @-webkit-keyframes shine {
   100% {
     left: 125%;
   }
 }

 @keyframes shine {
   100% {
     left: 125%;
   }
 }


 .parallax-bg {
   position: absolute;
   left: 0px;
   top: -30%;
   width: 100%;
   height: 150%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   background-attachment: fixed;
   z-index: -1;
 }

 @keyframes slide {
   from {
     background-position: 0 0;
   }

   to {
     background-position: 1920px 0;
   }
 }

 @-webkit-keyframes slide {
   from {
     background-position: 0 0;
   }

   to {
     background-position: 1920px 0;
   }
 }



 .passport-section {
   padding: 300px 0px 150px 0px;
 }

 .passport-section .inner-box {
   max-width: 894px;
   margin: 0 auto;
 }

 .passport-section .image-box img {
   width: 100%;
 }

 .passport-section .pattern-layer .pattern-1 {
   position: absolute;
   left: 0px;
   top: 0px;
   right: 0px;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position: center;
 }

 .passport-section .pattern-layer .pattern-2 {
   position: absolute;
   left: 0px;
   top: 244px;
   width: 425px;
   height: 360px;
   background-repeat: no-repeat;
 }

 .passport-section .pattern-layer .pattern-3 {
   position: absolute;
   right: 80px;
   top: 150px;
   width: 447px;
   height: 347px;
   background-repeat: no-repeat;
 }


 /** main-footer **/

 .main-footer {
   position: relative;
   background: #0F181D;
 }

 .main-footer .widget-section {
   padding: 107px 0px 47px 0px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 }

 .main-footer .logo-widget {
   margin-top: -20px;
 }

 .main-footer .logo-widget .footer-logo {
   display: block;
   margin-bottom: 22px;
 }

 .main-footer .logo-widget .text p {
   color: var(--white-color);
 }

 .main-footer .logo-widget .info li {
   position: relative;
   display: block;
   color: var(--white-color);
   margin-bottom: 10px;
   padding-left: 38px;
 }

 .main-footer .logo-widget .info li:last-child {
   margin-bottom: 0px;
 }

 .main-footer .logo-widget .info li i {
   position: absolute;
   left: 0px;
   top: 2px;
   font-size: 22px;
   color: var(--secondary-color);
 }

 .main-footer .logo-widget .info li a {
   display: inline-block;
   color: var(--white-color);
 }

 .main-footer .logo-widget .info li a:hover {
   text-decoration: underline;
 }

 .main-footer .logo-widget .social-links li {
   position: relative;
   display: inline-block;
   float: left;
   margin-right: 15px;
 }

 .main-footer .logo-widget .social-links li:last-child {
   margin: 0px;
 }

 .main-footer .logo-widget .social-links li a {
   position: relative;
   display: inline-block;
   width: 30px;
   height: 30px;
   line-height: 34px;
   font-size: 14px;
   color: var(--white-color);
   background: #172329;
   text-align: center;
   border-radius: 50%;
 }

 .main-footer .logo-widget .social-links li a:hover {
   background: var(--main-color);
 }

 .main-footer .widget-title {
   position: relative;
   display: block;
   max-width: 210px;
   padding-bottom: 20px;
   margin-bottom: 40px;
   border-bottom: 1px solid #B4C4D9;
 }

 .main-footer .widget-title:before {
   position: absolute;
   content: '';
   background: var(--secondary-color);
   width: 96px;
   height: 1px;
   left: 0px;
   bottom: -1px;
 }

 .main-footer .widget-title h3 {
   font-size: 24px;
   line-height: 34px;
   font-weight: 700;
   color: var(--white-color);
 }

 .main-footer .links-widget .links-list li {
   position: relative;
   display: block;
   margin-bottom: 25px;
 }

 .main-footer .links-widget .links-list li a {
   display: inline-block;
   font-weight: 500;
   color: var(--white-color);
 }

 .main-footer .links-widget .links-list li a:hover {
   color: var(--secondary-color);
 }

 .main-footer .gallery-widget .image-list {
   margin: 0px -5px;
 }

 .main-footer .gallery-widget .image-list li {
   position: relative;
   display: inline-block;
   float: left;
   margin: 0px 5px 10px 5px;
 }

 .main-footer .gallery-widget .image-list li .image-box {
   position: relative;
   display: block;
   width: 104px;
   height: 100px;
   border-radius: 5px;
   background: transparent;
   overflow: hidden;
 }

 .main-footer .gallery-widget .image-list li .image-box img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 5px;
   filter: grayscale(30%) sepia(40%) brightness(0.7);
   transition: all 500ms ease;
 }

 .main-footer .gallery-widget .image-list li .image-box:hover img {
   filter: grayscale(0%) sepia(0%) brightness(1);
   transform: scale(1.1);
 }

 .main-footer .gallery-widget .image-list li .image-box a {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%) scale(0, 0) rotate(-90deg);
   font-size: 16px;
   color: #ffffff;
   background: var(--main-color);
   width: 40px;
   height: 40px;
   line-height: 40px;
   text-align: center;
   border-radius: 50%;
   z-index: 2;
   transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
 }

 .main-footer .gallery-widget .image-list li .image-box:hover a {
   transform: translate(-50%, -50%) scale(1, 1) rotate(0deg);
 }

 .main-footer .footer-bottom {
   position: relative;
   width: 100%;
   padding: 29px 0px;
   text-align: center;
 }

 .main-footer .footer-bottom p,
 .main-footer .footer-bottom p a:hover {
   color: var(--white-color);
 }

 .main-footer .footer-bottom p a {
   color: var(--secondary-color);
 }

 .main-footer {
   position: relative;
   overflow: hidden;
 }

 .main-footer::before {
   content: '';
   position: absolute;
   inset: 0;
   background:
     linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.72)),
     radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
   z-index: 1;
 }

 .main-footer .auto-container,
 .main-footer .widget-section,
 .main-footer .footer-bottom {
   position: relative;
   z-index: 2;
 }

 .main-footer .pattern-layer {
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   opacity: 1;
   filter: brightness(0.68) saturate(1.08);
 }


 /** header-style-two **/

 .header-style-two .header-top .search-form {
   margin-right: 0px;
 }

 .header-style-two .header-lower {
   padding: 0px;
 }

 .header-style-two .header-lower .outer-box {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .header-style-two .header-lower .logo-box {
   margin: 0px;
 }

 .header-style-two .header-lower .main-menu .navigation>li>a {
   padding-top: 50px;
   padding-bottom: 50px;
 }

 .header-style-two .header-lower .main-menu .navigation>li>a:before {
   position: absolute;
   content: '';
   width: 34px;
   height: 1px;
   left: 50%;
   bottom: 36px;
   transform: translateX(-50%) scale(0, 0);
   background: var(--main-color);
   transition: all 500ms ease;
 }

 .header-style-two .header-lower .main-menu .navigation>li>a:hover:before,
 .header-style-two .header-lower .main-menu .navigation>li.current>a:before {
   transform: translateX(-50%) scale(1, 1);
 }

 .header-style-two .btn-box .theme-btn {
   padding: 13.5px 24px;
   background: var(--main-color);
 }

 .header-style-two .btn-box .theme-btn:hover {
   box-shadow: inset 0 0 0 2em var(--secondary-color);
 }


 @-webkit-keyframes ripple {
   70% {
     -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
   }

   100% {
     -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
   }
 }

 @keyframes ripple {
   70% {
     -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
   }

   100% {
     -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
     box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
   }
 }


 /** footer-style-two **/

 .main-footer.style-two {
   background: var(--main-color);
 }

 .main-footer .logo-widget .text a {
   display: inline-block;
   font-size: 16px;
   color: var(--white-color);
   margin-top: 21px;
 }

 .main-footer .logo-widget .text a:hover {
   color: var(--secondary-color);
 }

 .main-footer.style-two .gallery-widget .image-list li .image-box {
   width: 126px;
   height: 115px;
   border-radius: 0px;
 }

 .main-footer.style-two .gallery-widget .image-list li .image-box img {
   border-radius: 0px;
 }

 .main-footer .post-widget .post {
   position: relative;
   display: block;
   margin-bottom: 20px;
 }

 .main-footer .post-widget .post:last-child {
   margin-bottom: 0px;
 }

 .main-footer .post-widget .post .post-info li {
   position: relative;
   display: inline-block;
   float: left;
   font-size: 12px;
   line-height: 26px;
   color: var(--white-color);
   margin-right: 17px;
 }

 .main-footer .post-widget .post .post-info li:last-child {
   margin: 0px;
 }

 .main-footer .post-widget .post .post-info li a {
   display: inline-block;
   color: var(--white-color);
 }

 .main-footer .post-widget .post .post-info li a:hover {
   color: var(--secondary-color);
 }

 .main-footer .post-widget .post .post-info li:before {
   position: absolute;
   content: '';
   background: var(--white-color);
   width: 1px;
   height: 10px;
   top: 8px;
   right: -9px;
 }

 .main-footer .post-widget .post .post-info li:last-child:before {
   display: none;
 }

 .main-footer .post-widget .post .post-info {
   margin-bottom: 5px;
 }

 .main-footer .post-widget .post h4 {
   display: block;
   font-size: 20px;
   line-height: 30px;
   font-weight: 700;
 }

 .main-footer .post-widget .post h4 a {
   display: inline-block;
   color: var(--white-color);
 }

 .main-footer .post-widget .post h4 a:hover {
   color: var(--secondary-color);
 }

 .main-footer.style-two .widget-section {
   padding-top: 185px;
 }

 .header-style-three .header-lower {
   position: absolute;
   left: 0px;
   width: 100%;
   background: transparent;
 }

 .main-footer.style-three .widget-section {
   padding-top: 125px;
 }

 .main-footer.style-three .pattern-layer-2 {
   position: absolute;
   left: ;
 }

 .main-footer .bg-layer {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
 }

 .main-footer .bg-layer:before {
   position: absolute;
   content: '';
   background: var(--main-color);
   width: 100%;
   height: 100%;
   left: 0px;
   top: 0px;
   opacity: 0.90;
 }

 .main-footer.style-three .widget-section {
   border-bottom: none;
 }

 .main-footer.style-three .footer-bottom {
   background: #07316D;
 }

 .main-footer.style-three .footer-bottom p a {
   color: var(--white-color);
 }

 .main-footer.style-three .footer-bottom a:hover {
   text-decoration: underline;
 }

 .main-footer .footer-logo {
   position: relative;
   display: block;
 }


 /** header-style-four **/

 .header-style-four .header-lower {
   position: absolute;
   left: 0px;
   top: 50px;
   width: 100%;
   padding: 0px 130px;
   background: transparent;
 }

 .header-style-four .header-lower .outer-box {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .header-style-four .header-lower .logo-box {
   margin-right: 0px;
   padding: 0px;
 }

 .header-style-four .header-lower .menu-area {
   position: relative;
   background: #fff;
   box-shadow: 0px 4px 20px rgba(116, 116, 116, 0.05);
   border-radius: 50px;
   padding: 0px 75px;
 }

 .main-header .menu-right-content li {
   position: relative;
   display: inline-block;
   float: left;
   margin-right: 20px;
 }

 .main-header .menu-right-content li:last-child {
   margin: 0px;
 }

 .main-header .menu-right-content li.search-box-outer,
 .main-header .menu-right-content li a {
   position: relative;
   display: inline-block;
   width: 80px;
   height: 80px;
   line-height: 86px;
   background: var(--white-color);
   font-size: 24px;
   color: var(--main-color);
   text-align: center;
   border-radius: 50%;
   cursor: pointer;
   transition: all 500ms ease;
 }

 .main-header .menu-right-content li.search-box-outer:hover,
 .main-header .menu-right-content li a:hover {
   color: var(--white-color);
   background: var(--main-color);
 }

 .header-style-four .sticky-header {
   background: #F5F5F5;
 }

 .main-header .sticky-header .menu-right-content li.search-box-outer,
 .main-header .sticky-header .menu-right-content li a {
   width: 50px;
   height: 50px;
   line-height: 56px;
   font-size: 20px;
 }


 /*** Search Popup ***/

 .search-popup {
   position: fixed;
   left: 0;
   top: 0px;
   width: 100%;
   height: 100%;
   z-index: 99999;
   visibility: hidden;
   opacity: 0;
   overflow: auto;
   background: rgba(0, 0, 0, 0.80);
   -webkit-transform: translateY(101%);
   -ms-transform: translateY(101%);
   transform: translateY(101%);
   transition: all 700ms ease;
   -moz-transition: all 700ms ease;
   -webkit-transition: all 700ms ease;
   -ms-transition: all 700ms ease;
   -o-transition: all 700ms ease;
 }

 .search-popup.popup-visible {
   -webkit-transform: translateY(0%);
   -ms-transform: translateY(0%);
   transform: translateY(0%);
   visibility: visible;
   opacity: 1;
 }

 .search-popup .popup-inner {
   width: 100%;
   background: #fff;
   height: 100%;
 }

 .search-popup .upper-box {
   position: relative;
   padding: 70px 70px;
   z-index: 1;
 }

 .search-popup .upper-box .logo-box {
   max-width: 149px;
 }

 .search-popup .overlay-layer {
   position: absolute;
   left: 0px;
   top: 0px;
   right: 0px;
   bottom: 0px;
   display: block;
 }

 .search-popup .close-search {
   position: relative;
   font-size: 22px;
   color: #141417;
   cursor: pointer;
   z-index: 5;
   top: 11px;
   transition: all 500ms ease;
 }

 .search-popup .close-search:hover {
   color: red;
 }

 .search-popup .search-form {
   position: relative;
   width: 100%;
   padding: 100px 0px 250px 0px;
 }

 .search-popup .search-form .form-group {
   position: relative;
   margin: 0px;
 }

 .search-popup .search-form fieldset input[type="search"] {
   position: relative;
   height: 90px;
   padding: 20px 0px;
   background: #ffffff;
   line-height: 30px;
   font-size: 20px;
   color: #808080;
   font-family: 'Inter', sans-serif;
   border: none;
   font-weight: 400;
   border-radius: 0px;
   padding-right: 50px;
   border-bottom: 1px solid #e5e5e5;
 }

 .search-popup .search-form fieldset button[type="submit"] {
   position: absolute;
   top: 30px;
   right: 0px;
   font-size: 22px;
   color: #141417;
   cursor: pointer;
   transition: all 500ms ease;
 }

 .search-popup .search-form fieldset input[type="search"]:focus {
   border-color: #141417;
 }

 .search-popup .form-control:focus {
   box-shadow: none !important;
 }


 .main-footer.style-four {
   background: var(--main-color);
 }

 .footer-top {
   position: relative;
   padding: 100px 0px 60px 0px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 }

 .footer-top .footer-logo {
   display: block;
   margin-bottom: 25px;
 }

 .footer-top p {
   color: var(--white-color);
   max-width: 700px;
   margin: 0 auto;
   margin-bottom: 30px;
 }

 .footer-top .social-links li {
   position: relative;
   display: inline-block;
   margin: 0px 10px;
 }

 .footer-top .social-links li a {
   display: inline-block;
   font-size: 18px;
   color: var(--white-color);
 }

 .footer-top .social-links li a:hover {
   color: var(--secondary-color);
 }

 .main-footer.style-four .gallery-widget .image-list li .image-box {
   width: 126px;
   height: 115px;
   border-radius: 0px;
 }

 .main-footer.style-four .widget-section {
   padding-bottom: 0px;
   border-bottom: none;
 }

 .main-footer.style-four .pattern-layer-2 {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
 }


 .main-footer.style-five {
   background: var(--main-color);
 }

 .main-footer .contact-widget .info-list li {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: left;
   margin-bottom: 24px;
 }

 .main-footer .contact-widget .info-list li:last-child {
   margin-bottom: 0px;
 }

 .main-footer .contact-widget .info-list li .icon-box {
   position: relative;
   display: inline-block;
   width: 40px;
   height: 40px;
   line-height: 40px;
   font-size: 16px;
   color: var(--white-color);
   background: var(--secondary-color);
   text-align: center;
   border-radius: 50%;
   margin-right: 17px;
 }

 .main-footer .contact-widget .info-list li p {
   color: var(--white-color);
 }

 .main-footer .contact-widget .info-list li p a {
   color: var(--white-color);
 }

 .main-footer .contact-widget .info-list li p a:hover {
   color: var(--secondary-color);
 }

 .main-footer .newsletter-widget .text p {
   color: var(--white-color);
 }

 .main-footer .newsletter-widget .form-inner .form-group {
   position: relative;
   margin: 0px;
 }

 .main-footer .newsletter-widget .form-inner .form-group input[type='email'] {
   position: relative;
   display: block;
   width: 100%;
   height: 48px;
   background: rgba(180, 196, 217, 0.2);
   font-size: 14px;
   color: rgba(255, 255, 255, 0.3);
   border: 1px solid transparent;
   padding: 10px 140px 10px 50px;
   transition: all 500ms ease;
 }

 .main-footer .newsletter-widget .form-inner .form-group input:focus {
   border-color: #fff;
   color: #fff;
 }

 .main-footer .newsletter-widget .form-inner .form-group i {
   position: absolute;
   top: 16px;
   left: 20px;
   font-size: 16px;
   color: rgba(255, 255, 255, 0.3);
   z-index: 1;
 }

 .main-footer .newsletter-widget .form-inner .form-group .theme-btn {
   position: absolute;
   top: 7px;
   right: 9px;
   font-size: 14px;
   font-weight: 400;
   padding: 3px 19px;
 }

 .main-footer .newsletter-widget .social-links li {
   position: relative;
   display: inline-block;
   margin-right: 20px;
 }

 .main-footer .newsletter-widget .social-links li:last-child {
   margin: 0px;
 }

 .main-footer .newsletter-widget .social-links li a {
   display: inline-block;
   font-size: 16px;
   color: var(--white-color);
 }

 .main-footer .newsletter-widget .social-links li a:hover {
   color: var(--secondary-color);
 }

 .main-footer.style-five .post-widget .post {
   padding-left: 106px;
   margin-bottom: 15px;
   min-height: 91px;
 }

 .main-footer.style-five .post-widget .post:last-child {
   margin-bottom: 0px;
 }

 .main-footer.style-five .post-widget .post .post-thumb {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 90px;
   height: 93px;
   border-radius: 5px;
   background: var(--main-color);
 }

 .main-footer.style-five .post-widget .post .post-thumb img {
   width: 100%;
   border-radius: 5px;
   transition: all 500ms ease;
 }

 .main-footer.style-five .post-widget .post:hover .post-thumb img {
   opacity: 0.5;
 }

 .main-footer.style-five .widget-section {
   border-bottom: none;
 }


 .accordion-box .block .acc-content.current {
   display: block;
 }

 .accordion-box .block .acc-content {
   display: none;
 }

 .testimonial-section.coaching-page {
   padding: 150px 0px 220px 0px;
 }

 .custom-controls-stacked {
   position: relative;
 }

 .custom-control.material-checkbox .material-control-input {
   display: none;
 }

 .custom-control.material-checkbox .material-control-indicator {
   display: inline-block;
   position: absolute;
   top: 7px;
   left: 0px;
   width: 15px;
   height: 15px;
   border: 1px solid var(--main-color);
   cursor: pointer;
 }

 .custom-control.material-checkbox .material-control-indicator:before {
   position: absolute;
   content: "\e93e";
   font-family: 'icomoon';
   font-size: 8px;
   left: -1px;
   top: 0px;
   width: 15px;
   height: 15px;
   line-height: 15px;
   text-align: center;
   color: var(--main-color);
   opacity: 0;
   transition: all 500ms ease;
 }

 .custom-control.material-checkbox .material-control-input:checked~.material-control-indicator:before {
   opacity: 1;
 }

 .custom-controls-stacked .description {
   position: relative;
   display: inline-block;
   padding: 0px;
   margin-left: 25px;
   font-size: 14px;
   line-height: 26px;
   color: #888;
   cursor: pointer;
 }
 
 /* Reduce excessive padding between sections */
 section:not(.banner-section):not(.plane-fly-section):not(.main-header) {
   padding-top: 50px !important;
   padding-bottom: 50px !important;
 }

 /* Homepage premium Australia refresh */
 :root {
   --home-container: 1720px;
   --home-gutter: 68px;
 }

 .home_one {
   background: #f7f9fc;
 }

 .home_one .auto-container,
 .home_one .header-top .outer-container,
 .home_one .header-lower .auto-container,
 .home_one .countries-section .tabs-content .content-box {
   max-width: var(--home-container);
   padding-left: var(--home-gutter);
   padding-right: var(--home-gutter);
   margin-left: auto;
   margin-right: auto;
 }

 .home_one .main-header {
   z-index: 999;
 }

 .home_one .header-lower {
   background: rgba(255, 255, 255, 0.96);
   box-shadow: 0 16px 45px rgba(3, 30, 68, 0.08);
   backdrop-filter: blur(14px);
 }

 .home_one .header-lower .outer-box {
   min-height: 86px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
 }

 .home_one .header-lower .auto-container {
   max-width: var(--home-container);
   padding-left: 30px;
   padding-right: 0;
 }

 .home_one .sticky-header .auto-container {
   max-width: var(--home-container);
   padding-left: px;
   padding-right: 30px;
 }

 .home_one .header-lower .logo-box {
   float: none;
   margin-right: 42px;
   padding-top: 0;
   padding-bottom: 0;
   flex-shrink: 0;
 }

 .home_one .header-lower .logo img,
 .home_one .sticky-header .logo img,
 .home_one .mobile-menu .nav-logo img {
   max-width: 172px;
   height: auto;
 }

 .home_one .header-lower .nav-outer {
   float: none;
   display: flex;
   align-items: center;
   justify-content: space-between;
   min-width: 0;
   width: auto;
   flex: 1 1 auto;
   padding-left: 0;
   }

 .home_one .main-menu .navigation > li {
   margin: 0 15px;
 }

 .home_one .main-menu .navigation > li > a {
   font-size: 15px;
   line-height: 24px;
   padding: 31px 0;
   font-weight: 700;
   color: #082656;
   letter-spacing: 0;
 }

 .home_one .main-menu .navigation > li.current > a,
 .home_one .main-menu .navigation > li:hover > a {
   color: #d71920;
 }

 .home_one .main-menu .navigation > li > ul,
 .home_one .main-menu .navigation > li > ul > li > ul {
   border-radius: 8px;
   box-shadow: 0 22px 60px rgba(4, 24, 54, 0.18);
   overflow: hidden;
 }

 .home_one .support-box {
   min-width: 250px;
   padding-left: 78px;
   margin-left: 34px;
   flex-shrink: 0;
 }

 .home_one .main-header .support-box .image-box {
   left: 0;
 }

 .home_one .header-top .top-right {
   gap: 18px;
   flex: 0 0 auto !important;
   margin-left: auto !important;
   align-items: center !important;
 }

 .home_one .header-top .top-inner {
   min-height: 66px;
 }

 .home_one .header-top .search-form {
   width: 260px !important;
   margin-right: 0 !important;
   flex: 0 0 260px;
 }

 .home_one .header-top .search-form .form-group {
   width: 100%;
 }

 .home_one .header-top .search-form .form-group input[type="search"] {
   width: 100%;
   height: 42px;
   padding-left: 26px;
   padding-right: 50px;
   border-radius: 30px;
 }

 .home_one .header-top .search-form .form-group button {
   top: 50%;
   transform: translateY(-50%);
 }

 .home_one .header-top .btn-box {
   width: auto;
   margin-left: 0;
   flex: 0 0 auto;
 }

 .home_one .header-top .btn-box a {
   min-width: 178px;
   height: 42px;
   line-height: 42px;
   padding: 0 26px;
   text-align: center;
 }

 .home_one .banner-section {
   background:
     radial-gradient(circle at 70% 20%, rgba(215, 25, 32, 0.18), transparent 24%),
     linear-gradient(135deg, #061b3d 0%, #073777 48%, #04142f 100%);
 }

 .home_one .banner-section:before {
   position: absolute;
   content: '';
   inset: 0;
   background: linear-gradient(90deg, rgba(2, 15, 39, 0.82) 0%, rgba(4, 33, 78, 0.65) 43%, rgba(3, 19, 44, 0.12) 100%);
   z-index: 0;
   pointer-events: none;
 }

 .home_one .banner-section .pattern-layer {
   opacity: 0.5;
   position: absolute;
   inset: 0;
   z-index: 1;
   pointer-events: none;
 }

 .home_one .banner-carousel {
   position: relative;
   z-index: 2;
 }

 .home_one .banner-carousel .slide-item {
   min-height: 690px;
   padding: 92px 0 105px;
   overflow: hidden;
 }

 .home_one .banner-carousel .content-box {
   max-width: 690px;
   z-index: 12;
   transform: translateY(-45px);
 }

 .home_one .banner-carousel .content-box .experience-inner,
 .home_one .banner-carousel .content-box h2,
 .home_one .banner-carousel .content-box p,
 .home_one .banner-carousel .content-box .btn-box {
   opacity: 1;
   transform: none;
 }

 .home_one .banner-carousel .content-box h2 {
   font-size: 76px;
   line-height: 82px;
   letter-spacing: 0;
   margin-bottom: 24px;
 }

 .home_one .banner-carousel .content-box h2 span {
   line-height: 76px;
   color: #dceaff;
 }

 .home_one .banner-carousel .content-box p {
   max-width: 610px;
   font-size: 18px;
   line-height: 30px;
   color: rgba(255, 255, 255, 0.86);
 }

 .home_one .banner-carousel .content-box .btn-box {
   display: flex;
   align-items: center;
   gap: 24px;
   flex-wrap: wrap;
 }

 .home_one .hero-link {
   color: #fff;
   font-weight: 800;
   letter-spacing: 0;
 }

 .home_one .hero-link i {
   position: relative;
   top: 2px;
   margin-left: 8px;
 }

 .home_one .hero-proof-list {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   margin-top: 38px;
 }

 .home_one .hero-proof-list li {
   min-width: 142px;
   padding: 16px 18px;
   border: 1px solid rgba(255, 255, 255, 0.18);
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.09);
   box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 45px rgba(0,0,0,0.16);
   backdrop-filter: blur(12px);
 }

 .home_one .hero-proof-list strong,
 .home_one .hero-proof-list span {
   display: block;
   color: #fff;
 }

 .home_one .hero-proof-list strong {
   font-size: 22px;
   line-height: 26px;
   font-weight: 900;
 }

 .home_one .hero-proof-list span {
   font-size: 13px;
   line-height: 19px;
   opacity: 0.78;
 }

 .home_one .banner-section .slide-item .premium-hero-image {
   right: 0px;
   top: 10px;
   bottom: 0;
   width: min(46vw, 650px);
   height: auto;
   opacity: 1;
   z-index: 4;
   overflow: visible;
   box-shadow: none;
   transform: translate3d(0, 0, 0);
   background: transparent;
 }

 .home_one .banner-section .active .slide-item .premium-hero-image {
   transform: translate3d(0, 0, 0);
 }

 .home_one .banner-section .slide-item .premium-hero-image:before {
   display: none;
 }

 .home_one .banner-section .slide-item .premium-hero-image img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: contain;
   object-position: center bottom;
   filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.28));
   animation: graduateHeroReveal 900ms ease-out both, graduateHeroFloat 5.5s ease-in-out 900ms infinite;
   transform-origin: center bottom;
 }

 .home_one .banner-section .slide-item .premium-hero-image:after {
   position: absolute;
   content: '';
   left: 18%;
   right: 10%;
   bottom: 2%;
   height: 22%;
   background: radial-gradient(ellipse at center, rgba(255,255,255,0.22), transparent 62%);
   filter: blur(18px);
   opacity: 0.38;
   pointer-events: none;
   animation: graduateHeroGlow 5.5s ease-in-out infinite;
 }

 @keyframes graduateHeroFloat {
   0%, 100% {
     transform: scale(1) rotate(0deg);
   }
   50% {
     transform: scale(1.018) rotate(-0.8deg);
   }
 }

 @keyframes graduateHeroReveal {
   0% {
     opacity: 0;
     transform: translate3d(28px, 20px, 0) scale(0.96);
   }
   100% {
     opacity: 1;
     transform: translate3d(0, 0, 0) scale(1);
   }
 }

 @keyframes graduateHeroGlow {
   0%, 100% {
     opacity: 0.28;
     transform: scaleX(0.92);
   }
   50% {
     opacity: 0.48;
     transform: scaleX(1.08);
   }
 }

 .home_one .hero-float {
   display: none;
 }

 .home_one .hero-float img {
   width: 100%;
   height: auto;
   display: block;
 }

 .home_one .hero-plane {
   right: 32%;
   top: 23%;
   width: 138px;
   animation-delay: 0.2s;
 }

 .home_one .hero-globe {
   right: 9%;
   top: 19%;
   width: 86px;
   animation-delay: 1s;
 }

 .home_one .hero-city {
   right: 9%;
   bottom: 18%;
   width: 140px;
   animation-delay: 1.7s;
 }

 @keyframes premiumFloat {
   0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
   50% { transform: translate3d(0, -16px, 0) rotate(2deg); }
 }

 .home_one .plane-fly-section {
   height: 92vh;
   min-height: 620px;
   background:
     radial-gradient(circle at 50% 45%, rgba(255,255,255,0.72), transparent 28%),
     linear-gradient(120deg, #eef3f7 0%, #e1ded7 100%);
 }

 .home_one .plane-fly-section .sticky-plane-wrapper {
   max-width: var(--home-container);
   margin-left: auto;
   margin-right: auto;
   padding-left: var(--home-gutter);
   padding-right: var(--home-gutter);
 }

 .home_one .plane-fly-section .split-left,
 .home_one .plane-fly-section .split-right {
   flex: 0 0 34%;
   width: 34%;
   min-width: 0;
   align-self: flex-start;
   padding-top: 200px;
 }

 .home_one .plane-fly-section .split-right {
   flex-basis: 38%;
   width: 38%;
   padding-right: 10px;
 }

 .home_one .huge-title {
   max-width: 100%;
   overflow-wrap: normal;
   color: #06265a;
   font-size: clamp(76px, 6.3vw, 118px);
   line-height: 0.95;
   font-weight: 900;
 }

 .home_one .split-right .huge-title {
   font-size: clamp(76px, 6.3vw, 118px);
 }

 .home_one .sub-text-left,
 .home_one .visa-desc {
   color: #26364d;
 }

 .home_one .sub-text-left {
   margin-top: 30px;
 }

 .home_one .visa-labels {
   color: #d71920;
   border-bottom-color: rgba(6, 38, 90, 0.18);
 }

 .home_one .feature-section {
   margin-top: 0;
   z-index: 30;
 }

 .home_one .banner-section .owl-nav {
   display: none !important;
 }

 .home_one .banner-carousel .content-box .experience-inner {
   margin-bottom: 18px;
   transform: translate(-28px, 18px) scale(0.86) !important;
   transform-origin: left center;
 }

 .home_one .banner-carousel .active .content-box .experience-inner {
   transform: translate(-28px, 18px) scale(0.86) !important;
 }

 .home_one .feature-section .inner-container,
 .home_one .chooseus-block-one .inner-box,
 .home_one .news-block-one .inner-box,
 .home_one .team-block-one .inner-box {
   border-radius: 8px;
   box-shadow: 0 24px 70px rgba(8, 38, 86, 0.1);
 }

 .home_one .feature-section .inner-container {
   border: 1px solid rgba(6, 38, 90, 0.08);
 }

 .home_one .about-section {
   background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
 }

 .home_one .about-section .image_block_one .image-box .image-1,
 .home_one .about-section .image_block_one .image-box .image-2 {
   border-radius: 8px;
   box-shadow: 0 28px 80px rgba(4, 26, 58, 0.14);
 }

 .home_one .countries-section,
 .home_one .chooseus-section,
 .home_one .image-section,
 .home_one .team-section,
 .home_one .news-section {
   background: #f7f9fc;
 }

 .home_one .countries-section .tab-btns li.active-btn,
 .home_one .countries-section .tab-btns li:hover {
   color: #d71920;
 }

 .home_one .countries-section .tab-btn-box,
 .home_one .countries-section #tab-2,
 .home_one .countries-section #tab-3 {
   display: none !important;
 }

 .home_one .countries-section .tabs-content .content-box {
   display: flex;
   justify-content: center;
   gap: 30px;
   flex-wrap: wrap;
 }

 .home_one .countries-section .countries-block-one {
   float: none;
   width: 31.333%;
   max-width: 420px;
   padding: 0;
 }

 .home_one .countries-block-one .inner-box,
 .home_one .image-section .image-box {
   border-radius: 8px;
   transform-style: preserve-3d;
 }

 .home_one .countries-block-one .inner-box:hover,
 .home_one .chooseus-block-one .inner-box:hover,
 .home_one .image-section .image-box:hover {
   transform: translateY(-10px) perspective(900px) rotateX(2deg);
 }

 .home_one .dream-section:before,
 .home_one .education-section:before {
   background: linear-gradient(90deg, rgba(3, 24, 57, 0.86), rgba(5, 47, 100, 0.64));
 }

 .home_one .dream-section {
   padding: 115px 0 !important;
   min-height: 560px;
 }

 .home_one .dream-section .auto-container {
   position: relative;
   z-index: 4;
 }

 .home_one .dream-section .content-box {
   max-width: 620px;
 }

 .home_one .dream-visual {
   position: absolute;
   right: max(55px, calc((100vw - var(--home-container)) / 2 + var(--home-gutter)));
   top: 50%;
   width: min(42vw, 560px);
   transform: translateY(-50%);
   z-index: 3;
 }

 .home_one .dream-visual .image-box {
   position: relative;
   overflow: hidden;
   border-radius: 8px;
   box-shadow: 0 34px 90px rgba(0,0,0,0.3);
   transform: perspective(1000px) rotateY(-5deg);
 }

 .home_one .dream-visual .image-box:before {
   position: absolute;
   content: '';
   inset: 0;
   background: linear-gradient(180deg, rgba(4, 28, 64, 0.05), rgba(4, 28, 64, 0.36));
   z-index: 1;
 }

 .home_one .dream-visual .image-box img {
   width: 100%;
   height: 360px;
   object-fit: cover;
   display: block;
 }

 .home_one .dream-visual .floating-card {
   position: absolute;
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 12px 16px;
   color: #fff;
   font-weight: 800;
   border-radius: 8px;
   background: rgba(255,255,255,0.12);
   border: 1px solid rgba(255,255,255,0.24);
   backdrop-filter: blur(14px);
   box-shadow: 0 18px 50px rgba(0,0,0,0.22);
   animation: premiumFloat 5.8s ease-in-out infinite;
   z-index: 2;
 }

 .home_one .dream-visual .floating-card img {
   width: 44px;
   height: 44px;
   object-fit: contain;
 }

 .home_one .dream-visual .card-a {
   left: -28px;
   top: 34px;
 }

 .home_one .dream-visual .card-b {
   right: -20px;
   bottom: 36px;
   animation-delay: 1s;
 }

 .home_one .placeholder-images-section .sec-title h2 {
   font-size: 34px;
   line-height: 44px;
 }

 .home_one .placeholder-images-section .image-box {
   overflow: hidden;
   box-shadow: 0 20px 55px rgba(5, 32, 72, 0.14);
   transition: transform 450ms ease, box-shadow 450ms ease;
 }

 .home_one .placeholder-images-section .image-box img {
   width: 100%;
   height: 220px;
   object-fit: cover;
   transition: transform 650ms ease;
 }

 .home_one .placeholder-images-section .image-box:hover img {
   transform: scale(1.07);
 }

 @media only screen and (max-width: 1399px) {
   .home_one .main-menu .navigation > li {
     margin: 0 10px;
   }

   .home_one .banner-section .slide-item .premium-hero-image {
     right: 35px;
     width: min(46vw, 590px);
     top: 55px;
     height: auto;
   }
 }

 @media only screen and (max-width: 1200px) {
   :root {
     --home-gutter: 30px;
   }
 }

 @media only screen and (max-width: 1200px) {
   .home_one .header-lower {
     padding: 0;
   }

   .home_one .header-lower .auto-container {
     padding-left: var(--home-gutter);
     padding-right: var(--home-gutter);
   }

   .home_one .sticky-header .auto-container {
     padding-left: var(--home-gutter);
     padding-right: var(--home-gutter);
   }

   .home_one .header-lower .outer-box {
     min-height: 76px;
     display: flex;
   }

   .home_one .header-lower .logo-box {
     margin-right: 0;
   }

   .home_one .header-lower .nav-outer {
     width: auto;
     padding-right: 0;
     justify-content: flex-end;
     flex: 0 0 auto;
   }

   .home_one .menu-area .mobile-nav-toggler {
     display: flex;
     width: 48px;
     height: 48px;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 5px;
     border-radius: 8px;
     background: #06265a;
     box-shadow: 0 14px 30px rgba(6, 38, 90, 0.2);
   }

   .home_one .mobile-nav-toggler .icon-bar {
     background: #fff;
   }

   .home_one .banner-section .slide-item .premium-hero-image {
     display: block;
     opacity: 0.28;
     inset: 0;
     width: 100%;
     height: 100%;
     border-radius: 0;
     transform: none;
   }

   .home_one .banner-section .slide-item .premium-hero-image img {
     object-position: right bottom;
   }

   .home_one .banner-section .active .slide-item .premium-hero-image {
     transform: none;
   }

   .home_one .hero-plane {
     display: none;
   }

   .home_one .hero-globe,
   .home_one .hero-city {
     display: none;
   }

   .home_one .plane-center-container {
     width: 118vw;
   }
 }

 @media only screen and (max-width: 991px) {
   .home_one .header-top {
     display: none;
   }

   .home_one .banner-carousel .slide-item {
     min-height: 680px;
     padding: 128px 0 92px;
   }

   .home_one .banner-carousel .content-box {
     transform: translateY(-28px);
   }

   .home_one .dream-visual {
     position: relative;
     right: auto;
     top: auto;
     width: 100%;
     max-width: 560px;
     margin: 40px auto 0;
     transform: none;
   }

   .home_one .dream-section {
     padding: 80px 0 !important;
   }

   .home_one .countries-section .countries-block-one {
     width: 100%;
   }

   .home_one .banner-carousel .content-box h2 {
     font-size: 58px;
     line-height: 64px;
   }

   .home_one .banner-carousel .content-box h2 span {
     line-height: 60px;
   }

   .home_one .sticky-plane-wrapper {
     padding: 0 5%;
   }

   .home_one .split-left,
   .home_one .split-right {
     flex: 0 0 42%;
     width: 42%;
     padding-top: 180px;
   }

   .home_one .sub-text-left {
     margin-top: 30px;
   }

   .home_one .huge-title {
     font-size: clamp(56px, 8vw, 92px);
   }

   .home_one .split-right .huge-title {
     font-size: clamp(56px, 8vw, 92px);
   }

   .home_one .sub-text-left {
     font-size: 18px;
   }
 }

 @media only screen and (max-width: 767px) {
   .home_one .banner-carousel .content-box,
   .home_one .banner-carousel .content-box p {
     max-width: calc(100vw - 30px) !important;
     width: calc(100vw - 30px) !important;
     box-sizing: border-box;
   }

   .home_one .banner-carousel .content-box p {
     white-space: normal !important;
     overflow-wrap: break-word;
   }

   .home_one .banner-carousel .slide-item {
     min-height: 640px;
     padding: 112px 0 70px;
   }

   .home_one .auto-container,
   .home_one .header-top .outer-container,
   .home_one .header-lower .auto-container,
   .home_one .countries-section .tabs-content .content-box {
     padding-left: 15px;
     padding-right: 15px;
   }

   .home_one .banner-carousel .content-box h2 {
     font-size: 42px;
     line-height: 48px;
   }

   .home_one .banner-carousel .content-box h2 span {
     line-height: 46px;
   }

   .home_one .banner-carousel .content-box p {
     font-size: 16px;
     line-height: 27px;
   }

   .home_one .hero-proof-list li {
     min-width: calc(50% - 7px);
   }

   .home_one .hero-plane {
     display: none;
   }

   .home_one .plane-fly-section {
     height: auto;
     min-height: 0;
     padding: 78px 0;
   }

   .home_one .sticky-plane-wrapper {
     position: relative;
     height: auto;
     display: block;
     text-align: center;
   }

   .home_one .split-left,
   .home_one .split-right {
     flex: 0 0 100%;
     width: 100%;
     padding-top: 0;
   }

   .home_one .banner-carousel .content-box {
     transform: none;
   }

   .home_one .plane-center-container {
     position: relative;
     left: auto;
     top: auto;
     width: 86%;
     margin: 30px auto;
     transform: none !important;
   }

   .home_one .huge-title {
     font-size: 54px;
   }

   .home_one .visa-labels {
     font-size: 12px;
   }
 }

 @media only screen and (max-width: 499px) {
   .home_one .header-lower .auto-container {
     padding-left: 22px;
     padding-right: 22px;
   }

   .home_one .header-lower .logo img {
     max-width: 142px;
   }

   .home_one .hero-proof-list {
     display: block;
   }

   .home_one .hero-proof-list li {
     margin-bottom: 10px;
   }

   .home_one .banner-carousel .content-box .btn-box {
     gap: 16px;
   }

   .home_one .banner-carousel .content-box h2 {
     font-size: 36px;
     line-height: 42px;
   }
 }

/* Shared home-style header, topbar and footer for inner pages */
.home-shell .main-header {
  z-index: 999;
}

.home-shell .header-top .outer-container,
.home-shell .header-lower .auto-container,
.home-shell .sticky-header .auto-container,
.home-shell .main-footer .auto-container {
  max-width: var(--home-container);
  margin-left: auto;
  margin-right: auto;
}

.home-shell .header-top .outer-container {
  padding-left: var(--home-gutter);
  padding-right: var(--home-gutter);
}

.home-shell .header-lower {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 45px rgba(3, 30, 68, 0.08);
  backdrop-filter: blur(14px);
}

.home-shell .header-lower .outer-box {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.home-shell .header-lower .auto-container {
  padding-left: 30px;
  padding-right: 0;
}

.home-shell .sticky-header .auto-container {
  padding-right: 30px;
}

.home-shell .header-lower .logo-box {
  float: none;
  margin-right: 42px;
  padding-top: 0;
  padding-bottom: 0;
  flex-shrink: 0;
}

.home-shell .header-lower .logo img,
.home-shell .sticky-header .logo img,
.home-shell .mobile-menu .nav-logo img {
  max-width: 172px;
  height: auto;
}

.home-shell .header-lower .nav-outer {
  float: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  width: auto;
  flex: 1 1 auto;
  padding-left: 0;
}

.home-shell .main-menu .navigation > li {
  margin: 0 15px;
}

.home-shell .main-menu .navigation > li > a {
  font-size: 15px;
  line-height: 24px;
  padding: 31px 0;
  font-weight: 700;
  color: #082656;
  letter-spacing: 0;
}

.home-shell .main-menu .navigation > li.current > a,
.home-shell .main-menu .navigation > li:hover > a {
  color: #d71920;
}

.home-shell .main-menu .navigation > li > ul,
.home-shell .main-menu .navigation > li > ul > li > ul {
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(4, 24, 54, 0.18);
  overflow: hidden;
}

.home-shell .support-box {
  min-width: 250px;
  padding-left: 78px;
  margin-left: 34px;
  flex-shrink: 0;
}

.home-shell .main-header .support-box .image-box {
  left: 0;
}

.home-shell .header-top .top-right {
  gap: 18px;
  flex: 0 0 auto !important;
  margin-left: auto !important;
  align-items: center !important;
}

.home-shell .header-top .top-inner {
  min-height: 66px;
}

.home-shell .header-top .search-form {
  width: 260px !important;
  margin-right: 0 !important;
  flex: 0 0 260px;
}

.home-shell .header-top .search-form .form-group {
  width: 100%;
}

.home-shell .header-top .search-form .form-group input[type="search"] {
  width: 100%;
  height: 42px;
  padding-left: 26px;
  padding-right: 50px;
  border-radius: 30px;
}

.home-shell .header-top .search-form .form-group button {
  top: 50%;
  transform: translateY(-50%);
}

.home-shell .header-top .btn-box {
  width: auto;
  margin-left: 0;
  flex: 0 0 auto;
}

.home-shell .header-top .btn-box a {
  min-width: 178px;
  height: 42px;
  line-height: 42px;
  padding: 0 26px;
  text-align: center;
}

@media only screen and (max-width: 1399px) {
  .home-shell .main-menu .navigation > li {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .home-shell .header-lower {
    padding: 0;
  }

  .home-shell .header-lower .auto-container,
  .home-shell .sticky-header .auto-container {
    padding-left: var(--home-gutter);
    padding-right: var(--home-gutter);
  }

  .home-shell .header-lower .outer-box {
    min-height: 76px;
    display: flex;
  }

  .home-shell .header-lower .logo-box {
    margin-right: 0;
  }

  .home-shell .header-lower .nav-outer {
    width: auto;
    padding-right: 0;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .home-shell .menu-area .mobile-nav-toggler {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    background: #06265a;
    box-shadow: 0 14px 30px rgba(6, 38, 90, 0.2);
  }

  .home-shell .mobile-nav-toggler .icon-bar {
    background: #fff;
  }
}

@media only screen and (max-width: 991px) {
  .home-shell .header-top {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .home-shell .header-top .outer-container,
  .home-shell .header-lower .auto-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 499px) {
  .home-shell .header-lower .auto-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-shell .header-lower .logo img {
    max-width: 142px;
  }
}

 
