

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/

/* Website is dependant on these google fonts but it really slows it down when it loads temporarly commenting out */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

/* Local woff2 use incase google's is down but this one is slower somehow. Used for liney font
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('woff/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*/ 

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
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;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.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;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.hidden {
  display: none;
}

.grecaptcha-badge {
    display: none !important;
}

.overlay-text {
  position: absolute;
  top: 60%; 
  left: 50%; 
  transform: translate(-50%, -50%);  
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;
  z-index: 2;
  width: 520px;
}

.overlay-text p{
 color:black;
 font-size: 35px;
}

#viewMoreButton {
    margin-top: 30px;
	margin-bottom: 30px;
    padding: 10px 20px;
    background-color: #03a4ed;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

  #viewMoreButton:hover {
    background-color: #45a049;
  }
  
  #viewMoreButton2 {
    margin-top: 30px;
	margin-bottom: 30px;
    padding: 10px 20px;
    background-color: #03a4ed;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

  #viewMoreButton2:hover {
    background-color: #45a049;
  }

::selection {
  background: #03a4ed;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  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;
  }
}

.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 50px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 1;
  line-height: 44px;
      -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}


.section-heading h2 em {
  font-style: normal;
  color: #03a4ed;
  
}

.section-heading h2 span {
  color: #fe3f40;
}



.section-heading h1 {
  font-size: 50px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 1;
  line-height: 44px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
    text-align: center;
    padding-bottom: 40px;
}


.section-heading h1 em {
  font-style: normal;
  color: #03a4ed;
  
}

.section-heading h1 span {
  color: #fe3f40;
}


.section-heading h6 {
  text-transform: uppercase;
  font-size: 18px;
  color: #03a4ed;
  margin-bottom: 15px;
}

.section-heading h6 em {
  color: #03a4ed;
  font-style: normal;
}

.main-blue-button a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button a {
  display: inline-block;
  background-color: #fe3f40;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #fe3f40;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

element.style {
}

.col-lg-6.homeimage2 {
    margin: auto;
}
.col-12.mainnavcol {
    max-height: 80px;
}

/* popup */

 #popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
  display: none; /* Hidden by default */
  z-index: 9999;
}

#popup p {
 padding: 20px;
 font-size: 20px;
 font-weight: bold;
}

#popup h4 {
 padding-bottom: 20px;
 font-size: 12px;
 font-weight: bold;
}

#popup button {
padding: 15px;
margin-right: 10px;
      background-color: #03a4ed;
      color: #fff;
      border: none;
      border-radius: 30px;
      cursor: pointer;
}

#popup-content > button.popup-exit {
padding: 15px;
margin-right: 10px;
      background-color: #fe3f40;
      color: #fff;
      border: none;
      border-radius: 30px;
      cursor: pointer;
}
#popup-content > button.popup-contactus {
padding: 15px;
margin-right: 10px;
      background-color: #03a4ed;
      color: #fff;
      border: none;
      border-radius: 30px;
      cursor: pointer;
}

#popup p span{
 color: #008000;
}

#popup h2 span{
 color: #03a4ed;
}

#popup h2 em{
 color: #fe3f40;
 font-style: normal;
}
#popup-content {
 border: 3px solid #03a4ed;
  background-color: white;
  max-width: 400px;
  margin: 100px auto;
  padding: 20px;
  text-align: center;
}

#popup-exit {
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
#popup-contactus {
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
/* popup */


  /* Hidden content modal styles */
  img.centeredimg {
    margin-left: auto;
    margin-right: auto;
}
 video.centeredimg {
    margin-left: auto;
    margin-right: auto;
	height: 250px;
}

.modal-dialog {
    max-width: 80%;
}

h2.getstarted {
margin-left:auto;
margin-right:auto;
}

.col-md-6.WebServices {
    visibility: visible !important; /* Override inline style */
}
.col-md-6.WebServices {
    visibility: visible !important; /* Override inline style */
}
.col-md-4.WebServices {
    visibility: visible !important;
}
.col-md-4.WebServices {
    visibility: visible !important;
}
.col-md-6.WebServices img {
    width: 100%;
}
.col-md-6.WebServices img {
    width: 100%;
}
.col-md-4.WebServices img {
    width: 100%;
}
.col-md-4.WebServices img {
    width: 100%;
}


button.webservicesbtn {
    background-color: #03a4ed;
    font-size: 15px;
    font-weight: 500;
    color: white;
    text-transform: capitalize;
    padding: 12px 12px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    outline: none;
    border: none;
	width: 50%;
    margin-left: auto;
    margin-right: auto;
	margin-top: .5em;
}
  
  .modal-backdrop {
	  z-index: 0;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  #modalContent {
  background-color: #fff; /* Background color */
  padding: 20px; /* Padding around the content */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle depth effect */
}

#modalContent h4 {
	text-align: center;
  color: #333; /* Color for the heading */
  font-size: 25px;
}

#modalContent h2 {
	text-align: center;
  color: #333; /* Color for the heading */
  font-size: 20px;
}

#modalContent p {
	text-align: center;
  color: #666; /* Color for the paragraph text */
}

div#ATImages img {
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    max-height: 300px;
}

div#btnrow a{
	text-align: center;
	 font-size: 30px;
	 margin-top:10px;
      margin-right: auto;
      margin-left: auto;
      background-color: #03a4ed;
      color: #fff;
      border: none;
      border-radius: 30px;
      cursor: pointer;
}

div#Specs {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
div#Uses {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);	
}
div#Includes {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);	
}

#Specs h2 {
  text-align: center;
  color: #333;
  font-size: 20px;
}
#Uses h2 {
  text-align: center;
  color: #333;
  font-size: 20px;
}
#Includes h2 {
  text-align: center;
  color: #333;
  font-size: 20px;
}


.background-header {
  background-color: #fff!important;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #fe3f40!important;
}

.background-header .nav li a.active {
  color: #fe3f40!important;
}

.header-area {
  background-color: #fafafa;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  width: 35%;
  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;
}

/* custom code */

.header-area .main-nav .logo img {
  width: 186px;
  height: 100px;
  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;
}

/* cusstome code */

.header-area .main-nav .logo h4 {
	padding-left: 10px;
	height: 34px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #03a4ed;
    line-height: 50px;
    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;
}

.header-area .main-nav .logo .logo-text {
  text-align: center;
  margin-top: 6px; /* Adjust as needed */
}

.logo h4 span {
  color: #fe3f40;
}

.background-header .main-nav .logo .logo-text {
  text-align: center;
  margin-top: 20px; /* Adjust as needed */
}

.background-header .main-nav .logo img {
  width: 150px;
  height: 80px;
  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 h4 {
  padding-left: 10px;
  line-height: 10px;
}


.background-header .main-nav .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: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
  padding-left: 40px;
}

.header-area .main-nav .nav li:last-child a ,
.background-header .main-nav .nav li:last-child a {
  color: #fff !important;
  padding: 0px 20px;
  font-weight: 400;
}

.header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: #fff !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  -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;
}

.header-area .main-nav .nav li a {
  color: #2a2a2a;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fe3f40!important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fe3f40!important;
  opacity: 1;
}

.header-area .main-nav .nav li:last-child a:hover ,
.background-header .main-nav .nav li:last-child a:hover {
  background-color: #03a4ed;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -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.submenu ul li a:hover {
  background: #fff;
  color: #fe3f40!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.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;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #fe3f40;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-area .main-nav:before {
    display: none;
  }
  
}

@media (max-width: 992px) {
  .header-area .main-nav .nav li:last-child  ,
  .background-header .main-nav .nav li:last-child {
    /*display: none;*/ /*exposes instant quote button */
  }
  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
	width: auto;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #fe3f40!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;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    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: #fe3f40!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .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.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    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;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #fe3f40;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #fe3f40;
    border-radius: 50%;
}



