/* general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--color-white);
    color: var(--color-dark);
    font-size: 13px;
}

html {
    scroll-behavior: smooth;
}

/* custom properties */



:root {
    --color-light-blue: #b4d0e7;
    --color-dark: #000000;
    --color-blue: #0061ff;
    --color-grey: #f5f5f5;
    --color-contrast: #753f63;
    --color-white: #ffffff;
    --color-logo-green: #a2d39b;
    --color-light-green: #D1E9CD;
    --color-logo-second: #61082b;
    --color-logo-third: #0093ce;
    --color-logo-light-red: #ff1c1c;
    --color-logo-red: #d5001f;
    --color-logo-blue: #0d2481;
    --color-logo-yellow: #ffd830;
}

/* general settings */

/* .debug {
    border: 1px solid red;
} */

i {
    color: var(--color-dark);
    font-size: 2em;
}

span {
    display: block;
    margin-top: 25px;
}

/* utilities list*/

ul li {
    list-style: none;

    justify-content: space-between;
    padding: 10px;
}

ul li a {
    text-decoration: none;
    color: var(--color-dark);
    cursor: pointer;
}



/* utilities text */


hr {
    color: grey;
    width: 20%;
    text-align: left;
    margin-bottom: 40px
}

h1 {
    font-size: 4em;
    margin-bottom: 40px;
    font-weight: bold;
}

h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.text-center {
    text-align: center;
}

.small-text {
    font-size: 12px;
}

.grey-text {
    color: grey;
}

/* border utilities */

.border {
    border: 1px solid grey;
}

.border-bottom {
    border-bottom: 1px solid grey;
}

/* margin e padding utilities */

.m-bottom-80 {
    margin-bottom: 80px;

}

.m-bot-20 {
    margin-bottom: 20px;
}

.m-top-80 {
    margin-top: 80px;
}

.m-top-50 {
    margin-top: 50px;
}
.m-bottom-50{
    margin-bottom: 50px;
}

.p-20 {
    padding: 0 20px;
}

/* button utilities */

.button {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 8px 12px;
    text-decoration: none;
}

.button:hover {
    opacity: 0.8;
}


.button-large {
    text-align: center;
    line-height: 2;
    display: block;
    font-size: 12px;
    background-color: var(--color-blue);
    color: var(--color-white);
    width: 200px;
    height: 30px;
    text-decoration: none;
}

.button-large:hover {
    opacity: 0.8;
}

.button-white {
    text-align: center;
    line-height: 3;
    display: block;
    font-size: 10px;
    background-color: var(--color-white);
    color: var(--color-dark);
    width: 200px;
    height: 30px;
    text-decoration: none;
}

.button-white:hover {
    opacity: 0.8;
}

.btn-white-small {
    text-align: center;
    line-height: 3;
    display: block;
    background-color: var(--color-white);
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    width: 100px;
    height: 30px;
    font-size: 10px;
    text-decoration: none;
}

.btn-white-small:hover {
    opacity: 0.8;
}

/* position utilities */

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

/* utilities flex */

.d-flex {
    display: flex;
}

.spacebetween {
    justify-content: space-between;
}

.f-wrap {
    flex-wrap: wrap;
}

/* container */

.container {
    margin: 0 auto;
    max-width: 1000px;
}

.small-container {
    margin: 0 auto;
    max-width: 800px;
}

/* Background color */

.bg-lightblue {
    background-color: var(--color-light-blue);
}

.bg-black {
    background-color: var(--color-dark);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-lightgrey {
    background-color: var(--color-grey);
}

.bg-green {
    background-color: var(--color-logo-green);
}

.bg-lightgreen {
    background-color: var(--color-light-green);
}

.bg-bordeaux {
    background-color: var(--color-logo-second);
}

.bg-third {
    background-color: var(--color-logo-third);
}

.bg-red {
    background-color: var(--color-logo-red);
}

.bg-lightred {
    background-color: var(--color-logo-light-red);
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-yellow {
    background-color: var(--color-logo-yellow);
}

/* header */
.startbtn {
    justify-content: center;
    align-items: center;
}

.logodrop {
    justify-content: center;
    align-items: center;
}

.logodrop img {
    height: 20px;
    width: 100%;
    display: block;
}

nav {
    padding: 0 10px;
    position: fixed;
    height: 65px;
    width: 100%;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0px 0px 12px #2b2929;
    align-items: center;
}

nav li {
    line-height: 2;
    padding: 20px;
}

nav ul>li:hover {
    padding: 10px;
    border-bottom: 2px solid var(--color-dark);
}
.support {
    position: relative;
    display: inline-block;
  }
  
  .support-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
  }
  
  .support:hover .support-content {
    display: block;
  }

#logo {
    padding: 10px;
    margin-right: 20px;
}

#logo img {
    width: 100%
}

/* main sections: */


/* jumbotron section */

