
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;   
    font-family: "Montserrat", sans-serif;
}

/* font */
@font-face {
    font-family: "Montserrat";
    src: url(../font/Montserrat-Regular.ttf);
}

@font-face {
    font-family: "Montserrat Medium";
    src: url(../font/Montserrat-Medium.ttf);
}

@font-face {
    font-family: "Montserrat SemiBold";
    src: url(../font/Montserrat-SemiBold.ttf);
}

body{
    overflow-x: hidden;
}

/* GENERAL */
.font-sb{
    font-family: 'Montserrat SemiBold';
}

.theme-text{
    color: #0D83DD;
}

.gray-text{
    color: #333333;
}

.lgray-text{
    color:#7E7E7E;
}

.fw-600{
    font-weight: 600;
}

/* line below CRM text */
#crm{
    background-image: url(../images/Path\ 18.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    padding-bottom: 10px;
}

.small-text {font-size: 70%;}
.very-small-text {font-size: 50%;}

/* container */
.container{
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin: auto;
    max-width: 1920px;
}

/* colors */
.blue-bg{
    background-color: #0D83DD;
}
.blue-bg-white-text{
    background-color: #0D83DD;
	color: #fff;
}
.blue-text{
    color: #0D83DD;
}


.blue-box-with-corner {
  border-radius: 25px;
  border: 2px solid #0D83DD;
  background-color:#fff;
  min-height:300px;
}

.bg-color-pale-blue {
	background-color:#EDF7FE;
}

.padding-10  {
	padding:10px;
}

.padding-20  {
	padding:20px;
}

/* text */
h1,
h2.main{
    font-size: 45px;
    font-family: 'Montserrat SemiBold' !important;
}

h3{
    font-size: 30px;
}

h4{
    font-size: 18px;
}

button,
span,
a{
    font-family: "Montserrat", sans-serif ;
}

p{
    font-size: 17px;
    font-family: "Montserrat", sans-serif !important;
}



/* buttons */
.btn-white-border {
    padding: 3px 15px;
    outline: noness;
    text-align: center;
    border-radius: 20px;
    border: 1px solid white;
    color: white;
    background-color: transparent;
    font-family: 'Montserrat Medium';
    font-size: 12px;
}

.btn-white-border:hover{
    background-color: white;
    color: #333;
}

.btn-white-border img{
    width: 15px;
}

.btn-white-border:hover img{
    -webkit-filter: invert(33%); /* Safari/Chrome */
    filter: invert(33%); 
    width: 15px;
}

.btn-blue{
    background-color: #0D83DD;
    color: white;
    text-transform: uppercase;
    border-radius: 40px;
    border: 1px solid #0D83DD;
    outline: none;
    padding: 15px 60px;
    height: min-content;
    width: fit-content;
    box-shadow: 15px 15px 30px #CDE3F3;
}

.btn-blue:hover{
    color:#0D83DD;
    background-color: white;
}

.btn-white{
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    border-radius: 40px;
    border: 1px solid #fff;
    outline: none;
    padding: 20px 60px;
    height: min-content;
    width: fit-content;
    box-shadow: 15px 25px 30px #0072C9;
    font-family: 'Montserrat Medium' !important;
}

.btn-white:hover{
    background-color: #0D83DD;
    color: white;
}

.demo-btn,
.blue-btn{
    background-color: #0D83DD;
    color: white;
    text-align: left;
    font-family: 'Montserrat Medium' !important;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    border-radius: 230px;
    border: 1px solid #0D83DD;
    outline: none;
    padding: 7px 20px ;
    height: min-content;
    box-shadow: 15px 15px 30px #CDE3F3;
}

