/*=============== FONTS ===============*/
@font-face {
  font-family: 'Fibra One';
  src: url('../fonts/FibraOne-Regular.eot');
  src: url('../fonts/FibraOne-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/FibraOne-Regular.woff2') format('woff2'),
      url('../fonts/FibraOne-Regular.woff') format('woff'),
      url('../fonts/FibraOne-Regular.ttf') format('truetype'),
      url('../fonts/FibraOne-Regular.svg#FibraOne-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fibra One Bold';
  src: url('../fonts/FibraOne-Bold.eot');
  src: url('../fonts/FibraOne-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/FibraOne-Bold.woff2') format('woff2'),
      url('../fonts/FibraOne-Bold.woff') format('woff'),
      url('../fonts/FibraOne-Bold.ttf') format('truetype'),
      url('../fonts/FibraOne-Bold.svg#FibraOne-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #D8D2E8;
  --second-color:#C8F0F5;
  --third-color:#ADF2CD;
  --text-color: #0B4655;
  --body-color: #F5EBE1;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font:'Fibra One';
  --title-font:'Fibra One Bold';
  --large-font-size:45px;
  --normal-font-size:36px;
  --small-font-size: 20px;
  --smaller-font-size: 16px;
  --extra-small-font:14px;
  /*========== Font weight ==========*/
  --font-normal:400;
  --font-semi-bold: 600;
  --font-bold: 700;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --large-font-size:45px;
  --normal-font-size:36px;
  --small-font-size: 20px;
  --smaller-font-size: 16px;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--smaller-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
}

ul, ol {
  list-style-position: inside;
}
.list-style-type{
  list-style-type: none;
}
.list-style-unset{
  list-style-position: unset;
}
a {
  text-decoration: none;
  color: var(--text-color);
  font-family: var(--title-font);
  /* text-transform: uppercase; */
  font-size: var(--extra-small-font);
}
a:hover,
a:focus{
  outline: 0;
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
  color: var(--text-color);
  font-family: var(--title-font);  
}
h1{
  font-size: var(--large-font-size);
  font-family: var(--body-font);
}
h3{
  font-size: var(--small-font-size);
}
p{
  color: var(--text-color);
  font-family:var(--body-font);
  font-size:  var(--smaller-font-size);
  line-height: 26px;
}
p.large{
  color: var(--text-color);
  font-size: var(--small-font-size);
}
button:focus{
  outline: 0;
  cursor: pointer;
}
img{
  max-width: 100%;
}
.txt-bold{
  font-weight: bold;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1320px;  
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
/*=============== HEADER-top-bar ===============*/
.top_bar{
  background-color: var(--text-color);
  padding: 16px 15px;  
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 111;
}
.right_box {
  display: flex;
  justify-content: flex-end;
  position: relative;
  /*width: 240px;*/
  align-items: flex-end;
}
.btn{
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
}
.btn img{
  padding-right: 20px;
}
.dropdown-menu{
  margin: 0 auto;
  width: 100%;
  transform: inherit !important;
  top: 100% !important;
}
.dropdown-toggle::after{
  margin-right: 15px;
  font-size: 20px;
  margin: 5px;
}
.btn.focus, .btn:focus {
  outline: 0;
  box-shadow:none;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
}
/*=============== HEADER ===============*/
.header {
  position: absolute;
  left: 0;
  top:0;
  width: 100%;  
  z-index:1111;
  transition: 0.5s all;
}
header.active{
  position: fixed;
}
.header.sticky{
  background: rgba(255, 255, 255, 0.90);  
}
.nav{
  transition: 0.3s all;
}

.menu_child_wrap{
  display: flex;
  justify-content: space-between;
  padding: 40px 0 0;
  align-items: flex-start;
  position: relative;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
}
.header.sticky .menu_child_wrap{
  padding: 20px 0;
}
.header.sticky .nav.nav{
  padding-top: 70px;
}
.logo img{
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
}
.header.sticky .logo img{
  width: 100px;
}
.menu_btn{
  cursor: pointer;
  position: relative;
  z-index:111;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
  display: flex;
  align-items: center;
}
.menu_btn p{
  margin-bottom: 5px;
  padding-right: 15px;
  font-family: 'Fibra One Bold';
}
.menu_btn .cl{
  display: none;
}
.active .menu_btn p{
  display: none;
}
.active .menu_btn p.cl{
  display: block;
}
.menu_btn span{
  width: 32px;
  height: 2px;
  background-color: var(--text-color);
  display: block;
  margin-bottom: 7px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
}

.menu_btn span:nth-child(3n){
  width: 20px;
}
/*=============== NAV ===============*/

.nav {
  height: calc(var(--header-height) + 2.75rem);    
  display: flex;
  justify-content: space-between;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--body-color);
  font-weight: var(--font-bold);
  transition: color 0.3s;
  font-family: Playfair Display;
  font-size: 2.25rem;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}

.nav__link{
  color: var(--text-color);
  font-weight: var(--font-normal);
  padding:4px 0;
  font-size: var(--small-font-size);
  line-height: 27px !important;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  line-height: normal;
  font-size: var(--smaller-font-size);  
  font-family: var(--body-font);
  text-transform: capitalize;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  position: relative;
}
.nav__link:before{
    transition: transform .4s,transform-origin 0s,-webkit-transform .3s,-webkit-transform-origin 0s;
    background: var(--text-color);
    bottom: -1px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;    
}
.nav__menu .nav__list h3{
  line-height: 42px;
  font-size: 24px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--text-color);
  margin-bottom: 25px;
}
div#nav-menu form {
  margin: 0 0 100px;
}
.menu_logo {
  position: static;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  left: 0;
  right: 0;
  max-width: 1700px;
  padding: 0 15px;
  margin: 0 auto;
  align-items: center;
  margin-top: auto;
}
.nav__link:hover,
.nav__link:hover svg,
.dropdown__item:hover .nav__link{
  color: var(--text-color);
  text-decoration: none;
}
.nav__link:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.logo{
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
}
.active .logo{
  opacity: 0;
  z-index: -11;
  position: relative;
}
nav.nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;  
  background: var(--body-color);
  z-index: -1;
  height: 0;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
  opacity: 0;
  padding-top: 150px;
  display:none;
}
.active .nav{
  height: 100vh;
  opacity: 1;
  display:block;
  z-index: 11;
  overflow: auto;
}
.active .menu_btn{
    z-index: 1111;   
}
.active .menu_btn span:last-of-type{
  opacity: 0;
}
.active .menu_btn span:first-of-type {
  position: relative;
  transform: rotate(43deg);
  top: 10px;
  left: 0;
}
.active .menu_btn span {
  position: relative;
  transform: rotate(-45deg);
  top: 1px;
  left: 0;
}
#nav-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.nav__menu .nav__list h3 a{
  line-height: 42px;
  font-size: 24px;
  padding-bottom: 8px;
  margin-bottom: 25px;
  text-transform: unset;
}
.nav__menu .nav__list h3 a:hover{
  color: var(--text-color);
}

/*=============== search ===============*/

button.nav__link{
  background: transparent;
  border: 0;
  cursor: pointer;
}
.searchForm{
  position: relative;
  transition: 0.3s all;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  
}
.searchForm.show{
  display: block;
  height: auto;
  z-index: 1;
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.searchForm .search_wrap{
  position: relative;  
  max-width: 1290px;
  margin: 0 auto;
  width: 100%;
  margin-top: 70px;
}
.searchForm .search_wrap .search_arrow:after{
  content: "";
  background: url('../images/Arrow_button.svg')no-repeat center center;
  width: 30px;
  height: 11px;
  position: absolute;
  right: 20px;
  top:25px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -ms-transition: 0.3s all;
}
.searchForm:hover .search_wrap .search_arrow:after{
  -webkit-animation: mymove 0.6s infinite alternate;
animation: mymove 0.6s infinite alternate;
-moz-animation: mymove 0.6s infinite alternate;
}
@keyframes mymove {
from {transform: translateX(0);}
to {transform: translateX(10px);}
}
.searchForm .search_wrap input[type="text"]{
  display: block;
  width: 100%;
  padding: 15px 70px 15px 25px;
  border: 2px solid var(--text-color);
  border-radius: 35px;
  height: 65px;
  font-size: 26px;
}
.searchForm .search_wrap input[type="text"]:focus{
  outline: 0;
}
.searchForm-form .search_wrap input[type="text"]:focus{
  border: 1px solid #000;
  outline: 0;
  border-radius: 0;
}
.validation-message{  
  color:red;
}
.searchForm .search_wrap input[type="submit"]{
  position: absolute;
  right: 0;
  background: #fff;
  color: var(--body-color);
  background: var(--title-color);
  padding: 10px;
  border:1px solid #00376A;  
  top: 0;
  cursor: pointer;
  transition: all 0.5s;
  position: absolute;
  border: 0;
  color: transparent;
  height: 100%;
}

.searchForm .search_wrap input[type="submit"]::-webkit-input-placeholder {
  color: transparent;
}
.searchForm .search_wrap input[type="submit"]::-moz-placeholder {
  color: transparent;
}
.searchForm .search_wrap input[type="submit"]:-ms-input-placeholder {
  color: transparent;
}
.searchForm .search_wrap input[type="submit"]:-moz-placeholder {
  color: transparent;
}

.searchForm .search_wrap input[type="text"]::-webkit-input-placeholder {
  color: var(--text-color);
}
.searchForm .search_wrap input[type="text"]::-moz-placeholder {
  color: var(--text-color);
}
.searchForm .search_wrap input[type="text"]:-ms-input-placeholder {
  color: var(--text-color);
}
.searchForm .search_wrap input[type="text"]:-moz-placeholder {
  color: var(--text-color);
}

/*=============== End header ===============*/
.main_menu .container_fluid, .container_fluid{
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 15px;
}
.top_banner_section .banner_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border:1px solid var(--text-color);
  border-bottom:0 ;
}
.top_banner_section .banner_col{
  max-width: 70%;
  flex: 0 0 70%;
  height: 75vh;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-right: 1px solid var(--text-color);
}
.top_banner_section .right_col{
  max-width: 30%;
  flex: 0 0 30%;
  padding: 50px;
}
.banner_btn{
  margin-top: 50px;
}
.top_banner_section .banner_btn{
  margin-top: 25px;
}
.banner_btn a.button_main{
  width: 300px;
}

