@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/*---------------------------------------
  TICKER FOR ANNOUNCEMENTS               
-----------------------------------------*/
        .ticker {
            border-bottom: 5px solid #ccc;
            height: 50px;
            top: 0; /*IF BOTTOM ALIGNMENT IS NEEDED, CHANGE TO BOTTOM */
            position: absolute;
            overflow: hidden;
            width: 100%;
			z-index: 9999;
			background: rgb(185,125,80);
			background: -moz-linear-gradient(0deg, rgba(185,125,80,1) 0%, rgba(0,0,0,1) 100%);
			background: -webkit-linear-gradient(0deg, rgba(185,125,80,1) 0%, rgba(0,0,0,1) 100%);
			background: linear-gradient(0deg, rgba(185,125,80,1) 0%, rgba(0,0,0,1) 100%);
			filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b97d50",endColorstr="#000000",GradientType=1);		
		}

        .info-container {
            font-size: 30px;
            line-height: 1.5;
            white-space: nowrap; 
        }

        .info {
            color: white;
            /*animation-name: marquee;*/
            animation-duration: 20s;
            animation-timing-function: ease-in;
            animation-iteration-count: infinite;
            text-align: center;
            position: absolute;
            right: 20%;  /*ADJUST THIS BASED ON LENGTH OF ANNOUNCEMENT.  LONGER EQUALS HIGHER NUMBER*/
            white-space: nowrap; 
        }

        @keyframes marquee {
            0% {
                transform: translate(0, 100px);
            }
            10% {
                transform: translate(0, 0);
            }
            20% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(-150%, 0);
            }
			}
		
@media screen and (max-width: 767px) {
        .ticker {
            border-bottom: 5px solid #ccc;
			border-left: none;
			border-right: none;
            height: 50px;
            bottom: 0;
            width: 100%;
        }
	
        .info {
            text-align: left;
            position: absolute;
            white-space: nowrap; 
			right:-20% /*ADJUST THIS BASED ON LENGTH OF ANNOUNCEMENT.  LONGER EQUALS HIGHER NUMBER*/
        }
	
        .info-container {
            font-size: 24px;
            line-height: 1.8;
            white-space: nowrap; 
        }
		
}

/* 
---------------------------------------------
GENERAL
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
  color: #3CF;
}

a:hover {
	color: #B97D50;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 25px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}

html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #f5a425;
  color: #fff;
}

::-moz-selection {
  background: #f5a425;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-button-red a {
  font-size: 13px;
  color: #fff;
  background-color: #3c527b;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red a:hover {
  background-color: #B97D50;
}

.main-button-yellow a {
  font-size: 13px;
  color: #fff;
  background-color: #f5a425;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-yellow a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  line-height: 40px;
  margin-top: 0px;
  margin-bottom: 50px; 
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}


/* 
---------------------------------------------
HEADER
--------------------------------------------- 
*/

.sub-header {
  background-color: #1f272b;
  position: relative;
  z-index: 1111;
}

.sub-header .left-content p {
  color: #fff;
  padding: 8px 0px;
  font-size: 13px;
}

.sub-header .right-icons {
  text-align: right;
  padding: 8px 0px;
}

.sub-header .right-icons ul li {
  display: inline-block;
  margin-left: 15px;
}

.sub-header .right-icons ul li a {
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header .right-icons ul li a:hover {
  color: #E2AD86;
}

.sub-header .left-content p em {
   font-style: normal;
   color: #E2AD86;
}

.background-header {
  background-color: #fff!important;
  height: 95px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.background-header .sdllogo {
  width: 200px;
  height: auto;
}

.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #B97D50!important;
}

.background-header .nav li a.active {
  color: #B97D50!important;
}

.header-area {
  background-color: rgba(250,250,250,0.15);
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  height: 150px;	
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 75px;
}

.background-header .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
  padding-top: 15px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #E2AD86!important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #E2AD86!important;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 12px;
  padding-top: 15px;

}