/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 106px 0px 10px 0px;
  position: relative;
  overflow: hidden;
}

.main-banner:after {
  content: '';
  background-image: url(../images/baner-dec-left.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 100px;
  width: 193px;
  height: 467px;
}

.main-banner:before {
  content: '';
  background-image: url(../images/baner-dec-right.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 100px;
  width: 98px;
  height: 290px;
}

.main-banner .left-content {
  margin-right: 45px;
}

.main-banner .left-content h1 {
  font-size: 50px;
}

.main-banner .left-content h1 span{
color: #fe3f40;
}

.main-banner .left-content h1 em {
  font-style: normal;
  color: #03a4ed;
  
}



.main-banner .left-content h2 {
  font-size: 35px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top:1rem;
  margin-bottom:1rem;
}

.main-banner .left-content h2 em {
  color: #03a4ed;
  font-style: normal;
}

.main-banner .left-content h2 span {
  color: #fe3f40;
}

.main-banner .left-content h2 {
    font-size: 25px;
}

.main-banner .left-content p {
  margin: 20px 0px;
}

.main-banner .left-content form {
  margin-top: 30px;
  width: 470px;
  height: 66px;
  position: relative;
}

.main-banner .left-content form button {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #fe3f40;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  outline: none;
  border: none;
}

.main-banner .left-content form input {
  width: 470px;
  height: 66px;
  background-color: #03a4ed;
  border-radius: 33px;
  border: none;
  outline: none;
  padding: 0px 25px;
  color: #fff;
  letter-spacing: 0.25px;
  font-size: 15px;
  font-weight: 300;
}

.main-banner .left-content form input::placeholder {
  color: #fff;
}

/* 
---------------------------------------------
How it works section
--------------------------------------------- 
*/

.carousel-caption h3 {
    font-size: 60px;
}

.carousel-caption p {
    font-size: 40px;
}


div#howitworks em {
    color: #03a4ed;
	font-style: normal;
}

div#howitworks span {
    color: #fe3f40;
}


/* 
---------------------------------------------
About Us Style
--------------------------------------------- 
*/

#about {
  margin-top: 60px;
}

.about-us ul {
  list-style-type: disc; /* Use 'disc' for filled circles, or you can use 'circle' or 'square' */
  margin-left: 20px; /* Adjust the margin for proper spacing */
}

.about-us ul li {
	list-style-type: disc;
  padding-left: 5px; /* Adjust the padding for spacing between the bullet point and text */
  text-align:left;
}


.about-us {
  /*background-image: url(../images/about-bg.png);*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 140px 0px 220px 0px;
}

.about-us h1{
  text-align: center;
  -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
	font-size: 50px;
}

.about-us img{
  width: 50%;
  height:50%;
  float:left;
  border-radius: 50%;
}

.about-us h4{
  text-align: left;
  font-size: 24px;
  padding:5px;
color:white;
}

.about-us p{
  text-align: left;
  padding:2.5px;
color:white;
}

.about-us p.morespace{
  margin-bottom: 90px;
}
.about-us p.morespace2{
  margin-bottom: 0px;
}

.about-us em{
 color:#fe3f40;
 font-style: normal;
 font-size: 35px;
     -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}

.about-us .col-lg-6{
	   position: relative;
    z-index: 1;
   background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%);
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
    transition: all 0.5s;
	margin-bottom:20px;
}

.about-us span{
  color:#03a4ed;
   font-size: 35px;
      -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}

.about-us .left-image {
  margin-right: 45px;
}

.about-us .services .item {
  margin-bottom: 30px;
}

.about-us .services .item .icon {
  float: left;
  margin-right: 25px;
}

.about-us .services .item .icon img {
  max-width: 70px;
}

.about-us .services .item h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-us .services .item p {
  color: #fff;
}


/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/


  /* Custom Styling to match adepttechnologies.net */
  .adept-links-section {
    background-color: #0b1120; /* Deep Navy to match your brand */
    color: #ffffff;
  }

  .adept-card {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .adept-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-8px);
    border-color: #0d6efd !important;
  }

  .icon-shape {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    position: relative;
  }

  /* Soft Background Colors for Icons */
  .bg-soft-primary { background: rgba(13, 110, 253, 0.15); }
  .bg-soft-success { background: rgba(25, 135, 84, 0.15); }
  .bg-soft-warning { background: rgba(255, 193, 7, 0.15); }
  .bg-soft-info { background: rgba(13, 202, 240, 0.15); }

  /* Pulsing status dot for the System Status card */
  .status-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 8px;
    width: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 255, 0, 0.4);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
  }

  .tracking-wider { letter-spacing: 0.1rem; }


.our-services {
  margin-top: 0px;
  padding-top: 100px;
     background-image: url(..//images/bluebg.png);
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain;
}

span.tomuchtext {
    font-size: .5em !important;
}

h2.padding-top {
    padding-top: 40px;
}

.our-services .left-image {
  margin-right: 45px;
  top: 0px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
  transition: all 0.5s;
}

.our-services img {
  width: 50%;
  overflow: hidden;
}


.our-services .section-heading h2 {
  margin-right: 100px;
  text-align: center;
  margin-bottom:1rem;
}


.our-services .left-image h2 em {
  color: #03a4ed;
  font-style: normal;
  text-align: center;
  font-size: 20px;
}

.our-services .left-image h3 span {
  color: #fe3f40;
  text-align: center;
  font-size: 20px;
}

.our-services .section-heading p {
  margin-bottom: 60px;
  text-align: center;
}

.our-services .progress-skill-bar {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.our-services .progress-skill-bar span {
  position: absolute;
  top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #03a4ed;
}

.our-services .first-bar span {
  left: 69%;
}

.our-services .second-bar span {
  left: 81%;
}

.our-services .third-bar span {
  left: 88%;
}

.our-services .progress-skill-bar h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.our-services .progress-skill-bar .full-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #f7eff1;
  position: relative;
  z-index: 1;
}

.our-services .progress-skill-bar .filled-bar {
  background: rgb(255,77,30);
  background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%);
  height: 6px;
  border-radius: 3px;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
}

.our-services .first-bar .filled-bar {
  width: 71%;
}

.our-services .second-bar .filled-bar {
  width: 83%;
}

.our-services .third-bar .filled-bar {
  width: 90%;
}

.our-services .item {
  position: relative;
}


.our-services .left-imageAT {
  top: 0px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
  transition: all 0.5s;
}


.our-services .left-imageAT h2 em {
  color: #03a4ed;
  font-style: normal;
  text-align: center;
  font-size: 20px;
}

.our-services .left-imageAT h3 em {
  color: #03a4ed;
  font-style: normal;
  text-align: center;
  font-size: 20px;
}

.our-services .left-imageAT h3 span {
  color: #fe3f40;
  text-align: center;
  font-size: 20px;
}


.our-services .left-image h3 em {
  color: #03a4ed;
  font-style: normal;
  text-align: center;
  font-size: 20px;
}

.our-services .left-imageAT img {
  width:100%;
  height:100%;
   max-height: 289px;
}

.our-services .left-imageAT button {
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-transform: capitalize;
  padding: 12px 12px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  outline: none;
  border: none;
  
  
}



/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

/* ================================
   Brighton Computer Repair Section
   CSS-only visual upgrade
   Scope: #portfolio
================================ */

#portfolio {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(3, 164, 237, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(254, 63, 64, 0.12), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #f7f9fc 100%);
}

#portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(3, 164, 237, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 164, 237, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

#portfolio > * {
  position: relative;
  z-index: 1;
}

/* Section headings */

#portfolio .section-heading {
  margin-bottom: 42px;
  text-align: center;
}

