@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    color: var(--paragraphColor);
    font-size: var(--fontSize);
    font-family: var(--body-font-family);
}
:root {
    --body-font-family: "Poppins", sans-serif;
    --heading-font-family: "Libre Franklin", sans-serif;
    --fontSize: 16px;
    --primaryColor: #227AB9;
    --secondaryColor: #227AB9;
    --whiteColor: #ffffff;
    --blackColor: #0C0B0B;
    --paragraphColor: #417AA4;
    --transition: .5s;
    --headingColor: #1B2336;
    --otherColor1: #417AA4;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: center;
    }
}
.nav-top-bar {
    background: #272B3A;
    padding-top: 20px;
    padding-bottom: 20px;
}
.nav-item {
    margin-left: 20px;
    margin-right: 20px;
}
.nav-item a:hover {
    color: var(--secondaryColor) !important;
}
.head-banner {
    position: relative;
    background-color: black;
    height: 80vh;
    min-height: 40rem;
    width: 100%;
    overflow: hidden;
  }
  
  .head-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  
  .head-banner .container {
    position: relative;
    z-index: 2;
  }
  
  .head-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(17,59,89,0.70);
    opacity: 0.5;
    z-index: 1;
  }
  
  /* Media Query for devices withi coarse pointers and no hover functionality */
  
  /* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */
  
  @media (pointer: coarse) and (hover: none) {
    .head-banner {
      background: url("../assets/images/video/computerclip1.mp4") black no-repeat center center scroll;
    }
  
    .head-banner video {
      display: inherit;
    }
  }
  h1 {
    color: #FFF;
    font-size: 70px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
  }
  .page-title-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--headingColor);
    font-family: var(--heading-font-family);
  }
  h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--whiteColor);
    font-weight: 700;
    font-family: var(--heading-font-family);
  }
  p {
    font-family: "Poppins", sans-serif;
  }