.blue-btn{
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 270px;
    padding-left: 40px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-btn:hover,
.blue-btn:hover{
    background-color: transparent;
    color: #0D83DD;
}

.demo-btn > img,
.blue-btn > img{
    width: 30px;
    margin: 4px 0px 5px 16px;
}

.play-btn{
    color: #333333;
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    border: none;
    outline: none;
    padding: 4px 2px;
    height: min-content;
    min-width: 260px;
    transition:  0.2s ease-out;
    -o-transition:  0.2s ease-out;
    -moz-transition:  0.2s ease-out;
    -webkit-transition:  0.2s ease-out;
    background: #F5F8FB;
    background-size: 200%;
    border-radius: 30px;
    box-shadow: 15px 15px 30px #CDE3F3;
    padding-left: 0;
}

.play-btn i{
    color: #FFC844;
    border-radius: 50%;
    box-shadow: 5px 10px 30px #00000029;
    font-size: 40px;
    vertical-align: middle;
    margin-right: 10px;
    background: white;
    padding: 10px 15px;
    border-left: 2px solid #ffc844;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.play-btn:hover{
    color: #ffc844;
}

/* play button stroke animation */
.stroke-solid {
    stroke-dashoffset: 150;
    stroke-dasharray: 300;
    stroke-width: 4px;
    transition: stroke-dashoffset 1s ease, opacity 1s ease;
    -o-transition:  stroke-dashoffset 1s ease, opacity 1s ease;
    -moz-transition:  stroke-dashoffset 1s ease, opacity 1s ease;
    -webkit-transition:  stroke-dashoffset 1s ease, opacity 1s ease;
}

.icon {
    transform: scale(0.8);
    transform-origin: 50% 50%;
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transition: transform 200ms ease-out;
    -o-transition: transform 200ms ease-out;
    -moz-transition: transform 200ms ease-out;
    -webkit-transition: transform 200ms ease-out;
}

.play-btn:hover .stroke-solid {
    opacity: 1;
    stroke-dashoffset: 0;
}

.play-btn:hover .icon {
    transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
}

#play {
    cursor: pointer;
    height: 57px;
    margin-left: -26px;
    margin-top: -5px;
    margin-bottom: -5px;
}

/* button icon */
.demo-btn i{
    font-size: 37px;
    vertical-align: middle;
    margin-left: 22px;
}

/* top header icon */
:is(.phone, .email) img+span{
    vertical-align: middle;
    font-family: 'Montserrat Medium' !important;
    font-size: 13px;
}

/* HEADER */
header{
   background-color: #0D83DD;
   color: white;
}

header .contact-header{
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
}

header .contact-header a{
    text-decoration: none;
    color: white
}

header .contact-header i{
    font-size: 18px;
}

header .contact-header ahover{
    text-decoration: underline;
}

/* NAVBAR */
.dropdown-toggle::after{
    content: none;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0; 
 }

.dropdown-item.active, .dropdown-item:active,
.dropdown-item:focus, .dropdown-item:hover{
    color: #0D83DD;
    text-decoration: none;
    background-color: inherit ;
}

.dropdown-item{
    font-weight: 500;
    text-transform: uppercase;
}

.dropdown-item img{
    padding-right: 10px;
    width: 30px;
}

nav .dropdown-menu li:last-child img{
    width: 25px;
}

.dropdown-item {
    padding: 10px 20px;
}

nav ul{
    list-style-type: none;
}

nav.navbar{
    position: sticky;
    top: 0;
    z-index: 10000;
}

.navbar-nav{
    margin-left: auto;
    margin-right: 10px !important;
    width: inherit;
    justify-content: space-between;
    max-width: 80%;
    gap: 15px;
}

nav.shadow{
    box-shadow: 0px 3px 6px #9a9db34d;
}

.navbar.bg-light{
    background-color: #fff !important;
    padding: 10px;
}

.navbar-nav a.nav-link{
    color: #000000 !important;
    font-family: 'Montserrat Medium' !important;
}

.navbar-nav a.nav-link:hover{
    color: #0D83DD !important;
}

.item-center{
    align-items: center;
}

.hr-line{
    vertical-align: middle;
    color: #707070;
    font-weight: bold;
    display: inline-block;
    width: 100px;
    height: 2px;
    background: #707070;
}

.ds-none{
    display: none;
}

.navbar-nav + button:hover{
    border: 1px solid #0D83DD;
    background-color: #FFFFFF;
    color: #0D83DD;
}

.navbar-toggler{
    border: none;
    outline: none;
    box-shadow: none !important;
}

/* FOOTER */
footer{
    background-color: #0D83DD;
    color: white;
    padding-left: 30px;
    padding-right: 30px;
}

footer .container:nth-child(1){
    padding: 90px 20px 10px 20px;
}

footer h5{
    font-family: 'Montserrat Medium' !important;
    font-size: 17px;
    margin-bottom: 30px;
}

footer ul{
    list-style-type: none;
    padding: 0;
}

footer ul li a{
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
    text-decoration: none;
    display: inline-block;
}

footer ul li a:hover{
    color: white;
}

footer .inline-btns button{
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 40px;
    border-radius: 25px;
}

footer .inline-btns button:hover{
    background-color: white;
    color: #000;
}

footer .inline-btns button:hover img{
    filter: invert(1);
}