#portfolio .section-heading h2 {
  position: relative;
  display: inline-block;
  max-width: 950px;
  margin: 0 auto;
  color: #172033;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

#portfolio .section-heading h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #03a4ed, #fe3f40);
  box-shadow: 0 8px 20px rgba(3, 164, 237, 0.22);
}

#portfolio .section-heading h2 em {
  color: #03a4ed;
  font-style: normal;
}

#portfolio .section-heading h2 span {
  color: #fe3f40;
}

/* Service card columns */

#portfolio .col-lg-4.col-sm-6.shadow {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 26px !important;
}

/* Cards */

#portfolio .card {
  height: 100%;
  border: 1px solid rgba(19, 33, 68, 0.08);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(3, 164, 237, 0.4), rgba(254, 63, 64, 0.35)) border-box;
  box-shadow: 0 18px 50px rgba(22, 34, 57, 0.11);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

#portfolio .card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 70px rgba(22, 34, 57, 0.18);
  border-color: rgba(3, 164, 237, 0.25);
}

/* Top icon area */

#portfolio .card .d-flex.justify-content-center {
  position: relative;
  padding: 34px 18px 16px;
}

#portfolio .card .d-flex.justify-content-center::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 116px;
  height: 116px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(3, 164, 237, 0.14), rgba(254, 63, 64, 0.12));
  transform: rotate(8deg);
}

#portfolio .card .d-flex.justify-content-center i {
  position: relative;
  z-index: 1;
  color: #172033;
  font-size: 4.6rem !important;
  line-height: 1;
  filter: drop-shadow(0 12px 18px rgba(3, 164, 237, 0.18));
  transition:
    transform 260ms ease,
    color 260ms ease;
}

#portfolio .card:hover .d-flex.justify-content-center i {
  color: #03a4ed;
  transform: scale(1.06) rotate(-3deg);
}

/* Card text */

#portfolio .card-body {
  padding: 24px 26px;
}

#portfolio .card-title {
  margin-bottom: 14px;
  color: #172033;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

#portfolio .card-title em {
  font-weight: 800;
}

#portfolio .card-text {
  color: #596273;
  font-size: 1rem;
  line-height: 1.72;
}

/* Lists */

#portfolio .list-group {
  padding: 0 22px 8px;
}

#portfolio .list-group-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 4px;
  color: #2d3748;
  font-size: 0.98rem;
  font-weight: 600;
  border-color: rgba(19, 33, 68, 0.08);
  background: transparent;
}

#portfolio .list-group.list-group-flush.mb-3 .list-group-item {
  flex-direction: column;
}

#portfolio .list-group-item i {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #03a4ed !important;
  background: rgba(3, 164, 237, 0.11);
  font-size: 0.95rem;
}

/* Buttons and card links */

#portfolio .btn-primary,
#portfolio .btn-danger,
#portfolio .btn-success {
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(3, 164, 237, 0.22);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

#portfolio .btn-primary {
  background: linear-gradient(135deg, #03a4ed, #087ec4);
}

#portfolio .btn-danger {
  background: linear-gradient(135deg, #fe3f40, #d82734);
}

#portfolio .btn-success {
  background: linear-gradient(135deg, #13b981, #0d8f6b);
}

#portfolio .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

#portfolio .card-link {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  color: #172033;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

#portfolio .card-link::after {
  content: "→";
  margin-left: 7px;
  color: #fe3f40;
  transition: transform 220ms ease;
}

#portfolio .card-link:hover {
  color: #03a4ed;
  transform: translateX(2px);
}

#portfolio .card-link:hover::after {
  transform: translateX(4px);
}

/* Why Brighton section */

#portfolio .wow.fadeInLeft {
  margin-top: 70px;
}

#portfolio .container.py-5 {
  padding-top: 20px !important;
}

#portfolio .container.py-5 .row {
  margin-bottom: 42px;
}

#portfolio .col-lg-2 i.fa {
  color: #172033;
  opacity: 0.9;
  font-size: clamp(6rem, 13vw, 11rem) !important;
  filter: drop-shadow(0 18px 28px rgba(3, 164, 237, 0.18));
}

#portfolio .col-lg-10 .card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

#portfolio .col-lg-10 .card-body {
  padding: clamp(26px, 4vw, 46px) !important;
  text-align: left !important;
}

#portfolio .col-lg-10 h3 {
  color: #172033;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

#portfolio .col-lg-10 p.lead {
  color: #4e596b;
  font-size: 1.08rem;
  line-height: 1.85;
}

#portfolio .col-lg-10 a {
  color: #03a4ed;
  font-weight: 800;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition:
    color 220ms ease,
    background-size 220ms ease;
}

#portfolio .col-lg-10 a:hover {
  color: #fe3f40;
  background-size: 100% 2px;
}

/* FAQ container */

#portfolio .container.shadow {
  margin-top: 50px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(19, 33, 68, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(22, 34, 57, 0.13) !important;
  backdrop-filter: blur(12px);
}

#portfolio .bi-question-circle-fill {
  color: #03a4ed;
  font-size: clamp(5rem, 11vw, 8.5rem) !important;
  filter: drop-shadow(0 16px 26px rgba(3, 164, 237, 0.2));
}

/* Accordion */

#portfolio .accordion {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(22, 34, 57, 0.08);
}

#portfolio .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(19, 33, 68, 0.08);
}

#portfolio .accordion-item:last-child {
  border-bottom: 0;
}

#portfolio .accordion-button {
  padding: 20px 24px;
  color: #172033;
  background: #ffffff;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: none;
}

#portfolio .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, #03a4ed, #087ec4);
  box-shadow: none;
}

#portfolio .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.25rem rgba(3, 164, 237, 0.18);
}

#portfolio .accordion-button::after {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(3, 164, 237, 0.1);
  background-position: center;
  background-size: 16px;
}

#portfolio .accordion-button:not(.collapsed)::after {
  background-color: rgba(255, 255, 255, 0.22);
  filter: brightness(0) invert(1);
}

#portfolio .accordion-body {
  padding: 24px;
  color: #4e596b;
  font-size: 1rem;
  line-height: 1.78;
  background: #ffffff;
}

#portfolio .accordion-body a {
  color: #03a4ed;
  font-weight: 800;
  text-decoration: none;
}

#portfolio .accordion-body a:hover {
  color: #fe3f40;
}

/* Modals */

#portfolio .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(10, 20, 40, 0.3) !important;
}

#portfolio .modal-header {
  padding: 24px 28px;
  border-bottom: 0;
}

#portfolio .modal-header.bg-primary {
  background: linear-gradient(135deg, #03a4ed, #087ec4) !important;
}

#portfolio .modal-header.bg-danger {
  background: linear-gradient(135deg, #fe3f40, #d82734) !important;
}

#portfolio .modal-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

#portfolio .modal-body {
  padding: 30px;
  color: #4e596b;
}

#portfolio .modal-body .lead {
  color: #2d3748;
  line-height: 1.75;
}

#portfolio .modal-body .list-group {
  padding: 0;
}

#portfolio .modal-body .list-group-item {
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  line-height: 1.55;
}

#portfolio .modal-body .alert {
  border: 0;
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 700;
}

#portfolio .modal-footer {
  padding: 22px 30px 28px;
  border-top: 1px solid rgba(19, 33, 68, 0.08);
}

/* Responsive polish */

@media (max-width: 991.98px) {
  #portfolio {
    padding: 70px 0;
  }

  #portfolio .card {
    margin-bottom: 22px;
  }

  #portfolio .col-lg-2 {
    margin-bottom: 20px;
  }

  #portfolio .col-lg-10 .card-body {
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  #portfolio {
    padding: 55px 0;
  }

  #portfolio .card-body {
    padding: 22px 20px;
  }

  #portfolio .card-link {
    margin-top: 14px;
    margin-left: 0;
  }

  #portfolio .card-body .btn {
    width: 100%;
  }

  #portfolio .container.shadow {
    padding: 24px 16px;
    border-radius: 24px;
  }

  #portfolio .accordion-button {
    padding: 18px;
    font-size: 0.98rem;
  }

  #portfolio .accordion-body {
    padding: 20px 18px;
  }

  #portfolio .modal-body,
  #portfolio .modal-footer {
    padding: 24px 20px;
  }
}

