/*
Theme Name: Titan
Theme URI: https://titanwms.com
Author: Ryan Miller Front-End Developer at Titan Web Marketing Solutions
Author URI: https://titanwms.com
Description: A Gutenberg-ready bootstrap 4 theme created and modified based off of the Twenty Nineteen Theme.
Requires at least: WordPress 4.9.6
Version: 3.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: titan
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Titan is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc and the Twenty Nineteen Theme.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Titan Utilizes Reboot from Bootstrap to provide normalizing styles.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

#Website Colors
#Typography
#Bootstrap Margin Fix 
#Media
  ## Captions
  ## Galleries
#Transition Mixin and Normalizing Styles
#Header Blocks
#Footer Blocks
#Home Hero Content Block
#Home Content Blocks
#Internal Hero Content Block
#Internal Content Blocks
#Gravity Forms
#Custom Site Style by Developer

--------------------------------------------------------------*/
/*---
Website Colors
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #333333;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #606565;
}

.secondary-bg {
  background-color: #1E1E1E;
}

.white-bg {
  background-color: #ffffff;
}

/*---
Typography
---*/
/* Define Fonts for the Website */
a {
  font-size: inherit;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: #002440;
}

body {
  font-size: 10px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #58595B;
}

p, .screen-reader-text, input[type=search], .tos-list, li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 80px;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
}
h1.hero {
  font-size: 80px;
  font-weight: 800;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

h4 {
  font-size: 23px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

nav ul li {
  font-size: inherit;
}

/*---
Bootstrap Margin Fix
---*/
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.subtitle-1 {
  font-size: 28px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.subtitle-2 {
  font-size: 24px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.overline {
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

/*---
Media
---*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: inline-block;
}

.avatar {
  border-radius: 100%;
  display: block;
  height: 22.5px;
  min-height: inherit;
  width: 22.5px;
}

svg {
  transition: fill 120ms ease-in-out;
  fill: currentColor;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .wp-caption.aligncenter {
    position: relative;
    left: calc((66.6666666667vw - 28px) / 2);
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1200px) {
  .wp-caption.aligncenter {
    left: calc((50vw - 28px) / 2);
  }
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  color: #767676;
  font-size: 12px;
  margin: 0;
  padding: 15px;
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gallery-item {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: calc((100% - 16px * 1) / 2);
}
.gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
  margin-right: 0;
}
.gallery-columns-3 .gallery-item {
  max-width: calc((100% - 16px * 2) / 3);
}
.gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
  margin-right: 0;
}
.gallery-columns-4 .gallery-item {
  max-width: calc((100% - 16px * 3) / 4);
}
.gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
  margin-right: 0;
}
.gallery-columns-5 .gallery-item {
  max-width: calc((100% - 16px * 4) / 5);
}
.gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
  margin-right: 0;
}
.gallery-columns-6 .gallery-item {
  max-width: calc((100% - 16px * 5) / 6);
}
.gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
  margin-right: 0;
}
.gallery-columns-7 .gallery-item {
  max-width: calc((100% - 16px * 6) / 7);
}
.gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
  margin-right: 0;
}
.gallery-columns-8 .gallery-item {
  max-width: calc((100% - 16px * 7) / 8);
}
.gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
  margin-right: 0;
}
.gallery-columns-9 .gallery-item {
  max-width: calc((100% - 16px * 8) / 9);
}
.gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
  margin-right: 0;
}
.gallery-item:last-of-type {
  padding-right: 0;
}

.gallery-caption {
  display: block;
  font-size: 14px;
  margin: 0;
  padding: 15px;
}

.gallery-item > div > a {
  display: block;
  line-height: 0;
  box-shadow: 0 0 0 0 transparent;
}
.gallery-item > div > a:focus {
  box-shadow: 0 0 0 2px #0073aa;
}

/*-------
Transition Mixin and Normalizing Styles
-------*/
html {
  scroll-behavior: smooth;
}

.search-submit {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  padding: 10px 25px;
  background-color: #002440;
  border: solid 3px #002440;
}
.search-submit:hover {
  background-color: transparent;
  color: #0094aa;
  border-color: #0094aa;
}

/*---
Header Blocks
---*/
/*--Dropdown Blue Box Fix--*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: transparent;
}

/*--- Import Color Mixins ---*/
.white {
  color: #ffffff;
}

.primary {
  color: #002440;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #002440;
}

.secondary-bg {
  background-color: #0094aa;
}

.white-bg {
  background-color: #ffffff;
}

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 175px;
  height: auto;
  padding-top: 84px;
  padding-bottom: 15px;
}

@media (max-width: 991px) {
  .custom-logo-link {
    display: inline-block;
  }
  img.custom-logo {
    display: block;
    margin: 0 auto;
  }
  .brand-flex {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
}
/*-------
Transition Mixin
-------*/
/*--------*/
.navbar {
  z-index: 10;
  padding: 0;
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    
    border-bottom: solid 2px transparent;
    border-radius: 0px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 2px 0px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-expand-lg .navbar-nav .nav-link:hover {
    border-bottom: solid 2px #fff;
  }
  .nav-fill .nav-item {
    border:none;
  }
  .nav-fill .nav-item:last-child {
    border: none;
  }
  .navbar-expand-lg .navbar-nav .active .nav-link {
    color: #606565;
    border-bottom: solid 2px #606565;
  }
  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #58595B;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
  }
  img.custom-logo {
    max-width: 200px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

.navbar-nav .show > .nav-link {
  color: #58595B;
}

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
    
    text-align: center;
    border-bottom: solid 1.5px #58595B;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 10px 20px;
  }
  #menu-item-29 .nav-link {
    border: none;
  }
  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #606565;
    background-color: #0094aa;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .dropdown-item {
    padding: 0.25rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
  }
  .navbar-header {
    width: 100%;
  }
  .nav-phone {
    color: #002440;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .navbar-toggler {
    top: 10px;
    border: none;
    position: absolute;
    right: 10px;
    z-index: 64;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
  }
  
  #titan-nav {
    position: absolute;
    z-index: 10;
    top: 20px;
    margin: 60px 0!important;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #ffffff;
    width: 100%;
  }
  /*---- Dropdown Toggle ----*/
  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #0094aa;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #nav-icon4 span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(2) {
    top: 8px;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(3) {
    top: 16px;
    transform-origin: left center;
  }
  #nav-icon4.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 0px;
  }
  #nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  #nav-icon4.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
    left: 0px;
  }
}
/*--- Social Menu ---*/
.social-nav {
  display: flex;
  justify-content: flex-end;
}
.social-nav p, .social-nav .screen-reader-text, .social-nav input[type=search] {
  font-size: 18px;
}

