@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=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root{
    --blue: #1f478c;
    --blue2: #1299ce;
    --green: #26a04e;
    --bg: #eee;
    --bg2:#fdfafa;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter Tight", sans-serif; */
    font-family: "Poppins", sans-serif;
    /* font-family: "Montserrat", sans-serif; */
    scroll-behavior: smooth;
}

.pad-all{
    padding: 110px 0;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--blue);
    width: 45px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--blue2);
  }
  #top:active {
    background-color: var(--blue2);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/

#nav .menu ul{
    justify-content: end;
    align-items: center;
    display: flex;
    gap: 10px;
}
#nav .menu ul li{
    padding: 10px 15px;
    list-style: none;
}
#nav .menu ul li a{
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--black);
    position: relative;
    transition: .4s ease-in-out;
}
#nav .menu{
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: end;
}
#nav .m-btn{
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--blue2);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
#nav .m-btn:hover{
    background-color: var(--blue);
}
#nav .menu ul li a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-radius: 30px;
    height: 2px;
    transition: .4s ease-in-out;
    background-color: var(--blue2);
}
#nav .menu ul li a:hover::after{
    width: 70%;
}
#nav .menu ul li a:hover{
    opacity: 1;
    color: var(--blue);
}
#nav .menu ul li a.active{
    color: var(--blue);
}
#nav .menu ul li a.active::after{
    width: 70%;
}
#nav{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999999;
    background-color: var(--white);
    transition: .4s ease-in-out;
    /* box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3); */
    border-bottom: 1px solid #c2c2c2;
}
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
.col-black{
    color: var(--black) !important;
}

#nav .container-fluid{
    padding: 20px 90px;
}

/********* Header Section End *********/

/********* Banner Section Start *********/

#banner{
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
#banner .ban-text{
    position: absolute;
    bottom: 80px;
    left: 100px;
    z-index: 3;
}
#banner .ban-over{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
#banner .custom-buttons{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}
#banner .ban-text h1{
    font-size: 70px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 5px 5px 25px rgba(0, 0, 0, 0.8);
}
.slick-active img{
    transform: scale(1);
}
.slide-wrap2 .slick-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1);
}
.slide-wrap2 .slick-active img {
  animation: zoomIn 12s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
#banner img{
    width: 100%;
    height: 750px;
    object-fit: cover;
}
@keyframes zoomIn {
  from {
    transform: scale(1) translateX(0);
  }
  to {
    transform: scale(1.2) translateX(-30px);
  }
}
#banner .custom-buttons button{
    width: 80px;
    height: 80px;
    background-color: var(--blue2);
    color: var(--white);
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    transition: 0.3s ease-in-out;
}
#banner .custom-buttons button:hover{
    background-color: var(--blue);
}    
#banner .slick-slider,
#banner .slick-list,
#banner .slick-track {
  background: #000; /* or your theme color */
}

/********* Banner Section End *********/

/********* About Section Start *********/

#about .a-text .about-icon img{
    width: 60px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(4363%) hue-rotate(181deg) brightness(97%) contrast(98%);
}
#about .a-text h6{
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
}
#about .a-text h1{
    font-weight: 600;
    color: var(--blue);
    font-size: 42px;
    margin-bottom: 20px;
}
#about .a-text h1 span{
    color: var(--blue2);
}
#about .a-text p{
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 35px;
}
#about .a-text .a-btn a{
    display: inline-block;
    text-decoration: none;
    background-color: var(--blue2);
    padding: 14px 30px;
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
    transition: .4s ease-in-out;
}
#about .a-text .a-btn a:hover{
    background-color: var(--blue);
}
#about .a-img iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
#about .a-img img{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
#about .stat-icon img{
    width: 70px;
    height: 70px;
    filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(4363%) hue-rotate(181deg) brightness(97%) contrast(98%);
}
#about .stat-item{
    padding-left: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--blue);
    margin: 0 10px;
}
#about .stat-item h4{
    font-size: 40px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 2px;
}
#about .stat-item p{
    margin-bottom: 0;
    color: #8a8fa8;
    font-size: 17px;
    font-weight: 500;
}
#about .stat-wrap{
    margin-top: 100px;
}

/********* About Section End *********/

/********* Products Section Start *********/

#products{
    background-color: var(--blue);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
#products::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./img/pro.webp);
    background-size: cover;
    opacity: 0.7;
}
#products .pro-wrap{
    position: relative;
    z-index: 1;
}