/* Reduced motion accessibility */

@media (prefers-reduced-motion: reduce) {
  #portfolio *,
  #portfolio *::before,
  #portfolio *::after {
    transition: none !important;
    animation: none !important;
  }
}


.service-card-details {
  border-top: 1px solid rgba(3, 164, 237, 0.18);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  margin-top: 0.25rem;
}

.service-card-details .card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.service-card-details-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222;
}

.service-card-details .lead {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.service-card-details .list-group {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem !important;
}

.service-card-details .list-group-item {
  font-size: 0.92rem;
  padding: 0.7rem 0.75rem;
}

.service-card-details .alert {
  font-size: 0.9rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.service-card-details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.service-card-details-actions .btn {
  white-space: normal;
}

.service-card-toggle {
  min-width: 104px;
}

#portfolio .card {
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#portfolio .card.service-card-expanded {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none !important;
  }
}


/* =========================================================
   Service Cards Desktop Layout Fix - safer Bootstrap override
========================================================= */

#portfolio .service-card-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 330px));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
}

/* Hide modal elements that live inside the same row */
#portfolio .service-card-grid > .modal {
  display: none !important;
}

/* IMPORTANT:
   Override ALL Bootstrap columns inside the service grid,
   not only the ones JS adds .service-card-item to.
*/
#portfolio .service-card-grid > [class*="col-"] {
  width: 100% !important;
  max-width: 330px !important;
  min-width: 280px;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 26px !important;
  justify-self: center;
}

/* Keep cards equal and stable */
#portfolio .service-card-grid .card {
  width: 100%;
  min-width: 0;
  height: 100%;
}

/* Expanded card becomes full-width feature panel */
#portfolio .service-card-grid > .service-card-item-expanded {
  grid-column: 1 / -1;
  max-width: 1040px !important;
  width: 100% !important;
  justify-self: center;
}

/* Desktop expanded layout */
@media (min-width: 992px) {
  #portfolio .service-card-item-expanded .card > .wow {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    align-items: stretch;
  }

  #portfolio .service-card-item-expanded .card > .wow > .d-flex.justify-content-center,
  #portfolio .service-card-item-expanded .card > .wow > .card-body,
  #portfolio .service-card-item-expanded .card > .wow > .list-group {
    grid-column: 1;
  }

  #portfolio .service-card-item-expanded .service-card-details {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
    border-top: 0;
    border-left: 1px solid rgba(3, 164, 237, 0.18);
    background:
      radial-gradient(circle at top right, rgba(3, 164, 237, 0.12), transparent 34%),
      linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  #portfolio .service-card-item-expanded .service-card-details .card-body {
    padding: 32px;
  }

  #portfolio .service-card-item-expanded .service-card-details .list-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #portfolio .service-card-item-expanded .service-card-details .list-group-item {
    border: 1px solid rgba(19, 33, 68, 0.08) !important;
    border-radius: 14px;
    background: #fff;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991.98px) {
  #portfolio .service-card-grid {
    grid-template-columns: repeat(2, minmax(280px, 330px));
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  #portfolio .service-card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #portfolio .service-card-grid > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
  }

  #portfolio .service-card-item-expanded {
    grid-column: auto;
  }
}


/* span and em custom code 2/18/23





/* 
---------------------------------------------
Blog
--------------------------------------------- 
*/

/* ================================
   Brighton Reviews / Blog Section
   CSS-only visual upgrade
   Scope: #blog
================================ */

#blog {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(3, 164, 237, 0.13), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(254, 63, 64, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #f6f8fc 100%);
}

#blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(3, 164, 237, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 164, 237, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

#blog::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(3, 164, 237, 0.14), rgba(254, 63, 64, 0.1));
  filter: blur(4px);
  pointer-events: none;
}

#blog > * {
  position: relative;
  z-index: 1;
}

/* Section heading */

#blog .section-heading {
  margin-bottom: 34px;
}

#blog .section-heading h2 {
  position: relative;
  max-width: 760px;
  margin: 0;
  color: #172033;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

#blog .section-heading h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #03a4ed, #fe3f40);
  box-shadow: 0 8px 24px rgba(3, 164, 237, 0.25);
}

#blog .section-heading h2 em {
  color: #03a4ed;
  font-style: normal;
}

#blog .section-heading h2 span {
  color: #fe3f40;
}

/* Decorative image */

#blog .top-dec {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

#blog .top-dec img {
  max-width: min(100%, 310px);
  opacity: 0.92;
  transform: rotate(2deg);
  filter: drop-shadow(0 20px 35px rgba(22, 34, 57, 0.12));
}

/* Review widget shell */

#blog .review-carousel-widget {
  margin-top: 34px;
}

#blog .review-carousel-widget__state {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#blog .review-carousel-widget__carousel {
  --review-gap: 24px;

  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(19, 33, 68, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(3, 164, 237, 0.08), rgba(254, 63, 64, 0.08));
  box-shadow: 0 26px 80px rgba(22, 34, 57, 0.14);
  backdrop-filter: blur(14px);
}

#blog .review-carousel-widget__carousel::before {
  content: "“";
  position: absolute;
  top: -44px;
  left: 26px;
  color: rgba(3, 164, 237, 0.1);
  font-family: Georgia, serif;
  font-size: 15rem;
  line-height: 1;
  pointer-events: none;
}

/* Header */

#blog .review-carousel-widget__header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

#blog .review-carousel-widget__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

#blog .review-carousel-widget__title {
  flex: 0 0 100%;
  margin: 0 0 4px;
  color: #172033;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1.13;
  letter-spacing: -0.04em;
}

#blog .review-carousel-widget__stars,
#blog .review-carousel-widget__rating {
  color: #ffb703;
  letter-spacing: 0.06em;
  text-shadow: 0 8px 20px rgba(255, 183, 3, 0.18);
}

#blog .review-carousel-widget__stars {
  font-size: 1.2rem;
}

#blog .review-carousel-widget__score {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #03a4ed, #087ec4);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(3, 164, 237, 0.2);
}

#blog .review-carousel-widget__count {
  color: #596273;
  font-size: 0.98rem;
  font-weight: 750;
}

/* Controls */

#blog .review-carousel-widget__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#blog .review-carousel-widget__control-pair {
  display: none;
  gap: 10px;
}

#review-carousel-widget-slide-1:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__control-pair--1,
#review-carousel-widget-slide-2:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__control-pair--2,
#review-carousel-widget-slide-3:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__control-pair--3,
#review-carousel-widget-slide-4:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__control-pair--4 {
  display: flex;
}

#blog .review-carousel-widget__arrow {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(19, 33, 68, 0.08);
  border-radius: 50%;
  color: #172033;
  background: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(22, 34, 57, 0.11);
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

#blog .review-carousel-widget__arrow:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #03a4ed, #fe3f40);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(3, 164, 237, 0.24);
}

/* Carousel */

#blog .review-carousel-widget__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-inline: calc(var(--review-gap) / -2);
  padding: 8px 0 16px;
}

#blog .review-carousel-widget__track {
  display: flex;
  width: 400%;
  transform: translateX(0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

#review-carousel-widget-slide-1:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__track {
  transform: translateX(0);
}

#review-carousel-widget-slide-2:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__track {
  transform: translateX(-25%);
}

#review-carousel-widget-slide-3:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__track {
  transform: translateX(-50%);
}