.Second_section h2,
.Second_section h3{
  min-height: auto;
  margin: 0;
}
.Second_section h3{
  margin-bottom: 25px;
}
.Second_section h2{
  min-height: 90px;
}

.Second_section{
  background-color:#fff;    
}
.Second_section .spacing_2{
  padding: 140px 450px 100px 100px;
  /* border: 1px solid var(--text-color); */
 border-bottom: 1px solid #0B4655;
 border-right: 1px solid #0B4655;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;  
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  position: relative;
  top:0;
  left: 0;
  background-color: var(--first-color);
}

.Second_section .spacing_2.fullwidthcontent{
  padding: 140px 100px;
} 
.Second_section .spacing_2.no-hover:hover{
  background-color: var(--first-color) !important; 
  top:0;
  left: 0;
  border: 1px solid var(--text-color) !important;
  border-bottom: 0 !important;
}
.Second_section .spacing_2:hover,
.Second_section .spacing_4:hover{
  background-color: var(--second-color) !important;  
  top: -9px;
  left: 9px;
  border: 1px solid var(--text-color) !important;
  z-index: 1;
}
.Second_section .spacing_4{
  padding:140px 60px 50px 70px;
  /* border: 1px solid var(--text-color); */
  border-bottom: 1px solid #0B4655;
  border-right: 1px solid #0B4655;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;  
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  position: relative;
  top:0;
  left: 0;
  background-color: var(--first-color);
}
.Second_section .no-height p{
  height: auto;
  min-height: 110px;
  margin-bottom: 15px;
}
.Second_section p.height{
  min-height: 100px;
  margin-bottom: 60px;  
}
a.button_main{
  display: flex;
  align-items: center;  
  border-bottom: 1px solid var(--text-color);
  padding: 10px 15px 10px 5px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  justify-content: flex-start;  
  justify-content: space-between;  
  text-transform: uppercase;
}
a.button_main:hover,
.Second_section .spacing_2:hover a.button_main, 
.Second_section .spacing_2.fullwidthcontent:hover a.button_main{  
  text-decoration: none;
  color: var(--text-color);
  padding-right: 5px;
  padding-left: 15px;
}
.Second_section .spacing_2.no-hover:hover a.button_main, 
.Second_section .spacing_2.fullwidthcontent.no-hover:hover a.button_main{
  padding: 10px 15px 10px 5px;
}
.Second_section .spacing_2.no-hover a.button_main:hover, 
.Second_section .spacing_2.fullwidthcontent.no-hover a.button_main:hover{
    padding-right: 5px;
    padding-left: 15px;
}
.Second_section .spacing_2 a.button_main.only_arrow,
.Second_section .spacing_2.fullwidthcontent a.button_main.only_arrow,
.Second_section .spacing_4 a.button_main{
  border: 1px solid transparent;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  box-sizing: border-box;  
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  padding: 10px;
  justify-content: center;
}
.Second_section .spacing_2:hover a.button_main.only_arrow,
.Second_section .spacing_2.fullwidthcontent:hover a.button_main.only_arrow,
.Second_section .spacing_4:hover a.button_main{
  border-color:var(--text-color);
  background-color: #fff;
  transition: 0.5s all ease-in-out;
  transform: scale(1.2);
}

/* .Second_section a.button_main.only_arrow{
  border: 0;
} */

.Second_section .spacing_4 a.button_main img,
.Second_section a.button_main.only_arrow img{
  margin: 0;
}
.Second_section  a.button_main img{
  margin-left: 100px;
}
.padding-0{
  padding: 0;
}
.box-padding .content_box{  
  max-width: 600px;    
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: 0 auto;  
}
.content_box.text-left h1{
  font-size: 36px;
}
.fifth_section .box-padding .content_box{
  padding:30px 0 400px;
} 
.third_section a.button_main{
  width: 330px;
}

.fifth_section{
  background-color: var(--third-color);
}
.fifth_section .postion-content .btn_ic{
  display: flex;
  align-items: center;
  margin: 0 0 30px;
}
.fifth_section .postion-content p{
  margin: 40px 0;
}
.fifth_section .btn_ic>img{
  padding-right: 20px;
}