.demo {
    padding: 16px 24px;
    padding-left: 48px;
    margin-right: 30px;
    position: relative;
    border-radius: 5px;
    display: inline-block;
    transition: var(--transition);
    font-family: var(--heading-font-family);
    background-color: rgb(41, 45, 60);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.demo::before {
    top: 50%;
    left: 25px;
    width: 13px;
    height: 13px;
    content: "";
    position: absolute;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--primaryColor);
    transform: translateY(-50%);
}
.demo::after {
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    content: "";
    z-index: -1;
    position: absolute;
    border-radius: 5px;
    background: linear-gradient(90deg, #1B2336 0%, #013988 50.09%, #227AB9 100%);
}
.demo:hover {
    color: var(--whiteColor);
    background-color: transparent;
}
.footer-area {
    background-color: #1B2336;
}
.footer-info-area {
    padding-top: 80px;
    padding-bottom: 55px;
    border-bottom: 1px solid #242C3E;
}
.col-lg-4:nth-child(1) .single-footer-info {
    max-width: 322px;
    margin-bottom: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .col-lg-4:nth-child(1) .single-footer-info {
        max-width: 100%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .col-lg-4:nth-child(1) .single-footer-info {
        max-width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-lg-4:nth-child(1) .single-footer-info {
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .col-lg-4:nth-child(1) .single-footer-info {
        max-width: 100%;
    }
}
.single-footer-info ul li strong {
    font-weight: 600;
    color: var(--whiteColor);
}
.col-lg-4:nth-child(1) .single-footer-info ul li {
    margin-bottom: 18px;
    color: #d1d3d7;
}
.single-footer-info ul li a {
    color: #d1d3d7;
    position: relative;
}
.single-footer-info ul li a:hover {
    color: var(--whiteColor);
}
.single-footer-info ul li {
    color: #d1d3d7;
    margin-bottom: 12px;
}
.copyright-area {
    background-color: #1B2336;
    padding-top: 30px;
    padding-bottom: 30px;
}
.copyright-content p {
    color: #d1d3d7;
    font-family: var(--heading-font-family);
}
.copyright-content p strong {
    color: var(--primaryColor);
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #227AB9;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: #0C0B0B;
  }
.page-title-area {
    background-color: #f7ffff;
    padding-top: 105px;
    padding-bottom: 105px;
    margin-top: 83px;
}
.title {
    margin-bottom: 10px;
}
.title .d-block {
    color: #FF8408;
    font-family: var(--heading-font-family);
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}
.about-text-style h2 {
    color: var(--blackColor);
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 13px;
    font-weight: 700;
    font-family: var(--heading-font-family);
}
.about-text-style p {
    color: var(--paragraphColor);
    font-size: var(--fontSize);
    margin-bottom: 15px;
    line-height: 28px;
    letter-spacing: -0.32px;
}
.button .demo {
    background-color: var(--whiteColor);
    color: var(--primaryColor);
    margin-top: 15px;
}
.button .demo:hover {
    color: var(--whiteColor);
    background-color: transparent;
}
.about-image {
    margin-bottom: 25px;
}
.divider-style {
    border: 0;
    border-top: 1pt dashed #227AB9;
    padding: 0px 0px 0px 0px;
    margin: 50px 0px 100px 0px;
}
.Services-content {
    margin-left: 45px;
    margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
    .Services-content {
        margin-left: 0;
    }
}
.Services-content h2 {
    font-weight: 700;
    color: var(--headingColor);
    font-family: var(--heading-font-family);
    font-size: 1.75rem;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.Services-content p {
    color: var(--otherColor1);
    margin-bottom: 0;
    font-size: var(--fontSize);
    line-height: 28px;
    letter-spacing: -0.32px;
}
.dotted-divider {
    border: 0;
    border-top: 1pt dashed #227AB9;
    padding: 0px 0px 0px 0px;
    margin: 50px 0px 100px 0px;
}
.section-title span {
    color: #f07719;
    margin-bottom: 10px;
    font-family: var(--heading-font-family);
    font-size: 16px;
    font-weight: 500;
}
.section-title h2 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--headingColor);
    font-family: var(--heading-font-family);
}
.section-title {
    margin-bottom: 40px;
}
.single-security-services {
    padding: 0px 70px;
    margin-bottom: 25px;
    border: 0pt dashed #227AB9;
    border-right: 2pt dashed #EEE;
    border-left: 2pt dashed #EEE;
    height: 90%;
    margin: 0px 0px 0px 0px;
    padding-bottom: 60px;
}
.single-security-services .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 100%;
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
    background-color: var(--whiteColor);
    border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-security-services:hover .icon {
    background-color: var(--primaryColor);
}
.single-security-services:hover .icon svg path {
    fill: var(--whiteColor);
}
.single-security-services span {
    margin-bottom: 10px;
    color: var(--paragraphColor);
}
.single-security-services h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--headingColor);
    font-family: var(--heading-font-family);
}
.dotted-divider-bt {
    border: 0;
    border-top: 1pt dashed #227AB9;
    padding: 0px 0px 0px 0px;
    margin: 50px 0px 100px 0px;
}
.single-contact-card {
    padding: 45px;
    margin-bottom: 25px;
    border-radius: 0 30px;
    transition: var(--transition);
    border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-contact-card .icon {
    width: 80px;
    height: 80px;
    font-size: 25px;
    line-height: 80px;
    text-align: center;
    border-radius: 100%;
    margin-bottom: 25px;
    display: inline-block;
    color: var(--blackColor);
    transition: var(--transition);
    border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-contact-card:hover .icon {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}
.ri-map-pin-line:before {
    content: "\ef14";
}
.single-contact-card:hover {
    border-color: transparent;
    box-shadow: 0px 4px 20px 0px rgba(207, 217, 249, 0.35);
}
.single-contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--headingColor);
    font-family: var(--heading-font-family);
    line-height: 1.2;
}
.single-contact-card p {
    max-width: 243px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    color: var(--paragraphColor);
    font-size: var(--fontSize);
    letter-spacing: -0.32px;
}
@media only screen and (max-width: 767px) {
    .single-contact-card p {
        max-width: 100%;
    }
}
.single-contact-card ul li a {
    color: var(--paragraphColor);
}
.single-resource-card {
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 0px 30px;
    background-color: var(--whiteColor);
    border: 1px solid rgba(207, 217, 249, 0.5);
}
a:hover {
    color: var(--primaryColor);
}
.single-resource-card .resource-user .user .content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--headingColor);
    font-family: var(--heading-font-family);
}
.d-flex {
    display: flex !important;
}
.single-resource-card .resource-user {
    margin-bottom: 25px;
}
.ani {
    animation-name: slideInUp;
    animation-duration: 600ms;
    animation-timing-function: ease;
    animation-delay: 0ms;
    animation-direction: normal;
    animation-fill-mode: both;
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.single-footer-info ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.5px;
    transition: var(--transition);
    background-color: var(--whiteColor);
}
.single-footer-info ul li a:hover::before {
    width: 100%;
}
@media screen and (max-width: 982px) {
    h1 {
        font-size: 40px !important;
    }
    h2 {
        font-size: 30px !important;
    }
}