#review-carousel-widget-slide-4:checked
  ~ .review-carousel-widget__carousel
  .review-carousel-widget__track {
  transform: translateX(-75%);
}

/* Review cards */

#blog .review-carousel-widget__card {
  position: relative;
  display: flex;
  flex: 0 0 calc(12.5% - var(--review-gap));
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  margin-inline: calc(var(--review-gap) / 2);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(19, 33, 68, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(3, 164, 237, 0.35), rgba(254, 63, 64, 0.3)) border-box;
  box-shadow: 0 18px 48px rgba(22, 34, 57, 0.1);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

#blog .review-carousel-widget__card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(3, 164, 237, 0.13), rgba(254, 63, 64, 0.12));
  transform: rotate(8deg);
}

#blog .review-carousel-widget__card::after {
  content: "”";
  position: absolute;
  top: 8px;
  right: 31px;
  color: rgba(3, 164, 237, 0.4);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
}

#blog .review-carousel-widget__card:hover {
  transform: translateY(-8px);
  border-color: rgba(3, 164, 237, 0.24);
  box-shadow: 0 28px 68px rgba(22, 34, 57, 0.16);
}

#blog .review-carousel-widget__rating {
  margin-bottom: 14px;
  font-size: 1.02rem;
}

#blog .review-carousel-widget__card-title {
  max-width: calc(100% - 42px);
  margin: 0 0 14px;
  color: #172033;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

#blog .review-carousel-widget__body {
  margin: 0;
  color: #4f5b6d;
  font-size: 1rem;
  line-height: 1.72;
}

#blog .review-carousel-widget__footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 33, 68, 0.08);
  color: #7a8494;
  font-size: 0.95rem;
  font-weight: 650;
}

#blog .review-carousel-widget__author {
  color: #172033;
  font-weight: 850;
}

/* See all reviews link */

#blog .review-carousel-widget__help {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  text-align: center;
}

#blog .review-carousel-widget__help a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #03a4ed, #fe3f40);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(3, 164, 237, 0.22);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

#blog .review-carousel-widget__help a::after {
  content: "→";
  font-size: 1.05rem;
  transition: transform 220ms ease;
}

#blog .review-carousel-widget__help a:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 22px 42px rgba(254, 63, 64, 0.24);
}

#blog .review-carousel-widget__help a:hover::after {
  transform: translateX(4px);
}

/* Responsive polish */

@media (max-width: 991.98px) {
  #blog {
    padding: 72px 0;
  }

  #blog .section-heading {
    text-align: center;
  }

  #blog .section-heading h2 {
    margin-inline: auto;
  }

  #blog .section-heading h2::after {
    margin-inline: auto;
  }

  #blog .top-dec {
    justify-content: center;
    margin-bottom: 10px;
  }

  #blog .top-dec img {
    max-width: 220px;
  }

  #blog .review-carousel-widget__header {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  #blog .review-carousel-widget__carousel {
    --review-gap: 16px;
    padding: 24px 18px;
    border-radius: 26px;
  }

  #blog .review-carousel-widget__header {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  #blog .review-carousel-widget__controls {
    display: none;
  }

  #blog .review-carousel-widget__viewport {
    overflow-x: auto;
    margin-inline: -18px;
    padding: 8px 18px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #blog .review-carousel-widget__viewport::-webkit-scrollbar {
    height: 8px;
  }

  #blog .review-carousel-widget__viewport::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(19, 33, 68, 0.08);
  }

  #blog .review-carousel-widget__viewport::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, #03a4ed, #fe3f40);
  }

  #blog .review-carousel-widget__track {
    width: auto;
    gap: 16px;
    transform: none !important;
  }

  #blog .review-carousel-widget__card {
    flex: 0 0 86%;
    min-height: 340px;
    margin-inline: 0;
    scroll-snap-align: center;
  }
}

@media (max-width: 575.98px) {
  #blog {
    padding: 56px 0;
  }

  #blog .top-dec img {
    max-width: 170px;
  }

  #blog .review-carousel-widget {
    margin-top: 22px;
  }

  #blog .review-carousel-widget__title {
    font-size: 1.45rem;
  }

  #blog .review-carousel-widget__summary {
    justify-content: center;
    text-align: center;
  }

  #blog .review-carousel-widget__card {
    flex-basis: 92%;
    padding: 24px 20px;
  }

  #blog .review-carousel-widget__card-title {
    font-size: 1.22rem;
  }

  #blog .review-carousel-widget__body {
    font-size: 0.98rem;
  }

  #blog .review-carousel-widget__help a {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion accessibility */

@media (prefers-reduced-motion: reduce) {
  #blog *,
  #blog *::before,
  #blog *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ================================
   Extra compact mobile padding
   Add this at the very bottom
================================ */

@media (max-width: 767.98px) {
  #blog {
    padding: 32px 0 !important;
  }

  #blog .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #blog .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }

  #blog [class*="col-"] {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  #blog .section-heading {
    margin-bottom: 12px !important;
  }

  #blog .section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem) !important;
  }

  #blog .section-heading h2::after {
    width: 70px !important;
    height: 4px !important;
    margin-top: 14px !important;
  }

  #blog .top-dec {
    display: none !important;
  }

  #blog .review-carousel-widget {
    margin-top: 8px !important;
  }

  #blog .review-carousel-widget__carousel {
    --review-gap: 12px;
    padding: 14px 10px !important;
    border-radius: 20px !important;
  }

  #blog .review-carousel-widget__carousel::before {
    display: none !important;
  }

  #blog .review-carousel-widget__header {
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  #blog .review-carousel-widget__summary {
    gap: 5px 8px !important;
  }

  #blog .review-carousel-widget__title {
    margin-bottom: 0 !important;
    font-size: 1.3rem !important;
  }

  #blog .review-carousel-widget__stars {
    font-size: 0.9rem !important;
  }

  #blog .review-carousel-widget__score {
    min-height: auto !important;
    padding: 4px 9px !important;
    font-size: 0.78rem !important;
  }

  #blog .review-carousel-widget__count {
    font-size: 0.82rem !important;
  }

  #blog .review-carousel-widget__viewport {
    margin-inline: -10px !important;
    padding: 4px 10px 10px !important;
  }

  #blog .review-carousel-widget__track {
    gap: 10px !important;
  }

  #blog .review-carousel-widget__card {
    flex-basis: 88% !important;
    min-height: 285px !important;
    padding: 16px 14px !important;
    border-radius: 18px !important;
  }

  #blog .review-carousel-widget__card::before,
  #blog .review-carousel-widget__card::after {
    display: none !important;
  }

  #blog .review-carousel-widget__rating {
    margin-bottom: 8px !important;
    font-size: 0.85rem !important;
  }

  #blog .review-carousel-widget__card-title {
    max-width: 100% !important;
    margin-bottom: 8px !important;
    font-size: 1.05rem !important;
  }

  #blog .review-carousel-widget__body {
    font-size: 0.9rem !important;
    line-height: 1.52 !important;
  }

  #blog .review-carousel-widget__footer {
    margin-top: 12px !important;
    padding-top: 10px !important;
    font-size: 0.82rem !important;
  }

  #blog .review-carousel-widget__help {
    margin-top: 10px !important;
  }

  #blog .review-carousel-widget__help a {
    padding: 10px 16px !important;
    font-size: 0.88rem !important;
  }
}

@media (max-width: 420px) {
  #blog {
    padding: 24px 0 !important;
  }

  #blog .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  #blog .review-carousel-widget__carousel {
    padding: 12px 8px !important;
    border-radius: 18px !important;
  }

  #blog .review-carousel-widget__viewport {
    margin-inline: -8px !important;
    padding: 3px 8px 9px !important;
  }

  #blog .review-carousel-widget__card {
    flex-basis: 90% !important;
    min-height: 275px !important;
    padding: 14px 12px !important;
  }

  #blog .review-carousel-widget__body {
    font-size: 0.88rem !important;
  }
}