.four_section{
  padding: 120px 0 200px;
  background-color: var(--second-color);
  border-bottom: 1px solid var(--text-color);
  border-left: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.four_section .container-fluid{
  max-width: 1500px;
}
.four_section .title_main{
  display: flex;
  justify-content: space-between;
  padding:0 30px 50px;
}
.four_section h3{
  margin: 0;
  padding: 35px 0 20px 0;
  min-height: 103px;
}
.four_section p{
  margin: 0;
  padding-bottom: 20px;
}
.four_section_pre p{
    min-height: 180px;
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 3.6em;
    line-height: 1.8em;
}
.four_section .button_main img{
  margin-left:120px ;
}
.four_section .spacing_large{
  padding: 0 45px;
}
section.third_section,
.fifth_section{
  border-bottom: 1px solid var(--text-color);
  border-left: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.fifth_section .border-right{
  border-right: 1px solid var(--text-color) !important;
}
section.third_section .box-padding{
  border-right:1px solid var(--text-color);
}
.four_section a.button_main{
  display: inline-block;
}
.fifth_section .button_main{
  min-width: 320px;
}

.footer_main{
  background-color: var(--text-color);
  padding: 100px 15px 0;
}

.fifth_section .img_bottom{
  position: absolute;
  bottom:-2px;
  right: 80px;
}
.img_bottom img{
  max-width: 370px;
}
.postion-content{
  position: relative;
  z-index: 2;
}
.third_section h2{
  margin-bottom: 30px;
}
.footer_main .container-fluid{
  max-width: 1500px;
}
.footer_main h3{
  font-size: 20px;
  color: #fff;
  padding-bottom: 20px;
}
.brand_logo{
  display: flex;
  padding-bottom: 100px;
}
.brand_logo a:first-of-type {
  padding: 0;
}
.brand_logo a{
  padding-left: 100px;
}
.footer_list li a,
.footer_main p{
  color: #fff;
  font-size: var(--extra-small-font);
  font-weight: 400;
  padding: 5px 0;
  display: block;
  font-family: var(--body-font);
}
.social_icon{
  display: flex;
  padding-top:50px;
}
.social_icon li:first-of-type{
  padding-left: 0;
}
.social_icon li{
  padding: 0 10px;
}
.footer_main p.paragraph{
  padding-top: 50px;
}
.bottom_view{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_bottom{
  border-top: 1px solid #f2f2f2;
  margin: 100px -15px 0 -15px;
}
.bottom_view p{
  margin: 0;
  padding: 20px 0;
}
img.img_brand{
  padding-top: 60px;
}
.footer_list li a{
  text-transform: capitalize;
}
.fifth_section img.full_img{
  object-fit: cover;
  height: 100%;
}

/************ about page  ***********/
.about_section .about_info h3{
  font-size: 18px;
}
.about_section{
  border: 1px solid var(--text-color);
}
.top_banner_section.about_main{
  border-bottom: 1px solid var(--text-color);  
  padding: 0 15px;
}
.innerpage .menu_btn span{
  background-color: #fff;
}
.innerpage .menu_btn p{
  color: #fff;
}
.innerpage .active .menu_btn span{
  background-color: var(--text-color);
}
.innerpage .active .menu_btn p{
  color: var(--text-color);
}
.about_info{
  padding: 300px 15px 30px 15px;
  max-width: 530px;
  margin: 0 auto 0 100px;
}
.about_info h1{
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}

.about_info h3,
.about_info p{
  margin: 15px 0;
  display: inline-block;
  width: 100%;
}
.about_main .banner_wrap{
  background: var(--second-color);
}
.about_main img{
  object-fit:cover;
  width:100%;
  height: 100%;
}

.vision_row{
  padding: 170px 0 300px;
  position: relative;
}
.vision_row .container_fluid{
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 15px;  
}
.vision_info h5{
  font-size: 50px;
}
section.vision_row h4{
  color:var(--text-color);
  border-color: var(--text-color);
}
.vision_info{
  max-width: 900px;
  padding-top: 80px;
  position: relative;
  z-index: 2;  
}
h4{
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
}
.vision_row:before{
  content:"";
  background: url('../images/vision.png') no-repeat right/contain;
  position: absolute;
  right: 0;
  top:120px;
  width: 100%;
  height: 795px;
  z-index: 1;
}
.mission_section{
  background: var(--text-color);
}
.about_section h4{
  color: var(--second-color);
  border-color: var(--second-color);
}
.mission_section h3{
  padding: 40px 0;  
}
.about_section h3{
  font-size: var(--normal-font-size);
}
.mission_section h3,
.mission_section p{
  color: #fff;
}
.mission_section .box-padding,
.values_section .box-padding{
  display: flex;
  align-items: center;
}
.mission_section .postion-content{
  padding: 0 0 0 45px;
  max-width: 700px;
}
.values_section{
  background: var(--text-color);
}
.values_section h3{
  color: var(--third-color);
  margin-top: 40px;
}
.values_section .postion-content{  
  max-width: 650px;
  margin: 0 auto;
  padding: 30px;
}
.values_section h4{
  margin-bottom: 30px;
}
.values_section p{
  color: #fff;
  margin:0;
}
.strategic_section{
  background:var(--first-color);

}
.strategic_section .box-padding{
  display: flex;
  align-items: center;
}
.strategic_section h3{
  padding-bottom: 50px;
}
.strategic_section p{
  min-height: 200px;
}
.strategic_section .postion-content{
  max-width: 780px;
  margin: 0 auto;
}
.strategic_section a{
  width: 330px;
}


.board_executiv{
  padding: 100px 0;
  background: var(--text-color);
  text-align: center;
}
.board_executiv h3{
  color: #fff;
  padding-bottom:15px;
  line-height: 46px;
  position: relative;
  margin: 0;
}
.board_executiv h3:after{
  content: "";
  width: 220px;
  height: 1px;
  background: var(--third-color);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.executive_row{
  padding: 100px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.executive_row .director_photo{
  border-radius: 100%;
  /*background-color: #707070;*/
  width: 170px;
  height: 170px;
  margin: 0 auto;
}
.exicutive_box{
  flex: 0 0 20%;
  max-width: 20%;
  padding: 15px;
}
.exicutive_box p{
  color: #fff;
  line-height: 26px;
  margin:10px 0;
  text-transform: capitalize;
}
.exicutive_box p.third_col{
  color: var(--third-color);
}

.acknowledgement_section{
  background-color: var(--body-color);
  border: 1px solid var(--text-color);
}
.acknowledgement_section a.button_main{
  margin-top: 60px;
}
.acknowledgement_section.strategic_section p{
  min-height: 100%; 
  margin-bottom: 20px; 
}

.reconciliation_section{
  background-color:#DEFAEB;
}
.reconciliation_section.strategic_section p{
  min-height: auto;
}
.reconciliation_section{
  padding: 150px 0;  
}
.reconciliation_section .postion-content{
  max-width: 600px;
  width: 100%;
}
.reconciliation_section a.button_main{
  width: 400px;
}
.reconciliation_section img{
  margin: auto;
  display: block;
}
.reconciliation_section a.button_main{
  margin-top: 50px;
}
.reports_row{
  background-color: var(--second-color);
  padding: 170px 0;
  text-align: center;
  display: block;
  border-top: 1px solid var(--text-color);
}
.reports_row h5{
  font-size: var(--small-font-size);
  line-height: 27px;
  padding: 30px 0;
  margin: 0;
}
.reports_row h3{
  margin-bottom: 70px;
  font-size: 36px;
  font-family: 'Fibra One Bold';
}
.reports_row .report_box{
  padding:50px 15px ;
}
.profile_detail{
  background-color: var(--text-color);
}
.profile_box{
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}
.profile_box .profile_name{
  flex: 0 0 40%;
  max-width: 40%;
  padding: 60px 15px 0 15px;
}
.profile_photo{
  flex: 0 0 20%;
  max-width: 20%;
  text-align: center;
  padding: 0 15px;
}
.profile_content{
  flex: 0 0 40%;
  max-width: 40%;
  padding: 0 15px;
}
.profile_box .profile_name{
  text-align: right;
}
.profile_box .profile_name h5{
  font-size: var(--small-font-size);
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;  
}
.profile_box .profile_name h5:after{
  content: "";
  width: 70px;
  background-color: var(--third-color);
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.profile_box .profile_name p,
.profile_content p{
  color: #fff;
}

.profile_detail{
  padding: 100px 0;
}

.overlay_box{
  position: relative;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  cursor: pointer;
  display: inline-block;
  width: 356px;
  height: 356px;
  background: #849fa2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 100px;
}
.overlay_box:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  border-radius: 50%;
}
.overlay_btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  color: var(--second-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  line-height: 38px;
}
.overlay_btn:hover{
  color: var(--second-color);
}
.overlay_box:hover .overlay_btn{
  opacity: 1;
  visibility: visible;
}
.overlay_box:hover:before{
  background-color: rgba(11, 70, 85, 0.5);
  border-radius: 100%;
}

.top_header_linkup{
  background-color: #adf2cd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index:999;
}
.top_header_linkup ul{  
  display: flex;
  justify-content: center;
  margin: 0;
}
.top_header_linkup ul li{
  padding: 20px 40px;
}
/********** end ***********/

.banner_singal_btn {
  display: flex;
  flex-wrap: wrap;
}
.banner_singal_btn .banner_two_btn {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px 0 0;
}


html {
scroll-behavior: smooth;
}

/* service section start here */
.Looking-something{
  background: url(../images/looking-for-something-specific.png) no-repeat center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 8rem 15px 5rem;
}

.need-help{
  background-color: var(--third-color);
  padding: 100px 20px;
}

.form-group label{
  font-weight: 700;
}
.bor{border-bottom: 1px solid #004A80;border-right: 1px solid #004A80;border-radius: 0;font-size: 16px;}
.bor:focus{
  box-shadow: none;
}
.bor::-webkit-input-placeholder {
  color:rgba(11 ,70, 85,0.5);
  font-family: var(--body-font);  
  font-size: 16px;
}
.bor::-moz-placeholder {
  color:rgba(11 ,70, 85,0.5);
  font-family: var(--body-font);  
  font-size: 16px;
}
.bor:-ms-input-placeholder {
  color:rgba(11 ,70, 85,0.5);
  font-family: var(--body-font);  
  font-size: 16px;
}
.bor:-moz-placeholder {
  color:rgba(11 ,70, 85,0.5);
  font-family: var(--body-font);  
  font-size: 16px;
}
.pt-5rm{padding-top: 5rem;}
.mb-5rm{margin-bottom: 5rem;}
.bg1{
  padding: 120px 20px;
  background-color: var(--second-color);
}
.form-check{
  padding: 0;
}
.form-check [type="radio"]:checked,
.form-check [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.form-check [type="radio"]:checked + label,
.form-check [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left:35px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--text-color);
}
.form-check [type="radio"]:checked + label:before,
.form-check [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 29px;
    height: 29px;
    border: 1px solid var(--text-color);
    border-radius: 100%;
    background: #fff;
}
.form-check [type="radio"]:checked + label:after,
.form-check [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--text-color);
    position: absolute;
    top: 5px;
    left: 7px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.form-check [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.form-check [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.need-help textarea.form-control{
  height: 200px;
  border-color: 1px solid var(--text-color);
  border-radius: 0;
}

.scroll-group{
  background: #0b4655;
  padding: 90px 0;
}

.bg2{
  padding: 120px 20px;
  background-color: #D8D2E8;
}

.bg3{
  background: #f5ebe1;
}

/* .scroll-group marquee{
    height: 120px;
} */

/****************** Breadcrumbs *************/
.breadcrumbs{
  background-color: var(--third-color);
  padding: 310px 0 50px;
}
.breadcrumbs ul{
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  margin-left:-10px ;
}
.breadcrumbs ul li a{
  padding: 0 10px;
  font-size: 16px;
  font-family: var(--body-font);
}
.breadcrumbs ul li a:hover{
  text-decoration: underline;
  color: var(--text-color);
}
.breadcrumbs ul li a.active{
  font-family: var(--title-font);  
}
.breadcrumbs h2.page_title{
  font-size: 45px;
  font-family: var(--body-font);
}
/*********** End **************/
/*********** Green Section **********/
.green_block{
  background-color: var(--text-color);
  padding: 150px 0;
}
.green_block p{
  color: #fff;
}

/************ Logo section ******/
.logo-section{
  background-color: var(--body-color);
  padding: 120px 0;
  text-align: center;
}
.logo-section h2{
  padding-bottom: 60px;
}
.flex-logo{
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.flex-logo .col_logo{
  padding: 7px;
  flex: 0 0 20%;
  max-width: 20%;
}
.flex-logo .col_logo .logo_box{
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-logo .col_logo p{
  color:#f51ffd;
}

.breadcrumb-section
{
  margin-bottom: 40px;
}

.two-col-img-text-section ul,
.two-col-animated-text-sect ul
{
  list-style: unset;
  margin-left: 18px;
}

/************** Accordian section **************/
.accordian_setion{
  background-color: #F9F3ED;
  padding: 230px 0 240px;  
  border-bottom: 1px solid #004A80;
}
.accordian_setion .row{
  align-items: center;
}
.accordion-header.active + .accordion-content{
  display: block;
}
.accordion-item {
  border-bottom: 1px solid #707070; 
}
.accordion-header {
  cursor: pointer;
  padding: 15px 30px 15px 0;  
  font-size: 20px;
  position: relative;
  margin: 0;
}
.accordion-header:after{
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  right: 0; 
  top: 25px;
}
.accordion-header:before{
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  position: absolute;
  right: 0;
  top: 25px;
}
.accordion-header.active:before{
  opacity: 0;
}
.accordion-content{
  display: none;
  padding: 10px 0;
}
.accordion-content p:first-of-type{
  margin-bottom: 30px;
}

/************* search page ************/
.search_result{
  padding: 100px 0 150px;
  background-color: var(--body-color);
}
.search_box{
  position: relative;
  margin-right: 20px;
  width: 100%;
  display: flex;
    justify-content: flex-end;
}
.search_box:after {
  content: "";
  background: url("../images/Arrow_button.svg") no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 15px;
  transform: rotate(0deg) translatex(-34%);
  top: 37%;
}
.search_box input{
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--text-color);
  border-radius: 40px;
  padding: 15px 35px 15px 15px;
  font-size: 16px;
  color: var(--text-color);  
}
.search_box input:focus{
  outline: 0;
}
.flex{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
a.btn_show{
  line-height: 56px;
  padding: 0 50px;
  background-color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 40px;
  color: #fff;
  text-transform: capitalize;
  font-family: var(--body-font);  
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  display: inline-block;
}
a.btn_show:hover{
  background-color: transparent;
  color: var(--text-color);
}
.search_box input::-webkit-input-placeholder {
  color: var(--text-color);
  font-family: var(--body-font);  
  font-size: 16px;
}
.search_box input::-moz-placeholder {
  color: var(--text-color);
  font-family: var(--body-font);  
  font-size: 16px;
}
.search_box input:-ms-input-placeholder {
  color: var(--text-color);
  font-family: var(--body-font);  
  font-size: 16px;
}
.search_box input:-moz-placeholder {
  color: var(--text-color);
  font-family: var(--body-font);  
  font-size: 16px;
}
.space-top{
  padding-top: 80px;
}
.location_box{
  border-top: 2px solid var(--text-color);
  padding: 40px 0 60px;
}
.search_result .padd .col-md-3{
  padding: 0 25px;
}
.location_box h3{
  font-size: 24px;
}
.location_box p a{
  font-family: var(--body-font);
  /* display:block; */
}
.location_box p img{
  margin-right: 5px;
  margin-bottom: 5px;
}
.location_box p a:hover{
  color: var(--text-color);
  text-decoration: underline;
}
.location_box ul li{
  position: relative;
  padding: 5px 15px;
}
.location_box ul li:before{
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 5px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  top: 15px;
}
.location_box p{
  text-indent: -1.5em;
  padding-left: 1.5em;
  max-width: 75%;
}

a.btn_view{
  text-transform: capitalize;
  border: 1px solid var(--text-color);
  padding: 0 50px;
  line-height: 36px;
  display: inline-block;
  border-radius: 40px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  font-family: var(--body-font);
}
a.btn_view:hover{
  color: #fff;
  background-color: var(--text-color);
}
.think_make{
  padding: 0;
  background-color: var(--first-color);
}
.think_make h2{
  margin-bottom: 40px;
}
.think_make a.button_main{
  max-width:250px;
  width:100%;
}
.think_make .row{
  align-items: center;
}


.individual_banner{
  background-color: var(--first-color);  
}
.main_top_section{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.main_top_section .syc_info{  
  padding: 310px 15px 100px;
}
.main_top_section .syc_info
{
  flex: 0 0 50%;
  max-width: 50%;
}
.main_top_section .map_col{
  flex: 0 0 50%;
  max-width: 50%;
}
.main_top_section .map_col img{
  height: 100%;
  object-fit: cover;
}
.syc_info_box{
  max-width: 650px;
  margin: 0 auto;
}
.syc_info_box h2{
  font-size: var(--normal-font-size);
  display: inline-block;
  padding-right: 40px;
  border-bottom: 2px solid var(--text-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.syc_info_box a.btn_show{
  margin: 20px 0;
}
.syc_camp{
  padding-top: 220px;
}
.syc_camp li{
  font-size: var(--small-font-size);
  line-height: 27px;
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.syc_camp li img{
  padding-right: 20px;
}

.campbeltown_row h2{
  font-family: var(--body-font);
  border: 0;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;

}
.campbeltown_row p, .main_top_section_h2_space{
  padding-bottom: 200px !important;
}
.campbeltown_row p{
  font-size: 20px;
}
.main_top_section_h2{
  padding-bottom: 0px !important;
}
.campbeltown_row a.button_main{
  font-size: var(--smaller-font-size);
  line-height: 26px;
  width: 330px;
  margin: 0 15px 0 0;
  flex: 0 0 45%;
  max-width: 45%;
}
.wrap_btn_camp{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.campbeltown_row a.button_main:nth-child(2n){
  order: 3;
}
.campbeltown_row a.button_main:nth-child(3n){
  order: 5
}
.campbeltown_row a.button_main:nth-child(4n){
  order: 7;
}
.campbeltown_row a.button_main:nth-child(5n){
  order: 2;
}
.campbeltown_row a.button_main:nth-child(6n){
  order: 4;
}
.campbeltown_row a.button_main:nth-child(7n){
  order: 6;
}
@media(max-width:991px){
  .campbeltown_row h2{
    padding-bottom: 0px !important;
    height: auto;
    margin-bottom: 8px !important;
  }
}
@media(max-width:767px){
  header .top_bar .right_box button{
    font-size: 13px !important;
  }
  .campbeltown_row h2{
    font-size: 28px;
  }
  .campbeltown_row p {
    padding-bottom: 0px !important;
}
div#location-service{
  padding-top: 40px;
}
  .campbeltown_row a.button_main{
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }
  #information-for-employers .col-lg-6.spacing_2.padding-0.img-full.order-1 {
    order: 2;
}
#information .col-lg-6.spacing_2.padding-0.img-full.order-1 {
  order: 2;
}
#employment-services p{
  margin-bottom: 0px;
}
.two-col-img-text-section .text-col
{
   order:1 !important;
}
.two-col-img-text-section .img-col
{
   order:2 !important;
}
}


/*************** news details page **************/

.main_bg_section{
  padding: 180px 0;
  background-color: var(--second-color);
  border-bottom: 1px solid var(--text-color);
}
.news_detail_section{  
  background-color: #FFFDFA
}
.news_detail_section .row{
  position: relative;
  top: -100px;
}
.news_detail_section h1{
  padding-top: 50px;
  font-size: 16px;
  font-family: 'Fibra One Bold';
  margin-left: 35px;
}
.news_detail_section h1::before {
  content: "";
    background: url(../images/Arrow_button.svg) no-repeat center/contain;
    width: 20px;
    height: 20px;
    position: absolute;
    transform: rotate(180deg) translatex(-111%);
    top: 50px;
    left: -8px;
}
.news_detail_section h3{
  font-size: 45px;
  font-family: 'Fibra One';
  line-height: 50px;
  letter-spacing: -0.45px;
}
.news_detail_section .button_main{
  max-width: 300px;
  width: 100%;
}
/* .news_detail_section p{
  margin-top: 15px;
} */
.news_detail_section h5{
  font-size: 16px;
  line-height: 26px;
  color: #0B4655;
  font-family: 'Fibra One';
  padding-top: 140px;
}
/* .news_detail_section .inner-text{
  padding: 60px 0px 0px 0px; 
} */

.news_detail_section h4{
  font-size: 16px;
  font-family: 'Fibra One';
  font-style: italic;
  text-transform: capitalize;
  border: none;
  margin-top: 10px;    
}

/*************** news page **************/
.main_bg_section{
  padding: 180px 0;
  background-color: var(--second-color);
  border-bottom: 1px solid var(--text-color);
}
.news_section{  
  background-color: #FFFDFA
}
.news_section .row{
  position: relative;
  top: -100px;
}
.news_section h1{
  padding-bottom: 80px;
}
.news_section h3{
  font-size: 24px;
}
.news_section .button_main{
  max-width: 300px;
  width: 100%;
}
.news_section p{
  padding: 20px 0;
}
.tab-header{
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  border-bottom: 2px solid var(--text-color);
  padding-bottom: 20px;
}
.tab-header p{
  margin: 0;
}
.tab-button {
  border: none;
  padding: 3px 0;
  margin: 0 20px;
  cursor: pointer;
  background-color: transparent;
  color: var(--text-color);
  font-size: 20px;
  font-family: var(--title-font);
  border-bottom: 2px solid transparent;  
  position: relative;
}
.tab-button:after{
  content: "";
  width: 1px;
  height: 30px;
  background-color: var(--text-color);
  position: absolute;
  right: -20px;
}
.tab-header p{
  color: var(--text-color);
  font-size: 20px;
  font-family: var(--title-font);
}
.tab-button:hover,
.tab-button.active {
  border-bottom: 3px solid var(--text-color);
  font-weight: bold;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.news_tabing{
  background-color: #FFFDFA;
  padding: 30px 0 80px;
}
.news_tabe_col{
  padding: 50px 0;
}
.news_tabe_col h3{
  font-size: 24px;
  max-width: 400px;
  width: 100%;
  padding: 30px 0 0;
}
.news_tabe_col h3 a{
  font-size: 24px;
  max-width: 400px;
  width: 100%;
  padding: 30px 0 0;
  font-family: 'Fibra One';
  text-transform: capitalize;
}
.pagination{
  display: flex;
  justify-content: center;
  margin: 50px 0 0;  
}
.pagination li a:hover,
.pagination li a.active{
  color: var(--text-color);
}
.pagination li a{
  color:#0B46554A;
  padding: 0 7px;
  font-size: 18px;
}
.news_inbox .search_box{
  justify-content: flex-start;
  max-width: 500px;
  width: 100%;
}
.news_inbox{
  background-color: var(--third-color);  
}
.news_inbox .row{
  align-items: center;
}
.news_inbox .inbox_box{
  max-width: 600px;
  width: 100%;
}
.inbox_box h2{
  font-size: var(--normal-font-size);
  margin-bottom: 30px;
}
.inbox_box p{
  margin: 30px 0 0;
}
.inbox_box p a{
  text-transform: lowercase;
  text-decoration: underline;
}
.inbox_box p a:hover{
  color: var(--text-color);
  text-decoration: underline;
}
.need-help img{
  width: auto;
}
.need-help form {
  max-width: 720px;
  margin: 0 auto;
}
form a{
  text-transform: lowercase;
  border-bottom: 1px solid var(--text-color);
}
.map_section img{
  width: 100%;
}

.video_row{
  position: relative;
}

.video_block h2{
  font-size: 36px;
  color: #fff;
}
.video_row{
  display: flex;
}
.video_row h2{
  position: absolute;
  color: #fff;
  left: 30px;
  top: 70px;
}
video{
  object-fit: cover;
}
.video_row .video_block .img_icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video_row .video_block .img_icon:hover img{
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.video_block img{
  position: absolute;
  left: 0;
  right: 0;
  top:50%;
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
}

a.call_btn{
  font: 16px;
  display: flex;
  align-items: center;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}

.call_btn span{  
  border: 1px solid var(--text-color);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  border-radius: 100%;
  padding: 15px;
  margin-left: 20px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  position: relative;
}
.call_btn span:before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  transform: scale(0);
  -webkit-transform: scale(0.2);
  top: 0;
  opacity: 0;
  border-radius: 100%;
}
.call_btn:hover span:before{
  content: "";
  transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
}
a.call_btn span img{
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
a.call_btn:hover{
  color: var(--text-color);
}
a.call_btn:hover span{
    background-color: #fff;    
}
a.call_btn:hover span img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.location_main{  
  background-color: #DEFAEB;
}
.location_main .banner_location{
  padding: 200px 15px 20px;
  height: 100vh;
  position: relative;
}
a.btn_search_location{
  background-color: var(--text-color);
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--text-color);
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-family: "Fibra One";
  display: inline-block;
  text-align: center;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;  
}
a.btn_search_location:hover{
  background-color: transparent;
  color: var(--text-color);
}
.location_main .search_box{
  bottom: 30%;  
  position:absolute;
  margin: 0 auto;
  left: 0;
  padding: 0 20px;
}
.location_main .search_box:after{
  display: none;
}
.location_main .about_info{
  padding-top: 300px;
}
.location_main .banner_wraps.row{
  margin: 0 auto;
}

.job_seekers{
  background:#d8d2e8;
  padding: 130px 0;
}
.job_seekers h3{
  font-size: 26px;
  padding-bottom: 60px;
}
.job_seekers img{
  margin-bottom: 50px;
}
.job_seekers .large{
  font-family: 'Fibra One Bold';
  font-size: 16px;
  margin-bottom: 10px;
}
.job_seekers ul li{
  line-height: 32px;
  position: relative;
  padding-left: 15px;
}
.job_seekers ul li:before{
  content: "-";
  font-size: 16px;
  position: absolute;
  left: 0;  
}
.job_seekers h5{
  margin-bottom:20px;
}
.job_seekers .top-space{
  margin-top: 50px;
}
.job_seekers .container-fluid{
  padding: 0 100px;
}
.job_seekers a.button_main{
  max-width: 330px;
  padding-top: 100px;
}
.job_seekers a.button_main img{
  margin-bottom: 0;
}

.service_location{
  padding: 100px 0 70px;
  background:var(--body-color) ;
}
.service_location h2{
  padding-bottom: 20px;
  border-bottom: 2px solid var(--text-color);
}
.service_location h6{
  padding: 45px 0 20px;
  margin: 0;
}
.service_location ul li{
  line-height: 24px;
  padding:7px 0;
}
.service_location ul{
  padding: 20px 0 40px;
} 
.service_location ul li span.week{
  width: 150px;
  padding-right: 20px;
  display: inline-block;
}
.service_location .info_contact p{
  margin: 0;
}
.service_location .info_contact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.service_location .info_contact a{
  display: inline-block;
  line-height: 26px;
  font-size: 16px;
  padding: 5px 20px;
  font-family:var(--body-font) ;
  text-transform: capitalize;
  border: 2px solid var(--text-color);
  border-radius: 20px;
  width: 160px;
  text-align: center;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.service_location .info_contact a:hover{
  background-color: var(--text-color);
  color: var(--second-color);
}
.apointment_box{
  background-color: #ADF2CD;
  padding: 30px;
  margin: 50px 0 70px;
}
.apointment_box h6{
  padding: 0 0 20px;
}
form a.button_main{
  text-transform: uppercase;
}
.banner_wraps.row{
  margin: 0 auto;
}
.box_info_overlay{
  max-width: 650px;
    width: 100%;
    padding: 115px 50px 115px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
    z-index: 111111;
}
.box_info_overlay.right{
  text-align: right;
  align-items: flex-end;
}
.box_info_overlay a,
.box_info_overlay p{
  color: #fff;
}
.box_info_overlay .revers_arr{
  position: relative;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  filter: brightness(35);
}
.box_info_overlay.right .revers_arr{
  transform: inherit;
}
.box_info_overlay a.button_main{
  border-color: #fff;
  max-width: 220px;
  width: 100%;
}
.box_info_overlay p.large{
  padding: 40px 0 ;
}
/************ Contact page  ***********/
section.top_banner_section.contact_main {
  background-color: #DEFAEB;
}

.contact{
  padding: 300px 0px 100px 0px;
}

.contact-inner .banner_wrap{
  background: var(--second-color);
}
.contact-inner img{
  object-fit:cover;
  max-width: 800px;
  height: 100%;
}
.contact-inner{
  padding: 300px 50px 30px 15px;
  max-width: 825px;
  margin: 0 auto 0 100px;
}
.contact-inner h1{
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}

.contact-inner h3,
.contact-inner p{
  margin: 15px 0;
  display: inline-block;
  width: 100%;
}

.contact textarea {
  height: 170px;
}
.contact .feedback-text{
  background: var(--text-color);
  color: #ADF2CD;
  padding: 30px 30px;
}
section.bottom_banner_section.feedback_main {
  background-color: #D8D2E8;  
  position: relative;
}
  
.feedback{
  padding: 120px 0px 100px 0px;
}

.feedback-inner .banner_wrap{
  background: var(--second-color);
}
.feedbacks{
  position: absolute;
  bottom: -50px;
  left: 0;
  object-position: bottom;  
}
.form-group{
  margin-bottom: 1.4rem;
}
.feedback-inner{
  padding: 120px 50px 0px 15px;
  max-width: 825px;
  margin: 0 auto 0 100px;
}
.feedback-inner h1{
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}

.feedback-inner h3,
.feedback-inner p{
  margin: 15px 0;
  display: inline-block;
  width: 100%;
  max-width: 515px;
}

.feedback textarea {
  height: 350px;
}

/************ End ***********/

@media(max-width:1700px){
  .accordian_setion{
    background-size: 350px !important;
  }
  .vision_row:before{
    height: 600px;
    top: auto;
    bottom: 0;
  }
  .contact_main .contact-inner,
  .feedback-inner{
    margin: 0 auto 15px;
  }
  .contact-inner img{
    max-width: 100%;
  }
}


@media(max-width:1500px){
  .fifth_section .img_bottom{
    right: 20px;
  }
  .fifth_section .box-padding .content_box{
    padding-bottom: 320px;
  }
  .img_bottom img{
    max-width: 270px;
  }
  div#nav-menu form{
    margin-bottom: 30px;
  }
  .nav__link{
    font-size: var(--smaller-font-size);
  }  
  .menu_logo{
    bottom: 5px;
  }
  .nav__menu .nav__list h3{
    margin-bottom: 10px;
  }
  .menu_logo img{
    width:120px
  }
  .Second_section .spacing_2, 
  .Second_section .spacing_2.fullwidthcontent{
    padding: 70px;
  }
  .top_header_linkup ul li{
    padding: 10px 15px;
  }
  .about_info {
    margin: 0;
}

  /************ about page  ***********/  
}

/* @media only screen and (min-width: 1100px) and (max-width: 1700px) {
  .content_box.text-left {
    margin-top: -40px;
  }
} */
@media only screen and (min-width: 1100px) and (max-width: 1490px) {
  #about_us_id .content_box.text-left {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1700px) {
  .content_box.text-left {
    margin-top: 100px;
  }
  #accredited-courses .content_box.text-left{
    margin-top: 0px;
  }

}
@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .overlay_box {
    width: 300px;
    height: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1100px) {
  .col-lg-6.box-padding.spacing_2.no-height.order-1 {
    padding: 130px 10px 290px 10px !important;
}
}
@media only screen and (max-width: 767px) {
  .overlay_box{
    width: auto !important;
    height: auto !important;
  }
}

@media(max-width:1366px){
  .Second_section .spacing_2, 
  .Second_section .spacing_2.fullwidthcontent{
    padding: 50px;
  }
  .Second_section .spacing_4{
    padding: 30px;
  }
  .top_banner_section .right_col{
    padding: 30px;
  }  
  h1{
    font-size: 35px;
  }
  .Second_section .spacing_2 {
    background-size: 80% !important;
  }

  /************ about page  ***********/
  .menu_child_wrap{
    padding: 20px 0;
  }
  .about_info{
    padding: 200px 15px 30px 15px;
  }
  .logo img{
    width: 120px;
  }
  .values_section h3{
    margin-top: 20px;
  }
  .vision_row:before{
    height: 500px;
  }

  
}
@media(max-width:1199px){
  .four_section .spacing_large{
    padding: 0 15px;
  }
  .four_section .title_main{
    padding: 0 0 30px;
  }
  .four_section{
    padding: 70px 0;
  }
  .brand_logo a{
    padding-left:50px; 
  }     
  .banner_btn a.button_main{
    width: 250px;
  }
  .Second_section .spacing_2 {
    background-size: 70% !important;
  }
  .exicutive_box{
    flex: 0 0 33.33%;
    max-width:33.33%;
  }
  .values_section h3{
    font-size: 24px;
  }
  .profile_box .profile_name{
    padding-top: 20px;
  }
  
  .accordian_setion{
    background-size: 300px !important;
  }
  .vision_row{
    padding: 170px 0 450px;
  }
  .job_seekers .container-fluid{
    padding: 0 15px;
  }
}
@media(max-width:991px){
  .border-left-0{
    border-left: 1px solid var(--text-color) !important;
  }
  /* .Second_section .spacing_4{
    border-bottom: 0;
  } */
  .third_section .content_box{
    padding: 50px 0;
  }
  .brand_logo a{
    padding: 0 15px;
  }
  .footer_main{
    padding-top: 50px;
  }
  .brand_logo{
    padding-bottom: 50px;
  }
  ul.footer_list{
    margin-bottom: 30px;
  }
  .footer_main h3{
    margin-bottom: 0;
  }
  .footer_bottom{
    margin-top: 50px;
  }
  img.img_brand{
    padding-top: 30px;
  } 
  .top_banner_section .banner_wrap{
    position: relative;
  }
  .top_banner_section .banner_col,
  .top_banner_section .right_col{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .banner_btn{
    position: static;
  }
  .top_banner_section .right_col{
    padding: 35px 40px 35px 48px;
  }
  .Second_section .spacing_2, 
  .Second_section .spacing_2.fullwidthcontent{
    padding: 50px 15px;
  }
  .menu_child_wrap{
    padding: 20px 0;
  }
  .logo img{
    width: 60px;
  }
  .Second_section p.height,
  .Second_section h2, .Second_section h3{
    min-height: auto;
    margin-bottom: 20px;
  }
  .Second_section .spacing_4 a.button_main{
    justify-content: flex-start;
  }
  .third_section .content_box{
    max-width: 100%;
  }
  .searchForm{
    margin-top: 60px;
  }
  .Second_section .spacing_2 {
    background-size: 50% !important;
  }
  .img_bottom img{
    max-width: 260px;
  }
  .fifth_section .box-padding .content_box{
    padding-bottom: 260px;
  }
  .fifth_section .box-padding .content_box {
    padding-bottom: 160px;
  }
  .img_bottom img {
    max-width: 150px;
  }
  .four_section .button_main img {
    margin-left: 80px;
  }
  .header.sticky.active .menu_child_wrap{
    padding: 20px 0;
  }
  nav.nav{
    padding-top: 120px;
  }
  
  .sticky .menu_btn span,
  .active .menu_btn span{
    background-color: var(--text-color);
  }
  .active .nav{
    overflow-y: auto;
  }  
  .menu_logo{
    position: static;
  }
  .exicutive_box{
    flex:0 0 50%;
    max-width: 50%;
  }
  .profile_box .profile_name,
  .profile_photo,
  .profile_content{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .profile_box .profile_name{
    text-align: center;
  }
  .profile_box .profile_name h5:after{
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .profile_photo{
    padding: 30px;
  }
  .about_section h3{
    font-size: 24px;
  } 
  .mission_section .postion-content{
    padding: 30px 0;
  } 
  .values_section .postion-content,
  .strategic_section .postion-content{
    max-width: 100%;
    width: 100%;
    padding: 30px 0;
  }
  .strategic_section p{
    min-height: 100%;
  }
  .profile_box .profile_name{
    padding: 0;
  }
  .top_header_linkup {
    display: none;
  }
  .breadcrumbs{
    padding: 190px 0 50px !important
  }
  .flex-logo .col_logo{
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .accordian_setion{
    padding: 70px 0 70px;
  }
  .tab-button{
    margin: 0 10px;
    font-size: 16px;
  }
  .tab-header p{
    font-size: 16px;
  }
  .tab-button:after{
    right: -10px;
  }
  .inbox_box{
    padding: 30px 0;
  }
  .news_section h1{
    padding: 20px 0;
    margin: 0;
  }
  .news_section .row{
    top: -50px;
  }
  .main_bg_section{
    padding: 120px 0;
  }
  .main_top_section .syc_info{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .main_top_section .map_col{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .search_box{
    justify-content: flex-start;
  }
  .search_box input{
    max-width: 100%;
  }
  .location_main .about_info{
    padding-top: 200px;
  }
  .location_main .banner_location{
    background-position: center !important;
    height: auto;
  }
  .location_main .search_box{
    padding: 0 0px !important;
    bottom: 23%;
  }
  .location_main .search_box input,
  a.btn_search_location{
    margin: 10px 0;
  }
  .job_seekers a.button_main{
    padding-top: 20px;
  }
  .service_location .info_contact{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .service_location .info_contact p{
    text-align: left;
    margin-bottom: 15px;
  }
  .col-lg-6.box-padding.spacing_2.no-height.order-1 {
    padding: 100px 10px 50px 10px;
    border: none;
  }
  #employment .col-lg-6.box-padding.spacing_2.no-height.order-1 {
    padding: 170px 10px 50px 10px !important;
    border: none;
  }
  .col-lg-6.box-padding.spacing_2.no-height.order-2 {
    padding: 50px 10px 50px 10px;
  }
  .scroll-group {
    padding: 50px 0;
  }
  .scroll-group marquee {
    font-size: 45px;
    height: 85px;
  }
  .green_block{
    padding: 50px 0;
  }
  .green_block p {
    margin-top: 20px;
}
.contact{
  padding: 50px 0;
}
section.bottom_banner_section.feedback_main{
  padding-bottom: 600px;
}
.feedbacks{
  bottom: -650px;
}
.search_box input{
  padding: 15px 20px 15px 15px;
}
#child_map {
  width: 100% !important;
  height: 424px !important;
}
.two-column-card-text-image-button a.button_main{
  width: 60% !important;
  min-height: 55px;
}
.top_banner_section .banner_col{
  height: 90vh;
}
}
@media(max-width:770px) and (min-width:768px){  
  .menu_logo{
    position: absolute;
  }
}
@media(max-width:767px){
  .four_section .title_main{
    flex-direction: column;
  }
  .four_section .spacing_large{
    margin-bottom: 30px;
  }
  .focal_img_set
  {
    height: 65vh !important;
  }
  .autosearchbar-box input
  {
    padding: 10px 53px 17px 24px !important;
    height: 48px !important;
    font-size: 20px !important;
  }
  .autosearchbar-box:after
  {
    top: 18px !important;
  }
  
  .autosearchbar-box ul li p
  {
    font-size: 12px;
    margin-bottom: 0;
  }
  .autosearchbar-box input::placeholder
  {
    font-size: 13px;
  }
  .fifth_section .btn_ic>img{
    padding-right: 10px;
  }
  .fifth_section .button_main{
    min-width: auto;
    width: 100%;
  }
  .brand_logo{
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand_logo a{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
  }
  .brand_logo a img{
    margin: 0 auto;
    display: flex;
  }  
  ul.footer_list{
    padding:0;
  }
  .footer_main p.paragraph{
    padding: 15px 0;
    margin: 0;
  }
  .bottom_view{
    justify-content: center;
    padding: 10px 0;
  }
  .bottom_view p{
    padding: 5px 0;
  }
  .Second_section .spacing_2{
    padding:30px 15px;
    background-position: bottom right !important;
  }
  .Second_section .spacing_2.fullwidthcontent{
    padding:30px 15px;
  }
  .four_section{
    padding: 50px 0 30px;
  }
  .Second_section .spacing_4{
    padding: 30px 15px;
  }
  h1 {
    font-size: 24px;
  }
  div#nav-menu form{
    margin: 0 0 20px;
  }
  .nav__menu .nav__list h3{
    margin-bottom: 10px;
    line-height: 32px;
      font-size: 20px;
  }
  /* .menu_btn{    background: #fff;
    padding: 10px;} */
    .top_banner_section .button_main{
      min-height: 40px;
    }
    .searchForm .search_wrap{
      margin-top: 20px;
    }
    .Second_section h2,
    .third_section h2,
    h2{
      font-size: 24px;
    }
    .innerpage .menu_btn span{
      background-color: var(--text-color);
    }
    .innerpage .menu_btn p{
      color: var(--text-color);
    }
    .vision_row,
    .board_executiv,
    .profile_detail,
    .reconciliation_section,
    .reports_row{
      padding: 60px 0;
    }
    .mission_section .postion-content,
    .values_section .postion-content,
    .strategic_section .postion-content{
      padding: 30px 0;
    }
    .values_section h3{
      font-size: 24px;
    }
    .profile_detail .profile_box{
      padding: 20px 0;
    }
    .about_section h3{
      margin-bottom: 30px;
    }
    .vision_row{
      background-position: right bottom !important;
      background-size: contain !important;
      padding-bottom: 250px;
    }
    .vision_info h5{
      font-size: 32px;
    }
    .vision_row:before{
      height: 300px;
    }
    .strategic_section p{
      min-height: 100%;
    }
    .executive_row{
      padding: 40px 0;
    }
    .strategic_section h3{
      padding-bottom: 0;
    }
    .reports_row .report_box{
      padding: 15px;
    }
    section#reconcilation {
      padding: 0 15px;
    }
  .breadcrumbs h2.page_title{
    font-size: 32px;
  }
  .flex-logo .col_logo{
    flex: 0 0 50%;
    max-width: 50%;
  }
  .accordion-header{
    font-size: 18px;
  }
  .accordion-header:before,
  .accordion-header:after{
    width: 18px;
  }
  .news_tabe_col{
    padding: 20px 0;
  }
  .news_tabe_col h3{
    font-size: 20px;
  }
  .tab-header p {
    flex: 0 0 100%;
    text-align: center;
  }
  .video_block img{
    width: 50px;
  }
  .main_top_section .syc_info{
    padding: 200px 15px 100px 15px;
  }
  .syc_camp{
    padding-top: 40px;
  }
  
  .video_row h2{
    left: 15px;
    top: 20px;
    font-size: 22px;
  }
  section.bottom_banner_section.feedback_main{
    padding-bottom: 500px;
  }
  .feedbacks{
    bottom: -550px;
  }
  .banner_absolute-btn
  {
    position: unset !important;
    width: auto !important;
  }
  .banner_singal_btn .banner_two_btn {
    flex: 0 50%;
    max-width: 50%;
}
.w-50{
  width: auto !important;
}
.banner_singal_btn .banner_two_btn{
  padding: 0 10px 0 0;
}

.two-col-img-text-section {
  height: auto !important;
  padding-top: 80px;
}
.scroll-group marquee p{
  font-size: 70px !important;
}
.col-lg-6.box-padding.spacing_2.no-height.order-2{
  border: none;
}
.mission_section_new .postion-content{
  padding: 50px 15px 20px 15px !important;
}
.mission_section_new h3 {
  padding: 0px 0 !important;
}
.breadcrumb-item+.breadcrumb-item{
  font-size: 14px;
  font-family: system-ui;
}
.content_box.text-left h1 {
  font-size: 24px;
}
a.button_main {
  font-size: 12px;
  min-height: 76px;  
}
.not-found-page .button_main_new{
  display: unset !important;
}
#learner-support-services {
  padding: 40px 15px 40px 15px;
}
.box_info_overlay{
  padding: 90px 15px 90px 15px;
}
.news_detail_section h3{
  font-size: 24px;
}
.news_detail_section h5{
  padding-top: 60px;
}
#donation {
  padding: 30px 0px 30px 0px;
}
.overlay_box{
  padding: 21vw 27vw;
}
.contact-inner {
  padding: 190px 15px 30px 15px;
}
button.tab-button.tab-btn-small{
  padding: 15px;
}
.space-top {
  padding-top: 40px;
}
.search_result {
padding: 100px 0 100px;
}
.py-5.mb-5rm {
  margin-bottom: 0px;
  padding: 0px 0px 0px 0px !important;
}
.img-full img{
  height: auto !important;
}
.service_location .info_contact img{
  padding: 0px 5px 5px 0px !important;
}
.service_location .info_contact{
  padding: 15px 0;
}
#faq {
  background: none !important;
}
.reports_row h3{
  font-size: 30px !important;
}
.two-col-img-text-section .box-padding{
  padding-top: 0px;
}
#employment .col-lg-6.box-padding.spacing_2.no-height.order-1 {
  padding: 100px 10px 50px 10px !important;
  border: none;
}
/* .clickable-row a.button_main, .two-column-card-text-image-button a.button_main{
  width: 65% !important;
  padding: 0 !important;
  justify-content: left;
} */

}
@media(max-width:480px){
  .brand_logo a{
    flex: 0 0 100%;
    max-width:100%;
  }  
  .searchForm .search_wrap input[type="text"]{
    font-size: 16px;
  }
  .top_banner_section .right_col{
    position: absolute;
    background-color: var(--body-color);
    bottom: 0;
  }
  .searchForm{
    margin-top: 0;
  }
  .top_bar{
    justify-content: center;
  }
  .menu_logo{
    padding: 0;
  }
  .menu_logo img{
    width: 100px;
  }
  .menu_logo h2{
    font-size: 20px;
  }
  .exicutive_box{
    flex:0 0 100%;
    max-width: 100%;
  }
  .reconciliation_section a.button_main{
    width: auto;
  }
  .flex-logo .col_logo{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tab-button{
    flex: 0 0 100%;
    margin: 0 auto;
  }
  .tab-header{
    border: 0;
  }
  .tab-button:after{
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  section.bottom_banner_section.feedback_main{
    padding-bottom: 0px;
  }
  .feedbacks{
    bottom: -250px;
  }


}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .col-lg-6.box-padding.spacing_2.no-height.order-1 {
    padding: 180px 10px 290px 10px;    
}
#employment .col-lg-6.box-padding.spacing_2.no-height.order-1 {
  padding: 180px 10px 40px 10px !important;    
}
 }

#parent_map
{
  height: 700px;
  width: 100%;
  background-color: grey;
}
#child_map
{
  height: 100%;
  width: 100%;
  background-color: grey;
}
.load_more_news_btn a
{
  cursor: pointer;
}

/* 06-11-2023 */

.mission_section_new{
  background: var(--text-color);
}
.mission_section_new h4{
color: var(--second-color);
border-color: var(--second-color);
}
.mission_section_new .box-padding, .values_section .box-padding {
display: flex;
align-items: center;
}
.mission_section_new .postion-content {
padding: 0 0 0 45px;
max-width: 700px;
}
.mission_section_new h3, .mission_section_new p {
color: #fff;
}
.mission_section_new h3 {
padding: 40px 0;
}
.mission_section_new .belief{
color: var(--third-color);
margin-top: 25px;
font-size: 36px;

}
.col-lg-6.padding-0.img-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11,70,85, 0.8);
}

.mission_section_new h6 {
  padding: 0px 0;
}
.bottom_view a {
  color: #fff;
}
.wrap_all_section ol{
  background: none;
  padding-left: 4px;
  font-size: 16px;

}

.banner img, .banner.fullimageshort img{
  width: 100%;
    object-fit: cover;
    height: 550px;
    object-position: center;
}
.banner.fullimageshort img{
  height: 385px;
}
section.bg3 .card-img{
    width: 100%;
    height: 410px;
    object-fit: cover;
    object-position: center;
}
.news_tabe_col .new-img{
  height: 345px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #0B4655;
}
.green_block img{
  width: 50%;
}
.news_detail_section ul{
    list-style: disc;
    margin-left: 20px;
}
.news_detail_section .img-inner{
  margin-top: 70px;
}
/* .two-col-img-text-section{
  height: 130vh;
} */
.img-full img{
  height: 100vh;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.banner_absolute-btn{
  position: unset;
    bottom: 60px;
    align-items: center;
    width: 90%;
}
.news_section .details-img{
  border: 1px solid #0B4655;
}
.news_detail_section .details-img{
  border: 1px solid #0B4655;
  height: 611px;
  width: 100%;
  object-fit: cover;
}
.news_detail_section blockquote{
  padding: 5px;
  border-left: 4px solid rgba(11,70,85, 0.8);
}
.img-btm{
  margin-bottom: 70px;
}
.scroll-group marquee p
{
  color: #C8F0F5;
  font-size: 90px;
  margin-top: 25px;
  margin-bottom: 17px;
  height: 50px;
}
.clickable-row{
  cursor: pointer;
}
.img-full-off img {
  height: auto;
}
.col-lg-6.box-padding.spacing_2.no-height.order-2 {
  border-left: 1px solid #0B4655;
  border-bottom: 1px solid #0B4655;
  border-right: 1px solid #0B4655;
}
/*************** search details page **************/

.search_detail_section{
  padding: 200px 0 0 0;
  background-color: var(--second-color);
  border-bottom: 1px solid var(--text-color);
}
.search_detail_section .detail_section{  
      max-width: 100%;
      margin: 0;
}
.search-results{
  display: flex;
  align-items: center;
  justify-content: center;
}
.search_detail_section h1 {
  font-size: 45px;
  font-family: 'Fibra One';
  padding-left: 50px;
}
.img-search-results{
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -65px;
    left: 15px;
}
/* .col-lg-6.box-padding.spacing_2.no-height.order-1 {
  border-bottom: 1px solid #004A80;
  border-right: 1px solid #004A80;
}
.col-lg-6.spacing_2.padding-0.img-full.order-2{
  border-bottom: 1px solid #004A80;
  border-right: 1px solid #004A80;
} */

.spacing_large .four_section_img{
  height: 265px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #707070;
}
/* ol.breadcrumb li a{
  font-family: system-ui;
} */
.focal_points_image_full_img
{
  height:550px;
  background-repeat: no-repeat;
  background-size: cover;
}
.not-found-page{
  padding: 250px 0px 200px 0px;
  text-align: center;
}

.not-found-page .error{
  font-size: 150px;
  color: #0b4655;
}

.not-found-page .page{
  margin: 0px 0px 20px 0px;
    font-size: 25px;
    font-weight: 600;
    color: #878787;
}

.not-found-page .button_main_new{
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--text-color);
  padding: 10px 15px 10px 5px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  justify-content: flex-start;
  justify-content: space-between;
  width: 15%;
  margin: 0 auto;  
}
.not-found-page .button_main_new:hover{
  text-decoration: none;
  color: var(--text-color);
  padding-right: 5px;
  padding-left: 15px;
}
.not-found-page .button_main_new img{
  vertical-align: inherit;
}
.breadcrumb-item+.breadcrumb-item{
  font-size: 14px;
}
.breadcrumb-item a {
  font-family: 'Fibra One';
  font-weight: 200;
  vertical-align: super;
}
.autosearchbar-box
{
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.autosearchbar-box input
{
  width: 100%;
    padding: 15px 70px 15px 25px;
    border: 2px solid var(--text-color);
    border-radius: 35px;
    height: 65px;
    font-size: 26px;
}
.autosearchbar-box ol
{
  display: block;
  height: 150px;
  overflow: hidden;
  overflow-y: auto;
}
.autosearchbar-box ol
{
  list-style: none;
}
.autosearchbar-box ol li
{
    border-bottom: 1px solid #000000;
    background-color: #ffffff;
    padding: 2px 10px;
}
.autosearchbar-box:after {
  content: "";
  background: url(https://www.syc.net.au/assets/images/Arrow_button.svg)no-repeat center center;
  width: 30px;
  height: 11px;
  position: absolute;
  right: 20px;
  top: 27px;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
}
.autosearchbar-box ul {
  position: absolute;
  width: 100%;
  z-index: 11111;
  list-style-type: none;
}

.autosearchbar-box:hover:after {
  -webkit-transition: 0.3s all;
  transform: translateX(10px);
  cursor: pointer;
}

.bor .autosearchbar-box-services
{
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.bor .autosearchbar-box-services input
{
  width: 100%;
    padding: 15px 70px 15px 25px;
    border: 2px solid var(--text-color);
    border-radius: 35px;
    height: 65px;
    font-size: 26px;
}
.bor .autosearchbar-box-services ol
{
  display: block;
  height: 150px;
  overflow: hidden;
  overflow-y: auto;
}
.bor .autosearchbar-box-services ol
{
  list-style: none;
}
.bor .autosearchbar-box-services ol li
{
    border-bottom: 1px solid #000000;
    background-color: #ffffff;
    padding: 2px 10px;
}
.bor .autosearchbar-box-services:after {
    content: "";
    background: url(https://www.syc.net.au/assets/images/Arrow_button.svg)no-repeat center center;
    width: 30px;
    height: 11px;
    position: absolute;
    right: 20px;
    top: 27px;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
}
.header-search-looking
{
  width: 80%;
  margin: 0 auto;
  position: relative;
  margin-top: 30vh;
}
.header-search-looking input
{
    font-size: 20px;
}
/* .autosearchbar-box:after:hover{
    color: var(--text-color);
    padding-right: 5px;
    padding-left: 15px;
  } */
  .tab-button:last-child:after{
    background: none;
  }
 #location-service p {
    max-width: 90%;
}
button.tab-button.tab-btn-small {
  font-family: 'Fibra One';
}
.service_location .info_contact img {
  padding: 5px 5px 5px 0px;
}
.header-search {
  margin: 70px 0px 100px 0px;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
}
.header-search:hover:after {
  -webkit-transition: 0.3s all;
  transform: translateX(10px);
  cursor: pointer;
}
.location_box p strong{
  font-size: 18px;
}
.news_detail_section p a{
  font-family: 'Fibra One Bold';
  font-size: 15px;
}
.news_detail_section p a:hover{
  color: #0B4655;
}
.news_detail_section ul li{
  padding-bottom: 5px;
}
.video_row iframe
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video_row
{
  display: block;
  position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.video_row p
{
  margin-bottom: 0;
}
.focal_img_set
{
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
-webkit-background-size: cover;
}
.col-lg-6.spacing_2.padding-0.img-full.order-1{
  border-bottom: 1px solid #0B4655;
}
select#sel_service {
  width: 100%;
  border: 1px solid var(--text-color);
  border-radius: 40px;
  padding: 15px 35px 15px 15px;
  font-size: 16px;
  color: var(--text-color);
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background: url(https://www.syc.net.au/assets/images/chevron-down.png) 95% / 4% no-repeat #fff;
} 


/*New Coponent Development CSS*/
.object-cover{
  object-fit: cover;
}
.border-theme{
  border-bottom: 1px solid #0B4655 !important;
}
.bg-aqua{
  background-color: #DEFAEB;
}
.breadcrumbs-2{
  padding: 200px 0 50px;
}
.spacing_section{
  height: 160px;
  width: 100%;
  background-color: #fff;
}
.button_main_2{
  width: 300px;
}
.services_card{
  padding: 68px 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #0B4655;
}
.services_section .spacing_large{
  border-left: 1px solid #0B4655;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #0B4655;
}
.services_section .spacing_large img{
  height: auto;
  /* border-top: 1px solid #0B4655; */
  /* border-bottom: 1px solid #0B4655; */
}
.services_section .spacing_large p{
  margin-bottom: 43px;
}
.learner_card{
  padding: 84px 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #0B4655;

}
.two-column-large-image .object-cover{
  height: 540px !important;
}
#study .object-cover{
  height: 100% !important;
}
.three-column-card .object-cover{
  height: 407px !important;
}
.two-colum-small-image .object-cover{
  height: 553px !important;
}
.news_gallery
{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    margin: 20px 0;
}

.news_gallery .gallery_image_box img
{
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
}
#lightbox .lb-nav
{
  display: none !important;
}
.support-award-section .title-section p
{
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.support-award-section .title-section h3
{
  margin-bottom: 50px;
}
.support-award-profile-section
{
  padding-top: 0 ;
}

@media (max-width: 1200px) {
  .services_card{
    padding: 40px 20px 40px 20px;
  }
  
  .services_section .spacing_large p{
    margin-bottom: 25px;
  }
  .spacing_section{
    height: 100px;
  }
}
@media (max-width: 1300px) {
  .learner_card {
    padding: 40px 20px 40px 20px;
}
}
@media (max-width: 991px) {
  .services_card{
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .spacing_section{
    height: 60px;
  }
  .services_card{
    padding: 20px;
  }
  .learner_card{
    padding: 34px 30px;
  }
  .news_gallery
  {
    grid-template-columns: auto auto !important;
  }
  .news_gallery .gallery_image_box img
  {
    height: 150px;
  }
  div#program-overview {
    padding-top: 50px;
}
}
/*New Coponent Development CSS*/

.green_block ul li{
  color: #fff;
}
.green_block a{
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
}
.video-and-text-section
{
  padding: 100px 0;
}
.video-and-text-section .vimeo-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* This keeps the aspect ratio of the video */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-and-text-section .vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Set the height of the iframe */
}




.homepagefirstsection .banner_col, 
.homepagefirstsection .right_col{
  position: relative;
}
.homepagefirstsection .banner_col #autocomplete1{
  position: absolute;
  bottom: 140px;
  width: 80%;
  margin-left: 6.3%;
}

@media(min-width:992px){
  .homepagefirstsection .right_col .banner_btn{
    position: absolute;
    bottom: 140px;
  }
  .homepagefirstsection .right_col{
    height: 75vh;
  }
  .homepagefirstsection .right_col h1{
    position: absolute;
    bottom: 347px;
  }
}


@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .homepagefirstsection .right_col .banner_btn{
    position: absolute;
    bottom: 140px;
  }
  .homepagefirstsection .right_col{
    height: 75vh;
  }
  .homepagefirstsection .right_col h1{
    position: absolute;
    bottom: 250px !important;
  }
}
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {
  .homepagefirstsection .right_col .banner_btn{
    position: absolute;
    bottom: 140px;
  }
  .homepagefirstsection .right_col{
    height: 75vh;
  }
  .homepagefirstsection .right_col h1{
    position: absolute;
    bottom: 280px !important;
  }
}


@media only screen and (min-device-width: 412px) and (max-device-width: 915px) and (orientation: landscape) {
  .homepagefirstsection .right_col .banner_btn{
    position: unset;
  }
  .homepagefirstsection .right_col{
    height: auto !important;
  }
  .homepagefirstsection .right_col h1{
    position: unset;
  }
}
@media only screen and (min-device-width: 430px) and (max-device-width: 932px) and (orientation: landscape) {
  .homepagefirstsection .right_col .banner_btn{
    position: unset;
  }
  .homepagefirstsection .right_col{
    height: auto !important;
  }
  .homepagefirstsection .right_col h1{
    position: unset;
  }
}
@media only screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .homepagefirstsection .right_col .banner_btn{
    position: absolute;
    bottom: 140px;
  }
  .homepagefirstsection .right_col{
    height: 75vh;
  }
  .homepagefirstsection .right_col h1{
    position: absolute;
    bottom: 220px !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .homepagefirstsection .right_col .banner_btn{
    position: unset;
  }
  .homepagefirstsection .right_col{
    height: auto !important;
  }
  .homepagefirstsection .right_col h1{
    position: unset;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1100px) {
  .content_box.text-left nav{
    padding-top: 15px;
  }
}

@media screen and (min-device-width: 992px) and (max-device-height: 640px) {
  .homepagefirstsection .right_col h1{
    position: relative !important;
    bottom: unset !important;
    top: 45px !important;
  }
}

a.loading-more-categorypage, 
a.loading-more-categorypage:visited{
  padding: 10px 40px;
  border:1px solid #0B4655;
  border-radius: 20px;
  color: #0B4655;
  margin-top: 20px;
  display: inline-block;
}

@media (min-width: 991px) {
    section.four_section.news_listing_section{
        padding-bottom: 70px !important;
    }
}