
html {
    scroll-behavior: smooth;
  }

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: normal;
  src: url('/fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'Montserrat Light';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/Montserrat-Light.ttf');
}

@font-face {
    font-family: 'Montserrat Thin';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/Montserrat-Thin.ttf');
}

@font-face {
    font-family: 'Montserrat Italic';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/Montserrat-Italic.ttf');
}

@font-face {
  font-family: 'Montserrat Medium';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/Montserrat-Medium.ttf');
}

 @font-face {
    font-family: 'Montserrat SemiBold';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/Montserrat-Bold.ttf');
  }

  @font-face {
    font-family: 'Montserrat Bold';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Montserrat-Bold.ttf');
  }

@font-face {
    font-family: 'Montserrat Bolder';
    font-style: normal;
    font-weight: 800;
    src: url('/fonts/Montserrat-Black.ttf');
  }

body{
    font-family: 'Montserrat', sans-serif !important;
    line-height: 1.4;
    font-size: 16px;
    color: #000 !important;
}

p{
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    font-size: 16px;
    text-align: left;
}

h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 2.5;
}

h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    line-height: 1.7;
}

h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    line-height: 1.2;
}

.switch-orange{color: #df762a !important}
.switch-grey{color: #2a2b2f !important}
.switch-white{color: #fff !important}
.switch-bg-lgrey{background: #f8f8f8 !important;}
.switch-bg-white{background: #FFF !important;}
.switch-bg-orange{background: #df762a !important;}

ul.list{
    padding-left: 0;
    margin-bottom: 5px;
}
ul.list li{
    text-align: left;
    list-style-type: none;
    position: relative;
    padding-left: 40px;
    font-weight: 600;
    color: #5d6268;
    margin-bottom: 11px;
    border-bottom: 1px solid grey;
    padding-bottom: 10px;
}

ul.list li:before{
    content: "";
    position: absolute;
    background: url('../images/icons/swift-list.png') no-repeat;
    background-size: 20%;
    width: 116px;
    height: 100%;
    left: 0;
    top: 0;
}

.texture-bg{
    background: url('../images/footer-texture.png') no-repeat;
    height: 100%;  
    background-size: cover;
    padding-top: 50px;
    color: #FFF;
}

.btn{
    border-radius: 100px;
    background: #df762a;
    border: 1px solid #df762a;
    transition: 0.3s ease-in all;
    overflow: hidden;
    position: relative;
}

.btn:hover{
    background: #FFF;
    transition: 0.3s ease-in all;
    /* color: #df762a */
}

.btn:hover .inv-submit{
    bottom: 7px;
    opacity: 1;
}

.inv-submit{
    position: absolute;
    display: block;
    bottom: -20px;
    transition: 0.3s ease-in all;
    opacity: 0;
    color: #df762a;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.offerings-card{position: relative;}

.offerings-card .offering-front{
    position: relative;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: perspective(1000px) rotateY(0deg);
    transition: 1s;
}

.offerings-card:hover .offering-front{
    transform: perspective(1000px) rotateY(180deg);
}

.offerings-card .offering-back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: perspective(1000px) rotateY(-180deg);
    transition: 1s;
}
.offerings-card:hover .offering-back{
    transform: perspective(1000px) rotateY(0deg);
}

.intro-wrapper div h1{color: #FFF;}

@media screen and (max-width: 991px){
    .nav-logo img{height: 65px;}
    .intro-wrapper div h1{padding: 0 !important;}
    .container, .container-md, .container-sm {
        max-width: 900px !important;
    }
}

@media screen and (max-width: 768px){
    .texture-bg{padding-top: 0;}
    .container, .container-sm {
        max-width: 660px !important;
    }
}
