

/*===================== TABLE OF CONTENT =======================

1. Reset
2. Body Style
3. Placeholders & Highlights
4. Container & Grid
5. Headings
6. Buttons
7. Form
8. Paddings & Margins
9. Breadcrumbs
10. Custom Style
11. Cookies
12. Header
13. Intro
14. About
15. Services
16. News
17. Testimonials
18. Team
19. Footer
20. About Page
21. Services Page
22. Team Single Page
23. Contact Page

=============================================================*/

/* ================================================================================== 
1. Reset
===================================================================================== */
*, *::after, *::before { margin: 0; padding: 0; -webkit-box-sizing: inherit; box-sizing: inherit; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a, a:active, a:hover, a:focus { outline: none; } abbr[title] { border-bottom: 1px dotted; } dfn { font-style: italic; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; max-width: 100%; } svg:not(:root) { overflow: hidden; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; margin-top: 30px; margin-bottom: 35px; border-width: 0; border-top: 1px solid #e1e1e1; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } input:focus, select:focus, textarea:focus, button:focus { outline: none; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } input, textarea, button, select, a { -webkit-tap-highlight-color: transparent; } a { color: inherit; text-decoration: none; -webkit-transition: all 0.6s ease; -o-transition: all 0.6s ease; transition: all 0.6s ease; } strong { font-weight: 700; }
.fancybox__button--zoo, .fancybox__button--slideshow, .fancybox__button--fullscreen, .fancybox__button--thumbs, .fancybox__button--zoom{
  display: none;
}
.none{
  display: none;
}
ul, ol { padding-left: 4rem; }

/* ================================================================================== 
2. Body Style
===================================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 56.25%;
  word-wrap: break-word;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.7;
  color: #1b386e;
  font-size: 1.9rem;
  
}
main{
  position: relative;
}
/* ================================================================================== 
3. Placeholders & Highlights
===================================================================================== */
::-webkit-input-placeholder { color: inherit; opacity: 1 !important; }
:-moz-placeholder { color: inherit; opacity: 1; }
::-moz-placeholder { color: inherit; opacity: 1; }
:-ms-input-placeholder { color: inherit; }
::-moz-selection { background-color: #1b386e;  color: #fff; }  
::selection { background-color: #1b386e; color: #fff }
/* ================================================================================== 
4. Container & Grid
===================================================================================== */
.container {
  position: relative;
  width: 100%;
  max-width: 148rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem;
}
.container-lg{
  max-width: 180rem;
}
.container-xl{
  max-width: 192rem;
  padding: 0;
}
.container-sm{
  max-width: 100rem;
}
/* ================================================================================== 
5. Headings
===================================================================================== */

h1, h2, h3, h4, h5, h6 { margin-bottom: 2rem; font-weight: 500;line-height:1.4;}
.title h1, .title h2{ font-size: 3.6rem; text-transform: uppercase;}
p { margin-bottom: 2rem; }
.title{ margin-bottom:5rem; }
.title-center{text-align: center;}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .title h1, .title h2{ font-size: 4rem; }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .title h1, .title h2{ font-size: 5rem; }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .title h1, .title h2{ font-size: 6rem; }
}


/* ================================================================================== 
6. Buttons
===================================================================================== */

.btn {
	display: inline-block;
	padding: 0.5rem 2.6rem;
	font-weight: 500;
  color: #2293ce;
  font-size: 1.4rem;
  text-transform: uppercase;
  position: relative;
  border-left: 1px solid #2293ce;
  border-right: 1px solid #2293ce;
  text-align: center;

}
.btn::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 100%;
  border-top: 1px solid #2293ce;
  border-bottom: 1px solid #2293ce;
  transition: all .4s ease-in-out;
}
.btn::after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 100%;
  border-top: 1px solid #2293ce;
  border-bottom: 1px solid #2293ce;
  transition: all .4s ease-in-out;
}
.btn:hover::before{
  width: 50%;
}
.btn:hover::after{
  width: 50%;
}
/* ================================================================================== 
7. Form
===================================================================================== */
input, textarea, select {
	display: block;
	width: 100%;
	border: 1px solid #eee;
	background-color: #eee;
	padding: 1.8rem;
	outline: none;
	border-radius: 5px;
  font-size: 1.6rem;
}
textarea{
  resize: vertical;
  height: 19rem;
}
input:focus,
textarea:focus, select:focus {
  border-color: #2293ce;

}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
button {
  transition: all 0.4s ease-in-out;
  border:0;
}
fieldset{
  border: 0;
  margin-bottom: 2rem;
}
label.check-wrapper {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: none;
}
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #43515a;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.check-wrapper .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #43515a;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}


/* ================================================================================== 
8. Paddings & Margins
===================================================================================== */
.space {
  padding: 7rem 0;
}
.mt-5{
  margin-top: 5rem;
}
.no-pt{
  padding-top: 0 !important;
}
.no-pb{
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .space {
    padding: 12rem 0;
  }
}
/* .menu-item-has-children za wp sub parent*/
/* .current_page_item za wp active link u navigaciji*/
/* ================================================================================== 
9. Breadcrumbs
===================================================================================== */
.breadcrumbs{
  background-color: #1b386e;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #fff;
}
.breadcrumbs ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs ul li{
  display: inline-block;
  font-weight: 600;

}
.breadcrumbs ul li::after{
  content: '|';
  display: inline-block;
  margin: 0 1rem;
}
.breadcrumbs ul li a{
  display: inline-block;
  font-weight: 400;
}
.breadcrumbs ul li:last-child:after{
  content: none;
}
/* ================================================================================== 
10. Custom Style
===================================================================================== */
.list ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.list ul li{
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}
.list  ul li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 2rem;
  height: 2rem;
  background-image: url(images/list.svg);
  background-repeat: no-repeat;
  background-size: 2rem;
}
/* ================================================================================== 
11. Cookies
===================================================================================== */
.cky-btn-accept {
	background: #000 !important;
	border: 2px solid #000 !important;
}
.cky-btn-reject,  .cky-btn-customize, .cky-btn-preferences {
	color: #000 !important;
	border: 2px solid #000 !important;
}
button.cky-show-desc-btn:not(:hover):not(:active){
  color: #000 !important;
  font-weight: 600;
}
.cky-btn-revisit-wrapper{
  background-color: #000 !important;
}
/* ================================================================================== 
12. Header
===================================================================================== */
header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
  padding: 2.5rem 0;
  transition: all .4s ease-in-out;
  color: #fff;
}
header.scrolled{
  background-color: #1b386e;
}
header .container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
}
header ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-logo{
  display: block;
  z-index: 3;

}
.header-logo img{
  display: block;
  width: 15rem;
}
nav{
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #1b386e;
  padding: 4rem;
  padding-top: 10rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-in-out;
  z-index: 2;
}
nav.open{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
nav li{
  display: block;
}

nav li a{
  display: block;
  padding: 1rem 0;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
nav li a::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background-color: #fff;
  transition: all .4s ease-in-out;
}


nav li:nth-last-child(-n+2) a::before {
  opacity: 0;
}
nav li:nth-last-child(-n+2) a {
  font-weight: 300;
}
nav li a:hover::before, nav li.current_page_item a::before{
  width: 100%;
  opacity: 1;
}
.toggle {
	cursor: pointer;
	overflow: hidden;
	width: 36px;
	height: 30px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    z-index: 11;
    margin-left: 3rem;
    order: 3;
}


.line-toggle {
	position: absolute;
	display: block;
	width: 36px;
	height: 2px;
	background: #fff;
	border-radius: 20px;
	transition: all .6s;
	right: 0;
  z-index: 11;
}

.line-toggle:first-child {
transform: translateY(-10px) translateX(0);
transition-delay: 0s;
}

.toggle .line-toggle:nth-child(2) {
    transition-delay: .12s;
}

.line-toggle:last-child {
    transform: translateY(10px) translateX(0);
    transition-delay: 0s;
}
.toggle.activate .line-toggle:first-child {

	transform: translateY(0) translateX(0) rotate(45deg);
	width: 30px;
	height: 2px;
	transition-delay: .1s;
}

.toggle.activate .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}