.jumbo-content {
    position: relative;
    top: 70px;
}

.jumbo-text {
    flex-basis: 30%;
}

.jumbo-text p {
    margin-bottom: 30px;
}

.jumbo-image {
    flex-basis: 70%
}

.jumbo-image img {
    width: 100%;
    display: block;
}

.fa-arrow-down {
    font-size: 4em;
    margin-top: 50px;
}

main section:nth-child(2) {
    margin-top: 110px;
}


/* plan section */


.invoice {
    font-size: 12px;
    margin-top: 20px;
}

.radio-btn {
    width: 25px;
    background-color: #eee;
}

.invoice label {
    margin-right: 40px;
}


#professional,
#advanced,
#enterprise {
    width: calc((100% - 60px) / 3);
    gap: 30px;
    margin-top: 10px;
}

#professional,
#advanced,
#enterprise,
h3 {
    margin-bottom: 5px;
    margin-top: 10px;
}

#professional,
#advanced,
#enterprise,
h4 {
    margin-bottom: 5px;
    margin-top: 30px;
}

.p-20 p {
    margin-top: 20px;
    font-size: 14px;
}

.fa-check {
    color: var(--color-blue);
    font-size: 16px;
    font-weight: bold;
}


.category {
    padding: 5px;
    font-size: 12px;
}

.plan span {
    display: inline-block;
}

/* business features settings */
#business-feat {
    margin-top: 60px;

}
#business-feta h2{
    margin-top: 50px;
    margin-bottom: 50px;
}
#business-feat h3{
    font-size: 1.5em;
    margin-bottom: 20px;
}

.row {
    gap: 5px;
    flex-wrap: wrap;
}
.r-second{
    margin-top: 20px;
}
.col {
    width: calc((100% - 10px) / 3);
    height: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}

.col img {
    width: 100%;
    display: block;
}

/* partners section */
#image-sez {
    flex-basis: 60%;
}

#image-sez img {
    width: 100%;
    display: block;
}

#text-sez {
    flex-basis: 40%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}

#text-sez p {
    margin-top: 10px;
    margin-bottom: 20px;
}

#btn-partners {
    align-self: flex-start;
}

/* enterprise section */

.sales-section {
    flex-basis: 40%;
    padding-top: 30px;
    padding-left: 20px;
    justify-content: center;
    align-items: flex-start;
}

#enterprise-call {
    margin-top: 40px;
}

.enterprise-descr {
    flex-basis: 60%;
    padding: 20px;
}

/* customer section */
#customer {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 20px 0px;
}

#customer h2 {
    font-size: 3em;
    margin-bottom: 40px;
}

#customer a {
    font-size: 12px;
}

/* Brands section */
.brands>div {
    width: calc(100% / 3);
    height: calc(100vw / 3);
}

.logo-brand {
    width: 50%;
    height: 50%;
    justify-content: center;
    align-items: center;
}

.hoverlogos {
    width: 50%;
    height: 50%;
    justify-content: center;
    align-items: center;
}

.second-bg:hover {
    width: 90%;
    height: 90%;
    justify-content: center;
    align-items: center;
    background-color: var(--color-logo-green);
}


.logo-brand img {
    display: block;
    width: 60%;
    filter: invert();
}

.small-dimension img {
    display: block;
    width: 50%;
    height: 10%;
}

.designit {
    overflow-y: auto;
}

.designit img {
    width: 60%;
    padding: 30px 20px;
    margin-bottom: 10px;
}

.designit p {
    padding: 15px 20px;
}

.designit hr {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* call to action section */

#call-to-action h2 {
    font-size: 2em;
    margin-bottom: 40px;
    margin-top: 60px;
    padding: 20px 0px;
    color: var(--color-contrast);
}

.business-container {
    flex-basis: 60%;
}

.btn-call {
    flex-basis: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* FAQ section */

#FAQ{
    margin-top: 50px;
    margin-bottom: 50px;
}
#FAQ h2{
    margin-bottom: -45px;
}
#FAQ span{
    display: inline;
}
.answer-sect{
    font-weight: bold;
    padding: 40px 0px;
    height: 50px;
}

.fa-angle-down{
    margin-left: 200px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
  }
  
  .answer-sect:hover + .dropdown-content{
    display: block;
  }
  


/* footer */
footer { 
    padding: 20px 0px;  
    color: var(--color-white);
}

footer ul li{
    padding-left: 0;
}
footer i{
    font-size: 10px;
    color: grey;
}
footer hr{
    color: rgb(79, 77, 77);
    width: 8%;
    text-align: left;
    margin-top: 40px
}

footer span{
    font-size: 10px;
    color: grey;
    display: inline;
    padding: 0;
}

select{
    font-size: 10px;
    color: grey;
    background: transparent;
    text-decoration: none;
    margin-left: 2px;
}

.dropdown-content{
    width: 50%;
    margin: 0px 10px;
    font-size: 12px;
}