/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
 padding: 160px 0px;
    padding-top: 160px;
  /*background-image: url(../images/contact-bg.png);*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


.contact-us .section-heading h2,
.contact-us .section-heading h2 em,
.contact-us .section-heading h2 span {
  color: #fff;
}

.contact-us .section-heading p {
  color: #fff;
  margin-top: 30px;
  font-size: 25px;
}

.phone-info {
  margin-top: 40px;
}

.contact-row {
  margin-top: 40px;
}

/* custom */

.phone-info i {
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.phone-info em {
  font-style: normal;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

/* custom */

.phone-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}


.phone-info h4 span i {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background-color: #fff;
  border-radius: 50%;
  color: #ff3b2c;
  font-size: 22px;
  /*margin-left: 30px;*/
  margin-right: 15px;
  margin-top: 5px;
}

.phone-info h4 span a {
  color: #fff;
  font-size: 25px;
  font-weight: 400;
}

form#contact .contact-dec {
  position: absolute;
  right: -166px;
  bottom: 0;
}

form#contact .contact-dec img {
  max-width: 178px;
}

form#contact {
  margin-left: 30px;
  position: relative;
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 33px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 20px;
  margin-bottom: 20px;
}

form#contact input::placeholder {
  color: #2a2a2a;
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 180px;
  min-height: 140px;
  height: 140px;
  border-radius: 20px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 20px;
}

form#contact textarea::placeholder {
  color: #2a2a2a;
}

form#contact button {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  outline: none;
  transition: all .3s;
}

form#contact button:hover {
  background-color: #fe3f40;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer p {
  text-align: center;
  margin: 20px 0px 20px 0px;
}

footer p a {
  color: #fe3f40;
}

footer .btn {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  outline: none;
  transition: all .3s;
}

/* Darker background on mouse-over */
footer .btn:hover {
  background-color: #fe3f40;
  color: white;
}

.social-icons-menu {
  gap: 10px;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.social-icon img{
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
  transform: scale(1.2);
}

.website-links {
	text-align: center;
}


/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1645px) {
  form#contact .contact-dec {
    display: none;
  }
}

@media (max-width: 1401px) {
	
	 .phone-info em {
  font-style: normal;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.header-area .main-nav .logo h4 {
    font-size: 13px;
}
	.our-portfolio .section-heading h2 {
  font-size: 24px;
  
}

	
}

@media (max-width: 1280px) {
	
	.header-area .main-nav .logo h4 {
    font-size: 15px;
}
  
  .phone-info em {
  font-style: normal;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}


  /* custom */
 

  
}

@media (max-width: 1279px) {
	
	.header-area .main-nav .logo h4 {
    font-size: 13px;
}

  
  .phone-info em {
  font-style: normal;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}
	
	
  /* custom */
 

  
}

@media (max-width: 1200px) {
	.main-red-button {
    display: none;
}
  .about-us .left-image {
    bottom: -280px;
  }
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  /* custom code for phones and tablets */

  .header-area .main-nav .logo h4 {
    font-size: 13px;
}
  
  .our-portfolio .section-heading h2 {
  font-size: 31px;
  
}
  

  
  /* custom code for phones and tablets */
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 1199px) {
	.main-red-button {
    display: none;
}
  .about-us .left-image {
    bottom: -280px;
  }
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  /* custom code for phones and tablets */

  .header-area .main-nav .logo h4 {
    font-size: 0px;
}
  .background-header .main-nav .logo h4 {
  font-size: 0px;
}
  
  .our-portfolio .section-heading h2 {
  font-size: 31px;
  
}
  

  
  /* custom code for phones and tablets */
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 1024px) {
	

	.modal-content.WebS {
    width: 100%;
}
	.main-banner .left-content h1 {
    font-size: 35px;
}
.main-banner .left-content h2 {
    font-size: 22px;
}
.main-banner .left-content h2 {
    font-size: 22px;
}
	
	.main-red-button {
    display: none;
}
  .about-us .left-image {
    bottom: -280px;
  }
  .about-us p.morespace{
  margin-bottom: 0px;
}
.about-us p.morespace2{
  margin-bottom: 0px;
}
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  /* custom code for phones and tablets */

  .header-area .main-nav .logo h4 {
    font-size: 0px;
}
.header-area .main-nav .logo {
    line-height: 100px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    width: auto;
    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 h4 {
  font-size: 0px;
}
  
  .our-portfolio .section-heading h2 {
  font-size: 46px;
  
}
 
  
  .our-services .left-image h2 em {
  color: #03a4ed;
  font-style: normal;
  text-align: center;
  font-size: 15px;
}

.our-services .left-image h2 span {
  color: #fe3f40;
  text-align: center;
  font-size: 15px;
}

.our-services img {
  width: 75%;
  overflow: hidden;
}
  
  /* custom code for phones and tablets */
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 992px) {
	.main-red-button {
    display: none;
}
  .main-banner {
    padding-top: 105px;
  }
  .main-banner .left-content {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .main-banner:after {
    top: 76px;
    z-index: -1;
  }
  .main-banner .left-content form,
  .main-banner .left-content form input {
    width: 100%!important;
  }
  .header-area .main-nav .logo h4 {
    font-size: 16px;
  }
  #about {
    margin-top: 0px;
  }
  .about-us {
    position: relative;
    background-image: none;
    padding: 0px;
  }
  .about-us .left-image {
    margin-right: 0px;
    position: absolute;
    bottom: -220px;
    right: 0;
  }
  .about-us .services {
    text-align: center;
  }
  .about-us .services .item  {
    background: rgb(255,77,30);
    background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
  }
  .about-us .services .item .right-text {
    text-align: left;
  }
  .our-services {
    margin-top: 25px;
  }
  .our-services .left-image {
    margin-right: 0px;
    margin-bottom: 45px;
  }
  .our-services .section-heading h2,
  .our-services .section-heading p {
    margin-right: 0px;
    text-align: center;
  }

  /* custom */

  .our-portfolio .item {
    margin-bottom: 15px;
  }
  .our-blog {
    margin-top: 0px;
  }
  .our-blog .top-dec {
    display: none;
  }
  .our-blog .section-heading h2 {
    margin-right: 0px;
    text-align: center;
  }
  .our-blog .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
  }
  .our-blog .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .our-blog .left-image {
    margin-bottom: 45px;
  }
  .overlay-text {
  position: absolute;
  top: 45%; 
  left: 50%; 
  transform: translate(-50%, -50%);  
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;
  z-index: 2;
  width: 520px;
}

.overlay-text p{
 color:black;
 font-size: 35px;
}
  .contact-us {
    margin-top: 60px;
    padding: 120px 0px;
  }
  .contact-us .section-heading {
    text-align: center;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }
  form#contact .contact-dec {
    display: none;
  }
  footer p {
    margin: 15px 0px 30px 0px;
  }
}