footer .inline-btns button img{
    vertical-align: text-top;
}

footer .row p{
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 400;
} 

footer .row .col-lg-6 .row{
    gap: 10px;
}

footer .white-container{
    border-radius: 40px;
    color: #000;
    margin-top: 50px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 80px;
}

footer .white-container address{
    max-width: 300px;
}

footer .white-container h4{
    color: #333;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    font-family: 'Montserrat SemiBold'  !important;
}

footer .white-container a{
    color: #333;
    text-decoration: none;
    word-break: break-word;
}

@keyframes mover {
    0% { 
        transform: translateY(0); 
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
    }
    100% { 
        transform: translateY(-20px); 
        -o-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
    }
}

@media only screen and (min-width: 991px){    
    .lg-invisible{
        visibility: hidden !important;
    }
}

@media only screen and (max-width: 1500px) 
{
    h1,
    h2.main {
        font-size: 38px;
    }
}

@media only screen and (max-width: 1200px) 
{

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        padding-right: 0;
    }

    nav .demo-btn{
        font-size: 14px;
    }
    
    .navbar-nav{
        margin-right: 10px !important;
        gap: 5px;
    }

}

@media only screen and (max-width: 991px) {
    main{
        padding: 20px;
    }
    
    h1,
    h2.main{
        font-size: 38px
    }

    h3{
        font-size: 25px
    }

    p{
        font-size: 16px;
    }

    .demo-btn i {
        font-size: 32px;
    }

    footer .white-container img{
        margin-top: 70px;
    }

    footer .white-container{
        padding-top: 0px;
    }
    
    .navbar-light .navbar-nav .nav-link {
        font-size: 15px;
        padding-right: 10px;
    }

    .dropdown-toggle::after{
        content: "";
        float: right;
        margin-top: 8px;
    }    

    .navbar-nav{
        text-align: left;
        align-items: start;
        max-width: 100%;
        width: 100%;
    }
    
    nav .nav-item{
        text-align: left;
        font-weight: bold;
        width: 100%;
        margin-bottom: 10px;
    }

    nav .nav-item > a{
        width: 100%;
        border-bottom: 1px solid #aaa;
        padding-bottom: 10px;
        padding-top: 15px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none !important;
        border: none;
    }

    .dropdown:hover .dropdown-menu.show {
        display: block !important;
    }

    header .contact-header i{
        font-size: 16px;
    }

    p{
        text-align: justify;
    }

    .navbar-collapse{
        display: flex;
        flex-direction: column-reverse;
    }

    nav  .demo-btn{
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
        padding: 10px;
        border-radius: 30px;
    }

    img.vert-move {
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
        -o-animation: mover 1s infinite alternate;
        -moz-animation: mover 1s infinite alternate;
    }
}

@media only screen and (max-width: 750px) {
    .play-btn i{
        font-size: 35px;
    }
   
    h4{
        font-size: 16px;
    }

    footer ul li a{
        margin-bottom: 5px;
    }

    footer h5{
        margin-top: 20px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 775px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
    main{
        padding: 20px;
    }
    
    h1,
    h2.main{
        font-size: 30px
    }

    h3{
        font-size: 20px
    }

    p{
        font-size: 14px;
    }

    .logo{
        width: 150px;
    }

    .play-btn i{
        padding: 7px 10px;
    }

    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    footer .inline-btns button {
        padding: 8px 25px;
    }
    
    footer .container:nth-child(1) {
        padding: 46px 20px 10px 20px;
    }

    footer .white-container{
        padding-left: 20px;
        padding-right: 20px;
    }

    footer .white-container {
        border-radius: 30px;
    }
}
 
@media only screen and (max-width: 350px) {
    .login img{
        display: none;
    }

    .demo-btn i{
        display: none;
    }

    .play-btn {
        min-width: 170px;
    }

    .play-btn i {
        font-size: 31px;
        padding: 4px 7px;
    }

    .hr-line{
        display: none;
    }

    #crm{
        padding-bottom: 5px;
    }

    h1,
    h1 > span ,
    h2.main
    #crm{
        font-size: 24px;
    }

    p, span{
        font-size: 14px;
    }

    .demo-btn,
    .play-btn{
        font-size: 14px;
    }

    footer{
        padding-left: 20px;
        padding-right: 20px;
    }

    footer .inline-btns button img{
        display: none;
    }

    #play{
        margin-left: -50px;
    }

    h1,
    h2.main{
        font-size: 25px;
    }

    h2{
        font-size: 20px;
    }
}
