body{
    margin:0 ;
    padding: 0;
    font-family: 'poppins';
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.mw {
    max-width: 1280px;
    margin: 0 auto;
}
.aidf{
    display: flex;
    align-items: stretch;
    vertical-align: middle;
    /* gap:.5rem; */
}
.g-1{
    gap: .5rem;
}
h1, h2, h3, h4, h5, h6, .aipr, .aidc, section, main, article, dialog, aside, a, button {
    position: relative;
    border: none;
    transition: all .3s ease;
}
.aic {
    align-items: center;
    display: inherit;
}

/* navigagtion */
nav.ainav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav > ul li {
    position: relative;
    display: block;
}

nav.ainav > ul > li {
    align-items: stretch;
}

nav.ainav > ul > li ul {
    display: none;
    /* min-width: 250px; */
    opacity: 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    z-index: 200;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all .4s ease-in-out 0s;
    max-height: 80vh;
    overflow-x: auto;

    /*  */
    width: auto;
    left: 0px;
    margin-left: 0px;
    margin-top: 0px;
    min-width: 10em;
    max-width: 1000px;

}

nav.ainav > ul > li:hover ul, nav.ainav > ul > li:focus-within ul {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
}

.mla {
    margin-left: auto;
}

.aic {
    align-items: center;
    display: inherit;
}

a > img, a > svg, a > i {
    display: block;
}

nav.ainav ul li a {
    display: flex;
    align-items: center;
    color: #043353 !important;
    font-weight: 500;
    font-size: 15px;
}

nav.ainav > ul > li > ul a {
    /* padding: 4px 10px; */
    padding: .75rem 0;
    margin: 0 1rem;
}


nav.ainav > ul > li > a {
    height: 100%;
    align-items: center;

}

/* Site level configuration */
nav.ainav > ul > li > ul > li > a:hover,
nav.ainav > ul > li > a:active,
nav.ainav > ul > li > a:hover{
    color: #e44546 !important;
}

nav.ainav > ul > li > a:hover svg{
    fill: #e44546;
}
nav.ainav > ul > li ul {
    background-color: #fff;
    color: #555;
}


/* --------------------------------------- SV Changes ----------------------------------------------- */
/* Gap */
.g-1 {
    gap: .25rem !important;
  }
  
  .g-2 {
    gap: .5rem !important;
  }
  
  .g-3 {
    gap: 1rem !important;
  }
  
  .g-4 {
    gap: 1.5rem !important;
  }
  
  .g-5 {
    gap: 3rem !important;
  }
  
  /* Margin */
  .m-0 {
    margin: 0rem !important;
  }
  
  .m-1 {
    margin: .25rem !important;
  }
  
  .m-2 {
    margin: .5rem !important;
  }
  
  .m-3 {
    margin: 1rem !important;
  }
  
  .m-4 {
    margin: 1.5rem !important;
  }
  
  .m-5 {
    margin: 3rem !important;
  }
  
  /* Margin-Top */
  .mt-0,
  .my-0 {
    margin-top: 0 !important;
  }
  
  .mt-1,
  .my-1 {
    margin-top: .25rem !important;
  }
  
  .mt-2,
  .my-2 {
    margin-top: .5rem !important;
  }
  
  .mt-3,
  .my-3 {
    margin-top: 1rem !important;
  }
  
  .mt-4,
  .my-4 {
    margin-top: 1.5rem !important;
  }
  
  .mt-5,
  .my-5 {
    margin-top: 3rem !important;
  }
  
  /* Margin-Right */
  .mr-0,
  .mx-0 {
    margin-right: 0 !important;
  }
  
  .mr-1,
  .mx-1 {
    margin-right: .25rem !important;
  }
  
  .mr-2,
  .mx-2 {
    margin-right: .5rem !important;
  }
  
  .mr-3,
  .mx-3 {
    margin-right: 1rem !important;
  }
  
  .mr-4,
  .mx-4 {
    margin-right: 1.5rem !important;
  }
  
  .mr-5,
  .mx-5 {
    margin-right: 3rem !important;
  }
  
  /* Margin-Bottom */
  .mb-0,
  .my-0 {
    margin-bottom: 0 !important;
  }
  
  .mb-1,
  .my-1 {
    margin-bottom: .25rem !important;
  }
  
  .mb-2,
  .my-2 {
    margin-bottom: .5rem !important;
  }
  
  .mb-3,
  .my-3 {
    margin-bottom: 1rem !important;
  }
  
  .mb-4,
  .my-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .mb-5,
  .my-5 {
    margin-bottom: 3rem !important;
  }
  
  /* Margin-Left */
  .ml-0,
  .mx-0 {
    margin-left: 0 !important;
  }
  
  .ml-1,
  .mx-1 {
    margin-left: .25rem !important;
  }
  
  .ml-2,
  .mx-2 {
    margin-left: .5rem !important;
  }
  
  .ml-3,
  .mx-3 {
    margin-left: 1rem !important;
  }
  
  .ml-4,
  .mx-4 {
    margin-left: 1.5rem !important;
  }
  
  .ml-5,
  .mx-5 {
    margin-left: 3rem !important;
  }
  
  /* Margin Auto */
  .mt-auto,
  .my-auto {
    margin-top: auto !important;
  }
  
  .mb-auto,
  .my-auto {
    margin-bottom: auto !important;
  }
  
  .ml-auto,
  .mx-auto {
    margin-left: auto !important;
  }
  
  .mr-auto,
  .mx-auto {
    margin-right: auto !important;
  }
  
  /* Padding */
  .p-0 {
    padding: 0 !important;
  }
  
  .p-1 {
    padding: .25rem !important;
  }
  
  .p-2 {
    padding: .5rem !important;
  }
  
  .p-3 {
    padding: 1rem !important;
  }
  
  .p-4 {
    padding: 1.5rem !important;
  }
  
  .p-5 {
    padding: 3rem !important;
  }
  
  /* Padding-Top */
  .pt-0,
  .py-0 {
    padding-top: 0 !important;
  }
  
  .pt-1,
  .py-1 {
    padding-top: .25rem !important;
  }
  
  .pt-2,
  .py-2 {
    padding-top: .5rem !important;
  }
  
  .pt-3,
  .py-3 {
    padding-top: 1rem !important;
  }
  
  .pt-4,
  .py-4 {
    padding-top: 1.5rem !important;
  }
  
  .pt-5,
  .py-5 {
    padding-top: 3rem !important;
  }
  
  /* Padding-Right */
  .pr-0,
  .px-0 {
    padding-right: 0 !important;
  }
  
  .pr-1,
  .px-1 {
    padding-right: .25rem !important;
  }
  
  .pr-2,
  .px-2 {
    padding-right: .5rem !important;
  }
  
  .pr-3,
  .px-3 {
    padding-right: 1rem !important;
  }
  
  .pr-4,
  .px-4 {
    padding-right: 1.5rem !important;
  }
  
  .pr-5,
  .px-5 {
    padding-right: 3rem !important;
  }
  
  /* Padding-Bottom */
  .pb-0,
  .py-0 {
    padding-bottom: 0 !important;
  }
  
  .pb-1,
  .py-1 {
    padding-bottom: .25rem !important;
  }
  
  .pb-2,
  .py-2 {
    padding-bottom: .5rem !important;
  }
  
  .pb-3,
  .py-3 {
    padding-bottom: 1rem !important;
  }
  
  .pb-4,
  .py-4 {
    padding-bottom: 1.5rem !important;
  }
  
  .pb-5,
  .py-5 {
    padding-bottom: 3rem !important;
  }
  
  /* Padding-Left */
  .pl-0,
  .px-0 {
    padding-left: 0 !important;
  }
  
  .pl-1,
  .px-1 {
    padding-left: .25rem !important;
  }
  
  .pl-2,
  .px-2 {
    padding-left: .5rem !important;
  }
  
  .pl-3,
  .px-3 {
    padding-left: 1rem !important;
  }
  
  .pl-4,
  .px-4 {
    padding-left: 1.5rem !important;
  }
  
  .pl-5,
  .px-5 {
    padding-left: 3rem !important;
  }

.sub-arrow{
    line-height: 1;
    padding: 10px 0 10px 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    display: flex;
    align-items: center;
}
.sub-arrow svg{
    fill:#043353;
    height: 0.7rem;
    width: 0.7rem;
}


a{
    text-decoration: none;
    cursor: pointer;
}

.abtn{
    font-weight: 500;
    color: #fff;
    background-color: #e44546;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 1px 1px 1px 1px;
    display: inline-block;
    line-height: 1;
    
}
.abtn-lg{
    font-size: 18px;
    padding: 20px 40px;
}
.abtn-md{
    font-size: 16px;
    padding: 15px 30px;
}
.abtn:hover{
    background-color: #043353;
    color: #fff;
}

/* Social Icons */

.social-icons{
    display: flex;
    gap: 0.3rem;
    align-items: center;
    width: 100%;
    padding: 12px;
}
.social-icons span a{
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background-color: #043353;
}
.social-icons span a:hover{
    transform: translateY(-8px);
    background-color:#e44546;
}
.social-icons span a svg{
    fill: #fff;
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

/*  Contact Icons */
.contact-icons{
    display: flex;
    width: 100%;
    padding: 12px;
    flex-direction: row-reverse;
    gap: 2rem;
}
.contact-icons span{
    font-size: 13px;
    display: flex;
    gap: .5rem;
    align-items: center;
}
.contact-icons span svg{
    fill: #e44546;
    width: 14px;
    height: 14px;
    position: relative;
    display: block;
}

.fdir-column{
    flex-direction: column;
}
.fdir-column-r{
    flex-direction: column-reverse;
}
.overlay-div::before {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(135deg, #043353 0%, #4a62fead 75%);
    opacity: 0.8;
}

.heading-title{
    padding: 3rem;
    display: flex;
    flex-direction: column;
}
.heading-title > div:not(:last-child){
    
}

    .heading-title h1, .d11 {
        font-size: 3.5rem !important;
        color: #fff;
        font-weight: 600;
        line-height: 1em;
        letter-spacing: -2px;
        margin: 0;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    .heading-title h4, .d14 {
        font-size: 24px !important;
        color: #fff;
        font-weight: 600;
        line-height: 1.3em;
        margin: 0;
        padding: 0;
        margin-bottom: 1.5rem;
    }
.aip7 {
    padding:7rem 0;
}
.sub-content{
    text-align:justify;
}
.sub-content:first-child{
    display: flex;
    flex-direction: column;
    padding: 3rem;
}
.sub-content > div:not(:last-child){
    margin-bottom: 1.5rem;
}
h6{
    color: #e44546;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: 'poppins';
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 2px;
    margin-bottom:1.5rem;
}
h4 {
    color: #043353;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 1.8rem !important;
    line-height: 1.0;
    margin-bottom: 1.5rem;
}
p{
    font-size: 1rem; 
    color:#65696c; 
    font-family:'Heebo';
    line-height:2;
    position:relative;
}
..sub-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Heebo';
    color: #65696c;
}
..sub-content ul li:not(:last-child){
    padding-bottom: calc(7px/2);
}
..sub-content ul li:not(:first-child){
    margin-top: calc(7px/2);
}
..sub-content ul li {
    display: flex;
    align-items: center;
}
..sub-content ul li svg{
    fill:#61ce70;
    width:.875rem;
    height:.875rem; 
}
..sub-content ul li span{
    font-size: 1rem; 
    line-height:1.5em; 
    padding-left: .5rem;
    color:#65696c;
}

.media-div{
    display: flex;
    position: relative; 
    padding: 10px;
    align-content: space-around;
}
.media-div .first-div{
    margin-bottom: 20px;
    width: 100%; 
    position: relative;
}
.first-div div{
    padding: 0 2rem; 
    border-radius: 1px 1px 1px 1px; 
    overflow: hidden; 
    position: relative;
}
.first-div .inner-div{
    padding-bottom: 75%;
    height: 0; 
    position: relative;
}
.inner-div > div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%; 
    cursor: pointer;
    text-align: center; 
    /* background-image: url(http://fiapanhala.com/images/MSPatel/G06.jpg);*/
} 
.inner-div .play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.play-btn svg{
    height: 100px; 
    width: 100px; 
    fill:#fff; 
    filter: drop-shadow(1px 0 6px rgba(0,0,0,.3));
    opacity: .8;
    transition: all .5s;
}

.media-div .second-div{
    position: absolute; 
    left:0; 
    width: 30%;
    max-width: 30%;
    top:0; 
    margin-bottom: 0; 
    z-index: 1; 
    text-align: center;
}

.second-div .border-img,
.third-div .border-img{
    border-style: solid;
    border-width: 10px 10px 10px 10px; 
    border-color: #fff; 
    border-radius: 1px 1px 1px 1px; 
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 10%);
}
.border-img img{
    vertical-align: middle;
    display: inline-block; 
    height: auto; 
    max-width: 100%;
    border: none;
    box-shadow: none;
}
.media-div .third-div{
    position:absolute;
    right: 0;
    width: 25%;
    max-width: 25%;
    top:10%;
    z-index: 1;
}



.features{
    display: flex;
}
.features > div{
    padding: .8rem;
}

.features-card{
    background-color: #fff;
    padding: 3em 1em 3em 1em;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #f5f5f5;
    border-radius: 0px 0px 0px 0px;
}
.features-card figure{
    text-align: center;
    margin: 0;
}
.features-card figure img{
    height: 40px;
    width: auto;
    margin-bottom: .5rem;
}
.features-card figcaption h4{
    padding: 0; 
    margin: 0;
    margin-bottom: 14px; 
    font-weight: 600; 
    font-size: 1.5rem; 
    color: #043353;
}
.features-card figcaption p{
    padding: 0; 
    margin: 0; 
    margin-bottom: 21px; 
    font-size: 1rem; 
    font-family: 'Heebo'; 
    line-height: 1.5em; 
    color: #65696c;
}
section{overflow:hidden;}

@media only screen and (max-width: 600px) {
    #features > .aidf, #why-esmg > * > .aidf {
        flex-direction: column;
    }
    h2 {font-size:2rem!important;}
}