@media (max-width: 991px) {
	.main-red-button {
    display: none;
}
  .main-banner {
    padding-top: 105px;
  }
  .main-banner .left-content {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .main-banner:after {
    top: 76px;
    z-index: -1;
  }
  .main-banner .left-content form,
  .main-banner .left-content form input {
    width: 100%!important;
  }
  .header-area .main-nav .logo h4 {
    font-size: 0px;
  }
  #about {
        background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 140px 0px 220px 0px;
  }
  .about-us {
    position: relative;
    background-image: none;
    padding: 0px;
  }
  .about-us .left-image {
    margin-right: 0px;
    position: absolute;
    bottom: -220px;
    right: 0;
  }
  .about-us .services {
    text-align: center;
  }
  .about-us .services .item  {
    background: rgb(255,77,30);
    background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
  }
  .about-us .services .item .right-text {
    text-align: left;
  }
  .our-services {
    margin-top: 25px;
  }
  .our-services .left-image {
    margin-right: 0px;
    margin-bottom: 45px;
	    padding: 10px;
  }

  .our-services .section-heading h2,
  .our-services .section-heading p {
    margin-right: 0px;
    text-align: center;
  }
  /* custom */
  

  .our-portfolio .item {
    margin-bottom: 15px;
  }
  .our-blog {
    margin-top: 0px;
  }
  .our-blog .top-dec {
    display: none;
  }
  .our-blog .section-heading h2 {
    margin-right: 0px;
    text-align: center;
  }
  .our-blog .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
  }
  .our-blog .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .our-blog .left-image {
    margin-bottom: 45px;
  }
  .contact-us {
    margin-top: 60px;
    padding: 120px 0px;
  }
  .contact-us .section-heading {
    text-align: center;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }
  form#contact .contact-dec {
    display: none;
  }
  footer p {
    margin: 15px 0px 30px 0px;
  }
}

@media (max-width: 912px) {
	.main-red-button {
    display: none;
}
  .about-us .left-image {
    bottom: -280px;
  }
  
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  /* custom code for phones and tablets */

  .header-area .main-nav .logo h4 {
    font-size: 0px;
}
  .our-portfolio .section-heading h2 {
  font-size: 40px;
  
}

  /* custom code for phones and tablets */
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 869px) {
	.main-red-button {
    display: none;
}
  .about-us .left-image {
    bottom: -280px;
  }
  
  #about {
        background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 140px 0px 220px 0px;
  }
  
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  /* custom code for phones and tablets */

  .header-area .main-nav .logo h4 {
    font-size: 0px;
}
  .our-portfolio .section-heading h2 {
  font-size: 40px;
  
}

  
  .our-services .left-image h2 em {
  color: #03a4ed;
  font-style: normal;
  text-align: center;
  font-size: 15px;
}

.our-services .left-image h2 span {
  color: #fe3f40;
  text-align: center;
  font-size: 15px;
}

.our-services img {
  width: 75%;
  overflow: hidden;
}
  /* custom code for phones and tablets */
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
	.main-red-button {
    display: none;
}
  .about-us .left-image {
    bottom: -280px;
  }
  
  .about-us p.morespace{
  margin-bottom: 0px;
}
.about-us p.morespace2{
  margin-bottom: 0px;
}
  
  #about {
        background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 140px 0px 220px 0px;
  }
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  /* custom code for phones and tablets */

  .header-area .main-nav .logo h4 {
    font-size: 0px;
}

.our-services .left-image h2 em {
  color: #03a4ed;
  font-style: normal;
  text-align: center;
  font-size: 25px;
}

.our-services .left-image h2 span {
  color: #fe3f40;
  text-align: center;
  font-size: 25px;
}

.our-services img {
  width: 40%;
  overflow: hidden;
}

  .our-portfolio .section-heading h2 {
  font-size: 42px;
  
}

  /* custom code for phones and tablets */
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
	.main-red-button {
    display: block;
}
.carousel-caption h3 {
    font-size: 30px;
}
.carousel-caption p {
    font-size: 15px;
}
	#extraimg {
  display: none;
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}
	
	.about-us p.morespace{
  margin-bottom: 0px;
}
.about-us p.morespace2{
  margin-bottom: 0px;
}

  .about-us .left-image {
    bottom: -280px;
  }
  
  #about {
        background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 140px 0px 220px 0px;
  }
  
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  /* custom code for phones and tablets */

  .header-area .main-nav .logo h4 {
    font-size: 24px;
}
  .our-portfolio .section-heading h2 {
  font-size: 34px;
  
}
.our-services {
    margin-top: 0px;
    background-image: url(..//images/bluebg.png);
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: auto;
}

  /* custom code for phones and tablets */
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}
}
/* custom code for phones and tablets */




@media (max-width: 601px) {
	.main-red-button {
    display: block;
}
	#extraimg {
  display: none;
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  #about {
        background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 140px 0px 220px 0px;
  }

	.header-area .main-nav .logo h4 {
    font-size: 25px;
}
	.our-portfolio .section-heading h2 {
  font-size: 53px;
}


.our-services .left-image h2 span {
  color: #fe3f40;
  text-align: center;
  font-size: 25px;
}

.our-services img {
  width: 33%;
  overflow: hidden;
}
	
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}
}

@media (max-width: 575px) {
	.main-red-button {
    display: block;
}
	#extraimg {
  display: none;
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  #about {
        background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 150px 0px 180px 0px;
  }

	.header-area .main-nav .logo h4 {
    font-size: 16px;
}
	.our-portfolio .section-heading h2 {
  font-size: 56px;
}

  
  .overlay-text {
  position: absolute;
  top: 40%; 
  left: 50%; 
  transform: translate(-50%, -50%);  
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;
  z-index: 2;
  width: 520px;
}

.overlay-text p{
 color:black;
 font-size: 35px;
}
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}

}

@media (max-width: 500px) {
	.main-red-button {
    display: block;
}
.carousel-caption.slide1 {
    right: 27%;
   
    left: 27%;
}
	#extraimg {
  display: none;
}

.modal-dialog.WebS {
    max-width: 100%;
}
.modal-content.WebS {
    width: 100%;
	padding: 0px;
}


#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

#modalContent button {
	  font-size: 20px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 20px;
	  width:50%
}

.modal-content {
    background-color: #fefefe;
     margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
}

#about {
       background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 150px 0px 180px 0px;
  }

	.header-area .main-nav .logo h4 {
    font-size: 0px;
}
	.background-header .main-nav .logo h4 {
    font-size: 15px;
}
	.our-portfolio .section-heading h2 {
  font-size: 48px;
}

.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}
	
}

@media (max-width: 499px) {
	.main-red-button {
    display: block;
}
	#extraimg {
  display: none;
}

#modalContent button {
	  font-size: 20px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 20px;
	  width:50%
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

#about {
       background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 150px 0px 180px 0px;
  }

.modal-content {
    background-color: #fefefe;
     margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
}

	.header-area .main-nav .logo h4 {
    font-size: 15px;
}

	.header-area .main-nav .logo img {
	padding-top: 20px;
  width: 120px;
  height: 80px;
  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 img {
	padding-top: 15px;
  width: 100px;
  height: 60px;
  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 h4 {
  font-size: 17px;
  height: 30px;
}

	.our-portfolio .section-heading h2 {
  font-size: 48px;
}

  
    .overlay-text {
  position: absolute;
  top: 40%; 
  left: 50%; 
  transform: translate(-50%, -50%);  
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;
  z-index: 2;
  width: 520px;
}

.overlay-text p{
 color:black;
 font-size: 35px;
}
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}
	
}

@media (max-width: 450px) {
	.main-red-button {
    display: block;
}

.main-banner .left-content h1 {
    font-size: 35px;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 23px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: normal;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 17px;
}

.carousel-caption h3 {
    font-size: 25px;
}

.carousel-caption p {
    font-size: 15px;
}


.carousel-caption.slide2 {
    right: 20%;
   
    left: 20%;
}


	#extraimg {
  display: none;
}

#modalContent button {
	  font-size: 20px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 20px;
	  width:50%
}

#modalContent img {
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    max-height: 320px;
}