h5.pr-title.a-font {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 13px;
    color: var(--white);
}

p.pr-para {
    /* font-weight: 700; */
    font-size: 16px;
    color: var(--white);
    margin-bottom: 0;
    /* padding-right: 261px; */
    line-height: 25px;
    opacity: 0.8;
}

a.pr-link {
    display: inline-block;
    background: #0069b4;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
    padding: 16px 35px;
    text-decoration: none !important;
    border-radius: 8px;
    margin-top: 18px;
}

a.pr-link i{
    font-size: 14px;
    margin-left: 10px;
}

a.pr-link:hover{
    text-decoration: none;
     color: #ffffff;
}

#products .container-fluid {
    padding: 0 50px 0 318px !important;
}

.pr-box {
    min-height: 300px;
    margin: 0 10px;
    background: #ffffff;
    /* background: linear-gradient(0deg, #02002400 0%, #E6E7E8 100%); */
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    margin-bottom: 32px;
    min-height: 369px;
    border-bottom: 3px solid var(--blue);
}

h5.pr-head {
    padding: 21px 21px 25px 21px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.pr-img {
    text-align: center;
    display: flex;
    justify-content: center;
}

.pr-img img {
    width: 54.5%;
}

/* .pr-img img {
    width: 55%;
    margin: 0 auto;
} */

p.pr-para2 {
    margin-bottom: 0;
    font-size: 14px;
    padding: 21px;
    line-height: 22px;
}

#products .container-fluid .owl-carousel .owl-item img {
    display: block;
    width: 55%;
    margin: 0 auto;
}

.p-wid {
    width: 37.5% !important;
    padding-top: 12px;
}

.p-wid2 {
    width: 65% !important;
    padding-top: 24px;
}

.p-wid3 {
    width: 42% !important;
    /* margin-top: 12px; */
    padding-top: 28px;
}

.pr-top4 {
    margin-top: 38px;
}


.pr-top {
    margin-top: 13px;
}

.pr-top2 {
    margin-top: 16px;
}


.pro-bg {
    background: url(../images/pr-bg2.png) no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    margin-top: -252px;
}

/* #products .container-fluid .owl-stage-outer { margin: -15px; padding: 15px; } */

#products .container-fluid .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

#products .container-fluid .owl-stage-outer {
    margin: -15px;
    padding: 15px;
}

.prr2 {
    /* padding-top: 49px; */
    margin-top: 18px;
}

#products .custom-buttons button {
    width: 50px;
    height: 50px;
    background: var(--blue2);
    color: var(--white);
    border: none;
    margin-right: 5px;
    font-size: 22px;
    cursor: pointer;
    transition: .4s ease-in-out;
}
#products .custom-buttons button:hover {
    background: var(--white);
    color: var(--blue);
}
#products .p-btn a{
    text-decoration: none;
    color: var(--white);
    background-color: var(--blue2);
    padding: 12px 28px;
    transition: .3s ease-in-out;
}
#products .p-btn a:hover{
    background-color: var(--white);
    color: var(--blue);
}


/********* Products Section End *********/

/********* Why Section Start *********/

#why h2{
    font-size: 40px;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
}
#why .why-item .why-icon{
    width: 85px;
    height: 85px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue2);
    margin-bottom: 30px;
    margin-top: -60px;
    transition: .4s ease-in-out;
}
#why .why-item{
    padding: 30px;
    margin: 0 5px;
    margin-top: 60px;
    border: 2px solid var(--blue);
    transition: .4s ease-in-out;
}
#why .why-item .why-icon img{
    width: 45px;
    height: auto;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(37%) hue-rotate(258deg) brightness(106%) contrast(100%);
}
#why .why-item h3{
    margin-bottom: 0;
    font-size: 20px;
    color: var(--blue);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    transition: .4s ease-in-out;
}
#why .why-item p{
    margin-bottom: 0;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
    opacity: 1;
    transition: .4s ease-in-out;
}
#why .why-item:hover{
    background-color: var(--blue2);
    /* border-color: var(--blue); */
}
#why .why-item:hover h3{
    color: var(--white);
}
#why .why-item:hover p{
    color: var(--white);
    opacity: 0.8;
}
#why .why-item:hover .why-icon{
    background-color: var(--blue);
}
#why .why-first .why-icon{
    background-color: var(--blue2);
}
#why .why-first h3{
    color: var(--white);
}
#why .why-first p{
    color: var(--white);
    opacity: 0.8;
}
#why .why-first{
    background-color: var(--blue);
}

