.trigger {
width: 120px;
height: 47px;
position: absolute;
right: 50%;
top: -6px;
transform: translate(50%);
cursor: pointer;
.popup_services {
width: 730px;
height: 341px;
border-radius: 6px;
box-shadow: 0 15px 30px 0 rgba(32, 33, 39, 0.2);
background-color: var(--white);
right: 50%;
position: absolute;
top: 45px;
transform: translate(50%, 10%);
padding: 40px;
grid-template-columns: 1fr 1fr;
display: grid;
opacity: 0;
transition: 0.4s;
visibility: hidden;
cursor: default;
&_arrow {
position: absolute;
width: 30px;
height: 12px;
top: -10px;
left: 50%;
transform: translate(-50%);
}
@include layout-mobile {
display: none;
}
&-col {
&_title {
font-family: Gilroy, sans-serif;
font-size: 13px;
font-weight: 600;
font-stretch: normal;
font-style: normal;
line-height: normal;
letter-spacing: 1px;
color: #a5b4c8;
text-transform: uppercase;
}
.col-items {
&_item {
display: flex;
align-items: center;
margin-top: 30px;
a {
display: flex;
align-items: center;
text-decoration: none;
padding-right: 50px;
}
&-text {
margin-left: 17px;
p {
font-family: Gilroy, sans-serif;
font-size: 16px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: normal;
letter-spacing: 0.4px;
color: #354052;
margin: 0;
margin-bottom: 3px;
}
span {
font-family: Arial, sans-serif;
font-size: 14px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1.43;
letter-spacing: 0.2px;
color: #7f8fa4;
text-transform: capitalize;
}
}
img {
width: 48px;
}
}
}
}
}
&:hover {
.popup_services {
opacity: 1;
transform: translate(50%, 0%);
visibility: visible;
}
}
}