.toggle.activate .line-toggle:last-child {

	transform: translateY(0) translateX(0) rotate(314deg);
	width: 30px;
	height: 2px;
	transition-delay: .1s;
}


.mobile-info{
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.mobile-info .social{
  justify-content: flex-start;
}
.menu-item-has-children{
  position: relative;
}
.sub-menu{

  display: none;
  padding-left: 3rem;
}

.sub-menu li{
  display: block;
}
.sub-menu li a{
  display: block;
  padding: 1rem;
}
.social{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:1rem;
  margin-bottom: 2rem;
}
.social a{
  display: inline-block;
}
.social a img{
  display: block;
  width: 2.3rem;
  height: auto;
}
.social-desktop{
  display: none;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  nav{
    width: 40rem;
  }
  .header-logo img{
    width: 23rem;
  }
  .social-desktop{
    display: flex;
  }
  .header-logo{
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  header .container{

    justify-content: flex-end;
  }
}

@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .header-logo img{
    width: 27rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .toggle{
    display: none;
  }
  nav{
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    transform: none;
    transition: none;
    padding: 0;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

  }
  nav li{
    display: inline-block;
   
  }
  nav li a{
    display: inline-block;
    padding: 0.5rem 0;
 
  }
  nav li:not(:last-child){
    margin-right: 3rem;
  }
  .mobile-info{display: none;}
  .sub-menu{
    position: absolute;
    left: 0;
    top: 6rem;
    width: 24rem;
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #e7e7e7;
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
 
}
@media only screen and (min-width: 90em) {
  /*1440px*/
}
/* ================================================================================== 
13. Intro
===================================================================================== */
.intro{
  position: relative;
}
.intro img{
  display: block;
  width: 100%;
  height: 67rem;
  object-fit: cover;
}
.intro-text{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  
}
.intro-text .container{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.intro-text h1{
  font-size: 3.6rem;
  color: #fff;
  text-transform: uppercase;
}
.intro-inner{
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 19rem;
}
.intro img.intro-desktop{
  display: none;
}
@media only screen and (min-width: 42.5625em) {
  /*681px*/
  .intro img.intro-desktop{
    display: block;
  }
  .intro img.intro-mobile{
    display: none;
  }
  .intro img{

    height: 110rem;
  }
  .intro-inner{
    padding-bottom: 30rem;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .intro-text h1{ font-size: 4rem; }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .intro-text h1{ font-size: 5rem; }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .intro-text h1{  font-size: 6rem; }
}
/* ================================================================================== 
14. About
===================================================================================== */

.about-image{
  width: 100%;
  position: relative;
}

.about-image img{
  display: block;
  width: 100%;
  height: auto;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,  rgba(20,42,91,0) 0%,rgba(20,42,91,1) 100%);
}
.about-text{
  width: 100%;
  margin-bottom: 5rem;
  text-align: center;
}
.about-text .btn{
  margin-top: 3rem;
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .about{
    overflow: hidden;
  }
  .about-wrapper{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .about-image::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(83,127,174,1) 0%,rgba(20,42,91,1) 100%);
    position: absolute;
    left: -27%;
    bottom: -9rem;
    z-index: -1;
  }
  .about-image{
    width: 50%;
  }
  .about-text{
    width: 50%;
    padding: 0 6rem;
    margin-bottom: 0;
    text-align: left;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .about-image{
    width: 60%;
  }
  .about-text{
    width: 40%;
  }
}
/* ================================================================================== 
15. Services
===================================================================================== */
.custom-title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:2rem;
  margin-bottom: 5rem;
}
.custom-title .title{
  margin-bottom: 0;
}
.custom-title h2{
  margin-bottom: 0;
}
.arrow-custom{
  width: 2rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
  cursor: pointer;
  z-index: 1;
}
.custom-prev{
  background-image: url(images/prev.svg);
}
.custom-next{
  background-image: url(images/next.svg);
}
.services-slide{

  height: auto;
}
.services-inner{
  padding: 2.7rem;
  background-color: #fafafa;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.services-inner h3{
  font-size: 3rem;
  color: #2293ce;
  font-weight: 300;
}
.services-slider .slick-track{
  display: flex;
}
.services-inner .btn{
  margin-top: auto;
  align-self: flex-start;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .custom-title{
    gap:5rem;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .services-slide{
    padding: 0 2rem;
  }
  .services-inner{
    padding: 4rem;
  }
}


@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .services-inner h3{
    font-size: 4rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .services-inner{
    padding: 8rem;
  }
}
/* ================================================================================== 
16. News
===================================================================================== */

.news-box{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.news-box:last-child{
  margin-bottom: 0;
}
.news-box .btn{
  margin-top: auto;
  align-self: flex-start;
}
.news-image{
  display: block;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}
.news-image img{
  display: block;
  width: 100%;
  height: 24rem;
  object-fit: cover;
  transition: all .4s ease-in-out;
  z-index: 0;
  position: relative;
}
.news-image:hover img{
  transform: scale(1.1);
}
.news-image .overlay{
  z-index: 1;
}
.news-box  p{
  font-size: 2.1rem;
}
.article-image{
  margin-bottom: 5rem;
}
.article-image img{
  display: block;
  width: 100%;
  height: auto;
}
.article-title h1{
  font-size: 3rem;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .news-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%
  }
  .news-box{
    width: 48.5%;
  }
  .news-box:last-child{
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .news-box{
    width: 31.3%;
  }
}
/* ================================================================================== 
17. Testimonials
===================================================================================== */
.testimonials{
  background-color: #fafafa;
}
.testimonials-slider{
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  background-image: url(images/quote.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 10rem;

}
.testimonials-slide{
  font-weight: 300;
  font-style: italic;
  text-align: center;
}

.testimonials-image img{
  width: 30rem;
  height: 30rem;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}


.testimonials-image {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .testimonials-slide{
    font-size: 2.1rem;
  }

}
/* ================================================================================== 
18. Team
===================================================================================== */
.team-wrapper{
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}
.team-box{
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-box:last-child{
  margin-bottom: 0;
}
.team-image{
  display: block;
  overflow: hidden;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}
.team-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s ease-in-out;
}
.team-image:hover img{
  transform: scale(1.1);
}
.team-box h3{
  text-transform: uppercase;
  color: #2293ce;
}
.team-box h4{
  margin-bottom: 3rem;
}
.team-box  .btn{
  margin-top: auto;
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .team-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%;
  }
  .team-box{
    width: 31.3%;
    margin-bottom: 0;
  }
  .team-box:last-child{
    margin-bottom: 0;
  }
}
/* ================================================================================== 
19. Footer
===================================================================================== */
footer{

  background-image: url(images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  padding:  5rem 0;
  text-align: center;
  position: relative;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.3);
}
.footer-left{
  width: 100%;
}
.footer-right{
  width: 100%;
}
footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-right li a{
  display: inline-block;
  text-transform: uppercase;
  padding: 0 1rem;
}
.footer-right li a:hover{
  opacity: 0.7;
}
.footer-right li{
  display: inline-block;
}
.footer-text{
  padding: 3rem 0;
}
.footer-nav2 li a{
  text-transform: none;
  text-decoration: underline;
  padding: 0;
  padding-left: 5px;
}
.footer-nav2 li:not(:last-child) a::after{
  content: '/';
  display: inline-block;
  margin-left: 1rem;
}

.footer-logo img{
  display: block;
  width: 18rem;
  height: auto;
  margin: 0 auto;
}
.copy-mobile{
  display: none;
}
.footer-logo{
  margin-bottom: 3rem;
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .footer-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-right{
    width: 60%;
    padding-left: 5rem;
    border-left: 1px solid rgba(255,255,255,.2);
    padding: 10rem 0 15rem 0;
    padding-left: 5rem;
  
  }
  .footer-left{
    width: 30%;
    padding: 10rem 0 15rem 0;
  }
  footer{
    padding: 0;
    text-align: left;
  }
  .footer-logo img{
    width: 25rem;
    margin: 0;
  }
  .footer-text{
    padding: 5rem 0;
  }

  .footer-nav2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .footer-left{
    padding: 10rem 0 25rem 0;
  }
  .footer-right{

    padding-left: 5rem;
    padding: 10rem 0 25rem 0;
    padding-left: 15rem;
  
  }
}
/* ================================================================================== 
20. About Page
===================================================================================== */
.top-image{
  position: relative;
}
.top-image img{
  display: block;
  width: 100%;
  height: 40rem;
  object-fit: cover;
}

.about-page-text{
  width: 100%;
  margin-bottom: 5rem;
}
.about-page-image{
  position: relative;
  width: 100%;
}
.about-page-image img{
  display: block;
  width: 100%;
  height: auto;
}
.whyus{
  background-color: #fafafa;
}

.why-box{
  width:100%;
  margin-bottom: 3rem;
  background-color: #fff;
  padding: 3rem;
}
.why-box h3{
  font-size: 3rem;
  color: #2293ce;
  font-weight: 300;
}
.why-box:last-child{
  margin-bottom: 0;
}
@media only screen and (min-width: 42.5625em) {
  /*681px*/
  .why-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%
  }
  .why-box{
    width:48.5%;
  }
  .why-box:last-child{
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .about-page-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .about-page-text{
    width: 45%;
    margin-bottom: 0;
  }
  .about-page-image{
    width: 45%;
  }

}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .why-box h3{
    font-size: 4rem;
  }
  .about-page-wrapper{
    align-items: center;
  }
}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  .why-box{
    width: 31.3%;
    padding: 5rem;
  }
}

/* ================================================================================== 
21. Services Page
===================================================================================== */
.services-box{
  padding: 2.7rem;
  background-color: #fafafa;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.services-box:last-child{
  margin-bottom: 0;
}
.services-box h3{
  font-size: 2.1rem;
  color: #2293ce;
  font-weight: 300;
}
.services-box .btn{
  margin-top: auto;
  align-self: flex-start;
}
.services-image{
  display: block;
  overflow: hidden;
  margin-bottom: 3rem;
}
.services-image img{
  display: block;
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: all .4s ease-in-out;
}
.services-image:hover img{
  transform: scale(1.1);
}
.single-text{
  margin-bottom: 5rem;
}
.gallery-wrapper{
  margin-top: 5rem;
}
.gallery-wrapper a{
  width: 100%;
  display: block;
  overflow: hidden;
  margin-bottom: 3rem;
}
.gallery-wrapper a:last-child{
  margin-bottom: 0;
}
.gallery-wrapper a img{
  display: block;
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: all .4s ease-in-out;
}
.gallery-wrapper a:hover img{
  transform: scale(1.2);
}
.single-text2{
  background-color: #fafafa;
  padding: 3rem
}
.wrapper2{
  align-items:stretch;
}

@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .single-text{
    column-count: 2;
    column-gap: 5rem;
  }
  .services-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%;
  }
  .gallery-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%
  }
  .services-box{
    width: 48.5%;
  }
  .services-box:last-child{
    margin-bottom: 3rem;
  }
  .gallery-wrapper a{
    width: 48.5%;
  }
  .gallery-wrapper  a:last-child{
    margin-bottom: 3rem;
  }
}
 
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .single-text2{
    width: 55%;
  }
  .wrapper2 .about-page-image img{
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .single-text2{
    padding: 5rem;
  
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .services-box h3{
    font-size: 2.4rem;
  }
  .services-box{
    width: 31.3%;
  }
  .gallery-wrapper a{
    width: 31.3%;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .services-image img{
    height: 30rem;
  }
  .gallery-wrapper a img{
    height: 30rem;
  }
}
/* ================================================================================== 
22. Team Single Page
===================================================================================== */

.team-single-image {
	display: block;
	overflow: hidden;
	width: 17rem;
	height: 17rem;
	border-radius: 50%;
	margin-bottom: 2rem;
}

.team-aside{  
  width: 100%;

}
.team-content{
  width: 100%;
}
.team-info a{
  display: flex;
  align-items: center;

}
.team-info img{
  width: 2rem;
  height: 2rem;
  display: block;
  margin-right: 1rem;
  object-fit: contain;
}
.team-aside .team-info{
  display: none;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .team-single-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .team-aside{  
    width: 26rem;
    position: sticky;
    top: 15rem;
  }
  .team-content{
    width: calc(100% - 30rem);
  }
  .team-aside .team-info{
    display: block;
  }
  .team-content .team-info{
    display: none;
  }
}

/* ================================================================================== 
23. Contact Page
===================================================================================== */
.contact-text{

  width: 100%;

}
.contact-form{
  width: 100%;
  padding: 3rem 2rem;
  background-color: #fafafa;

}
.contact-form p{
  margin-bottom: 0;
}
.contact-form br{
  display: none;
}
button{
  background-color: transparent;
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .contact-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-text{
    width: 50%;
 
  }
  .contact-form{
    width: 50%;
    padding: 5rem;
  }
}
@media only screen and (min-width: 90em) {
  /*1440px*/
 
  
}