.our-services .left-imageAT img {
    width: 60%;
    height: 60%;
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

.modal-content {
    background-color: #fefefe;
     margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
}

.modal-dialog {
    max-width: 100%;
}

#about {
       background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 150px 0px 180px 0px;
  }
	
	.our-portfolio .section-heading h2 {
  font-size: 43px;
  
	}

  .header-area .main-nav .logo h4 {
    font-size: 15px;
}
	
	.header-area .main-nav .logo img {
	padding-top: 20px;
  width: 120px;
  height: 80px;
  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 img {
	padding-top: 15px;
  width: 100px;
  height: 60px;
  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 h4 {
  font-size: 15px;
  height: 30px;
}

  .overlay-text {
  position: absolute;
  top: 35%; 
  left: 50%; 
  transform: translate(-50%, -50%);  
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;
  z-index: 2;
  width: 520px;
}

.overlay-text p{
 color:black;
 font-size: 30px;
}
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}

	.phone-info h4 span a {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
	
}

@media (max-width: 421px) {
	.main-red-button {
    display: block;
}
.main-banner .left-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: normal;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 17px;
}
.carousel-caption h3 {
    font-size: 22px;
}

.carousel-caption p {
font-size: 15px;
}
	#extraimg {
  display: none;
}

#modalContent button {
	  font-size: 20px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 20px;
	  width:50%
}

#modalContent img {
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    max-height: 320px;
}

.our-services .left-imageAT img {
    width: 60%;
    height: 60%;
}



#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

.modal-content {
    background-color: #fefefe;
     margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
}

.modal-dialog {
    max-width: 100%;
}

#about {
        background-repeat: repeat;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 210px 0px 220px 0px;
  }
	
	.our-portfolio .section-heading h2 {
  font-size: 42px;
  
	}


  /* works! */
  
  
  .header-area .main-nav .logo h4 {
    font-size: 14px;
}

.header-area .main-nav .logo img {
	padding-top: 20px;
  width: 90px;
  height: 80px;
  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 img {
	padding-top: 15px;
  width: 70px;
  height: 60px;
  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 h4 {
  font-size: 14px;
  height: 30px;
}

 /* works! */
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}
	
	.phone-info h4 span a {
  color: #fff;
  font-size: 21px;
  font-weight: 400;
}
	
	
}

@media (max-width: 400px) {
	.main-red-button {
    display: block;
}
.main-banner .left-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: normal;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 17px;
}
	#extraimg {
  display: none;
}

#modalContent button {
	  font-size: 20px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 20px;
	  width:50%
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

#modalContent img {
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    max-height: 320px;
}

.our-services .left-imageAT img {
    width: 60%;
    height: 60%;
}

.modal-content {
    background-color: #fefefe;
    margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
}

.modal-dialog {
    max-width: 100%;
}

#about {
     background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 220px 0px 220px 0px;
  }
	
	.our-portfolio .section-heading h2 {
  font-size: 37px;
  
	}

	
	
  .header-area .main-nav .logo h4 {
    font-size: 15px;
}

	.header-area .main-nav .logo img {
	padding-top: 25px;
  width: 60px;
  height: 70px;
  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 img {
	padding-top: 15px;
  width: 60px;
  height: 60px;
  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 h4 {
  font-size: 14px;
  height: 30px;
}
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}

.phone-info h4 span a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
	
}

@media (max-width: 380px) {
	.main-red-button {
    display: block;
}

.main-banner .left-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: normal;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 17px;
}
.carousel-caption h3 {
    font-size: 20px;
	display:none;
}

.carousel-caption p {
 font-size: 15px;

}
.carousel-caption.slide2 {
    right: 22%;
   
    left: 22%;
}
	#extraimg {
  display: none;
}

#modalContent button {
	  font-size: 20px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 20px;
	  width:50%
}

#modalContent img {
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    max-height: 320px;
}

.our-services .left-imageAT img {
    width: 60%;
    height: 60%;
}



#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

.modal-content {
    background-color: #fefefe;
     margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
}

.modal-dialog {
    max-width: 100%;
}

#about {
       background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 200px 0px 220px 0px;
  }


	
	.our-portfolio .section-heading h2 {
  font-size: 37px;
  
	}


  .header-area .main-nav .logo h4 {
    font-size: 12px;
}
	
	.header-area .main-nav .logo img {
	margin-top: 8px;
  width: 60px;
  height: 60px;
  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 img {
	margin-top: 7px;
  width: 50px;
  height: 50px;
  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 h4 {
  font-size: 12px;
  height: 25px;
}

  .overlay-text {
  position: absolute;
  top: 32%; 
  left: 50%; 
  transform: translate(-50%, -50%);  
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;
  z-index: 2;
  width: 520px;
}

.overlay-text p{
 color:black;
 font-size: 25px;
}
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}

.phone-info h4 span a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

}

@media (max-width: 321px) {
	.main-red-button {
    display: block;
}

.main-banner .left-content h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 17px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: normal;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 15px;
}

.carousel-caption h3 {
    font-size: 20px;
	display:none;
}

.carousel-caption p {
font-size: 15px;
	
}
.carousel-caption.slide2 {
    right: 20%;
   
    left: 20%;
}
	
	#extraimg {
  display: none;
}

#modalContent button {
	  font-size: 18px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 18px;
	  width:50%
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}

.our-services .left-imageAT img {
    width: 50%;
    height: 50%;
}

#modalContent img {
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
    max-height: 260px;
}

.modal-content {
    background-color: #fefefe;
     margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 100%;
}

.modal-dialog {
    max-width: 100%;
}

#about {
       background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 140px 0px 220px 0px;
  }
	
	.our-portfolio .section-heading h2 {
  font-size: 32px;
  
	}

  
  .header-area .main-nav .logo h4 {
    font-size: 10px;
}

	.header-area .main-nav .logo img {
	margin-top: 7px;
  width: 60px;
  height: 60px;
  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 img {
	margin-top: 5px;
  width: 60px;
  height: 60px;
  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 h4 {
  font-size: 10px;
  height: 25px;
}

  .overlay-text {
  position: absolute;
  top: 27%; 
  left: 50%; 
  transform: translate(-50%, -50%);  
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;
  z-index: 2;
  width: 520px;
}

.overlay-text p{
 color:black;
 font-size: 20px;
}
.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}

.phone-info h4 span a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
	
}

@media (max-width: 280px) {
	.main-red-button {
    display: block;
}

.main-banner .left-content h1 {
    font-size: 20px;
	margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: normal;
    margin-bottom: 15px;
}

.main-banner .left-content h2 {
    font-size: 14px;
}

.carousel-caption h3 {
    font-size: 20px;
}

.carousel-caption p {
    font-size: 15px;
	display:none;
}
	.our-portfolio .section-heading h2 {
  font-size: 36px;
  
	}
	
#modalContent button {
	  font-size: 18px;
	  width:50%
}


#modalContent #closebtn {
	font-size: 18px;
	  width:50%
}


.our-services .left-imageAT img {
    width: 50%;
    height: 50%;
}

#modalContent img {
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
    max-height: 260px;
}

#modalContent .row-container {
  display: flex;
  flex-wrap: wrap; 
}

#modalContent .row {
  flex: 1 0 100%; 
  margin-right: 0; 
}
	
	.modal-content {
    background-color: #fefefe;
    margin: 20% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 95%;
}

.modal-dialog {
    max-width: 100%;
}

#about {
      background-repeat: space;
    /* background-position: center center; */
    /* background-size: cover; */
    background-size: auto;
    padding: 140px 0px 220px 0px;
  }


  .header-area .main-nav .logo h4 {
    font-size: 10px;
}
	.header-area .main-nav .logo img {
	margin-top: 8px;
  width: 0px;
  height: 0px;
  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 img {
	padding-top: 23px;
  width: 0px;
  height: 0px;
  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 h4 {
  font-size: 10px;
  height: 25px;
}

.header-area .main-nav .nav li:last-child a{
    color: #fff !important;
    border-radius: 0px;
    /* padding: 0px 20px; */
    /* font-weight: 400; */
    background-color: #03a4ed !important;
}
	
}

