@charset "UTF-8";
@font-face {
    font-family: "UTMAvoBold";
    src: url("../fonts/UTMAvoBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "FontAwesome";
    src: url('../fonts/FontAwesome.otf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Palatino";
    src: url('../fonts/Palatino.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

.palatino-font {
    font-family: Palatino;
    font-weight: normal;
}

.font-semibold {
    font-weight: 600;
}

.rounded-9 {
    border-radius: 0.9rem!important;
}

body, p, span {
  font-family: OpenSans, sans-serif;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: OpenSans, sans-serif;
  font-weight: bold;
}

a {
    text-decoration: none;
}

.logo img {
    width: 60%;
    transform: translateX(20%);
}

.home header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

header h1  {
  font-family: UTMAvoBold, sans-serif;
  font-size: 50px;
  letter-spacing: 5px;
}

h2.page-section-heading {
    color: #0046A7; 
    font-size: 38px;
}

body, p {
    color: #546E7A;
}

p {
    font-size: 16px;
}

.br-50 {
    border-radius: 50px;
}

.br-50p {
    border-radius: 50%;
}

.text-justify {
    text-align: justify;
}

.divider-custom-line img {
    width: 90px;
}

#mainNav #navbarResponsive {
    transform: translateY(-70px);
}

ul.main-nav {
    /*transform: translateY(-70px);*/
    box-shadow: 3px 3px 14px 1px rgba(0,0,0,0.2);
    background: #fff;
    border-radius: 10px;
}

ul.main-nav li.nav-item:first-child {
    border-radius: 10px 0px 0px 10px;
}

ul.main-nav li.nav-item:last-child {
    border-radius: 0px 10px 10px 0px;
}

ul.main-nav li.nav-item {
    padding: 15px 20px;
    position: relative;
    transition: all 0.3s;
    z-index: 1;
}

ul.main-nav li.nav-item.active,
ul.main-nav li.nav-item:not(.active):hover {
    background: #0078FF;
    border-radius: 0px;
    transition: all 0.3s;
}

#navbarResponsive ul.main-nav li.nav-item.active::before,
#navbarResponsive ul.main-nav li.nav-item.active::after,
#navbarResponsive ul.main-nav li.nav-item:not(.active):hover::before,
#navbarResponsive ul.main-nav li.nav-item:not(.active):hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    background: #0078FF;
    left: 0;
    transition: all 0.3s;
    z-index: 0;
}

ul.main-nav li.nav-item.active::before,
ul.main-nav li.nav-item:not(.active):hover:before  {
    top: -15px;
    border-radius: 5px 5px 0px 0px;
}

ul.main-nav li.nav-item.active::after,
ul.main-nav li.nav-item:not(.active):hover:after {
    bottom: -15px;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 6px 10px -3px rgba(0,0,0,0.3);
}

#navbarResponsive ul.main-nav li.nav-item img.icon-nav {
    width: 60px;
}

ul.main-nav li.nav-item.active img.icon-nav,
ul.main-nav li.nav-item:not(.active):hover img.icon-nav {
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.navbar-light ul.navbar-nav.main-nav li.nav-item a,
li.nav-item.dropdown .dropdown-menu a  {
    color: #0046A7;
}

.navbar-light ul.navbar-nav.main-nav li.nav-item.active > a,
.navbar-light ul.navbar-nav.main-nav li.nav-item:not(.active):hover > a {
    color: #fff;
    transition: all 0.3s;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-150 {
    padding-bottom: 150px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

#sticky-header ul.main-nav li.nav-item img.icon-nav {
    width: 27px;
}

#sticky-header ul.main-nav li.nav-item {
    padding: 5px 10px;
}

.dropdown:hover>.dropdown-menu,
.dropdown-item:hover>.dropdown-menu  {
  display: block;
}

#navbarResponsive .dropdown-menu {
    top: 108%;
}

#sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    z-index: -1;
}

.fixed-header #sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(51,51,51,.1);
    -moz-box-shadow: 0 0 20px rgba(51,51,51,.1);
    -ms-box-shadow: 0 0 20px rgba(51,51,51,.1);
    -o-box-shadow: 0 0 20px rgba(51,51,51,.1);
    box-shadow: 0 0 20px rgba(51,51,51,.1);
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Home */

.home #about-us {
    position: relative;
}

.home #about-us:before,
#contact-information:before,
#projects-sec1:before {
    content: '';
    background-image: url('../assets/img/home/home-about-us-before.png');
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: left -55px;
    background-size: 500px;
    background-repeat: no-repeat;
    z-index: -1;
    top: 0;
    left: 0;
}

.home #about-us:after,
#contact-information:after,
#projects-sec1:after {
    content: '';
    background-image: url('../assets/img/home/home-about-us-after.png');
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: right center;
    background-size: 250px;
    background-repeat: no-repeat;
    z-index: -1;
    bottom: 0;
    right: 0;
}

.home #case-study {
    background-color: #F3F5F8; 
}

h3.case-study-heading {
    font-size: 20px;
    color: #0046A7;
}

.home #case-study i.fa {
    font-size: 30px;
    width: 55px;
    height: 55px;
}


.home #previous-work {
    background-color: #07254F; 
}


.home #previous-work .col-lg-7:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 85%;
    border: 3px solid #fff;
    bottom: 0;
    left: 0;
    right: 0;
}

.home #previous-work .col-lg-7::after {
    content: '';
    position: absolute;
    top: 6%;
    background: #07254F;
    width: 80%;
    height: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.home #previous-work .col-lg-7 .col-8 {
    z-index: 5;
}


/* End Home */

/* Contact */

.dark-color {
    color: #272828;
}

.dark-color-2 {
    color: #546E7A;
}


.contact header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-heading {
    text-transform: uppercase;
}

/* End Contact */

/* Projects */

#projects-sec1 ul,
#projects-sec3 ul {
  list-style: none; /* Remove default bullets */
}

#projects-sec1 ul li::before,
#projects-sec3 ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #0078FF; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  font-size: 20px;
}

/* End Projects */

.case-study-modal .gallery img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

/* Footer */

footer.footer {
    background-color: #1E2B4D;
    /*background-image: url('../assets/img/home/footer.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

footer.footer .footer-column {
    position: relative;   
}

footer.footer .footer-column:nth-child(2)::before,
footer.footer .footer-column:nth-child(2)::after {
    content: '';
    position: absolute;
    border-left: 1px solid #fff;
    height: 65%;
    top: 0;
}

footer.footer .footer-column:nth-child(2)::before {
    left: 0;
}

footer.footer .footer-column:nth-child(2)::after {
    right: 0;
}


/* End Footer */