.background-header .main-nav .nav li.has-sub:after {
  color: #1e1e1e;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 60px;
  line-height: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: #B97D50!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
  padding-top: 15px;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.sdllogo {
  padding: 20px 0 20px 0;
  width: 375px;
  height: auto;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #f5a425;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #B97D50!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #B97D50!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
	
  .sdllogo {
    width: 200px;
    height: auto;
}	
	
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}


/* 
---------------------------------------------
BANNER
--------------------------------------------- 
*/

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgba(31,39,43,0.75);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.mobilefix {
	width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.main-banner .caption p {
  color: #fff;
  font-size: 18px;
  max-width: 570px;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

.bannerstrip {
 background: rgb(7,25,47);
 background: linear-gradient(90deg, rgba(7,25,47,1) 0%, rgba(158,158,158,1) 50%, rgba(7,25,47,1) 100%);
}

.bannerstrip h3 {
  font-size: 24px;
  color:#FFF;
  padding: 20px;
  text-align: center;
}



@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }
	
  .mobilefix {
	height: 600px;
}

}




/*
---------------------------------------------
HOMEPAGE - SERVICE BLOCKS
---------------------------------------------
*/

.services {
  margin-top: -135px;
  position: absolute;
  width: 100%;
}

.services .item {
  background-image: url(../images/services-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  padding: 40px;
}

.services .item .icon {
  max-width: 60px;
  margin: 0 auto;
}

.services .item h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.services .item p {
  color: #fff;
  font-size: 13px;
}

.services .owl-nav {
  display: inline-block !important;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-25px);
}
    
.services .owl-nav .owl-prev{
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.services .owl-nav .owl-prev span,
.services .owl-nav .owl-next span {
  opacity: 0;
}

.services .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.services .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.services .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.services .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.services .owl-nav .owl-next{
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.services .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}


/*
---------------------------------------------
HOMEPAGE - WHAT'S HAPPENING
---------------------------------------------
*/

section.whatshappening {
  background-image: url("../images/Home-Mid-bg.jpg");
  padding-top: 230px;
  padding-bottom: 110px;
}

section.whatshappening .section-heading {
  text-align: center;
}

section.whatshappening .categories {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-right: 45px;
}

section.whatshappening .categories h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f272b;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

section.whatshappening .categories ul li {
  display: inline-block;
  margin-bottom: 15px;
}

section.whatshappening .categories ul li a {
  font-size: 15px;
  color: #1f272b;
  font-weight: 500;
  transition: all .3s;
}

section.whatshappening .categories ul li a:hover {
  color: #a12c2f;
}

section.whatshappening .categories .main-button-red {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 15px;
}

section.whatshappening .categories .main-button-red a {
  width: 100%;
  text-align: center;
}


.update-item {
  margin-bottom: 30px;
}

.update-item .thumb {
  position: relative;
}

.update-item .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.update-item .down-content {
  background-color: #fff;
  padding: 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.update-item .down-content .date {
  float: right;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.update-item .down-content .date h6 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #a12c2f;
}

.update-item .down-content .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.update-item .down-content h4 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.update-item .down-content p {
  margin-left: 50px;
  color: #1f272b;
  font-size: 14px;
  text-align: left;
}

.status-bar {
  height: 22px;
  background-color: #ddd;
  position: relative;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

.status-bar-progress {
  height: 100%;
  background-color: #3c527b;
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  transition: width 0.5s ease-in-out;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.status-bar-2 {
  height: 22px;
  background-color: #ddd;
  position: relative;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

.status-bar-progress-2 {
  height: 100%;
  background-color: #3c527b;
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  transition: width 0.5s ease-in-out;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.status-bar-3 {
  height: 22px;
  background-color: #ddd;
  position: relative;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

.status-bar-progress-3 {
  height: 100%;
  background-color: #3c527b;
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  transition: width 0.5s ease-in-out;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}



.status-bar-text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
  padding-right: 5px;
}





/*
---------------------------------------------
HOMEPAGE - CONSULTATION / ABOUT US
---------------------------------------------
*/

section.consultation {
  background-image: url(../images/consultation-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px;
}

section.consultation .item {
  background-color: rgba(250,250,250,0.15);
  padding: 40px;
  margin-bottom: 30px;
}

section.consultation .item h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

section.consultation .item p {
  color: #fff;
  margin-bottom: 20px;
}

.aboutusbrief {
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  margin-left: 45px;
}

.aboutusbrief h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f5a425;
}

.accordions {
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  margin-left: 45px;
}

.accordions .accordion {
  border-bottom: 1px solid #eee;
}

.accordions .last-accordion {
  border-bottom: none;
}

.accordion-head {
  padding: 20px;  
  font-size: 18px;
  font-weight: 700;
  color: #1f272b;
  cursor: pointer;
  transition: color 200ms ease-in-out;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .accordion-head {
    padding: 1rem;
    font-size: 1.2rem;
  }
}

.accordion-head .icon {
  float: right;
  transition: transform 200ms ease-in-out;
}

.accordion-head.is-open {
  color: #f5a425;
  border-bottom: none;
}

.accordion-head.is-open .icon {
  transform: rotate(45deg);
}

.accordion-body {
  overflow: hidden;
  height: 0;
  transition: height 300ms ease-in-out;
  border-bottom: 1px solid #fff;
}

.accordion-body > .content {
  padding: 20px;
  padding-top: 0;
}


/* 
---------------------------------------------
HOMEPAGE - TESTIMONIALS
--------------------------------------------- 
*/

section.testimonials {
  background-color: #1f272b;
  background-image: url("../images/beige-paper.png");
  padding-top: 140px;
  padding-bottom: 130px;
  border-top: solid thick #FFF;
}

.testimonials .item {
  
}


.testimonials .item .down-content {
  background-color: #fff;
}

.testimonials .item .down-content h4 {
  padding: 25px;
  font-size: 18px;
  color: #1f272b;
  text-align: center; 
  font-family: 'Rock Salt', cursive;
	
}

.testimonials .item .down-content p {
  padding: 25px;
  font-size: 14px;
  color: #1f272b;
  text-align: left; 
  border-bottom: 1px solid #eee;
}

.testimonials .item .down-content .info {
  padding: 25px;
}

.testimonials .item .down-content .info ul li {
  display: inline-block;
  margin-right: 1px;
}

.testimonials .item .down-content .info ul li i {
  color: #f5a425;
  font-size: 14px;
}

.testimonials .item .down-content .info span {
  color: #a12c2f;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  display: inline-block;
  width: 100%;
  font-style: italic;
}

.testimonials .owl-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-45px);
}

.testimonials .owl-dots {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.testimonials .owl-dots .owl-dot {
  transition: all .5s;
  width: 7px;
  height: 7px;
  background-color: #fff;
  margin: 0px 5px;
  border-radius: 50%;
  outline: none;
}

.testimonials .owl-dots .active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
}
    
.testimonials .owl-nav .owl-prev{
  margin-right: 10px;
  outline: none;
  position: absolute;
  left: -80px;
}

.testimonials .owl-nav .owl-prev span,
.testimonials .owl-nav .owl-next span {
  opacity: 0;
}

.testimonials .owl-nav .owl-prev:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f104';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}

.testimonials .owl-nav .owl-prev {
  opacity: 1;
  transition: all .5s;
}

.testimonials .owl-nav .owl-prev:hover {
  opacity: 0.9;
}

.testimonials .owl-nav .owl-next {
  opacity: 1;
  transition: all .5s;
}

.testimonials .owl-nav .owl-next:hover {
  opacity: 0.9;
}

.testimonials .owl-nav .owl-next{
  margin-left: 10px;
  outline: none;
  position: absolute;
  right: -85px;
}

.testimonials .owl-nav .owl-next:before {
  display: inline-block;
  font-family: 'FontAwesome';
  color: #1e1e1e;
  font-size: 25px;
  font-weight: 700;
  content: '\f105';
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}


/*
---------------------------------------------
HOMEPAGE - OUR FACTS
---------------------------------------------
*/

section.our-facts {
  background-image: url(../images/facts-bg.jpg);
  padding: 140px 0px 125px 0px;
}

section.our-facts h2 {
  font-size: 38px;
  color: #fff;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}

.count-area-content {
  text-align: center;
  background-color: rgba(250,250,250,0.15);
  border-radius: 20px;
  padding: 25px 30px 35px 30px;
  margin: 15px 0px;
}

.percentage .count-digit:after {
  content: '%';
  margin-left: 3px;
}

.money .count-digit:before {
  content: '$';
  margin-left: 3px;
}

.count-digit {
    margin: 5px 0px;
    color: #f5a425;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.new-students {
  margin-top: 45px;
}

.importantbrief {
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  margin-left: 45px;
  margin-top: 165px;
}

.importantbrief h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f5a425;
}


/* 
---------------------------------------------
CONTACT US / FOOTER
--------------------------------------------- 
*/


section.footer {
  background-image: url(../images/meetings-bg.jpg);
}


.footer {
  text-align: center;
  padding: 50px 0px;
}
.footer p {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

.footer p a {
  color: #f5a425;
}

/*
---------------------------------------------
OUR WORK
---------------------------------------------
*/

section.ourwork-heading-page {
  background-image: url(../images/heading-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.ourwork-heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.ourwork-heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

section.ourwork-page {
  background-color: #FFF;
  padding-top: 140px;
  padding-bottom: 100px;
}

section.morework-page {
  background-color: #ffffff;
  background-image: url("../images/checkered-pattern.png");
  padding-top: 140px;
  padding-bottom: 100px;
}

section.morework-page h2 {
  text-align: center;
  margin: -6% 0px 30px 0;
  color: #949494;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}



/*Project Blocks*/

.projects p {
  margin: 20px;
}

.projects h4 {
  margin: 20px;
  font-family: 'Rock Salt', cursive;
}

.projects {
	padding-left: 5%;
	width: 30%;
}


figure.snip {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 20px;
  min-width: 220px;
  max-width: 310px;
  max-height: 500px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

figure.snip * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.snip img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
}

figure.snip figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
}

figure.snip h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.snip h2 span {
  font-weight: 800;
}

figure.snip:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: '';
  background: #ffffff;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(110deg) translateY(-50%);
  transform: rotate(110deg) translateY(-50%);
}

figure.snip a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}


figure.snip.ssa {
  background: #eed1a4;
}

figure.snip.ssa h2 {
  background: #5c3f26;
}

figure.snip.cedar {
  background: #d5c295;
}

figure.snip.cedar h2 {
  background: #705c2b;
}

figure.snip.cca {
  background: #d6a123;
}

figure.snip.cca h2 {
  background: #fadc96;
}

figure.snip.nicks {
  background: #980000;
}

figure.snip.nicks h2 {
  background: #000;
}

figure.snip.dd {
  background: #39b54a;
}

figure.snip.dd h2 {
  background: #11601b;
}

figure.snip.aperformance {
  background: #f33f3f;
}

figure.snip.aperformance h2 {
  background:#A41C1C;
  font-size: 27px;
}

figure.snip.spp {
  background: #bc222e;
}

figure.snip.spp h2 {
  background:#000;
  font-size: 27px;
}

figure.snip.centerchurch {
  background: #76323F;
}

figure.snip.centerchurch h2 {
  background:#D7CEC7;
}

figure.snip.scallywags {
  background: #F19F4D;
}

figure.snip.scallywags h2 {
  background:#9DC7C8;
}

figure.snip.sanddollar {
  background: #177e8d;
}

figure.snip.sanddollar h2 {
  background:#0c385b;
}

figure.snip.hsr {
  background: #cccccc;
}

figure.snip.hsr h2 {
  background:#b73032;
}

figure.snip.plead {
  background: #579ad1;
}

figure.snip.plead h2 {
  background:#23283b;
}



@media screen and (max-width: 1400px) {
  figure.snip h2 {
   font-size: 20px;
  }
	
  figure.snip.ideal h2 {
   font-size: 20px;
  }
	
  figure.snip.aperformance h2 {
   font-size: 18px;
  }

  .projects h4 {
   font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .projects {
    width: 50%!important;
  }
}

/* new */
@media screen and (max-width: 767px) {
   .projects {
    width: 100%!important;
  }
}


/*More Project Blocks slider*/


.slider img {
  width:75%;
  padding-bottom: 40px;
}


@media screen and (max-width: 767px) {
 .slider img {
   width:100%;
   padding-bottom: 40px;
  }
	
 .slick-dots {
   width: 95%!important;
	}
	
}


figure.snip:hover img,
figure.snip.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.snip:hover h2,
figure.snip.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.snip:hover:before,
figure.snip.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}


/*
---------------------------------------------
SERVICES - WEB DESIGN
---------------------------------------------
*/

section.webdesign-heading-page {
  background-image: url("../images/heading-bg-webservices.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.webdesign-heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.webdesign-heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

section.webdesign-page {
  background-color: #FFF;
  padding-top: 120px;
  padding-bottom: 100px;
}

.webdesign-page .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
}

.webdesign-page .caption h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.webdesign-page .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.webdesign-page .caption p {
  color: #07192f;
  font-size: 14px;
  line-height: 25px;
}

.process-section {
  background-color: #f2f2f2;
  padding: 50px;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.process-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.process-block {
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 20px;
  text-align: center;
  transition: all 0.3s ease;
  max-width: 550px;
}

.process-block:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.process-block img {
  max-width: 500px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.process-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.process-block p {
  font-size: 16px;
  line-height: 1.5;
}


.bannerstrip2 {
 background: rgb(7,25,47);
 background: linear-gradient(90deg, rgba(7,25,47,1) 0%, rgba(158,158,158,1) 50%, rgba(7,25,47,1) 100%);
 border: thick solid #FFF;
}

.bannerstrip2 h3 {
  font-size: 24px;
  color:#FFF;
  padding: 20px;
  text-align: center;
}

/*
---------------------------------------------
SERVICES - HOSTING & EMAIL
---------------------------------------------
*/

section.hostingemail-heading-page {
  background-image: url("../images/heading-bg-hostingemailservices.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.hostingemail-heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.hostingemail-heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}


/*Small blocks*/
.container-sdl-blocks {
  display: flex;
  justify-content: space-between;
}

.block {
  width: 45%;
  padding: 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.block h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 800;
}

.block p {
  font-size: 14px;
  text-align: left;
  line-height: 25px;
}

@media only screen and (max-width: 950px) {
  .container-sdl-blocks {
    flex-wrap: wrap;
  }
  
  .block {
    width: 100%;
    margin-bottom: 20px;
  }
}


.container-sdl {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  background-image:url("../images/diagmonds.png");
  border-top: thick solid #f5a425;
}

.column {
  width: 33.33%;
  padding: 60px;
  box-sizing: border-box;
}

.icon {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
}

.text {
  font-size: 14px;
  text-align: center;
  line-height: 25px;
}

.container-sdl h2 {
  font-size: 20px;
  text-align: center;
  padding-bottom: 15px;
  font-weight: 800;
}

.bannerstrip3 {
  background-color: #f5a425;
  border-top: medium solid #212529;
}

.bannerstrip3 h3 {
  font-size: 24px;
  color:#FFF;
  padding: 20px;
  text-align: center;
}


@media only screen and (max-width: 950px) {
  .column {
    width: 100%;
  }
}



/*
---------------------------------------------
SERVICES - MAINTENANCE
---------------------------------------------
*/

section.maintenance-heading-page {
  background-image: url("../images/heading-bg-maintenance.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.maintenance-heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.maintenance-heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

section.maintenance-page {
  background-color: #FFF;
  padding-top: 120px;
  padding-bottom: 100px;
}

.maintenance-page .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
}

.maintenance-page .caption h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.maintenance-page .caption p {
  color: #07192f;
  font-size: 14px;
  line-height: 25px;
}

.maintenance {
  margin: 0 auto;
  text-align: center;
}

.maintenance img {
  max-width: 800px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}


/*
---------------------------------------------
CONTACT US
---------------------------------------------
*/

section.contact-heading-page {
  background-image: url("../images/heading-bg-contact.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.contact-heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.contact-heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

section.contact-page {
  background-color: #FFF;
  padding-top: 120px;
  padding-bottom: 100px;
}

.contact-page .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
}

.contact-page .caption p {
  color: #07192f;
  font-size: 14px;
  line-height: 25px;
}


section.contact-us {
  background-image: url(../images/contactform-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 140px 0px;
}

section.contact-us #contact {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}

section.contact-us #contact h2 {
  text-transform: uppercase;
  color: #1f272b;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

section.contact-us #contact input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: thin solid #3c527b;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 30px;
}

section.contact-us #contact select {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: thin solid #3c527b;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 30px;
}

section.contact-us #contact textarea {
  width: 100%;
  min-height: 140px;
  max-height: 180px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: thin solid #3c527b;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 15px;
  margin-bottom: 30px;
}

section.contact-us #contact button {
  font-size: 13px;
  color: #fff;
  background-color: #3c527b;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  outline: none;
}

section.contact-us #contact button:hover {
  opacity: 0.9;
}

section.contact-us .right-info {
  background-color: #3c527b;
  border-radius: 20px;
  padding: 40px;
}

section.contact-us .right-info ul li {
  display: inline-block;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

section.contact-us .right-info ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

section.contact-us .right-info ul li h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

section.contact-us .right-info ul li span {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}


/*
---------------------------------------------
PRIVACY POLICY
---------------------------------------------
*/

section.privacy-heading-page {
  background-image: url("../images/heading-bg-privacy.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.privacy-heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.privacy-heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

section.privacy-page {
  background-color: #FFF;
  padding-top: 120px;
  padding-bottom: 100px;
}

.privacy-page .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
}

.privacy-page .caption p {
  color: #07192f;
  font-size: 14px;
  line-height: 25px;
}


/*
---------------------------------------------
REFUND POLICY
---------------------------------------------
*/

section.refund-heading-page {
  background-image: url("../images/heading-bg-refund.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 110px;
  text-align: center;
}

section.refund-heading-page h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

section.refund-heading-page h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

section.refund-page {
  background-color: #FFF;
  padding-top: 120px;
  padding-bottom: 100px;
}

.refund-page .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
}

.refund-page .caption p {
  color: #07192f;
  font-size: 14px;
  line-height: 25px;
}


/*
---------------------------------------------
GENERAL SECTION ITEMS
---------------------------------------------
*/


section.general2column {
  background-color: #FFF;
  padding: 140px 0px;
}

section.general2column .item {
  padding: 20px;
}

section.general2column .item h3 {
  color: #07192f;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

section.general2column .item p {
  color: #07192f;
  margin-bottom: 20px;
}

.general2column-right {
  border-radius: 20px;
  padding: 40px;
  background: rgb(212,212,212);
  background: linear-gradient(330deg, rgba(212,212,212,1) 0%, rgba(131,131,131,1) 100%);  
  margin-left: 45px;
}

.general2column-right h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f5a425;
}

.general2column-img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}


section.general-page {
  background-image:url("../images/general-bg.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px;
  padding-top: 120px;
  padding-bottom: 100px;
}

.general-page .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
}

.general-page .caption h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 800;
  color: #07192f;
  letter-spacing: 1px;
}


.general-page .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.general-page .caption p {
  color: #07192f;
  font-size: 18px;
}

.news {
  max-width: 600px; 
  width: 100%;      
  height: auto;     
  display: block;   
}



/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1300px) {
  .services .owl-nav .owl-next{
    right: -30px;
  }
  .services .owl-nav .owl-prev{
    left: -25px;
  }
  .testimonials .owl-nav .owl-next{
    right: -30px;
  }
  .testimonials .owl-nav .owl-prev{
    left: -25px;
  }
}

@media (max-width: 1200px) {
  .services .owl-nav .owl-next{
    right: -70px;
  }
  .services .owl-nav .owl-prev{
    left: -65px;
  }
  .testimonials .owl-nav .owl-next{
    right: -70px;
  }
  .testimonials .owl-nav .owl-prev{
    left: -65px;
  }
}

@media (max-width: 1085px) {
  .services .owl-nav .owl-next{
    right: -30px;
  }
  .services .owl-nav .owl-prev{
    left: -25px;
  }
  .testimonials .owl-nav .owl-next{
    right: -30px;
  }
  .testimonials .owl-nav .owl-prev{
    left: -25px;
  }
}

@media (max-width: 1005px) {
  .services .owl-nav .owl-next{
    display: none;
  }
  .services .owl-nav .owl-prev{
    display: none;
  }
  .testimonials .owl-nav .owl-next{
    display: none;
  }
  .testimonials .owl-nav .owl-prev{
    display: none;
  }
}

@media (max-width: 992px) {

  .main-banner .caption {
    top: 60%;
  }

  .main-banner .caption h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .main-banner .caption .main-button-red {
    margin-top: 15px;
  }

  section.upcoming-meetings {
    padding-top: 400px;
  }

  section.upcoming-meetings .categories {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .accordions {
    margin-left: 0px;
  }

  .new-students {
    margin-top: 15px;
  }

  section.our-facts .video {
    margin-left: 0px;
    margin-top: 15px;
  }

  section.contact-us #contact {
    margin-bottom: 30px;
  }

}

@media (max-width: 767px) {

  .sub-header .left-content p {
    display: none;
  }

  .sub-header .right-icons {
    text-align: center;
  }

  .main-nav .nav .sub-menu {
    display: none;
  }

  .header-area .main-nav .nav li ul.sub-menu li a {
    color: #1f272b;
  }
	
  .importantbrief {
    margin-top: 0px;
}

  .services {
	margin-top: -10%;
}
	
  section.whatshappening {
	padding-top: 400px;
	/*background-attachment: scroll;*/
	
}
	
  section.whatshappening .categories {
	margin-right: 0px;
	margin-bottom: 30px;
}
	
  section.consultation {
	background-color: #525252;
	background-image: none;
}
	
  .aboutusbrief {
	margin-left: 0px;		
}
	
  .importantbrief {
	margin-left: 10px;
	width: 95%;
}
	
  .process-section {
    padding: 50px 0 50px 0;
}
	
  .general2column-right {
	margin-left: 0px;		
}	
	
}