/********* Why Section End *********/

/********* Para Section Start *********/

.para-head {
    font-size: 35px;
    color: #fff;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 45px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

a.para-link {
    display: inline-block;
    background: var(--blue2);
    color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
    padding: 14px 30px;
    text-decoration: none !important;
    transition: .4s ease-in-out;
}
a.para-link:hover{
    background: var(--white);
    color: var(--blue);
}

a.para-link i {
    font-size: 14px;
    margin-left: 10px;
}

.paralox {
    background: url(./img/para.webp) no-repeat;
    background-position: center;
    min-height: auto;
    padding: 50px 0;
}

/********* Para Section End *********/

/********* Global Section Start *********/

#global .head{
    position: relative;
    z-index: 2;
}
#global h2{
    font-size: 40px;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
}

#global{
    background: url(./img/map.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    padding: 50px 0;
    position: relative;
}
#global::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 0.94;
}
#global .globe-item{
    position: relative;
    z-index: 2;
}
#global img{
    position: relative;
    z-index: 2;
}
#global h1{
    font-size: 40px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}
#global p{
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 25px;
}
#global .g-btn a{
    display: inline-block;
    text-decoration: none;
    background-color: var(--blue2);
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: .4s ease-in-out;
}
#global .g-btn a:hover{
    background-color: var(--blue);
}
#global .globe-stat-wrap{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
#global .globe-stat-wrap .globe-stat-item{
    background-color: var(--blue);
    text-align: center;
    padding: 35px 10px;
}
#global .globe-stat-wrap .globe-stat-item-first{
    background-color: var(--blue2);
}
#global .globe-stat-wrap .globe-stat-item h4{
    font-size: 40px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0;
}
#global .globe-stat-wrap .globe-stat-item span{
    display: inline-block;
    font-size: 13px;
    color: var(--white);
    font-weight: 400;
}

/********* Global Section End *********/

/********* Cont Section Start *********/

#cont{
    background-color: var(--blue2);
    padding: 50px 0;
}
#cont h1{
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}
#cont p{
    color: #e7e7e7;
    font-size: 16px;
    margin-bottom: 0;
}
#cont .c-btn a{
    display: inline-block;
    text-decoration: none;
    padding: 14px 30px;
    background-color: var(--white);
    color: var(--blue);
    font-size: 17px;
    font-weight: 500;
    transition: .4s ease-in-out;
}
#cont .c-btn a:hover{
    display: inline-block;
    text-decoration: none;
    padding: 16px 30px;
    background-color: var(--blue);
    color: var(--white);
}

/********* Cont Section End *********/

/********* Footer Section Start *********/

#footer{
    margin-top: -7px;
    background-color: var(--blue);
    background-size: cover;
    background-position: center;
}
#footer p{
    opacity: 0.8;
    color: var(--white);
    font-size: 15px;
    line-height: 1.8;
}
#footer .ftr-social a i{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    font-size: 18px;
    color: var(--blue);
    text-align: center;
    border-radius: 100%;
    line-height: 41px;
    margin-right: 6px;
    transition: .4s ease-in-out;
}
#footer .ftr-social a:hover i{
    background-color: var(--blue2);
    color: var(--white);
}
#footer h4{
    font-weight: 600;
    color: var(--white);
}
#footer .men a{
    color: var(--white);
    opacity: 0.7;
    font-weight: 500;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#footer .men ul{
    padding-top: 10px;
}
#footer .men a:hover{
    color: var(--white);
    opacity: 1;
}
#footer .men a i{
    transition: .4s ease-in-out;
    margin-right: 0;
}
#footer .men a:hover i{
    margin-right: 5px;
}
#footer .men ul li{
    margin-bottom: 12px;
    list-style: none;
}
#footer .social ul li{
    margin-right: 20px;
    list-style: none;
}
#footer .social ul li a{
    font-size: 25px;
    color: var(--white);
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    display: flex;
}
#footer .contact i{
    margin-right: 8px;
    color: var(--blue2);
    font-size: 20px;
}
#footer .contact li{
    padding-bottom: 8px;
}
#footer span a{
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#footer span a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer hr{
    border-color: #fff;
}

/********* Footer Section End *********/

/********* Inner Banner Section Start *********/

#inner-banner{
    margin-top: 75px;
    position: relative;
}
#inner-banner .inner-ban-text{
    position: absolute;
    left: 300px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