.social-menu {
  margin-left: 15px;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #ffffff;
  padding: 0px 7.5px;
  line-height: 0.1;
  transition: all 0.3s ease-in-out;
}
.social-menu li a:hover {
  color: #0094aa;
}

.screen-reader-text {
  display: none;
}

.social-phone {
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.social-phone:hover {
  color: #002440;
}

@media (max-width: 991px) {
  .social-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .social-btns {
    border-radius: 0px;
    font-size: 25px;
    display: block;
  }
  .social-menu li a {
    color: #002440;
    transition: all 0.3s ease-in-out;
  }
  .social-menu li a:hover {
    color: #0094aa;
  }
}
@media (max-width: 767px) {
  .social-phone {
    display: block;
  }
  .social-nav {
    flex-flow: column;
    justify-content: center;
    text-align: center;
  }
  .social-menu {
    margin-left: 0px;
  }
}
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #002440;
}

.secondary {
  color: #0094aa;
}

.dkgray {
  color: #58595B;
}

.primary-bg {
  background-color: #002440;
}

.secondary-bg {
  background-color: #0094aa;
}

.white-bg {
  background-color: #ffffff;
}

footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #58595B;
}

.footer-text p, .footer-text .screen-reader-text, .footer-text input[type=search], .footer-text a {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 0px;
}

/*---
Home Hero Content Block
---*/
.home-top {
  background-image: url("/wp-content/themes/titan/images/home-top.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

/*---
Home Content Blocks
---*/
.hp-icons {
  max-width: 135px;
}

.service-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1.5px;
}
.service-bg.one {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}
.service-bg.two {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}
.service-bg.three {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}

.color-overlay {
  min-height: 280px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 148, 170, 0.7);
  transition: all 0.3s ease-in-out;
}
.color-overlay:hover {
  background-color: transparent;
  visibility: hidden;
}
.color-overlay:hover .service-box-text {
  display: none;
  visibility: hidden;
}

.swapping-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.swapping-wrapper.image-r {
  background-image: url("/wp-content/themes/titan/images/swap-image-r.png");
}
.swapping-wrapper.image-l {
  background-image: url("/wp-content/themes/titan/images/swap-image-l.png");
}
@media (max-width: 991px) {
  .swapping-wrapper.image-r, .swapping-wrapper.image-l {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .swapping-wrapper img {
    display: none !important;
  }
}

/*---
Home Bottom Blocks
---*/
.home-bot {
  background-image: url("/wp-content/themes/titan/images/home-bot.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 240px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---
Internal Hero Content Block
---*/
.internal-head {
  background-image: url("/wp-content/uploads/2023/06/bgcontact.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---
Internal Content Blocks
---*/
/*---
Internal Bottom Blocks
---*/
/*---
Gravity Forms
---*/
.gform_wrapper {
  margin: 0px 0px 5px !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea {
  border-radius: 0;
  border: none;
}

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 0px !important;
}

.gform_wrapper textarea {
  margin-top: 12px;
}

body .gform_wrapper ul li.gfield {
  margin-top: 7px !important;
}

.gform_wrapper .gform_footer {
  text-align: center;
  margin-top: 0px !important;
  padding-bottom: 0px !important;
}

.gform_wrapper .gform_footer input.button {
  font-size: 18px !important;
  font-weight: 500;
  text-transform: uppercase;
  
  border-radius: 0px;
  border: none;
  white-space: normal;
  margin-right: 0px !important;
  transition: all 0.3s ease-in-out;
  background-color: #002440;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #0094aa;
}

/* Chrome Width Issue */
.gform_wrapper.gf_browser_chrome .gform_body {
  width: 100% !important;
}

@media (max-width: 640px) {
  .gform_wrapper select {
    min-height: 2.5rem !important;
    padding: 5px 4px !important;
  }
}
/*---
Custom Site Styles by Developer
---*/
#acadp-contact-details .acadp-terms {visibility: hidden!important;}
/*/ general configs /*/
.acadp-country-name a { cursor: default;
  pointer-events: none;        
  text-decoration: none;
  color:#333333}

.page-id-8 .navbar , .page-id-62 .navbar {
  position: absolute;
  width: 100%;
  z-index: 25;
  top: 0;
  left: 0;
}
.page-id-8 .nav-link, .page-id-62 .nav-link  {color: #fff ;}
 .page-id-8 #menu-item-295, .page-id-62 #menu-item-295 {background-color: #fff; }
 .page-id-8 #menu-item-295 a , .page-id-62 #menu-item-295 a{color: #333;} 
.navpad{padding-top: 100px;}
/*--- Hero Slider Styles ---*/

.home-video-row:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 58, 58, 0.7);
  mix-blend-mode: multiply;
  z-index: 4;
}

.home-video-row {
  position: relative;
}

.home-hero-row {
  position: absolute;
  width: 100%;
  top: 240px;
  z-index: 15;
}

.nopad {
  padding: 0;
}

.home-hero-row .title {
  color: #ffffff;
}

.home-hero-row .subtitle-1 {
  color: #ffffff;
  font-size: 28px;
  line-height: 29.4px;
  
}

.home-hero-row .btn {
  
  height: 49px;
  color:#fff;
  text-transform: uppercase;
  margin: 0 8px;
  background-color: transparent;
  border:solid 2px #fff;
  font-size: 18px;

}
.btn a {color: #fff;}
.home-hero-row .btn:hover{
	
	height: 49px;
	color:#333;
	text-transform: uppercase;
	margin: 0 8px;
	background-color: #fff;
	border:solid 2px #fff;
	font-size: 18px;
  
  }
.home-hero-row hr{ width: 30%; 
  margin-left: 0;
  border-top:4px solid ;
  color:#fff;
  height: 4px;
  }

.contact-home-form-wrapper {
  background: rgba(199, 194, 187, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 80px 50px 40px 50px;
  right: 2px;
  position: absolute;
  width: 633px;
  height: 312px;
  color:#333333;
  top: 440px;
}

/*/ who we are secction /*/
.howweare{padding:90px 0;  color:#333333;}

.boximg {
  margin-left: -40px;
  position: relative;
  top: 0;
  left: 0;
}
.boximg1 {
  position: relative;
  width: 432px;
  height: 564px;
  top: 0;
  left: 0;
  
}
.boximg2 {
  position: absolute;
  top: 210px;
  left: 300px;
  z-index: 2;
  
}
.bgbox{
  left: 500px;
  top:440px;
  z-index: 1;
  position: absolute;
  width: 124px;
  height: 124px;
  background-image:  url('/wp-content/uploads/2023/06/Rectangle-131.png');
}
.howtxt {
  
  margin-top: 170px;
  line-height :21px;
  padding-top: 24px;
  
  
}




.logoboxstations  {
  
  height: auto ;
  width: auto;}
 
  .logoboxstations .col-lg-3 {padding: 25px 0 250px 0;}
  
  .sponsor{margin: 0 10px; padding-bottom: 60px;} 
  .spn1{padding: 30px 10px 0;}
  .spn2{padding: 55px 8px 0;}
  .spn3{padding: 25px 30px 0;}
  .medialogo{margin: 50px 60px 30px 0;}

/*/search/*/
.sponsorlist{padding-top: 100px;}

.jobsearch{background-color: #333333;   
  background-size: 100%;
  padding: 85px 0px; 
  display: block;}

  .innersearch{
    padding-left: 10%;
  }
.jobsearch .job_listings {margin: auto;}

.jobsearch h2 {color:#fff; 
  padding:0 0 15px 20px; 
  font-size: 47px;}
#search_keywords{padding: 20px 200px;}
#search_keywords::placeholder{color: transparent;}
#btnsearch{
  background-color: transparent;
  border: solid 2px; 
  border-color: #fff; 
  color: #fff; height: 65px; 
  padding: 5px 25px; 
  font-size: 18px; font-weight: 700; 
  text-transform: uppercase;
  }
  #btnsearch:hover{
    height: 65px;
    color:#333;
    text-transform: uppercase;
    margin: 0 8px;
    background-color: #fff;
    }


/*/job carts /*/

.jobcarts{background-color: #C7C2BB; padding: 109px 157px; margin-right: auto;
  margin-left: auto; 

text-align: center;}
.boximgcarts { position: relative;
  top: 0;
  left: 0;}
.boximgcartstxt{
  text-align: left;
  position: absolute;
  width: 436px;
  height: 307px;
  left: 220px;
  top: 50px;
  color:#333;
  background-color: rgba(224, 221, 216, 0.8);
  padding: 30px 30px; 
}



.boximgcarts1{width:482px; height:660px;}
.boximgcartstxt hr{ width: 30%; 
  margin-left: 0;
  border-top:4px solid ;
  color:#606565;
  height: 4px;
  }
.cards{padding:  0 140px; text-align: left; color:#333;}
.cards h3 a{font-size: 20px; line-height: 10px!important; color:#333;}
.cardimg1{padding-bottom:50px;}
.jobscards .acadp-slider-img-responsive{background-image: none!important; background-color: #606565;}
/*/ start now style /*/
.startnow{padding: 90px 0; color:#333333}
.nowbox{width: 284px;
height: 188px;

}
.nowbox img {padding: 5px 38%;}
.nowbox h3 {padding-top: 40px ;}
.startnow p {padding-bottom:48px;}
.postjob{
  background:  url('/wp-content/uploads/2023/06/MicrosoftTeams-image-4.png');
  background-size: cover;
  background-repeat: no-repeat;
}
.postrental
{
  background:  url('/wp-content/uploads/2023/06/MicrosoftTeams-image-2.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.worksearch{
  background:  url('/wp-content/uploads/2023/06/MicrosoftTeams-image-3.png');
  background-size: cover;
  background-repeat: no-repeat;
}
.login{
  background:  url('/wp-content/uploads/2023/06/MicrosoftTeams-image-1.png');
  background-size: cover;
  background-repeat: no-repeat;
}
/*/ sponsors/*/
.sponsors{  background-color: #606565; padding :  104px 157px; margin-right: auto;
  margin-left: auto;}

.boximgsponsor {
  
  position: relative;
  top: 0;
  left: 0;
}
.boximg3 {
  position: relative;
  width: 464px;
  height: 565px;
  top: 0;
  left: 0;
  margin-left: 100px;
  z-index: 3;
  
}

.boximg4 {
  position: absolute;
  height: 333px;
  width: 303px;
  top:70px;
  left: 20px;
  border-radius: 0px;
  z-index: 4;
  
}
.bgbox2{
  left: 500px;
  top:440px;
  z-index: 1;
  left:  80px;
  top:470px;
  position: absolute;
  width: 124px;
  height: 124px;
  background-color: rgba(184, 189, 193, 1);
}
.logoboxsponsord{height: 93px;
  width: 254px;
  display: inline-block;  
}

.sponsors .logo1{height: 94px; width: 254px; padding: 10px;}
.sponsors .logo2{height: 43px; width: 242px; padding: 10px;}
.sponsors .logo3{height: 85px; width: 246px; padding: 10px;}
.sponsors .logo4{height: 120px; width: 228px; padding: 10px;}
.sponsors .logo5{height: 187px; width: 187px; padding: 10px;}

.sponsors hr{ width: 30%; 
  margin: -5px 0;
  
  border-top:4px solid ;
  color:#fff;
  height: 4px;
  }
  .sponsors p{padding: 28px 0;}
/*/ discover/*/
.discover{padding: 100px 0;}
.boximgdiscover{width:482px; height:660px; margin-left: -60px;}
.boximgdiscovertxt{
  text-align: left;
  position: absolute;
  width: 436px;
  height: 256px;
  left: 140px;
  top: 100px;
  color:#333;
  background-color: rgba(224, 221, 216, 0.8);
  padding: 40px 40px; 
  line-height: 46px;
  
}
.boximgdiscovertxt hr { width: 30%; 
  margin-left: 0;
  border-top:4px solid ;
  color:#606565;
  height: 4px;
  }
 
  .discover ul {
    text-align: left;
    display: inline-block;
    list-style: none;
    line-height: 22px;
  }
  .discover ul > li::before {
    
    content: "";
    height: 1em;
    width: 1em;
    display: block;
    float: left;
    margin-left: -1.5em;
    margin-top: 7px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    list-style-position: inside;
    transition: background-size 0.3s;
    -webkit-transition: background-size 0.3s;
    text-align: center;
    
  }
  ul > li::before {
    background-image: url('/wp-content/uploads/2023/06/check.svg');
  }
  .discover ul{line-height: 22px;}

  .discoveryinnertxt{padding: px 0 0 0; }
  .discover h3 {padding-bottom: 12px; color:#333;}
  /*/help/*/
  
  .help {  background-color: #C7C2BB; padding :67px 430px; color:#333;}

.help h2 {padding-top: 24px;}
.help p {padding-bottom: 24px;}
.help button{font-size: 18px;
  padding: 14px;
  color: #fff;
  font-weight:700 ;
  line-height: 17px;
  background-color: #333;}
  .help button:hover{
	
    height: 49px;
    color:#333;
    text-transform: uppercase;
    margin: 0 8px;
    background-color: #fff;
    border:solid 2px #fff;
    font-size: 18px;
    
    }
/*/disclaimer/*/
  
  .disclaimer {   background-color: #606565; padding :90px 157px; color:#333; width: 100%;}
  
  .disclaimer .sub  {font-size:24px!important; padding: 50px 0 15px  0;}
  .boximgdisclaimer {
    padding-left: 100px;
    position: relative;
    top: 0;
    left: 0;
  }
  .boximg5 {
    position: relative;
    width: 464px;
    height: 565px;
    top: 0;
    left: 0;
    z-index: 3;
    
  }
  .boximg6 {
    position: absolute;
    height: 333px;
    width: 303px;
    right: 250px;
    top: 360px;
    border-radius: 0px;
    z-index: 4;
  }
  .bgbox3{
    left: 470px;
    top: 470px;
    z-index: 1;
    color:transparent;
    position: absolute;
    width: 124px;
    height: 124px;
    background-color: rgba(184, 189, 193, 1);
  }
  .bgbox3 hr{color: transparent;
  border-color: transparent;}

  .disclaimer hr{border-color: #fff!important; border-top-width: 4px!important; width: 30%;  margin: -5px 0 0 0;} 
    /*/ footer /*/
    .foot-logo{width: 144px; height: 95px; margin: 50px;}
    footer .nav{padding-bottom:50px;} 
    .site-footer{background-color: #333333; padding-left: 50px;}
    
    .site-footer .nav-link{ color: #fff; padding: 0 25px;}
    .footer-text{padding-bottom:20px;}

    /*/listing forms/*/
    .single h1{font-size: 30px;}
    .container .my-5{display: none;}
    .single li .text-primary{color:#333333;}
    .single .list-group .text-primary{color:#333333!important;}
    .single .breadcrumb a{color:#333333!important;}
    .single .site-footer {min-width: 100%;}
    
    /*/contact page slider /*/
    .internal-head hr{
      width: 10%;
      margin-left: 0;
      border-top:4px solid ;
      color:#fff;
      }
      
      #acadp-favourites {margin: 0 15px!important;}
      .home-content-bg{padding: 380px 0;}
      .imgcontact { width: 430px; 
        height: 564px;
        z-index: 5;
        position: absolute;
        top:-300px;
        }
      .contactbgcolor{
        top: 120px;
        z-index: 1;
        left: 300px;
        position: absolute;
        width: 175px;
        height: 175px;
        background-color: #E0DDD8;}
        .contactbgcolor hr {border-color:transparent;}
        .contactbox{position: absolute; 
          height: 610px;
           width:625px ; 
           background-color: rgba(199, 194, 187, 0.8);
           top: 523px;
           left: 1200px;
          padding: 50px;
          z-index: 1;
          }
          .contactbox input,  .contactbox  textarea{    background-color: transparent;
            border-bottom: solid 2px #9c9995!important; }
          .contactbox h2, .contactbox p {color:#333; padding-bottom: 20px ;}
          #gform_submit_button_1{margin-left: 40%;}
          .formbgcolor{top: -20px;
            z-index: 5;
            left: 520px;
            position: absolute;
            width: 144px;
            height: 92px;
            background-color: #E0DDD8;}
            #gform_submit_button_1{background-color: #333; border-bottom: none;}
            #gform_submit_button_1:hover {background-color: #fff; border-bottom: none;}
            
  
@media screen and (max-width: 991px) {
    .home-video-row:after {
      content: "";
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(58, 58, 58, 0.7);
      mix-blend-mode: multiply;
      z-index: 4;
    }
    /*/slidertablet/*/
    .home-hero-row{padding:  0;}
    .home-hero-row h1{font-size: 30px;  text-align: center;}
    .home-hero-row .subtitle-1{font-size: 20px;}
    .home-hero-row hr{width: 100%;}
    .btnrow{text-align: center;}

    .contact-home-form-wrapper {min-width: 100%; padding: 80px;
    top:0;}
    .howweare{ padding: 300px 0 80px 0; color:#333333; margin-top: 100px;}
    .boximg {margin-left: 50px!important;}
    .howtxt{margin-top: 0!important;}
    /*/searchtablet/*/
    .innersearch{padding-left: 0;}
    #btnsearch{margin-top: 20px;}
    /*/cardstablet/*/
    .boximgcartstxt {top:20px; left:180px;}
    .cards{padding:50px 0 ;} 
    /*/sponsor tablet/*/
    .logo5{margin:10px;}
    /*/discovrytablet/*/
    .boximgdiscovertxt {left:-10px; top:360px}
    .discoverylists {padding-left: 90px;}
    /*/help tablet/*/
    .help{padding: 67px 0;}
    /*/disclaimertablet/*/
    .boximg6{right: 0; top:280px;}
    .disclaimer { padding: 90px 0 180px 157px;}

    /*/contact pagtablet/*/
    .home-content-bg{padding: 600px 0;}
  .contactbox{position: absolute; 
    position: absolute;
    height: 610px;
    width: 100%;
    background-color: rgba(199, 194, 187, 0.8);
    top: 672px;
    left: 0px;
    padding: 50px;
    z-index: 1;
  }
  .imgcontact{width: 364px;
  height: 464px;
  z-index: 5;
  position: absolute;
  top: 70px;
  left:150px;}
  .contactbgcolor {
    top: 460px;
    z-index: 1;
    left: 450px;
    position: absolute;
    width: 88px;
    height: 88px;
    background-color: #E0DDD8;}
    #gform_submit_button_1 {margin-left: 40%;}
    .internal-head .row{padding-top: 100px;}


}



@media screen and (max-width: 767px) {
  .home-hero-row {
    top: 230px;
    padding: 0 48px;
  }
}

@media (max-width: 480px){
  .site-footer{background-color: #333333; padding-left: 0;}
  .custom-logo-link {padding-top: 20px!important;}
  
  /*/slidermobile/*/
  .home-hero-row h1{font-size: 25px; padding: 0;}
  
  .home-hero-row .title {
    color: #ffffff;
  }
  
  .home-hero-row .subtitle-1 {
    color: #ffffff;
    font-size: 18px;
    line-height: 19.4px;
    
  }
  
  .home-hero-row .btn {
    
    height: 49px;
    color:#fff;
    text-transform: uppercase;
    margin: 0 8px;
    background-color: #0069d9!important;
    border:solid 2px #fff;
    font-size: 18px;
  
  }
  .btn a {color: #fff;}
  .home-hero-row .btn:hover{
    
    height: 49px;
    color:#333;
    text-transform: uppercase;
    margin: 0 8px;
    background-color: #fff;
    border:solid 2px #fff;
    font-size: 18px;
    
    }
  .home-hero-row hr{ width: 100%; 
    margin-left: 0;
    border-top:4px solid ;
    color:#fff;
    height: 4px;
    }
  
  .contact-home-form-wrapper {
    background: rgba(199, 194, 187, 0.8);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    
    padding:120px 0 40px 30px;
    min-width: 100%;
    z-index: 1;
    position: absolute;
    width: 390px;
    height: 312px;
    color:#333333;
    top: 0;
    
  }
  .contact-home-form-wrapper h2{font-size: 25px;}
  .navbar {
    position: relative;
   
    z-index: 25;
    
  }
  /*/how tt mobile/*/
  .howweare{ padding: 300px 0 80px 0; color:#333333; margin-top: 100px;}
  .boximg {
    margin-left: 0;
    position: relative;
    top: 0;
    left: -60px;
  }
  .boximg1 {
    position: relative;
    width: 240px;
    height: 330px;
    top: 0;
    left: 0;
    
  }
  .boximg2 {
    position: absolute;
    top: 120px;
    left: 170px;
    width: 202px;
    height: 222px;
    z-index: 2;
    
  }
  .bgbox{
    left: 270px;
    top:240px;
    z-index: 1;
    position: absolute;
    width: 114px;
    height: 114px;
    background-image:  url('/wp-content/uploads/2023/06/Rectangle-131.png');
  }

  .logoboxstations  {
  
  height: auto ;
  width: auto;}
 
  .logoboxstations .col-lg-3 {padding: 30px 0 30px 50px;}
  
  .classic{padding-left: 20px;}
  .rocks{padding: 50px 0 0 0;}
  .howtxt {
  
    margin-top: 0;
    line-height :21px;
    padding-top: 80px;
    
    
  }
  /*/searchmobile/*/
  .jobsearch{padding: 100px 0;}
  .jobsearch h2{font-size: 32px; padding-bottom: 20px;}
  #search_keywords{padding: 20px 0;}
  /*/jobcarts mobile/*/
  .jobcarts{padding: 100px 5px;}
  .boximgcarts1 {
    width: 340px;
    height: 560px;
  }
  .boximgcartstxt {
    text-align: left;
    position: absolute;
    width: 340px;
    height: 307px;
    left: 0;
    top: 200px;
    color: #333;
    background-color: rgba(224, 221, 216, 0.8);
    padding: 30px 30px;
}
.boximgcartstxt h2 {font-size: 30px;}
.cardimg1 , .cardimgs{width: 90%;}
.cards{padding: 100px 0;
margin: 0 15px;}

  /*/sponsors mobile style/*/
  .sponsors {padding: 100px 15px;}
  .boximg3 {
    position: relative;
    width: 300px;
    height: 365px;
    top: 0;
    left: -30px;
    margin:0;
    z-index: 3;
    
  }
  
  .boximg4 {
    position: absolute;
    height: 200px;
    width: 200px;
    top:70px;
    left: -80px;
    border-radius: 0px;
    z-index: 4;
    
  }
  .bgbox2{
    left: 500px;
    top:440px;
    z-index: 1;
    left:  160px;
    top:270px;
    position: absolute;
    width: 124px;
    height: 124px;
    background-color: rgba(184, 189, 193, 1);
  }
  .sponsorlist{  padding :100px 50px!important; margin: auto;}
  .boximgsponsor{left: 70px;}
  
  /*/ discover mobile/*/
  .boximgdiscover{width:300px; height:360px; margin: 0 10px;}
  .boximgdiscovertxt{
    text-align: left;
    position: absolute;
    width: 300px;
    height: 280px;
    left: 70px;
    top: 110px;
    color:#333;
    background-color: rgba(224, 221, 216, 0.8);
    padding: 80px 40px; 
    line-height: 46px;
    
  }
  .boximgdiscovertxt h2{font-size: 30px; }
  .discoverylists{padding: 50px;}

  .boximgdiscovertxt hr { width: 30%; 
    margin-left: 0;
    border-top:4px solid ;
    color:#606565;
    height: 4px;
    }

  /*/help mobile/*/
  .helptxt{margin: 0 5px;}
  .help {padding:50px 0;}
  /*/disclaimer mobile/*/
  .disclaimer {padding:50px 0;}
  
  .disclaimer .order-md-2{margin: 150px 10px 5px;}
  .boximg5 {
    position: relative;
    width: 300px;
    height: 365px;
    top: 0;
    left: -50px;
    z-index: 3;
    
  }
  .boximg6 {
    position: absolute;
    height: 150px;
    width: 150px;
    right: 200px;
    top: 280px;
    border-radius: 0px;
    z-index: 4;
  }
  .bgbox3{
    left: 240px;
    top: 270px;
    z-index: 1;
    color:transparent;
    position: absolute;
    width: 124px;
    height: 124px;
    background-color: rgba(184, 189, 193, 1);
  }
  /*/contact page mob/*/
  .home-content-bg{padding: 500px 0;}
  .contactbox{position: absolute; 
    position: absolute;
    height: 610px;
    width: 100%;
    background-color: rgba(199, 194, 187, 0.8);
    top: 685px;
    left: 0px;
    padding: 50px;
    z-index: 1;
  }
  .imgcontact{width: 215px;
  height: 282px;
  z-index: 5;
  position: absolute;
  top: 150px;
  left:60px;}
  .contactbgcolor {
    top: 360px;
    z-index: 1;
    left: 205px;
    position: absolute;
    width: 88px;
    height: 88px;
    background-color: #E0DDD8;}
    #gform_submit_button_1 {margin-left: 25%;}
    .internal-head .row{padding-top: 100px;}
  

}

/*--- Buttons ---*/
.btn {
  font-size: 21px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  /*/background-color: transparent;/*/
  border-radius: 0px;
  white-space: normal;
  padding: 10px 25px;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background-color:#002440;
}
.btn.primary-btn:hover {
  background-color: #ffffff;
  color: #002440;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #0094aa;
}
.btn.secondary-btn:hover {
  background-color: #ffffff;
  color: #0094aa;
}
.btn.white-btn {
  background-color: #ffffff;
  color: #002440;
}
.btn.white-btn:hover {
  color: #ffffff;
  background-color: #002440;
}

/*------*//*# sourceMappingURL=style.css.map */