#inner-banner .inner-ban-text h1{
    color: var(--white);
    font-weight: 500;
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
#inner-banner .inner-ban-text .bread span{
    color: #c0c0c0;
    font-weight: 400;
    font-size: 16px;
}
#inner-banner .inner-ban-text .bread span a{
    text-decoration: none;
    font-weight: 600;
    color: var(--blue2);
}
#inner-banner .inner-ban-text .bread span a:hover{
    text-decoration: underline;
}
#inner-banner .inner-ban-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
#inner-banner .inner-ban-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#inner-about .inner-about-text span{
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--blue2);
}
#inner-about .inner-about-text h2{
    font-size: 45px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 15px;
}
#inner-about .inner-about-text p{
    color: #686868;
    font-size: 15.3px;
    line-height: 1.55;
}
#inner-about-mis .inner-about-text p{
    color: #686868;
    font-size: 15.3px;
    line-height: 1.55;
}
#inner-about-mis .inner-about-text h4{
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
}
#inner-about-mis .inner-about-text .mis{
    background-color: #e8f3ff;
    padding: 25px;
    height: 100%;
    border: 1px dashed var(--blue);
}
#inner-about-mis .inner-about-text .mis-head{
    margin-bottom: 15px;
}
#inner-about-mis .inner-about-text .mis ul li{
    display: flex;
    gap: 10px;
    margin: 7px 0;
}
#inner-about-mis .inner-about-text .mis ul li span{
    font-size: 14px;
    color: #686868;
    text-transform: inherit;
    font-weight: 400;
}
#inner-about-mis .inner-about-text .mis ul li i{
    color: var(--blue);
    font-size: 18px;
    margin-top: 3px;
}
#inner-about-mis .inner-about-text img{
    width: 75px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(18%) saturate(6721%) hue-rotate(204deg) brightness(104%) contrast(88%);
}
#inner-about-number{
    background-color: var(--blue2);
}
#inner-about-number h1{
    font-size: 40px;
    margin-bottom: 0;
    color: var(--white);
    font-weight: 500;
}
#inner-about-number h2{
    font-size: 45px;
    color: var(--white);
    font-weight: 600;
}
#inner-about-number p{
    font-size: 18px;
    color: #e8e8e8;
    font-weight: 400;
    margin-bottom: 0;
}
#inner-about-range span{
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--blue2);
}
#inner-about-range h2{
    font-size: 45px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 15px;
}
#inner-about-range p{
    color: #686868;
    font-size: 15px;
}
#inner-about-top{
    background-color: #efefef;
}
#inner-about-top p{
    text-align: center;
    font-size: 16px;
    color: #585858;
    line-height: 1.7;
    margin-bottom: 30px;
}

/********* Inner Banner Section End *********/

/********* Inner Contact Section Start ********/

#inner-contact .form-control{
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    color: var(--black);
    font-size: 17px;
    border-radius: 0;
}
.form-control:focus{
    box-shadow: none;
    outline: none;
    border: 1px solid var(--blue);
}

#inner-contact span{
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
    color: var(--blue2);
}
#inner-contact h2{
    font-size: 35px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 15px;
}
#inner-contact button{
    display: block;
    padding: 10px;
    background-color: var(--blue);
    border: none;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    transition: .4s ease-in-out;
}
#inner-contact button:hover{
    background-color: var(--blue2);
}
#inner-contact h6{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black2);
}
#inner-contact h4{
    color: var(--black);
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.45;
}
#inner-contact .cont-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
#inner-contact .cont-wrap i{
    font-size: 55px;
    color: var(--blue);
}
#inner-contact .cont-wrap{
    margin: 0 5px;
    background-color: #e8f3ff;
    padding: 20px 25px;
    border: 1px solid #e2e2e2;
    height: 100%;
}
/********* Inner Contact Section End *********/
#inner-contact .cont-right{
    padding: 35px;
    background-color: #e8f3ff;

}
#inner-contact .cont-left .cont-item{
    margin-bottom: 40px;
}
#inner-contact .cont-left .cont-item i{
    color: var(--blue);
    margin-right: 10px;
}
#inner-contact .cont-left .cont-item h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}
#inner-contact .cont-left .cont-item p{
    color: #5e5e5e;
    font-size: 15px;
    margin-left: 35px;
}
#inner-contact .cont-left h3{
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
}
#inner-contact .cont-left .cont-head-sub{
    font-size: 15px;
    font-weight: 400;
    color: #585858;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
}

